Skip to content

Commit b63d1af

Browse files
authored
Merge pull request #518 from Iterable/evan/MOB-6601-prepare-1.3.16
[MOB-6601] prepares for 1.3.16 release
2 parents 10f6812 + 730dc11 commit b63d1af

File tree

6 files changed

+559
-345
lines changed

6 files changed

+559
-345
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 1.3.16
2+
## Updates
3+
4+
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:
5+
6+
```javascript
7+
const config = new IterableConfig();
8+
// ... other configuration options ...
9+
config.dataRegion = IterableDataRegion.EU;
10+
Iterable.initialize('<YOUR_API_KEY>', config);
11+
```
12+
13+
## Fixed
14+
- Addressed push notification deep linking issues on Android where the app would restart instead of resuming the last activity upon being backgrounded.
15+
- 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)
16+
117
## 1.3.15
218
## Updates
319
- Resolves Android build issues caused in 1.3.14

Iterable-React-Native-SDK.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ Pod::Spec.new do |s|
2424

2525
s.swift_version = '5.3'
2626

27-
s.dependency 'Iterable-iOS-SDK', '~> 6.4.14'
27+
s.dependency 'Iterable-iOS-SDK', '~> 6.4.15'
2828
s.dependency 'React-Core'
2929
end

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ 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.16](https://www.npmjs.com/package/@iterable/react-native-sdk/v/1.3.16) | [3.4.15](https://github.com/Iterable/iterable-android-sdk/releases/tag/3.4.15) | [6.4.15](https://github.com/Iterable/swift-sdk/releases/tag/6.4.15)
6162
| [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)
6263
| [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)
6364
| [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)

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.14'
29+
api 'com.iterable:iterableapi:3.4.15'
3030
// api project(':iterableapi') // links to local android SDK repo rather than by release
3131
}

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.15",
3+
"version": "1.3.16",
44
"description": "Iterable SDK for React Native.",
55
"main": "./js/index.js",
66
"types": "./js/index.d.ts",

0 commit comments

Comments
 (0)