Releases: optimizely/java-sdk
Releases · optimizely/java-sdk
Release 3.0.0
3.0.0
February 13, 2019
The 3.0 release improves event tracking and supports additional audience targeting functionality.
New Features:
- Event tracking:
- The
trackmethod now dispatches its conversion event unconditionally, without first determining whether the user is targeted by a known experiment that uses the event. This may increase outbound network traffic. - In Optimizely results, conversion events sent by 3.0 SDKs don't explicitly name the experiments and variations that are currently targeted to the user. Instead, conversions are automatically attributed to variations that the user has previously seen, as long as those variations were served via 3.0 SDKs or by other clients capable of automatic attribution, and as long as our backend actually received the impression events for those variations.
- Altogether, this allows you to track conversion events and attribute them to variations even when you don't know all of a user's attribute values, and even if the user's attribute values or the experiment's configuration have changed such that the user is no longer affected by the experiment. As a result, you may observe an increase in the conversion rate for previously-instrumented events. If that is undesirable, you can reset the results of previously-running experiments after upgrading to the 3.0 SDK.
- This will also allow you to attribute events to variations from other Optimizely projects in your account, even though those experiments don't appear in the same datafile.
- Note that for results segmentation in Optimizely results, the user attribute values from one event are automatically applied to all other events in the same session, as long as the events in question were actually received by our backend. This behavior was already in place and is not affected by the 3.0 release.
- The
- Support for all types of attribute values, not just strings:
- All values are passed through to notification listeners.
- Strings, booleans, and valid numbers are passed to the event dispatcher and can be used for Optimizely results segmentation. A valid number is a finite float, double, integer, or long in the inclusive range [-2⁵³, 2⁵³].
- Strings, booleans, and valid numbers are relevant for audience conditions.
- Support for additional matchers in audience conditions:
- An
existsmatcher that passes if the user has a non-null value for the targeted user attribute and fails otherwise. - A
substringmatcher that resolves if the user has a string value for the targeted attribute. gt(greater than) andlt(less than) matchers that resolve if the user has a valid number value for the targeted attribute. A valid number is a finite float, double, integer, or long in the inclusive range [-2⁵³, 2⁵³].- The original (
exact) matcher can now be used to target booleans and valid numbers, not just strings.
- An
- Support for A/B tests, feature tests, and feature rollouts whose audiences are combined using
"and"and"not"operators, not just the"or"operator. - Datafile-version compatibility check: The SDK will remain uninitialized (i.e., will gracefully fail to activate experiments and features) if given a datafile version greater than 4.
- Updated Pull Request template and commit message guidelines.
- When given an invalid datafile, the Optimizely client object now instantiates into a no-op state instead of throwing a
ConfigParseException. This matches the behavior of the other Optimizely SDKs. - Support for graceful shutdown in the default, async event dispatcher.
Breaking Changes:
- Java 7 is no longer supported.
- Conversion events sent by 3.0 SDKs don't explicitly name the experiments and variations that are currently targeted to the user, so these events are unattributed in raw events data export. You must use the new results export to determine the variations to which events have been attributed.
- Previously, notification listeners were only given string-valued user attributes because only strings could be passed into various method calls. That is no longer the case. The
ActivateNotificationListenerandTrackNotificationListenerinterfaces now receive user attributes asMap<String, ?>instead ofMap<String, String>.
Bug Fixes:
- Experiments and features can no longer activate when a negatively targeted attribute has a missing, null, or malformed value.
- Audience conditions (except for the new
existsmatcher) no longer resolve tofalsewhen they fail to find an legitimate value for the targeted user attribute. The result remainsnull(unknown). Therefore, an audience that negates such a condition (using the"not"operator) can no longer resolve totrueunless there is an unrelated branch in the condition tree that itself resolves totrue.
- Audience conditions (except for the new
- Support for empty user IDs. (#220)
- Sourceclear flagged jackson-databind 2.9.4 fixed in 2.9.8 (#260)
- Fix the quick-start app to create a unique user for every impression/conversion in a run. (#257)
Release 2.1.4
Release 2.1.4
December 6th, 2018
Bug Fixes
- fix/wrap in try catch for getting build version in static init which might crash (#241)
3.0.0-RC2
3.0.0-RC2
November 20th, 2018
This is the release candidate for the 3.0 SDK, which includes a number of improvements to audience targeting along with a few bug fixes.
New Features
- Support for number-valued and boolean-valued attributes. (#213)
- Support for audiences with new match conditions for attribute values, including “substring” and “exists” matches for strings; “greater than”, “less than”, exact, and “exists” matches for numbers; and “exact”, and “exists” matches for booleans.
- Built-in datafile version compatibility checks so that SDKs will not initialize with a newer datafile it is not compatible with. (#209)
- Audience combinations within an experiment are unofficially supported in this release.
- Refactor EventDispatcher to handle graceful shutdown via a call to AsyncEventHandler.shutdownAndAwaitTermination.
Breaking Changes
- Previously, notification listeners filtered non-string attribute values from the data passed to registered listeners. To support our growing list of supported attribute values, we’ve changed this behavior. Notification listeners will now post any value type passed as an attribute. Therefore, the interface of the notification listeners has changed to accept a
Map<String, ?>. - Update to use Java 1.7 (#208)
Bug Fixes
- refactor: Performance improvements for JacksonConfigParser (#209)
- refactor: typeAudience.combinations will not be string encoded like audience.combinations. To handle this we created a new parsing type TypedAudience.
- fix for exact match when dealing with integers and doubles. Created a new Numeric match type.
- make a copy of attributes passed in to avoid any concurrency problems. Addresses GitHub isue in Optimizely Andriod SDK.
- allow single root node for audience.conditions, typedAudience.conditions, and Experiment.audienceCombinations.
Release 3.0.0-RC
3.0.0-RC
November 7th, 2018
This is the release candidate for the 3.0 SDK, which includes a number of improvements to audience targeting along with a few bug fixes.
New Features
- Support for number-valued and boolean-valued attributes. (#213)
- Support for audiences with new match conditions for attribute values, including “substring” and “exists” matches for strings; “greater than”, “less than”, exact, and “exists” matches for numbers; and “exact”, and “exists” matches for booleans.
- Built-in datafile version compatibility checks so that SDKs will not initialize with a newer datafile it is not compatible with. (#209)
- Audience combinations within an experiment are unofficially supported in this release.
Breaking Changes
- Previously, notification listeners filtered non-string attribute values from the data passed to registered listeners. To support our growing list of supported attribute values, we’ve changed this behavior. Notification listeners will now post any value type passed as an attribute. Therefore, the interface of the notification listeners has changed to accept a
Map<String, ?>. - Update to use Java 1.7 (#208)
Bug Fixes
- refactor: Performance improvements for JacksonConfigParser (#209)
- refactor: typeAudience.combinations will not be string encoded like audience.combinations. To handle this we created a new parsing type TypedAudience.
- fix for exact match when dealing with integers and doubles. Created a new Numeric match type.
- make a copy of attributes passed in to avoid any concurrency problems. Addresses GitHub isue in Optimizely Andriod SDK.
3.0.0-alpha
October 10th, 2018
This is the alpha release of the 3.0 SDK, which includes a number of improvements to audience targeting along with a few bug fixes.
New Features
- Support for number-valued and boolean-valued attributes. (#213)
- Support for audiences with new match conditions for attribute values, including “substring” and “exists” matches for strings; “greater than”, “less than”, “exact”, and “exists” matches for numbers; and “exact” and “exists” matches for booleans.
- Built-in datafile version compatibility checks so that SDKs will not initialize with a newer datafile it is not compatible with. (#209)
Breaking Changes
- Previously, notification listeners filtered non-string attribute values from the data passed to registered listeners. To support our growing list of supported attribute values, we’ve changed this behavior. Notification listeners will now post any value type passed as an attribute. Therefore, the interface of the notification listeners has changed to accept a
Map<String, ?>. - Update to use Java 1.7 (#208)
Bug Fixes
- refactor: Performance improvements for JacksonConfigParser (#209)
Release 2.1.3
2.1.3 - September 21st, 2018
Bug Fixes
- fix(attributes): Filters out attributes with null values from the event payload (#204)
Release 2.1.2
August 1st, 2018
Bug Fixes
- Move serialization to LogEvent.getBody() to improve performance of API calls (#201)
2.1.1
chore: release 2.1.1 (#195) * Fix impression sent from feature experiment variation toggled off. (#193)
2.0.2
chore: release 2.0.2 (#194) * Fix impression sent from feature experiment variation toggled off. (#193)
2.1.0
June 15th, 2018
- Introduces support for bot filtering.