Skip to content

Commit 726aa52

Browse files
authored
Merge pull request #631 from Iterable/MOB-11193-publish-2-0-0-beta-1
[MOB-11193] publish-2-0-0-beta-1
2 parents 1e3b5ee + 2151c18 commit 726aa52

File tree

4 files changed

+25
-13
lines changed

4 files changed

+25
-13
lines changed

CHANGELOG.md

Lines changed: 20 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
1+
## 2.0.0-beta.1
2+
3+
- Added disclaimer to README to alert users that we do not yet support React
4+
Native New Architecture [`#630`](https://github.com/Iterable/react-native-sdk/pull/630)
5+
- Resolved circular dependencies which were making the SDK incompatible with Expo [`#629`](https://github.com/Iterable/react-native-sdk/pull/629)
6+
- Removed beta disclaimer link
7+
[`#625`](https://github.com/Iterable/react-native-sdk/pull/625)
8+
- Added extra troubleshooting steps to example app README
9+
- Added safe concurrent Ruby version to Gemfile
10+
11+
112
## 2.0.0-beta
213
**NOTE**: This is a beta release of the SDK. Please contact Iterable support if
314
you have any questions or issues.
4-
## Fixes
15+
### Fixes
516
- Updated React Native to
617
[7.3.1](https://reactnative.dev/docs/0.73/getting-started). See the version
718
[CHANGELOG](https://github.com/facebook/react-native/releases/tag/v0.73.1) for
@@ -26,32 +37,32 @@ you have any questions or issues.
2637
- Made lint rules stricter
2738

2839
## 1.3.21
29-
## Fixes
40+
### Fixes
3041
- Fixes an issue where react native components that use safe-area-context or react-navigation throw an error because the sdk's components try and use its own local node_modules instead of the consumer's project.
3142

3243
#### Added
3344
- Added a new configuration in IterableConfig, `IterablePushPlatform`, allowing developers to manually register a device as either sandbox or production. This provides greater control over push notification environments.
3445

3546
## 1.3.20
36-
## Fixes
47+
### Fixes
3748
- Fixes an issue where the iOS SDK incorrectly targeted the latest minor version instead of a fixed version, potentially causing breaking changes.
3849

3950
## 1.3.19
40-
## Updates
51+
### Updates
4152
- updates to RN version 0.68.0 to address various security vulnerabilities
4253

4354
## 1.3.18
44-
## Updates
55+
### Updates
4556
- adds user id login for sample apps
4657
- version mapping to newest native SDK versions
4758
- updates versions of various package dependencies
4859

4960
## 1.3.17
50-
## Fixed
61+
### Fixed
5162
- Fixes a specific Android issue where apps could crash due to EncryptedSharedPreference being null.
5263

5364
## 1.3.16
54-
## Updates
65+
### Updates
5566

5667
This release allows you to use projects hosted on Iterable's EU data center. If your project is hosted on Iterable's [European data center (EUDC)](https://support.iterable.com/hc/articles/17572750887444), configure the SDK to use Iterable's EU-based API endpoints:
5768

@@ -67,14 +78,14 @@ Iterable.initialize('<YOUR_API_KEY>', config);
6778
- Resolves an additional push notification problem on Android wherein the customActionHandler and urlHandler were not being invoked in specific scenarios, as documented in issue #470. (Credit to @tnortman-jabra for the report and the fix)
6879

6980
## 1.3.15
70-
## Updates
81+
### Updates
7182
- Resolves Android build issues caused in 1.3.14
7283
- Fixes a specific Android issue where custom action handlers were not invoked when tapping on push notification when the app is in background.
7384

7485
## 1.3.14
7586
> **Warning**
7687
> This version causes build failure on Android. Please use 1.3.15 which fixes this issue.
77-
## updates
88+
### Updates
7889
- updates `Iterable.setEmail` and `Iterable.setUserId` to take in null parameter type
7990
- fixes `Iterable.updateUser` on the Android side to merge nested objects in the user profile when `mergeNestedObjects` is set to true
8091

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ For quick reference, the following table lists the versions of the [Android SDK]
8686

8787
| RN SDK Version | Android SDK Version | iOS SDK Version |
8888
| --------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | --------------- |
89+
| [2.0.0-beta.1](https://www.npmjs.com/package/@iterable/react-native-sdk/v/2.0.0-beta.1) | [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)
8990
| [2.0.0-beta](https://www.npmjs.com/package/@iterable/react-native-sdk/v/2.0.0-beta) | [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)
9091
| [1.3.21](https://www.npmjs.com/package/@iterable/react-native-sdk/v/1.3.20) | [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)
9192
| [1.3.20](https://www.npmjs.com/package/@iterable/react-native-sdk/v/1.3.20) | [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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "@iterable/react-native-sdk",
3-
"version": "2.0.0-beta",
3+
"version": "2.0.0-beta.1",
44
"description": "Iterable SDK for React Native.",
55
"source": "./src/index.tsx",
66
"main": "./lib/module/index.js",
77
"types": "./lib/typescript/src/index.d.ts",
88
"exports": {
99
".": {
1010
"types": "./lib/typescript/src/index.d.ts",
11-
"default": "./lib/module/index.js"
12-
},
11+
"default": "./lib/module/index.js"
12+
},
1313
"./package.json": "./package.json"
1414
},
1515
"files": [

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.0.0-beta',
6+
version: '2.0.0-beta.1',
77
};

0 commit comments

Comments
 (0)