Skip to content

Commit cb26f25

Browse files
authored
Merge pull request #503 from Iterable/MOB-6508-Prepare-for-1.3.15
Prepare for 1.3.15
2 parents 03066da + cf85e71 commit cb26f25

File tree

6 files changed

+104
-92
lines changed

6 files changed

+104
-92
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1+
## 1.3.15
2+
## Updates
3+
- Resolves Android build issues caused in 1.3.14
4+
- Fixes a specific Android issue where custom action handlers were not invoked when tapping on push notification when the app is in background.
5+
16
## 1.3.14
7+
> **Warning**
8+
> This version causes build failure on Android. Please use 1.3.15 which fixes this issue.
29
## updates
310
- updates `Iterable.setEmail` and `Iterable.setUserId` to take in null parameter type
411
- fixes `Iterable.updateUser` on the Android side to merge nested objects in the user profile when `mergeNestedObjects` is set to true

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ For quick reference, the following table lists the versions of the [Android SDK]
5858

5959
| RN SDK Version | Android SDK Version | iOS SDK Version |
6060
| --------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | --------------- |
61-
| [1.3.14](https://www.npmjs.com/package/@iterable/react-native-sdk/v/1.3.13) | [3.4.13](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.11) | [6.4.14](https://github.com/Iterable/swift-sdk/releases/tag/6.4.12)
61+
| [1.3.15](https://www.npmjs.com/package/@iterable/react-native-sdk/v/1.3.15) | [3.4.14](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.14) | [6.4.14](https://github.com/Iterable/swift-sdk/releases/tag/6.4.14)
62+
| [1.3.14](https://www.npmjs.com/package/@iterable/react-native-sdk/v/1.3.14) | [3.4.13](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.13) | [6.4.14](https://github.com/Iterable/swift-sdk/releases/tag/6.4.14)
6263
| [1.3.13](https://www.npmjs.com/package/@iterable/react-native-sdk/v/1.3.13) | [3.4.11](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.11) | [6.4.12](https://github.com/Iterable/swift-sdk/releases/tag/6.4.12)
6364
| [1.3.12](https://www.npmjs.com/package/@iterable/react-native-sdk/v/1.3.12) | [3.4.10](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.10) | [6.4.12](https://github.com/Iterable/swift-sdk/releases/tag/6.4.12)
6465
| [1.3.11](https://www.npmjs.com/package/@iterable/react-native-sdk/v/1.3.11) | [3.4.10](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.10) | [6.4.11](https://github.com/Iterable/swift-sdk/releases/tag/6.4.11)

android/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ def getModuleVersion() {
2626

2727
dependencies {
2828
implementation 'com.facebook.react:react-native:+'
29-
api 'com.iterable:iterableapi:3.4.13'
29+
api 'com.iterable:iterableapi:3.4.14'
3030
// api project(':iterableapi') // links to local android SDK repo rather than by release
3131
}

integration-testing/ios/example/ReactE2E.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ class ReactE2E: RCTEventEmitter {
8585
let campaignId = params["campaignId"] as! Int
8686
_ = IterableAPISupport.sendInApp(apiKey: apiKey, to: email, withCampaignId: campaignId)
8787
DispatchQueue.main.asyncAfter(deadline: .now() + 2.0) {
88-
_ = IterableAPI.internalImplementation?.inAppManager.scheduleSync()
88+
_ = IterableAPI.implementation?.inAppManager.scheduleSync()
8989
}
9090
break
9191
default:

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@iterable/react-native-sdk",
3-
"version": "1.3.14",
3+
"version": "1.3.15",
44
"description": "Iterable SDK for React Native.",
55
"main": "./js/index.js",
66
"types": "./js/index.d.ts",

0 commit comments

Comments
 (0)