Skip to content

Commit cb6f4f5

Browse files
Releasing version 3.7.4
1 parent bf3b26a commit cb6f4f5

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.4] - 2021-01-07
6+
### Fixed:
7+
- Fixed a warning message which erroneously referred to the wrong method.
8+
59
## [3.7.3] - 2020-10-28
610
### Fixed:
711
- 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))

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.3';
24+
const VERSION = '3.7.4';
2525

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

0 commit comments

Comments
 (0)