mirror of
https://github.com/jonasroussel/dart_jsonwebtoken.git
synced 2025-08-01 00:16:26 +08:00
v1.4.1
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
## 1.4.1
|
||||||
|
|
||||||
|
- Formating for 'static analysis'
|
||||||
|
|
||||||
## 1.4.0
|
## 1.4.0
|
||||||
|
|
||||||
- Implementing `throwUndefinedErrors` option in the `JWT.verify` method
|
- Implementing `throwUndefinedErrors` option in the `JWT.verify` method
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# JSON Web Token (JWT)
|
# JSON Web Token (JWT)
|
||||||
[](https://pub.dev/packages/dart_jsonwebtoken)
|
[](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.
|
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.
|
https://jwt.io allows you to decode, verify and generate JWT.
|
||||||
|
@ -120,7 +120,7 @@ class JWT {
|
|||||||
}
|
}
|
||||||
} catch (ex) {
|
} catch (ex) {
|
||||||
if (throwUndefinedErrors) {
|
if (throwUndefinedErrors) {
|
||||||
throw ex;
|
rethrow;
|
||||||
} else {
|
} else {
|
||||||
throw JWTInvalidError('invalid token');
|
throw JWTInvalidError('invalid token');
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
name: dart_jsonwebtoken
|
name: dart_jsonwebtoken
|
||||||
description: A dart implementation of the famous javascript library 'jsonwebtoken' (JWT).
|
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
|
repository: https://github.com/jonasroussel/jsonwebtoken
|
||||||
homepage: https://github.com/jonasroussel/jsonwebtoken#readme
|
homepage: https://github.com/jonasroussel/jsonwebtoken#readme
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user