Skip to content

Commit 8b1367a

Browse files
chore: prepare for release 3.9.0 (#239)
* chore: prepare for release 3.9.0 * Date Updated Co-authored-by: mnoman09 <[email protected]>
1 parent 00f3c3a commit 8b1367a

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Optimizely PHP SDK Changelog
22

3+
## 3.9.0
4+
January 10th, 2022
5+
6+
### New Features
7+
* Add a set of new APIs for overriding and managing user-level flag, experiment and delivery rule decisions. These methods can be used for QA and automated testing purposes. They are an extension of the OptimizelyUserContext interface ([#233](https://github.com/optimizely/php-sdk/pull/233), [#236](https://github.com/optimizely/php-sdk/pull/236), [#237](https://github.com/optimizely/php-sdk/pull/237), [#238](https://github.com/optimizely/php-sdk/pull/238))
8+
- setForcedDecision
9+
- getForcedDecision
10+
- removeForcedDecision
11+
- removeAllForcedDecisions
12+
13+
- For details, refer to our documentation pages: [OptimizelyUserContext](https://docs.developers.optimizely.com/full-stack/v4.0/docs/optimizelyusercontext-php) and [Forced Decision methods](https://docs.developers.optimizely.com/full-stack/v4.0/docs/forced-decision-methods-php).
14+
315
## 3.8.0
416
September 16th, 2021
517

src/Optimizely/Event/Builder/EventBuilder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class EventBuilder
3939
/**
4040
* @const string Version of the Optimizely PHP SDK.
4141
*/
42-
const SDK_VERSION = '3.8.0';
42+
const SDK_VERSION = '3.9.0';
4343

4444
/**
4545
* @var string URL to send event to.

tests/EventTests/EventBuilderTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function setUp()
6868
]],
6969
'revision' => '15',
7070
'client_name' => 'php-sdk',
71-
'client_version' => '3.8.0',
71+
'client_version' => '3.9.0',
7272
'anonymize_ip'=> false,
7373
'enrich_decisions' => true,
7474
];

0 commit comments

Comments
 (0)