Skip to content

Commit 136d5f7

Browse files
authored
Merge pull request #756 from Iterable/MOB-8921-Prepare-for-3.5.3
[MOB-8921] - Prepare for 3.5.3
2 parents 7e99a06 + 5d847dd commit 136d5f7

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1313
#### Changed
1414
- nothing yet
1515

16+
## [3.5.3]
17+
#### Fixed
18+
- Fixed an [issue](https://github.com/Iterable/react-native-sdk/issues/547) where the SDK would crash if the `IterableInAppMessage` object was null when consuming an in-app message.
19+
20+
#### Changed
21+
- SDK now provides more insight into JWT refresh failures, so you can take appropriate action in your application code. With this update, when a JWT refresh fails (for any of various reasons), the SDK calls `onAuthFailure` on the `IterableAuthHandler` instance you can provide to the SDK at initialization.
22+
For more information, see the [documentation](https://support.iterable.com/hc/articles/360035019712) for Iterable's Android SDK.
23+
- The IterableAuthHandler's `onTokenRegistrationFailed(Throwable object)` has been replaced with `onAuthFailure(Throwable object)` which will be called when JWT token refresh fails.
24+
1625
## [3.5.2]
1726
#### Added
1827
- Introducing a new method `setAuthRetryPolicy` in `IterableConfig` to set the retry policy for JWT token refresh.

iterableapi-ui/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ dependencies {
5151

5252
ext {
5353
libraryName = 'iterableapi-ui'
54-
libraryVersion = '3.5.2'
54+
libraryVersion = '3.5.3'
5555
}
5656

5757
if (hasProperty("mavenPublishEnabled")) {

iterableapi/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ android {
1919
minSdkVersion 16
2020
targetSdkVersion 27
2121

22-
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.2\""
22+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.3\""
2323

2424
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2525
}
@@ -85,7 +85,7 @@ dependencies {
8585

8686
ext {
8787
libraryName = 'iterableapi'
88-
libraryVersion = '3.5.2'
88+
libraryVersion = '3.5.3'
8989
}
9090

9191
if (hasProperty("mavenPublishEnabled")) {

sample-apps/inbox-customization/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ dependencies {
3333
implementation 'androidx.navigation:navigation-ui-ktx:2.1.0'
3434
implementation 'com.google.android.material:material:1.1.0'
3535

36-
implementation 'com.iterable:iterableapi:3.5.2'
37-
implementation 'com.iterable:iterableapi-ui:3.5.2'
36+
implementation 'com.iterable:iterableapi:3.5.3'
37+
implementation 'com.iterable:iterableapi-ui:3.5.3'
3838
implementation 'com.squareup.okhttp3:mockwebserver:4.2.2'
3939

4040
testImplementation 'junit:junit:4.12'

0 commit comments

Comments
 (0)