Skip to content

Commit 41d1d65

Browse files
chore(release): Preparing for release 3.4.0 (#203)
1 parent 607a8de commit 41d1d65

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

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

3-
## [Unreleased]
3+
### New Features:
4+
5+
## 3.4.0
6+
July 8th, 2020
47

58
### New Features:
6-
- Added support for authenticated datafiles. `HTTPProjectConfigManager` now accepts `datafileAccessToken` to be able to fetch authenticated datafiles.
9+
- Introduced 2 APIs to interact with feature variables:
10+
- `getFeatureVariableJSON` allows you to get value for JSON variables related to a feature.
11+
- `getAllFeatureVariables` gets values for all variables under a feature.
12+
- Added support for fetching authenticated datafiles. `HTTPProjectConfigManager` now accepts `datafileAccessToken` to be able to fetch datafiles belonging to secure environments.
13+
14+
### Bug Fixes:
15+
- Adjusted log level for audience evaluation logs. ([#198](https://github.com/optimizely/php-sdk/pull/198))
716

817
## 3.3.1
918
May 28th, 2020

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.3.1';
41+
const SDK_VERSION = '3.4.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.3.1',
71+
'client_version' => '3.4.0',
7272
'anonymize_ip'=> false,
7373
'enrich_decisions' => true,
7474
];

0 commit comments

Comments
 (0)