diff --git a/.version b/.version index c0baecb..03f488b 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -5.2.3 +5.3.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index efc76d5..effa52c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,22 +1,47 @@ # Change Log +## [5.3.0](https://github.com/auth0/symfony/tree/5.3.0) (2024-06-24) + +[Full Changelog](https://github.com/auth0/symfony/compare/5.2.3...5.3.0) + +This release includes experimental community-contributed support for Symfony 7. If you encounter any issues, please [open an issue on GitHub](https://github.com/auth0/symfony/issues). + +**Added** + +- Support for Symfony 7. [\#188](https://github.com/auth0/symfony/pull/188) ([mkilmanas](https://github.com/mkilmanas)) +- Support string concatenation of scopes. [\#183](https://github.com/auth0/symfony/pull/183) ([mkilmanas](https://github.com/mkilmanas)) + +**Changed** + +- Dashes in JWT permissions/scopes are now normalized. [\#184](https://github.com/auth0/symfony/pull/184) ([mkilmanas](https://github.com/mkilmanas)) + +**Fixed** + +- Fixed an issue in controller constructors using a `$container` argument. [\#190)](https://github.com/auth0/symfony/pull/190) ([mkilmanas](https://github.com/mkilmanas)) + ## [5.2.3](https://github.com/auth0/symfony/tree/5.2.3) (2024-01-08) + [Full Changelog](https://github.com/auth0/symfony/compare/5.2.2...5.2.3) **Fixed** -- Syntax typo in AuthenticationController::__construct() [\#180](https://github.com/auth0/symfony/pull/180) ([mkilmanas](https://github.com/mkilmanas)) + +- Syntax typo in AuthenticationController::\_\_construct() [\#180](https://github.com/auth0/symfony/pull/180) ([mkilmanas](https://github.com/mkilmanas)) - Controller container property assignment [\#179](https://github.com/auth0/symfony/pull/179) ([mkilmanas](https://github.com/mkilmanas)) ## [5.2.2](https://github.com/auth0/symfony/tree/5.2.2) (2023-12-19) + [Full Changelog](https://github.com/auth0/symfony/compare/5.2.1...5.2.2) **Fixed** + - Disallow installation with Symfony 7.0 until fully compatible ## [5.2.1](https://github.com/auth0/symfony/tree/5.2.1) (2023-12-16) + [Full Changelog](https://github.com/auth0/symfony/compare/5.2.0...5.2.1) **Fixed** + - Restore method signatures [\#174](https://github.com/auth0/symfony/pull/174) ([evansims](https://github.com/evansims)) ## [5.2.0](https://github.com/auth0/symfony/tree/5.2.0) (2023-12-12) diff --git a/README.md b/README.md index 7b75393..7ca448a 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,8 @@ Symfony SDK for [Auth0](https://auth0.com) Authentication and Management APIs. ### Requirements - [PHP](http://php.net/) 8.1+ -- [Symfony](https://symfony.com/) 6.4 LTS - - Symfony 7.0 is not currently supported. +- [Symfony](https://symfony.com/) 6.4 LTS or 7 + - Symfony 7 support is community-contributed and presently experimental. > Please review our [support policy](#support-policy) to learn when language and framework versions will exit support in the future. @@ -255,6 +255,7 @@ Our support windows are determined by the [Symfony release support](https://symf | SDK Version | Symfony Version | PHP Version | Support Ends | | ----------- | --------------- | ----------- | ------------ | +| 5.3 | 7.0\* | 8.2 | Jul 31 2024 | | 5 | 6.2 | 8.2 | Jul 31 2023 | | | | 8.1 | Jul 31 2023 | | | 6.1 | 8.2 | Jan 31 2023 | @@ -262,9 +263,12 @@ Our support windows are determined by the [Symfony release support](https://symf Deprecations of EOL'd language or framework versions are not considered a breaking change, as Composer handles these scenarios elegantly. Legacy applications will stop receiving updates from us, but will continue to function on those unsupported SDK versions. -> *Note:* +> _Note:_ > We do not currently support Symfony LTS versions, but anticipate adding support for this when Symfony's 6.x branch enters it's LTS window. +> _Note:_ +> Symfony 7 support is community-contributed, and currently considered experimental. + ## Feedback ### Contributing diff --git a/src/Service.php b/src/Service.php index 8159e10..a821dd2 100644 --- a/src/Service.php +++ b/src/Service.php @@ -14,7 +14,7 @@ final class Service implements ServiceInterface { - public const VERSION = '5.2.1'; + public const VERSION = '5.3.0'; private ?Auth0 $sdk = null;