Skip to content

Commit f5fd111

Browse files
committed
Merge branch 'upgrade-rn-82' into upgrade/SDK-477-0-82
2 parents 356ff7e + de793ec commit f5fd111

8 files changed

Lines changed: 34 additions & 14 deletions

File tree

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v20.19.0
1+
v20.19.4

CHANGELOG.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
1-
## 2.2.0
1+
## 2.2.2
2+
### Updates
3+
- Added `baseline-browser-mapping`
4+
- Updated React Native library compatibility to 0.81
5+
6+
### Fixes
7+
- Added temporary fix for Xcode 26.4 compatibility
8+
([a7768d4](https://github.com/Iterable/react-native-sdk/commit/a7768d4)) in
9+
example app
210

11+
## 2.2.1
12+
### Updates
13+
- Updated React Native library compatibility to 0.79.7
14+
15+
## 2.2.0
316
### Updates
417
- Updated Android SDK version to [3.6.2](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.6.2)
518
- Updated iOS SDK version to [6.6.3](https://github.com/Iterable/swift-sdk/releases/tag/6.6.3)
@@ -17,7 +30,7 @@
1730
### Fixes
1831
- Created a standalone `IterableLogger` to avoid circular dependencies
1932
- [SDK-151] Fixed "cannot read property authtoken of undefined" error
20-
- Fixed Android `retryInterval` not being updated on re-initialization.
33+
- Fixed Android `retryInterval` not being updated on re-initialization
2134

2235
## 2.1.0
2336
### Updates

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,8 @@ For quick reference, the following table lists the versions of the [Android SDK]
124124
125125
| RN SDK Version | Android SDK Version | iOS SDK Version |
126126
| --------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | --------------- |
127+
| [2.2.2](https://www.npmjs.com/package/@iterable/react-native-sdk/v/2.2.2) | [3.6.2](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.6.2) | [6.6.3](https://github.com/Iterable/swift-sdk/releases/tag/6.6.3)
128+
| [2.2.1](https://www.npmjs.com/package/@iterable/react-native-sdk/v/2.2.1) | [3.6.2](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.6.2) | [6.6.3](https://github.com/Iterable/swift-sdk/releases/tag/6.6.3)
127129
| [2.2.0](https://www.npmjs.com/package/@iterable/react-native-sdk/v/2.2.0) | [3.6.2](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.6.2) | [6.6.3](https://github.com/Iterable/swift-sdk/releases/tag/6.6.3)
128130
| [2.1.0](https://www.npmjs.com/package/@iterable/react-native-sdk/v/2.1.0) | [3.5.2](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.5.2) | [6.5.4](https://github.com/Iterable/swift-sdk/releases/tag/6.5.4)
129131
| [2.0.4](https://www.npmjs.com/package/@iterable/react-native-sdk/v/2.0.4) | [3.5.2](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.5.2) | [6.5.4](https://github.com/Iterable/swift-sdk/releases/tag/6.5.4)

example/ios/ReactNativeSdkExample/Info.plist

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@
3737
<key>NSAllowsLocalNetworking</key>
3838
<true/>
3939
</dict>
40-
<key>NSLocationWhenInUseUsageDescription</key>
41-
<string></string>
4240
<key>RCTNewArchEnabled</key>
4341
<true/>
4442
<key>UILaunchStoryboardName</key>
Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
33
<plist version="1.0">
4-
<dict>
5-
<key>com.apple.developer.web-browser</key>
6-
<true/>
7-
</dict>
4+
<dict/>
85
</plist>

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@iterable/react-native-sdk",
3-
"version": "2.2.1",
3+
"version": "2.2.2",
44
"description": "Iterable SDK for React Native.",
55
"source": "./src/index.tsx",
66
"main": "./lib/module/index.js",
@@ -27,6 +27,7 @@
2727
"!android/gradlew",
2828
"!android/gradlew.bat",
2929
"!android/local.properties",
30+
"!**/*.test.{js,ts,tsx}",
3031
"!**/__tests__",
3132
"!**/__fixtures__",
3233
"!**/__mocks__",
@@ -82,7 +83,7 @@
8283
"@types/react": "^19.1.1",
8384
"@typescript-eslint/eslint-plugin": "^8.13.0",
8485
"@typescript-eslint/parser": "^8.13.0",
85-
"baseline-browser-mapping": "latest",
86+
"baseline-browser-mapping": "^2.10.29",
8687
"commitlint": "^19.6.1",
8788
"del-cli": "^5.1.0",
8889
"eslint": "^8.51.0",

src/itblBuildInfo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
* It contains the version of the package
44
*/
55
export const buildInfo = {
6-
version: '2.2.1',
6+
version: '2.2.2',
77
};

yarn.lock

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2088,7 +2088,7 @@ __metadata:
20882088
"@types/react": ^19.1.1
20892089
"@typescript-eslint/eslint-plugin": ^8.13.0
20902090
"@typescript-eslint/parser": ^8.13.0
2091-
baseline-browser-mapping: latest
2091+
baseline-browser-mapping: ^2.10.29
20922092
commitlint: ^19.6.1
20932093
del-cli: ^5.1.0
20942094
eslint: ^8.51.0
@@ -4571,7 +4571,16 @@ __metadata:
45714571
languageName: node
45724572
linkType: hard
45734573

4574-
"baseline-browser-mapping@npm:^2.8.9, baseline-browser-mapping@npm:latest":
4574+
"baseline-browser-mapping@npm:^2.10.29":
4575+
version: 2.10.29
4576+
resolution: "baseline-browser-mapping@npm:2.10.29"
4577+
bin:
4578+
baseline-browser-mapping: dist/cli.cjs
4579+
checksum: 632f19359cda715beed0af93118aa6463506f897c680c5092523c7105dd9f5e08a95552078f6bab0c261a16b1221842a8f9d5b0da02921d3329a5894d2a38688
4580+
languageName: node
4581+
linkType: hard
4582+
4583+
"baseline-browser-mapping@npm:^2.8.9":
45754584
version: 2.10.27
45764585
resolution: "baseline-browser-mapping@npm:2.10.27"
45774586
bin:

0 commit comments

Comments
 (0)