Skip to content

Commit cb7fa98

Browse files
update for latest RC (#238)
1 parent af3af22 commit cb7fa98

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Optimizely Java X SDK Changelog
22

3+
## 3.0.0-RC2
4+
5+
November 20th, 2018
6+
7+
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.
8+
9+
### New Features
10+
* Support for number-valued and boolean-valued attributes. ([#213](https://github.com/optimizely/java-sdk/pull/213))
11+
* 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.
12+
* Built-in datafile version compatibility checks so that SDKs will not initialize with a newer datafile it is not compatible with. ([#209](https://github.com/optimizely/java-sdk/pull/209))
13+
* Audience combinations within an experiment are unofficially supported in this release.
14+
* Refactor EventDispatcher to handle graceful shutdown via a call to AsyncEventHandler.shutdownAndAwaitTermination.
15+
16+
### Breaking Changes
17+
* 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, ?>`.
18+
* Update to use Java 1.7 ([#208](https://github.com/optimizely/java-sdk/pull/208))
19+
20+
### Bug Fixes
21+
* refactor: Performance improvements for JacksonConfigParser ([#209](https://github.com/optimizely/java-sdk/pull/209))
22+
* refactor: typeAudience.combinations will not be string encoded like audience.combinations. To handle this we created a new parsing type TypedAudience.
23+
* fix for exact match when dealing with integers and doubles. Created a new Numeric match type.
24+
* make a copy of attributes passed in to avoid any concurrency problems. Addresses GitHub isue in Optimizely Andriod SDK.
25+
* allow single root node for audience.conditions, typedAudience.conditions, and Experiment.audienceCombinations.
26+
327
## 3.0.0-RC
428

529
November 7th, 2018

0 commit comments

Comments
 (0)