Skip to content

Commit

Permalink
[FSSDK-8919] chore: prepare for release 4.0.0-beta (#455)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaeopt authored May 5, 2023
1 parent 8aeedd3 commit 7b74992
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 4 deletions.
47 changes: 47 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,52 @@
# Optimizely Android X SDK Changelog

## 4.0.0-beta
May 4th, 2023

### New Features

The 4.0.0-beta release introduces a new primary feature, [Advanced Audience Targeting]( https://docs.developers.optimizely.com/feature-experimentation/docs/optimizely-data-platform-advanced-audience-targeting) enabled through integration with [Optimizely Data Platform (ODP)](https://docs.developers.optimizely.com/optimizely-data-platform/docs)
([#431](https://github.com/optimizely/android-sdk/pull/431),
[#440](https://github.com/optimizely/android-sdk/pull/440),
[#444](https://github.com/optimizely/android-sdk/pull/444),
[#445](https://github.com/optimizely/android-sdk/pull/445),
[#448](https://github.com/optimizely/android-sdk/pull/448)).

You can use ODP, a high-performance [Customer Data Platform (CDP)]( https://www.optimizely.com/optimization-glossary/customer-data-platform/), to easily create complex real-time segments (RTS) using first-party and 50+ third-party data sources out of the box. You can create custom schemas that support the user attributes important for your business, and stitch together user behavior done on different devices to better understand and target your customers for personalized user experiences. ODP can be used as a single source of truth for these segments in any Optimizely or 3rd party tool.

With ODP accounts integrated into Optimizely projects, you can build audiences using segments pre-defined in ODP. The SDK will fetch the segments for given users and make decisions using the segments. For access to ODP audience targeting in your Feature Experimentation account, please contact your Customer Success Manager.

This version includes the following changes:

* New API added to `OptimizelyUserContext`:
- `fetchQualifiedSegments()`: this API will retrieve user segments from the ODP server. The fetched segments will be used for audience evaluation. The fetched data will be stored in the local cache to avoid repeated network delays.
- When an `OptimizelyUserContext` is created, the SDK will automatically send an identify request to the ODP server to facilitate observing user activities.

* New APIs added to `OptimizelyClient`:
- `sendODPEvent()`: customers can build/send arbitrary ODP events that will bind user identifiers and data to user profiles in ODP.
- `createUserContext()` with anonymous user IDs: user-contexts can be created without a userId. The SDK will create and use a persistent `VUID` specific to a device when userId is not provided.

For details, refer to our documentation pages:

* [Advanced Audience Targeting](https://docs.developers.optimizely.com/feature-experimentation/docs/optimizely-data-platform-advanced-audience-targeting)

* [Client SDK Support](https://docs.developers.optimizely.com/feature-experimentation/v1.0/docs/advanced-audience-targeting-for-client-side-sdks)

* [Initialize Android SDK](https://docs.developers.optimizely.com/feature-experimentation/docs/initialize-sdk-android)

* [OptimizelyUserContext Android SDK](https://docs.developers.optimizely.com/feature-experimentation/docs/optimizelyusercontext-android)

* [Advanced Audience Targeting segment qualification methods](https://docs.developers.optimizely.com/feature-experimentation/docs/advanced-audience-targeting-segment-qualification-methods-android)

* [Send Optimizely Data Platform data using Advanced Audience Targeting](https://docs.developers.optimizely.com/feature-experimentation/docs/send-odp-data-using-advanced-audience-targeting-android)

### Breaking Changes

* `ODPManager` in the SDK is enabled by default. Unless an ODP account is integrated into the Optimizely projects, most `ODPManager` functions will be ignored. If needed, `ODPManager` can be disabled when `OptimizelyClient` is instantiated.
* minimum Android API level requirements upgraded to 21 or higher.



## 3.13.4
March 16th, 2023

Expand Down
7 changes: 3 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ allprojects {
// SNAPSHOT support
maven {url "https://oss.sonatype.org/content/repositories/snapshots/" }
}

configurations.all {
// no cache for SNAPSHOT dependency
resolutionStrategy.cacheChangingModulesFor 0, 'seconds'
Expand All @@ -68,10 +68,9 @@ allprojects {
ext {
compile_sdk_version = 33
build_tools_version = "30.0.3"
min_sdk_version = 14
min_sdk_version = 21
target_sdk_version = 33
//java_core_ver = "3.10.2"
java_core_ver = "BB-SNAPSHOT"
java_core_ver = "4.0.0-beta"
android_logger_ver = "1.3.6"
jacksonversion= "2.11.2"
annotations_ver = "1.2.0"
Expand Down

0 comments on commit 7b74992

Please sign in to comment.