From 34462d5d47d5c4a1656afb68709faf6596ad852e Mon Sep 17 00:00:00 2001 From: LaunchDarklyCI Date: Fri, 24 Apr 2020 17:54:54 +0000 Subject: [PATCH] Releasing version 3.7.2 --- CHANGELOG.md | 6 ++++++ src/LaunchDarkly/LDClient.php | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c57d02d..f6445db7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to the LaunchDarkly PHP SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [3.7.2] - 2020-04-24 +### Fixed: +- 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. +- A `use` statement with the wrong namespace was causing Composer to print a deprecation warning. (Thanks, [bfenton-smugmug](https://github.com/launchdarkly/php-server-sdk/pull/134)!) + + ## [3.7.1] - 2020-01-03 ### Fixed: - Loosened the Monolog dependency constraint so that it will accept either a 1.x or a 2.x version. This should be compatible with all currently supported PHP versions; the SDK's use of Monolog does not rely on any features that are specific to 1.x. (Thanks, [mrtus](https://github.com/launchdarkly/php-server-sdk/pull/132)!) diff --git a/src/LaunchDarkly/LDClient.php b/src/LaunchDarkly/LDClient.php index f4b4f3f9..bb1188d2 100644 --- a/src/LaunchDarkly/LDClient.php +++ b/src/LaunchDarkly/LDClient.php @@ -21,7 +21,7 @@ class LDClient * The current SDK version. * @var string */ - const VERSION = '3.7.1'; + const VERSION = '3.7.2'; /** @var string */ protected $_sdkKey;