Skip to content

Commit e357463

Browse files
committed
Preparing for the 0.13.0 release.
1 parent b6f8cb8 commit e357463

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
## Release Notes
22

3+
### 0.13.0
4+
5+
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.
6+
7+
**All future JJWT major and minor versions ( `0.14.0` and later) will require Java 8 or later.**
8+
9+
This `0.13.0` minor release has only one change:
10+
11+
- The previously private `JacksonDeserializer(ObjectMapper objectMapper, Map<String, Class<?>> claimTypeMap)` constructor is now `public` for those that want register a claims
12+
type converter on their own specified `ObjectMapper` instance. See [Issue 914](https://github.com/jwtk/jjwt/issues/914).
13+
314
### 0.12.7
415

516
This patch release:

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:doctype: book
22
= Java JWT: JSON Web Token for Java and Android
3-
:project-version: 0.12.7
3+
:project-version: 0.13.0
44
:toc:
55
:toc-title:
66
:toc-placement!:

extensions/jackson/src/main/java/io/jsonwebtoken/jackson/io/JacksonDeserializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public JacksonDeserializer(ObjectMapper objectMapper) {
113113
* @param objectMapper the objectMapper to modify by registering a custom type-converting
114114
* {@link com.fasterxml.jackson.databind.Module Module}
115115
* @param claimTypeMap The claim name-to-class map used to deserialize claims into the given type
116-
* @since 0.12.4
116+
* @since 0.13.0
117117
*/
118118
public JacksonDeserializer(ObjectMapper objectMapper, Map<String, Class<?>> claimTypeMap) {
119119
this(objectMapper);

0 commit comments

Comments
 (0)