From 423a8345946b30e8f7cf3399cde14e8cec36ad45 Mon Sep 17 00:00:00 2001 From: Mike Ng Date: Fri, 17 Mar 2017 11:11:24 -0700 Subject: [PATCH 1/3] Prepare 1.6.0 release. Summary: Bumping to 1.6.0 Test Plan: None Reviewers: #oasis_team_review Differential Revision: https://phabricator.optimizely.com/D15231 --- CHANGELOG.md | 8 ++++++++ gradle.properties | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f1d990de..7fc2c5e13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 1.6.0 + +March 17, 2017 + +- Add event tags to `track` API and include in the event payload +- Fix bug where null attribute map was returned +- Fix bug with null or empty string datafile + ## 1.5.0 February 16, 2017 diff --git a/gradle.properties b/gradle.properties index 59036d0e7..7fb8b8b76 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ # Maven version -version = 1.5.0-SNAPSHOT +version = 1.6.0-SNAPSHOT # Artifact paths mavenS3Bucket = optimizely-maven From 7d59fa2dd37e366ea992747839f3c539e2c48bc4 Mon Sep 17 00:00:00 2001 From: Mike Ng Date: Fri, 17 Mar 2017 13:25:20 -0700 Subject: [PATCH 2/3] Add changelog entry on eventValue being deprecated. --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fc2c5e13..69b4fa02b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ March 17, 2017 - Add event tags to `track` API and include in the event payload +- Deprecates the `eventValue` parameter from the `track` method. Should use event tags to pass in event value - Fix bug where null attribute map was returned - Fix bug with null or empty string datafile From 0f2d0b98b73fb5920b85efe99b6eee029bef34dd Mon Sep 17 00:00:00 2001 From: Mike Ng Date: Fri, 17 Mar 2017 13:28:20 -0700 Subject: [PATCH 3/3] Address feedback from Vignesh. --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 69b4fa02b..b577c49a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,9 +3,9 @@ March 17, 2017 - Add event tags to `track` API and include in the event payload -- Deprecates the `eventValue` parameter from the `track` method. Should use event tags to pass in event value -- Fix bug where null attribute map was returned -- Fix bug with null or empty string datafile +- Deprecates the `eventValue` parameter from the `track` method. Should use event tags to pass in event value instead +- Gracefully handle a null attributes parameter +- Gracefully handle a null/empty datafile when using the Gson parser ## 1.5.0