Skip to content

Commit 07eb1a7

Browse files
committed
Merge branch 'explanation' into eb/ch19976/explanations
2 parents 54759db + 87417f1 commit 07eb1a7

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
All notable changes to the LaunchDarkly PHP SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [3.3.0] - 2018-08-27
6+
### Added:
7+
- The new `LDClient` method `allFlagsState()` should be used instead of `allFlags()` if you are passing flag data to the front end for use with the JavaScript SDK. It preserves some flag metadata that the front end requires in order to send analytics events correctly. Versions 2.5.0 and above of the JavaScript SDK are able to use this metadata, but the output of `allFlagsState()` will still work with older versions.
8+
- The `allFlagsState()` method also allows you to select only client-side-enabled flags to pass to the front end, by using the option `clientSideOnly => true`.
9+
10+
### Deprecated:
11+
- `LDClient.allFlags()`
12+
513
## [3.2.1] - 2018-07-16
614
### Fixed:
715
- The `LDClient::VERSION` constant has been fixed to report the current version. In the previous release, it was still set to 3.1.0.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.1
1+
3.3.0

src/LaunchDarkly/LDClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class LDClient
1212
{
1313
const DEFAULT_BASE_URI = 'https://app.launchdarkly.com';
1414
const DEFAULT_EVENTS_URI = 'https://events.launchdarkly.com';
15-
const VERSION = '3.2.1';
15+
const VERSION = '3.3.0';
1616

1717
/** @var string */
1818
protected $_sdkKey;

0 commit comments

Comments
 (0)