Skip to content

Commit

Permalink
Merge pull request #503 from Iterable/MOB-6508-Prepare-for-1.3.15
Browse files Browse the repository at this point in the history
Prepare for 1.3.15
  • Loading branch information
Ayyanchira authored Jul 12, 2023
2 parents 03066da + cf85e71 commit cb26f25
Show file tree
Hide file tree
Showing 6 changed files with 104 additions and 92 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
## 1.3.15
## Updates
- Resolves Android build issues caused in 1.3.14
- Fixes a specific Android issue where custom action handlers were not invoked when tapping on push notification when the app is in background.

## 1.3.14
> **Warning**
> This version causes build failure on Android. Please use 1.3.15 which fixes this issue.
## updates
- updates `Iterable.setEmail` and `Iterable.setUserId` to take in null parameter type
- fixes `Iterable.updateUser` on the Android side to merge nested objects in the user profile when `mergeNestedObjects` is set to true
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ For quick reference, the following table lists the versions of the [Android SDK]

| RN SDK Version | Android SDK Version | iOS SDK Version |
| --------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | --------------- |
| [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)
| [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)
| [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)
| [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)
| [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)
| [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)
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ def getModuleVersion() {

dependencies {
implementation 'com.facebook.react:react-native:+'
api 'com.iterable:iterableapi:3.4.13'
api 'com.iterable:iterableapi:3.4.14'
// api project(':iterableapi') // links to local android SDK repo rather than by release
}
2 changes: 1 addition & 1 deletion integration-testing/ios/example/ReactE2E.swift
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class ReactE2E: RCTEventEmitter {
let campaignId = params["campaignId"] as! Int
_ = IterableAPISupport.sendInApp(apiKey: apiKey, to: email, withCampaignId: campaignId)
DispatchQueue.main.asyncAfter(deadline: .now() + 2.0) {
_ = IterableAPI.internalImplementation?.inAppManager.scheduleSync()
_ = IterableAPI.implementation?.inAppManager.scheduleSync()
}
break
default:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@iterable/react-native-sdk",
"version": "1.3.14",
"version": "1.3.15",
"description": "Iterable SDK for React Native.",
"main": "./js/index.js",
"types": "./js/index.d.ts",
Expand Down
Loading

0 comments on commit cb26f25

Please sign in to comment.