Skip to content

Commit 5db530b

Browse files
authored
Merge branch 'master' into fix/SDK-478-bridge-resolve-immediately
2 parents 13fca39 + de793ec commit 5db530b

4 files changed

Lines changed: 20 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,21 @@
66
- Previously the promise could wait on the first in-app messages fetch (and any associated auth retry budget) before resolving, leading to multi-second to multi-minute hangs under certain configurations.
77
- The native iOS SDK is fully usable the moment `Iterable.initialize` is called; nothing about JS-side correctness requires waiting on the promise.
88

9-
## 2.2.0
9+
## 2.2.2
10+
### Updates
11+
- Added `baseline-browser-mapping`
12+
- Updated React Native library compatibility to 0.81
13+
14+
### Fixes
15+
- Added temporary fix for Xcode 26.4 compatibility
16+
([a7768d4](https://github.com/Iterable/react-native-sdk/commit/a7768d4)) in
17+
example app
1018

19+
## 2.2.1
20+
### Updates
21+
- Updated React Native library compatibility to 0.79.7
22+
23+
## 2.2.0
1124
### Updates
1225
- Updated Android SDK version to [3.6.2](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.6.2)
1326
- Updated iOS SDK version to [6.6.3](https://github.com/Iterable/swift-sdk/releases/tag/6.6.3)
@@ -25,7 +38,7 @@
2538
### Fixes
2639
- Created a standalone `IterableLogger` to avoid circular dependencies
2740
- [SDK-151] Fixed "cannot read property authtoken of undefined" error
28-
- Fixed Android `retryInterval` not being updated on re-initialization.
41+
- Fixed Android `retryInterval` not being updated on re-initialization
2942

3043
## 2.1.0
3144
### 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)

package.json

Lines changed: 2 additions & 1 deletion
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__",

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
};

0 commit comments

Comments
 (0)