Skip to content

Commit

Permalink
[MOB-8921] - Prepare for 3.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
“Akshay committed Jul 8, 2024
1 parent 7e99a06 commit 5d847dd
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
#### Changed
- nothing yet

## [3.5.3]
#### Fixed
- 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.

#### Changed
- 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.
For more information, see the [documentation](https://support.iterable.com/hc/articles/360035019712) for Iterable's Android SDK.
- The IterableAuthHandler's `onTokenRegistrationFailed(Throwable object)` has been replaced with `onAuthFailure(Throwable object)` which will be called when JWT token refresh fails.

## [3.5.2]
#### Added
- Introducing a new method `setAuthRetryPolicy` in `IterableConfig` to set the retry policy for JWT token refresh.
Expand Down
2 changes: 1 addition & 1 deletion iterableapi-ui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ dependencies {

ext {
libraryName = 'iterableapi-ui'
libraryVersion = '3.5.2'
libraryVersion = '3.5.3'
}

if (hasProperty("mavenPublishEnabled")) {
Expand Down
4 changes: 2 additions & 2 deletions iterableapi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ android {
minSdkVersion 16
targetSdkVersion 27

buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.2\""
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.3\""

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down Expand Up @@ -85,7 +85,7 @@ dependencies {

ext {
libraryName = 'iterableapi'
libraryVersion = '3.5.2'
libraryVersion = '3.5.3'
}

if (hasProperty("mavenPublishEnabled")) {
Expand Down
4 changes: 2 additions & 2 deletions sample-apps/inbox-customization/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ dependencies {
implementation 'androidx.navigation:navigation-ui-ktx:2.1.0'
implementation 'com.google.android.material:material:1.1.0'

implementation 'com.iterable:iterableapi:3.5.2'
implementation 'com.iterable:iterableapi-ui:3.5.2'
implementation 'com.iterable:iterableapi:3.5.3'
implementation 'com.iterable:iterableapi-ui:3.5.3'
implementation 'com.squareup.okhttp3:mockwebserver:4.2.2'

testImplementation 'junit:junit:4.12'
Expand Down

0 comments on commit 5d847dd

Please sign in to comment.