Skip to content

Commit eb41281

Browse files
committed
Release 3.2.0
1 parent 3e0d68d commit eb41281

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

Diff for: CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Change Log
22

3+
## [3.2.0](https://github.com/auth0/java-jwt/tree/3.2.0) (2017-05-04)
4+
[Full Changelog](https://github.com/auth0/java-jwt/compare/3.1.0...3.2.0)
5+
**Closed issues**
6+
- Claim.isNull() returns true for JSON Object constructed claims [\#160](https://github.com/auth0/java-jwt/issues/160)
7+
- Incorrectly rejects whitespace after JSON header as invalid [\#144](https://github.com/auth0/java-jwt/issues/144)
8+
- No token type [\#136](https://github.com/auth0/java-jwt/issues/136)
9+
- Timestamps are limited by Integer/int to 2038-01-19T04:14:07.000+0100 [\#132](https://github.com/auth0/java-jwt/issues/132)
10+
11+
**Added**
12+
- Refactor KeyProvider to receive the "Key Id" [\#167](https://github.com/auth0/java-jwt/pull/167) ([lbalmaceda](https://github.com/lbalmaceda))
13+
- Add Sign/Verify of Long type claims [\#157](https://github.com/auth0/java-jwt/pull/157) ([vrancic](https://github.com/vrancic))
14+
- added date validation dedicated exception [\#155](https://github.com/auth0/java-jwt/pull/155) ([Spyna](https://github.com/Spyna))
15+
- Allow to get a Claim as Map [\#152](https://github.com/auth0/java-jwt/pull/152) ([lbalmaceda](https://github.com/lbalmaceda))
16+
- Add Algorithm KeyProvider interface [\#149](https://github.com/auth0/java-jwt/pull/149) ([lbalmaceda](https://github.com/lbalmaceda))
17+
- Instantiate RSA/EC Algorithm with both keys [\#147](https://github.com/auth0/java-jwt/pull/147) ([lbalmaceda](https://github.com/lbalmaceda))
18+
- Add Key Id setter and set JWT Type after signing [\#138](https://github.com/auth0/java-jwt/pull/138) ([lbalmaceda](https://github.com/lbalmaceda))
19+
20+
**Changed**
21+
- Change the JWT.decode() return type to DecodedJWT [\#150](https://github.com/auth0/java-jwt/pull/150) ([lbalmaceda](https://github.com/lbalmaceda))
22+
23+
**Fixed**
24+
- Fix Claim.isNull() method for JSON Objects [\#161](https://github.com/auth0/java-jwt/pull/161) ([lbalmaceda](https://github.com/lbalmaceda))
25+
- Accept blanks, new line and carriage returns on JSON [\#151](https://github.com/auth0/java-jwt/pull/151) ([lbalmaceda](https://github.com/lbalmaceda))
26+
- Fix Date value conversion [\#137](https://github.com/auth0/java-jwt/pull/137) ([lbalmaceda](https://github.com/lbalmaceda))
27+
328
## [3.1.0](https://github.com/auth0/java-jwt/tree/3.1.0) (2017-01-04)
429
[Full Changelog](https://github.com/auth0/java-jwt/compare/3.0.2...3.1.0)
530

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ If you're looking for an **Android** version of the JWT Decoder take a look at o
1818
<dependency>
1919
<groupId>com.auth0</groupId>
2020
<artifactId>java-jwt</artifactId>
21-
<version>3.1.0</version>
21+
<version>3.2.0</version>
2222
</dependency>
2323
```
2424

2525
### Gradle
2626

2727
```gradle
28-
compile 'com.auth0:java-jwt:3.1.0'
28+
compile 'com.auth0:java-jwt:3.2.0'
2929
```
3030

3131
## Available Algorithms

0 commit comments

Comments
 (0)