Releases: aliirfaan/laravel-simple-jwt
Releases · aliirfaan/laravel-simple-jwt
8.1.1
8.1.0
8.0.2
8.0.1
8.0.0
7.0.0
6.0.1
6.0.0
5.0.0
Added
- Contracts\JwtServiceInterface
- Services\Auth\SimpleJwtGuard, implements Illuminate\Contracts\Auth\Guard
Changed
- createJwtToken($customPayload, $profile = 'default', $overrideClaims = []) now setting sub (subject) reserved claim
- JwtHelperService now implements Contracts\JwtServiceInterface
Deprecated
- Nothing
Removed
- nothing
Fixed
- Nothing
4.0.0
Added
- profiles in config
- leeway to account for clock skew when verifying JWT
- loadJwtProfile($profile) in service
Changed
- createJwtToken($customPayload, $profile = 'default', $overrideClaims = []) create jwt based on profile, ability to add/override claims on creation
- verifyJwtToken($token, $profile = 'default') verify based on profile
- createRefreshToken($profile = 'default') refresh token based on profile
- processRefreshToken($modelType, $modelId, $token = null, $profile = 'default') process refresh token based on profile
Deprecated
- Nothing
Removed
- All class attributes in JwtHelperService class
Fixed
- Nothing