diff --git a/.github/actions/build-docs/action.yml b/.github/actions/build-docs/action.yml index 282facc66..15f27c3af 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.8.1" # x-release-please-version + --title "LaunchDarkly PHP SDK 6.8.2" # x-release-please-version diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 17a9c5d6e..c9a82836b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "6.8.1" + ".": "6.8.2" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 537a9f3dd..6e5a12bc4 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.8.2](https://github.com/launchdarkly/php-server-sdk/compare/6.8.1...6.8.2) (2026-07-21) + + +### Bug Fixes + +* Redact anonymous context attributes in migration op and custom events ([#262](https://github.com/launchdarkly/php-server-sdk/issues/262)) ([19ce6c4](https://github.com/launchdarkly/php-server-sdk/commit/19ce6c4339208bcef1f7147df3db52d64428d6cf)) + ## [6.8.1](https://github.com/launchdarkly/php-server-sdk/compare/6.8.0...6.8.1) (2026-06-08) diff --git a/src/LaunchDarkly/LDClient.php b/src/LaunchDarkly/LDClient.php index 456c05c3c..a570df125 100644 --- a/src/LaunchDarkly/LDClient.php +++ b/src/LaunchDarkly/LDClient.php @@ -45,7 +45,7 @@ class LDClient * The current SDK version. * @var string */ - const VERSION = '6.8.1'; // x-release-please-version + const VERSION = '6.8.2'; // x-release-please-version protected string $_sdkKey; protected string $_baseUri;