mirror of https://github.com/jwtk/jjwt.git
parent
9e65ab7be0
commit
6565bdc019
|
@ -4,9 +4,10 @@
|
|||
|
||||
This patch release:
|
||||
|
||||
* Fixes issue when using Java 9+ `Map.of` with JacksonDeserializer which resulted in an NullPointerException
|
||||
* Fixes issue preventing Gson seralizer/deserializer implementation from being detected automatically
|
||||
* Services are now loaded from the context class loader, Services.class.classLoader, and the system classloader, the first classloader with a service wins, and the others are ignored. This mimics how `Classes.forName()` works, and how JJWT attempted to auto-discover various implementations in previous versions.
|
||||
* Fixes an issue when using Java 9+ `Map.of` with `JacksonDeserializer` that resulted in an `NullPointerException`.
|
||||
* Fixes an issue that prevented the `jjwt-gson` .jar's seralizer/deserializer implementation from being detected automatically.
|
||||
* Ensures service implementations are now loaded from the context class loader, Services.class.classLoader, and the system classloader, the first classloader with a service wins, and the others are ignored. This mimics how `Classes.forName()` works, and how JJWT attempted to auto-discover various implementations in previous versions.
|
||||
* Fixes a minor error in the `Claims#getIssuedAt` JavaDoc.
|
||||
|
||||
### 0.11.0
|
||||
|
||||
|
|
|
@ -141,7 +141,7 @@ public interface Claims extends Map<String, Object>, ClaimsMutator<Claims> {
|
|||
*
|
||||
* <p>If present, this value is the timestamp when the JWT was created.</p>
|
||||
*
|
||||
* @return the JWT {@code nbf} value or {@code null} if not present.
|
||||
* @return the JWT {@code iat} value or {@code null} if not present.
|
||||
*/
|
||||
Date getIssuedAt();
|
||||
|
||||
|
|
Loading…
Reference in New Issue