File tree 3 files changed +19
-2
lines changed
src/Optimizely/Event/Builder
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
+
1
18
## 2.1.0
2
19
June 29th, 2018
3
20
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ class EventBuilder
37
37
/**
38
38
* @const string Version of the Optimizely PHP SDK.
39
39
*/
40
- const SDK_VERSION = '2.1 .0 ' ;
40
+ const SDK_VERSION = '2.2 .0 ' ;
41
41
42
42
/**
43
43
* @var string URL to send event to.
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ public function setUp()
73
73
]],
74
74
'revision ' => '15 ' ,
75
75
'client_name ' => 'php-sdk ' ,
76
- 'client_version ' => '2.1 .0 ' ,
76
+ 'client_version ' => '2.2 .0 ' ,
77
77
'anonymize_ip ' => false ,
78
78
];
79
79
$ this ->expectedEventHttpVerb = 'POST ' ;
You can’t perform that action at this time.
0 commit comments