Skip to content

Commit

Permalink
release: 5.3.0
Browse files Browse the repository at this point in the history
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](#188) ([mkilmanas](https://github.com/mkilmanas))
- Support string concatenation of scopes. [\#183](#183) ([mkilmanas](https://github.com/mkilmanas))

**Changed**

- Dashes in JWT permissions/scopes are now normalized. [\#184](#184) ([mkilmanas](https://github.com/mkilmanas))

**Fixed**

- Fixed an issue in controller constructors using a `$container` argument. [\#190)](#190) ([mkilmanas](https://github.com/mkilmanas))
  • Loading branch information
evansims committed Jun 24, 2024
1 parent 218c64d commit 99a3ae7
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 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
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 99a3ae7

Please sign in to comment.