Releases: bizley/yii2-jwt
Releases · bizley/yii2-jwt
4.1.2
4.1.1
4.1.0
4.0.0
This release adds compatibility with lcobucci/jwt v5 and introduces the following BC breaks:
- Minimum required PHP version is 8.1
- Empty signer, key, and signature are not allowed anymore
lcobucci/clock
package is not provided by default anymorestore
configuration key has been removed since it can hold only one value anyway
3.4.0
3.3.0
Added throwException
option to JwtHttpBearerAuth
.
Whether the filter should throw an exception i.e. if the token has an invalid format. If there are multiple auth filters (CompositeAuth) it can make sense to "silent fail" and pass the validation process to the next filter on the composite auth list. Default is true.
Thank you @nadar for this feature.
3.2.0
- Using
local_file_reference
(STORE_LOCAL_FILE_REFERENCE) as a key store option is now deprecated and will be removed in 4.0.0. - Attempt to use empty string as a key configuration is now throwing exception.
JwtHttpBearerAuth
is not silencing JWT exceptions anymore allowing more developer friendly experience.
Thank you @koxu1996 for improvement suggestions.