Skip to content

Commit 1278edf

Browse files
authored
Merge pull request #932 from Iterable/Prepare-for-3.6.0-beta3
[MOB-11814] - Prepare for Beta 3.6.0-beta3
2 parents 4e69dd1 + 0c82456 commit 1278edf

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased]
66

7+
## [3.6.0-beta3]
8+
9+
### Added
10+
- Added consent logging functionality for unknown user activation feature
11+
12+
### Changed
13+
- Enhanced unknown user activation with improved criteria fetching and user ID generation logic
14+
15+
### Fixed
16+
- Fixed unknown user activation to ensure criteria is fetched on foregrounding the app by default
17+
- Fixed unknown user ID generation to only occur once when multiple track calls are made
18+
- Fixed consent timestamp handling when consent is revoked
19+
720
## [3.5.14]
821
### Fixed
922
- Fixed auth token refresh when app is in background, ensuring reliable token refresh in all app states.

iterableapi-ui/build.gradle

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

6262
ext {
6363
libraryName = 'iterableapi-ui'
64-
libraryVersion = '3.6.0'
64+
libraryVersion = '3.6.0-beta3'
6565
}
6666

6767
if (hasProperty("mavenPublishEnabled")) {

iterableapi/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ android {
2121
minSdkVersion 21
2222
targetSdkVersion 34
2323

24-
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.6.0\""
24+
buildConfigField "String", "ITERABLE_SDK_VERSION", "\"3.6.0-beta3\""
2525

2626
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2727
}
@@ -89,7 +89,7 @@ dependencies {
8989

9090
ext {
9191
libraryName = 'iterableapi'
92-
libraryVersion = '3.6.0'
92+
libraryVersion = '3.6.0-beta3'
9393
}
9494

9595
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.6.0'
37-
implementation 'com.iterable:iterableapi-ui:3.6.0'
36+
implementation 'com.iterable:iterableapi:3.6.0-beta3'
37+
implementation 'com.iterable:iterableapi-ui:3.6.0-beta3'
3838
implementation 'com.squareup.okhttp3:mockwebserver:4.2.2'
3939

4040
testImplementation 'junit:junit:4.12'

0 commit comments

Comments
 (0)