diff --git a/CHANGELOG.md b/CHANGELOG.md index e007d76..a39b639 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Change Log +## 1.11.0 +### Changes +- Lowered the amount of network usage. +- Allowed for more than just `Map` for user attributes. + +### Added +- Added the question block to get detailed feedback, or ask any question you wish. +- Added an optional privacy mode to disable most events. +- Pause function to temporarily stop Unflow from presenting screens. + +### Fixed +- Flows will no longer emit repeated values + +## 1.10.0 + +### Changes +- References to `subscriptionId` have been renamed to `spaceKey` to avoid confusion. + +### Added +- You can now fetch spaces from the SDK. See `UnflowSdk.spaces()` for more. +- There's a new `Spaces` composable that shows a stack of your spaces. +- Another `Spaces` composable has been added that simply provides you with a list of spaces. +- Tracking an event with a date inside the map will now successfully send the date to the server in miliseconds since 1970. + +### Fixed +- Ensured that compose resolves to 1.1.1. + ## 1.9.3 ### Changes - [Unflow] Reverted the following dependencies to latest stable versions to improve product stability and compatibility. diff --git a/samples/unflow-compose/app/build.gradle.kts b/samples/unflow-compose/app/build.gradle.kts index d01a35f..945cf97 100644 --- a/samples/unflow-compose/app/build.gradle.kts +++ b/samples/unflow-compose/app/build.gradle.kts @@ -49,7 +49,7 @@ android { } dependencies { - implementation("com.unflow:unflow-ui:1.10.0") + implementation("com.unflow:unflow-ui:1.11.0") implementation("androidx.compose.ui:ui:${rootProject.extra["compose_version"]}") implementation("androidx.compose.material:material:${rootProject.extra["compose_version"]}") diff --git a/samples/unflow-java/app/build.gradle b/samples/unflow-java/app/build.gradle index 0ff150d..f59b550 100644 --- a/samples/unflow-java/app/build.gradle +++ b/samples/unflow-java/app/build.gradle @@ -26,7 +26,7 @@ android { } dependencies { - implementation 'com.unflow:unflow-ui:1.10.0' + implementation 'com.unflow:unflow-ui:1.11.0' implementation 'androidx.appcompat:appcompat:1.4.1' implementation 'com.google.android.material:material:1.5.0' diff --git a/samples/unflow-sample/app/build.gradle b/samples/unflow-sample/app/build.gradle index de13f50..17572e2 100644 --- a/samples/unflow-sample/app/build.gradle +++ b/samples/unflow-sample/app/build.gradle @@ -32,7 +32,7 @@ android { } dependencies { - implementation 'com.unflow:unflow-ui:1.10.0' + implementation 'com.unflow:unflow-ui:1.11.0' implementation 'androidx.core:core-ktx:1.7.0' implementation 'androidx.appcompat:appcompat:1.4.1'