From a35fcb3d7a1fef381d3add51ffdb9376a2dcd60e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 23 Feb 2026 15:11:50 +0000 Subject: [PATCH] chore(main): release 6.7.0 --- .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 df5c79cd..95ef26eb 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.2" # x-release-please-version + --title "LaunchDarkly PHP SDK 6.7.0" # x-release-please-version diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a7a751dd..5c63699c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.6.2" + ".": "6.7.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index edc15c36..31d51645 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.7.0](https://github.com/launchdarkly/php-server-sdk/compare/6.6.2...6.7.0) (2026-02-23) + + +### Features + +* Allow providing PSR-6 cache for feature requesters ([#235](https://github.com/launchdarkly/php-server-sdk/issues/235)) ([2328808](https://github.com/launchdarkly/php-server-sdk/commit/232880881e5895815d3ddad994e1fc66e8fa1d7b)), closes [#234](https://github.com/launchdarkly/php-server-sdk/issues/234) + ## [6.6.2](https://github.com/launchdarkly/php-server-sdk/compare/6.6.1...6.6.2) (2025-11-20) diff --git a/src/LaunchDarkly/LDClient.php b/src/LaunchDarkly/LDClient.php index ecf17733..a1508d92 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.2'; // x-release-please-version + const VERSION = '6.7.0'; // x-release-please-version protected string $_sdkKey; protected string $_baseUri;