Skip to content

Commit e46fde5

Browse files
authored
chore: prepare for release 3.8.0 (#232)
1 parent 930400f commit e46fde5

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

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

3+
## 3.8.0
4+
September 16th, 2021
5+
6+
### New Features:
7+
- Add new public properties to `OptimizelyConfig`. ([#230](https://github.com/optimizely/php-sdk/pull/230))
8+
- sdkKey
9+
- environmentKey
10+
- attributes
11+
- audiences
12+
- events
13+
- experimentRules and deliveryRules to `OptimizelyFeature`
14+
- audiences to `OptimizelyExperiment`
15+
- For details, refer to our documentation page: [https://docs.developers.optimizely.com/full-stack/v4.0/docs/optimizelyconfig-php](https://docs.developers.optimizely.com/full-stack/v4.0/docs/optimizelyconfig-php).
16+
17+
### Deprecated:
18+
- `OptimizelyFeature.experimentsMap` of `OptimizelyConfig` is deprecated as of this release. Please use `OptimizelyFeature.experimentRules` and `OptimizelyFeature.deliveryRules`. ([#230](https://github.com/optimizely/php-sdk/pull/230))
19+
20+
321
## 3.7.1
422
August 4th, 2021
523

src/Optimizely/Event/Builder/EventBuilder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class EventBuilder
3838
/**
3939
* @const string Version of the Optimizely PHP SDK.
4040
*/
41-
const SDK_VERSION = '3.7.1';
41+
const SDK_VERSION = '3.8.0';
4242

4343
/**
4444
* @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.7.1',
71+
'client_version' => '3.8.0',
7272
'anonymize_ip'=> false,
7373
'enrich_decisions' => true,
7474
];

0 commit comments

Comments
 (0)