From b0b7f1bd1781382ea2bf3d68ec7d6157ee7a1e5d Mon Sep 17 00:00:00 2001 From: LaunchDarklyReleaseBot Date: Wed, 12 Jul 2023 21:01:20 +0000 Subject: [PATCH] Releasing version 5.1.1 --- CHANGELOG.md | 5 +++++ src/LaunchDarkly/LDClient.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4af59ef2..11d09014 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to the LaunchDarkly PHP SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [5.1.1] - 2023-07-12 +### Changed: +- Invalid context log message now includes the flag key as part of the Psr\Log context. (Thanks, [mrtus](https://github.com/launchdarkly/php-server-sdk/pull/179)!) +- Error logging now includes the exception in the Psr\Log exception context key. (Thanks, [mrtus](https://github.com/launchdarkly/php-server-sdk/pull/177)!) + ## [5.1.0] - 2023-01-31 ### Added: - Introduced support for an `application_info` config property which sets application metadata that may be used in LaunchDarkly analytics or other product features. This does not affect feature flag evaluations. diff --git a/src/LaunchDarkly/LDClient.php b/src/LaunchDarkly/LDClient.php index a7064470..0b9fe8f7 100644 --- a/src/LaunchDarkly/LDClient.php +++ b/src/LaunchDarkly/LDClient.php @@ -34,7 +34,7 @@ class LDClient * The current SDK version. * @var string */ - const VERSION = '5.1.0'; + const VERSION = '5.1.1'; protected string $_sdkKey; protected string $_baseUri;