Skip to content

Releases: lexik/LexikJWTAuthenticationBundle

Minor v2.2.0

09 Mar 22:34
v2.2.0
Compare
Choose a tag to compare

fb1c441 - #312 Ease sharing keys between parties (@chalasr)
664a90c - #311 Handle empty or null authorization header prefix (@chteuchteu)
02d3866 - #303 Throw less missleading exception if SSL keys could not be loaded (@phansys)

Patch v2.1.1

23 Jan 17:08
v2.1.1
Compare
Choose a tag to compare

CHANGELOG

b0f6002 - #302 Return user object from User Provider refresh

Minor v2.1.0

30 Dec 14:00
v2.1.0
5d7f695
Compare
Choose a tag to compare

CHANGELOG

Patch v2.0.3

05 Dec 09:34
v2.0.3
Compare
Choose a tag to compare

Changelog

465c72a - #285 Avoid validating key paths before container compilation (@chalasr)
319502f - #283 Ease creating tokens programatically (@chalasr)
4449d68 - #282 Catch exception from lcobucci parser on invalid but correctly formatted token (@chalasr)
2cde8be - #280 Travis: build on sf 3.2 + highest/lowest deps, fix build on hhvm (@chalasr)
c674a1e - #276 Added getProviderKey() to JWTUserToken (@eXtreme)
b133e67 - #269 Improve the structure of the documentation (@chalasr)

Patch v2.0.2

27 Oct 00:01
v2.0.2
Compare
Choose a tag to compare

Changelog

  • 601d274 #262 Add composer test script
  • b745c15 #261 The security token must be authenticated no matter of the user's roles

Patch v2.0.1

27 Oct 00:00
v2.0.1
Compare
Choose a tag to compare

Changelog

  • fd06833 Set autowiring types on services with many alternatives (#257)

Major v2.0.0

16 Oct 08:29
v2.0.0
05e1596
Compare
Choose a tag to compare

This major release fixes some inconsistencies, avoids some deprecated practices and adds a bunch of new features.

Fix BC break by re-injecting request instances internally

11 Oct 17:27
v1.7.1
6366ca5
Compare
Choose a tag to compare
v1.7.1

Fix BC break by reinjecting request instances internally

Deprecate injection of Request instances in event classes

06 Aug 15:49
v1.7.0
8b4556e
Compare
Choose a tag to compare

Since Symfony 2.4, the current Request is accessible from the RequestStack.
Before that, we passed the current Request instance across our Events, allowing to return custom responses depending on the Request.

Now, developers just have to inject the request_stack service in their listeners and retrieve the current request as needed.

This release only depreciate the practice to inject and retrieve the request by adding a default null value to all arguments type-hinted as Request, keeping BC almost intact while triggering deprecation notices from constructors and getters, before we totally remove the practice in the v2.0 major release.

Add JWTNotFoundEvent

07 Jul 10:27
Compare
Choose a tag to compare

This release contains some patches fixing different deprecations from third party dependencies.
Plus it contains a nice addition: The JWTNotFoundEvent, making users able to listen on this specific event and customize the response in case of no jwt found in a request.