Skip to content

Prepare for Release 3.5.12 #904

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Apr 16, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,25 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [3.5.12]

### Added
- `EmbeddedSessionManager` methods are now public (previously library-scoped)

### Fixed
- `EmbeddedSessionManager` methods is now accessible which were library group restricted before.
- Added timeout for crypto operations to prevent ANRs.

### Disabling Keychain Encryption
The Iterable SDK provides an option to disable encryption for keychain storage. By default, encryption is enabled to securely store sensitive user data.
To disable keychain encryption, set the `keychainEncryption` parameter to `false` when initializing the SDK:

```java
IterableConfig config = new IterableConfig.Builder()
.setKeychainEncryption(false) // Disable encryption for keychain storage
.build();

IterableApi.initialize(context, apiKey, config);
```

## [3.5.11]

Expand Down
2 changes: 1 addition & 1 deletion iterableapi-ui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ dependencies {

ext {
libraryName = 'iterableapi-ui'
libraryVersion = '3.5.11'
libraryVersion = '3.5.12'
}

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 @@ -21,7 +21,7 @@ android {
minSdkVersion 21
targetSdkVersion 34

buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.11\""
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.5.12\""

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

ext {
libraryName = 'iterableapi'
libraryVersion = '3.5.11'
libraryVersion = '3.5.12'
}

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.11'
implementation 'com.iterable:iterableapi-ui:3.5.11'
implementation 'com.iterable:iterableapi:3.5.12'
implementation 'com.iterable:iterableapi-ui:3.5.12'
implementation 'com.squareup.okhttp3:mockwebserver:4.2.2'

testImplementation 'junit:junit:4.12'
Expand Down
Loading