Skip to content

Commit

Permalink
release: 5.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
evansims committed Jun 24, 2024
1 parent 218c64d commit 38a333f
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.2.3
5.3.0
27 changes: 26 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -255,16 +255,20 @@ 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 |
| | | 8.1 | Jan 31 2023 |

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
Expand Down
2 changes: 1 addition & 1 deletion src/Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 38a333f

Please sign in to comment.