From 80245715b9e6c827d6d141bd4e379a769ac7a31f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 20 Nov 2025 18:40:11 +0000 Subject: [PATCH] chore(main): release 6.6.2 --- .github/actions/build-docs/action.yml | 2 +- .release-please-manifest.json | 2 +- CHANGELOG.md | 12 ++++++++++++ src/LaunchDarkly/LDClient.php | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/.github/actions/build-docs/action.yml b/.github/actions/build-docs/action.yml index 886d33a5..df5c79cd 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.1" # x-release-please-version + --title "LaunchDarkly PHP SDK 6.6.2" # x-release-please-version diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 91cb134c..a7a751dd 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.6.1" + ".": "6.6.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e4d890a..edc15c36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ 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.2](https://github.com/launchdarkly/php-server-sdk/compare/6.6.1...6.6.2) (2025-11-20) + + +### Bug Fixes + +* Improve escaping for curl event publisher ([#230](https://github.com/launchdarkly/php-server-sdk/issues/230)) ([bff2a4a](https://github.com/launchdarkly/php-server-sdk/commit/bff2a4af6bc475cee23b850f9234ebe5e35cc861)) + + +### Miscellaneous Chores + +* Add latest versions of PHP to CI ([#227](https://github.com/launchdarkly/php-server-sdk/issues/227)) ([9836192](https://github.com/launchdarkly/php-server-sdk/commit/9836192cedae0e392823de60de00076adee89a50)) + ## [6.6.1](https://github.com/launchdarkly/php-server-sdk/compare/6.6.0...6.6.1) (2025-10-20) diff --git a/src/LaunchDarkly/LDClient.php b/src/LaunchDarkly/LDClient.php index a6af990a..ecf17733 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.1'; // x-release-please-version + const VERSION = '6.6.2'; // x-release-please-version protected string $_sdkKey; protected string $_baseUri;