File tree Expand file tree Collapse file tree 5 files changed +22
-5
lines changed Expand file tree Collapse file tree 5 files changed +22
-5
lines changed Original file line number Diff line number Diff line change 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+
1192023-10-03 Version 5.9.2
220 - Update Android SDK to 5.7.1 to include gclid bug fix.
321
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change 33
44#import < BranchSDK/Branch.h>
55#import < BranchSDK/BranchQRCode.h>
6- #import < BranchSDK/BNCCommerceEvent.h>
76
87extern NSString * _Nonnull const RNBranchLinkOpenedNotification;
98extern NSString * _Nonnull const RNBranchLinkOpenedNotificationErrorKey;
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments