From 20ad5cd164818c1ccc43be11ecb2cdc015049b40 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 20 Oct 2025 20:19:47 +0000 Subject: [PATCH] chore(main): release 6.6.1 --- .github/actions/build-docs/action.yml | 2 +- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ src/LaunchDarkly/LDClient.php | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/actions/build-docs/action.yml b/.github/actions/build-docs/action.yml index 3951ae55..886d33a5 100644 --- a/.github/actions/build-docs/action.yml +++ b/.github/actions/build-docs/action.yml @@ -17,4 +17,4 @@ runs: --ignore-tags psalm-return \ --visibility public \ --defaultpackagename "LaunchDarkly" \ - --title "LaunchDarkly PHP SDK 6.6.0" # x-release-please-version + --title "LaunchDarkly PHP SDK 6.6.1" # x-release-please-version diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2f0a9c43..91cb134c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.6.0" + ".": "6.6.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d9a9026..7e4d890a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to the LaunchDarkly PHP SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [6.6.1](https://github.com/launchdarkly/php-server-sdk/compare/6.6.0...6.6.1) (2025-10-20) + + +### Bug Fixes + +* Handle all exceptions within Guzzle feature requester ([#226](https://github.com/launchdarkly/php-server-sdk/issues/226)) ([361f1fe](https://github.com/launchdarkly/php-server-sdk/commit/361f1fef47182203e3ead1e19aa13b067cc90955)), closes [#225](https://github.com/launchdarkly/php-server-sdk/issues/225) + ## [6.6.0](https://github.com/launchdarkly/php-server-sdk/compare/6.5.2...6.6.0) (2025-04-08) diff --git a/src/LaunchDarkly/LDClient.php b/src/LaunchDarkly/LDClient.php index 56cacdf0..51749f9b 100644 --- a/src/LaunchDarkly/LDClient.php +++ b/src/LaunchDarkly/LDClient.php @@ -40,7 +40,7 @@ class LDClient * The current SDK version. * @var string */ - const VERSION = '6.6.0'; // x-release-please-version + const VERSION = '6.6.1'; // x-release-please-version protected string $_sdkKey; protected string $_baseUri;