Skip to content

Commit bad5481

Browse files
chore(release): [SDK-2140] Update iOS SDK to v3.0.0 and raise minimum to iOS 12.0
1 parent c8c5206 commit bad5481

File tree

5 files changed

+22
-5
lines changed

5 files changed

+22
-5
lines changed

ChangeLog.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
2023-10-10 Version 6.0.0
2+
3+
- Update Branch iOS SDK to 3.0.0 for iOS 17 support.
4+
- Add a Privacy Manifest for the Branch SDK.
5+
- Add support for a tracking domain. When Ads tracking is enabled, the SDK sends event calls to a tracking domain.
6+
- SetIdentity and Logout are now handled device side
7+
- Remove deprecated code and some data minimization
8+
- Cross Platform ID
9+
- Credits and Referrals
10+
- Close requests
11+
- Facebook App Links and related code.
12+
- Pre-iOS 14 tracking status. This is always false on recent iOS versions.
13+
- Tune data upgrade check
14+
- v1 Branch Events, all events are now v2 Branch Events
15+
- Pre-iOS 10 locale support
16+
- Device carrier. This was used for fraud analysis, but is no longer available on new iOS versions.
17+
- Update minimum iOS version to 12.0
18+
119
2023-10-03 Version 5.9.2
220
- Update Android SDK to 5.7.1 to include gclid bug fix.
321

branchreactnativetestbed/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"dependencies": {
1313
"react": "18.2.0",
1414
"react-native": "0.71.4",
15-
"react-native-branch": "5.9.2-alpha.0"
15+
"react-native-branch": "6.0.0-alpha.2"
1616
},
1717
"devDependencies": {
1818
"@babel/core": "^7.20.0",

ios/RNBranch.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
#import <BranchSDK/Branch.h>
55
#import <BranchSDK/BranchQRCode.h>
6-
#import <BranchSDK/BNCCommerceEvent.h>
76

87
extern NSString * _Nonnull const RNBranchLinkOpenedNotification;
98
extern NSString * _Nonnull const RNBranchLinkOpenedNotificationErrorKey;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-branch",
3-
"version": "5.9.2",
3+
"version": "6.0.0",
44
"description": "Branch Metrics React Native SDK",
55
"main": "src/index.js",
66
"types": "src/index.d.ts",

react-native-branch.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ Pod::Spec.new do |s|
1717
}
1818
s.license = spec['license']
1919
s.homepage = spec['homepage']
20-
s.platform = :ios, "11.0"
20+
s.platform = :ios, "12.0"
2121
s.source = { spec['repository']['type'].to_sym => spec['repository']['url'].sub(/^[a-z]+\+/, '') }
2222
s.source_files = [ "ios/*.h", "ios/*.m"]
2323
s.compiler_flags = %[-DRNBRANCH_VERSION=@\\"#{s.version}\\"]
2424
s.header_dir = 'RNBranch' # also sets generated module name
25-
s.dependency 'BranchSDK', '2.2.1'
25+
s.dependency 'BranchSDK', '3.0.0'
2626
s.dependency 'React-Core' # to ensure the correct build order
2727

2828
# Swift/Objective-C compatibility

0 commit comments

Comments
 (0)