Skip to content

Releases: Iterable/react-native-sdk

1.3.19

13 Jun 18:11
a19643d
Compare
Choose a tag to compare

Updates

  • updates to RN version 0.68.0 to address various security vulnerabilities

1.3.18

22 May 19:34
d99a30b
Compare
Choose a tag to compare

Updates

  • Adds user id login for sample apps
  • Version mapping to newest native SDK versions
  • Updates versions of various package dependencies

1.3.17

10 Oct 23:19
a5b6e7f
Compare
Choose a tag to compare

Fixes

  • Points to Android SDK 3.4.16 which points to new crypto library. This should resolve crashes occurring due failure in EncryptedSharedPreferences object creation.

1.3.16

31 Aug 22:54
b63d1af
Compare
Choose a tag to compare

Updates

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), configure the SDK to use Iterable's EU-based API endpoints:

const config = new IterableConfig();
// ... other configuration options ...
config.dataRegion = IterableDataRegion.EU;
Iterable.initialize('<YOUR_API_KEY>', config);

Fixed

  • Addressed push notification deep linking issues on Android where the app would restart instead of resuming the last activity upon being backgrounded.
  • 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)

1.3.15

12 Jul 23:41
cb26f25
Compare
Choose a tag to compare

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

10 Jul 21:07
Compare
Choose a tag to compare

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

1.3.13

11 Apr 20:13
d95c6d3
Compare
Choose a tag to compare

This release points to new Android release 3.4.11 bringing new features and bug fixes for Android platform

  • Custom push notification sounds
  • Updated security library
  • Fixes for inapp message

1.3.12

29 Mar 19:12
d9c3682
Compare
Choose a tag to compare

Fixed

  • This release fixes an integration issue with iOS SDK 6.4.12 regarding the IterableAuthDelegate

1.3.11

02 Mar 00:32
839430d
Compare
Choose a tag to compare

This release points to the iOS SDK version 6.4.11, and adjusts the customPayload field data type on IterableInAppMessage to serialize properly.

1.3.10

10 Jan 17:43
b73c370
Compare
Choose a tag to compare

This release points to the most updated version of the iOS SDK (6.4.10) and also includes several quality improvements such as

  • providing descriptive comments to the Iterable.ts and IterableInAppManager.ts file
  • adding instructions for implementation to the sample apps
  • corrections to several unit tests
  • addition of several unit tests
  • updating eslint and enforcement of a consistent code style
  • updating imports to prevent circular dependency issues
  • fixing build.gradle to inherit config values from the parent project