Skip to content

Commit 421376f

Browse files
authored
release: 5.3.0 (#192)
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))
1 parent 218c64d commit 421376f

File tree

4 files changed

+35
-6
lines changed

4 files changed

+35
-6
lines changed

.version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.2.3
1+
5.3.0

CHANGELOG.md

+26-1
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,47 @@
11
# Change Log
22

3+
## [5.3.0](https://github.com/auth0/symfony/tree/5.3.0) (2024-06-24)
4+
5+
[Full Changelog](https://github.com/auth0/symfony/compare/5.2.3...5.3.0)
6+
7+
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).
8+
9+
**Added**
10+
11+
- Support for Symfony 7. [\#188](https://github.com/auth0/symfony/pull/188) ([mkilmanas](https://github.com/mkilmanas))
12+
- Support string concatenation of scopes. [\#183](https://github.com/auth0/symfony/pull/183) ([mkilmanas](https://github.com/mkilmanas))
13+
14+
**Changed**
15+
16+
- Dashes in JWT permissions/scopes are now normalized. [\#184](https://github.com/auth0/symfony/pull/184) ([mkilmanas](https://github.com/mkilmanas))
17+
18+
**Fixed**
19+
20+
- Fixed an issue in controller constructors using a `$container` argument. [\#190)](https://github.com/auth0/symfony/pull/190) ([mkilmanas](https://github.com/mkilmanas))
21+
322
## [5.2.3](https://github.com/auth0/symfony/tree/5.2.3) (2024-01-08)
23+
424
[Full Changelog](https://github.com/auth0/symfony/compare/5.2.2...5.2.3)
525

626
**Fixed**
7-
- Syntax typo in AuthenticationController::__construct() [\#180](https://github.com/auth0/symfony/pull/180) ([mkilmanas](https://github.com/mkilmanas))
27+
28+
- Syntax typo in AuthenticationController::\_\_construct() [\#180](https://github.com/auth0/symfony/pull/180) ([mkilmanas](https://github.com/mkilmanas))
829
- Controller container property assignment [\#179](https://github.com/auth0/symfony/pull/179) ([mkilmanas](https://github.com/mkilmanas))
930

1031
## [5.2.2](https://github.com/auth0/symfony/tree/5.2.2) (2023-12-19)
32+
1133
[Full Changelog](https://github.com/auth0/symfony/compare/5.2.1...5.2.2)
1234

1335
**Fixed**
36+
1437
- Disallow installation with Symfony 7.0 until fully compatible
1538

1639
## [5.2.1](https://github.com/auth0/symfony/tree/5.2.1) (2023-12-16)
40+
1741
[Full Changelog](https://github.com/auth0/symfony/compare/5.2.0...5.2.1)
1842

1943
**Fixed**
44+
2045
- Restore method signatures [\#174](https://github.com/auth0/symfony/pull/174) ([evansims](https://github.com/evansims))
2146

2247
## [5.2.0](https://github.com/auth0/symfony/tree/5.2.0) (2023-12-12)

README.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Symfony SDK for [Auth0](https://auth0.com) Authentication and Management APIs.
1313
### Requirements
1414

1515
- [PHP](http://php.net/) 8.1+
16-
- [Symfony](https://symfony.com/) 6.4 LTS
17-
- Symfony 7.0 is not currently supported.
16+
- [Symfony](https://symfony.com/) 6.4 LTS or 7
17+
- Symfony 7 support is community-contributed and presently experimental.
1818

1919
> Please review our [support policy](#support-policy) to learn when language and framework versions will exit support in the future.
2020
@@ -255,16 +255,20 @@ Our support windows are determined by the [Symfony release support](https://symf
255255

256256
| SDK Version | Symfony Version | PHP Version | Support Ends |
257257
| ----------- | --------------- | ----------- | ------------ |
258+
| 5.3 | 7.0\* | 8.2 | Jul 31 2024 |
258259
| 5 | 6.2 | 8.2 | Jul 31 2023 |
259260
| | | 8.1 | Jul 31 2023 |
260261
| | 6.1 | 8.2 | Jan 31 2023 |
261262
| | | 8.1 | Jan 31 2023 |
262263

263264
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.
264265

265-
> *Note:*
266+
> _Note:_
266267
> 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.
267268

269+
> _Note:_
270+
> Symfony 7 support is community-contributed, and currently considered experimental.
271+
268272
## Feedback
269273

270274
### Contributing

src/Service.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
final class Service implements ServiceInterface
1616
{
17-
public const VERSION = '5.2.1';
17+
public const VERSION = '5.3.0';
1818

1919
private ?Auth0 $sdk = null;
2020

0 commit comments

Comments
 (0)