mirror of
https://github.com/jwtk/jjwt.git
synced 2026-03-13 08:20:15 +08:00
Release 0.13.0 (#1016)
This commit is contained in:
11
CHANGELOG.md
11
CHANGELOG.md
@@ -1,5 +1,16 @@
|
||||
## Release Notes
|
||||
|
||||
### 0.13.0
|
||||
|
||||
This is the last minor JJWT release branch that will support Java 7. Any necessary emergency bug fixes will be fixed in subsequent `0.13.x` patch releases, but all new development, including Java 8 compatible changes, will be in the next minor (`0.14.0`) release.
|
||||
|
||||
**All future JJWT major and minor versions ( `0.14.0` and later) will require Java 8 or later.**
|
||||
|
||||
This `0.13.0` minor release has only one change:
|
||||
|
||||
- The previously private `JacksonDeserializer(ObjectMapper objectMapper, Map<String, Class<?>> claimTypeMap)` constructor is now `public` for those that want register a claims
|
||||
type converter on their own specified `ObjectMapper` instance. See [Issue 914](https://github.com/jwtk/jjwt/issues/914).
|
||||
|
||||
### 0.12.7
|
||||
|
||||
This patch release:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
:doctype: book
|
||||
= Java JWT: JSON Web Token for Java and Android
|
||||
:project-version: 0.12.7
|
||||
:project-version: 0.13.0
|
||||
:toc:
|
||||
:toc-title:
|
||||
:toc-placement!:
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-root</artifactId>
|
||||
<version>0.13.0-SNAPSHOT</version>
|
||||
<version>0.14.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
14
bom/pom.xml
14
bom/pom.xml
@@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-root</artifactId>
|
||||
<version>0.13.0-SNAPSHOT</version>
|
||||
<version>0.14.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
@@ -40,34 +40,34 @@
|
||||
<dependency>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt</artifactId>
|
||||
<version>0.13.0-SNAPSHOT</version>
|
||||
<version>0.14.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-api</artifactId>
|
||||
<version>0.13.0-SNAPSHOT</version>
|
||||
<version>0.14.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-impl</artifactId>
|
||||
<version>0.13.0-SNAPSHOT</version>
|
||||
<version>0.14.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Extensions -->
|
||||
<dependency>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-orgjson</artifactId>
|
||||
<version>0.13.0-SNAPSHOT</version>
|
||||
<version>0.14.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-gson</artifactId>
|
||||
<version>0.13.0-SNAPSHOT</version>
|
||||
<version>0.14.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-jackson</artifactId>
|
||||
<version>0.13.0-SNAPSHOT</version>
|
||||
<version>0.14.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-root</artifactId>
|
||||
<version>0.13.0-SNAPSHOT</version>
|
||||
<version>0.14.0-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-root</artifactId>
|
||||
<version>0.13.0-SNAPSHOT</version>
|
||||
<version>0.14.0-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -113,7 +113,7 @@ public class JacksonDeserializer<T> extends AbstractDeserializer<T> {
|
||||
* @param objectMapper the objectMapper to modify by registering a custom type-converting
|
||||
* {@link com.fasterxml.jackson.databind.Module Module}
|
||||
* @param claimTypeMap The claim name-to-class map used to deserialize claims into the given type
|
||||
* @since 0.12.4
|
||||
* @since 0.13.0
|
||||
*/
|
||||
public JacksonDeserializer(ObjectMapper objectMapper, Map<String, Class<?>> claimTypeMap) {
|
||||
this(objectMapper);
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-root</artifactId>
|
||||
<version>0.13.0-SNAPSHOT</version>
|
||||
<version>0.14.0-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-root</artifactId>
|
||||
<version>0.13.0-SNAPSHOT</version>
|
||||
<version>0.14.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-root</artifactId>
|
||||
<version>0.13.0-SNAPSHOT</version>
|
||||
<version>0.14.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
2
pom.xml
2
pom.xml
@@ -19,7 +19,7 @@
|
||||
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-root</artifactId>
|
||||
<version>0.13.0-SNAPSHOT</version>
|
||||
<version>0.14.0-SNAPSHOT</version>
|
||||
<name>JJWT</name>
|
||||
<description>JSON Web Token support for the JVM and Android</description>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
<parent>
|
||||
<groupId>io.jsonwebtoken</groupId>
|
||||
<artifactId>jjwt-root</artifactId>
|
||||
<version>0.13.0-SNAPSHOT</version>
|
||||
<version>0.14.0-SNAPSHOT</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user