From 7bd3d575c6418ccfabcf136d0f6baa1335ff28b4 Mon Sep 17 00:00:00 2001 From: Evan Sims Date: Tue, 12 Dec 2023 14:15:48 -0500 Subject: [PATCH] Release 5.2.0 (#171) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit **Added** - Implement support for Back-Channel Logout [\#167](https://github.com/auth0/wordpress/pull/167) ([evansims](https://github.com/evansims)) ¹ **Changed** - Bumped `auth0-php` dependency version range to `^8.10`. - Raised the minimum supported PHP version to `8.1`. - Added support for Symfony `^6.4`. - Symfony `^7.0` support will be added in a forthcoming release. > [!NOTE] > ¹ To use this feature, an Auth0 tenant must have support for it enabled. --- .version | 2 +- CHANGELOG.md | 18 +++++++++++++++++- src/Service.php | 2 +- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/.version b/.version index 831446c..91ff572 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -5.1.0 +5.2.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 891f38a..24082bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,22 @@ # Change Log -## [5.1.0](https://github.com/auth0/symfony/tree/5.0.0) (2023-07-24) +## [5.2.0](https://github.com/auth0/symfony/tree/5.2.0) (2023-12-12) + +**Added** + +- Implement support for Back-Channel Logout [\#167](https://github.com/auth0/wordpress/pull/167) ([evansims](https://github.com/evansims)) ¹ + +**Changed** + +- Bumped `auth0-php` dependency version range to `^8.10`. +- Raised the minimum supported PHP version to `8.1`. +- Added support for Symfony `^6.4`. + - Symfony `^7.0` support will be added in a forthcoming release. + +> [!NOTE] +> ¹ To use this feature, an Auth0 tenant must have support for it enabled. + +## [5.1.0](https://github.com/auth0/symfony/tree/5.1.0) (2023-07-24) **Added** diff --git a/src/Service.php b/src/Service.php index cd01b27..fc58f2f 100644 --- a/src/Service.php +++ b/src/Service.php @@ -13,7 +13,7 @@ final class Service implements ServiceInterface { - public const VERSION = '5.1.0'; + public const VERSION = '5.2.0'; private ?Auth0 $sdk = null;