mirror of
https://github.com/jonasroussel/dart_jsonwebtoken.git
synced 2025-05-18 00:25:52 +08:00
v1.4.1
This commit is contained in:
@ -1,3 +1,7 @@
|
||||
## 1.4.1
|
||||
|
||||
- Formating for 'static analysis'
|
||||
|
||||
## 1.4.0
|
||||
|
||||
- Implementing `throwUndefinedErrors` option in the `JWT.verify` method
|
||||
|
@ -1,7 +1,7 @@
|
||||
# JSON Web Token (JWT)
|
||||
[](https://pub.dev/packages/dart_jsonwebtoken)
|
||||
|
||||
A dart implementation of the famous javascript library `jsonwebtoken` (JWT).
|
||||
A dart implementation of the famous javascript library `jsonwebtoken`.
|
||||
|
||||
JSON Web Tokens are an open, industry standard RFC 7519 method for representing claims securely between two parties.
|
||||
https://jwt.io allows you to decode, verify and generate JWT.
|
||||
|
@ -120,7 +120,7 @@ class JWT {
|
||||
}
|
||||
} catch (ex) {
|
||||
if (throwUndefinedErrors) {
|
||||
throw ex;
|
||||
rethrow;
|
||||
} else {
|
||||
throw JWTInvalidError('invalid token');
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
name: dart_jsonwebtoken
|
||||
description: A dart implementation of the famous javascript library 'jsonwebtoken' (JWT).
|
||||
version: 1.4.0
|
||||
version: 1.4.1
|
||||
repository: https://github.com/jonasroussel/jsonwebtoken
|
||||
homepage: https://github.com/jonasroussel/jsonwebtoken#readme
|
||||
|
||||
|
Reference in New Issue
Block a user