Skip to content

Commit 0080778

Browse files
Releasing version 3.7.3
1 parent 9830a4d commit 0080778

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
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.7.3] - 2020-10-28
6+
### Fixed:
7+
- When using the DynamoDB data store integration with a prefix string, the prefix was being prepended to keys with a slash separator (example: `my-prefix/features:my-flag-key`). This was inconsistent with the colon separator that is used in the other server-side SDKs (example: `my-prefix:features:my-flag-key`), making the PHP SDK unable to read flags that were put into the database by other SDKs or by the Relay Proxy, if a prefix was used. This has been fixed to be consistent with the other SDKs. ([#138](https://github.com/launchdarkly/php-server-sdk/issues/138))
8+
59
## [3.7.2] - 2020-04-24
610
### Fixed:
711
- The SDK could try to send analytics events even if `send_events` had been set to false. This bug was introduced in the 3.6.0 release.

src/LaunchDarkly/LDClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class LDClient
2121
* The current SDK version.
2222
* @var string
2323
*/
24-
const VERSION = '3.7.2';
24+
const VERSION = '3.7.3';
2525

2626
/** @var string */
2727
protected $_sdkKey;

0 commit comments

Comments
 (0)