Skip to content

Commit dd164c6

Browse files
committed
Release 3.10.0
1 parent 8e02a2e commit dd164c6

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Change Log
22

3+
## [3.10.0](https://github.com/auth0/java-jwt/tree/3.10.0) (2020-02-14)
4+
[Full Changelog](https://github.com/auth0/java-jwt/compare/3.9.0...3.10.0)
5+
**Closed issues**
6+
- NullPointerException when the claim doesn't exist in the token [\#384](https://github.com/auth0/java-jwt/issues/384)
7+
8+
**Added**
9+
- Add Javadoc URL and badge to the README [\#382](https://github.com/auth0/java-jwt/pull/382) ([lbalmaceda](https://github.com/lbalmaceda))
10+
- Allow to customize the typ header claim [\#381](https://github.com/auth0/java-jwt/pull/381) ([lbalmaceda](https://github.com/lbalmaceda))
11+
- JWTCreator for basic types [\#282](https://github.com/auth0/java-jwt/pull/282) ([skjolber](https://github.com/skjolber))
12+
- Support verification of Long[] datatype like in JWTCreator [\#278](https://github.com/auth0/java-jwt/pull/278) ([skjolber](https://github.com/skjolber))
13+
14+
**Changed**
15+
- Update to Gradle 6.1.1 [\#389](https://github.com/auth0/java-jwt/pull/389) ([jimmyjames](https://github.com/jimmyjames))
16+
17+
**Fixed**
18+
- Handle missing expected array claim [\#393](https://github.com/auth0/java-jwt/pull/393) ([lbalmaceda](https://github.com/lbalmaceda))
19+
- Update tests to use valid Base64 URL-encoded tokens [\#386](https://github.com/auth0/java-jwt/pull/386) ([jimmyjames](https://github.com/jimmyjames))
20+
321
## [3.9.0](https://github.com/auth0/java-jwt/tree/3.9.0) (2020-01-02)
422
[Full Changelog](https://github.com/auth0/java-jwt/compare/3.8.3...3.9.0)
523

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ The library is available on both Maven Central and Bintray, and the Javadoc is p
2121
<dependency>
2222
<groupId>com.auth0</groupId>
2323
<artifactId>java-jwt</artifactId>
24-
<version>3.9.0</version>
24+
<version>3.10.0</version>
2525
</dependency>
2626
```
2727

2828
### Gradle
2929

3030
```gradle
31-
implementation 'com.auth0:java-jwt:3.9.0'
31+
implementation 'com.auth0:java-jwt:3.10.0'
3232
```
3333

3434
## Available Algorithms

0 commit comments

Comments
 (0)