File tree Expand file tree Collapse file tree 3 files changed +19
-2
lines changed
src/Optimizely/Event/Builder Expand file tree Collapse file tree 3 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 1+ ## [ Unreleased]
2+ Changes that have landed in master but are not yet released.
3+ - fix(whitelisting): Whitelisted variation should continue when no valid variation is found. ([ #123 ] ( https://github.com/optimizely/php-sdk/pull/123 ) )
4+ - refac: Renames notification-center methods. ([ #120 ] ( https://github.com/optimizely/php-sdk/pull/120 ) )
5+ - fix: Validate Inputs for activate/track/getVariation. ([ #105 ] ( https://github.com/optimizely/php-sdk/pull/105 ) )
6+
7+ ## 2.2.0
8+ October 29th, 2018
9+
10+ ### New Features
11+ - feat(isValid): Adds getter to access isValid attribute. ([ #128 ] ( https://github.com/optimizely/php-sdk/pull/128 ) )
12+
13+ ### Bug fixes
14+ - fix(datafile-parsing): Prevent newer versions datafile. ([ #127 ] ( https://github.com/optimizely/php-sdk/pull/127 ) )
15+ - fix: Updating dependencies. ([ #125 ] ( https://github.com/optimizely/php-sdk/pull/125 ) )
16+ - fix(track): Send decisions for all experiments using an event when using track. ([ #124 ] ( https://github.com/optimizely/php-sdk/pull/124 ) )
17+
118## 2.1.0
219June 29th, 2018
320
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ class EventBuilder
3737 /**
3838 * @const string Version of the Optimizely PHP SDK.
3939 */
40- const SDK_VERSION = '2.1 .0 ' ;
40+ const SDK_VERSION = '2.2 .0 ' ;
4141
4242 /**
4343 * @var string URL to send event to.
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ public function setUp()
7373 ]],
7474 'revision ' => '15 ' ,
7575 'client_name ' => 'php-sdk ' ,
76- 'client_version ' => '2.1 .0 ' ,
76+ 'client_version ' => '2.2 .0 ' ,
7777 'anonymize_ip ' => false ,
7878 ];
7979 $ this ->expectedEventHttpVerb = 'POST ' ;
You can’t perform that action at this time.
0 commit comments