Skip to content

Commit 6621b50

Browse files
authored
Merge pull request #613 from auth0/release/4.1.0
Release 4.1.0
2 parents 37c262d + d2bf8d3 commit 6621b50

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

CHANGELOG.md

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

3+
## [4.1.0](https://github.com/auth0/java-jwt/tree/4.1.0) (2022-10-06)
4+
[Full Changelog](https://github.com/auth0/java-jwt/compare/4.0.0...4.1.0)
5+
6+
**⚠️ BREAKING CHANGES**
7+
- Make JWT constants final values [\#604](https://github.com/auth0/java-jwt/pull/604) ([poovamraj](https://github.com/poovamraj))
8+
9+
**Added**
10+
- Add integration with our Shipping orb [\#612](https://github.com/auth0/java-jwt/pull/612) ([frederikprijck](https://github.com/frederikprijck))
11+
- Add Ship CLI support [\#609](https://github.com/auth0/java-jwt/pull/609) ([jimmyjames](https://github.com/jimmyjames))
12+
- Provide straightforward example for JWKS [\#600](https://github.com/auth0/java-jwt/pull/600) ([poovamraj](https://github.com/poovamraj))
13+
14+
**Changed**
15+
- Update to gradle 6.9.2 [\#608](https://github.com/auth0/java-jwt/pull/608) ([jimmyjames](https://github.com/jimmyjames))
16+
- Update OSS plugin to latest [\#607](https://github.com/auth0/java-jwt/pull/607) ([jimmyjames](https://github.com/jimmyjames))
17+
- [SDK-3466] Upgrade Codecov [\#595](https://github.com/auth0/java-jwt/pull/595) ([evansims](https://github.com/evansims))
18+
- Update README.md [\#590](https://github.com/auth0/java-jwt/pull/590) ([poovamraj](https://github.com/poovamraj))
19+
20+
**Fixed**
21+
- Check for null token before splitting [\#606](https://github.com/auth0/java-jwt/pull/606) ([jimmyjames](https://github.com/jimmyjames))
22+
- [SDK-3816] Update docs for verification thread-safety [\#605](https://github.com/auth0/java-jwt/pull/605) ([jimmyjames](https://github.com/jimmyjames))
23+
324
## [4.0.0](https://github.com/auth0/java-jwt/tree/4.0.0) (2022-06-24)
425
[Full Changelog](https://github.com/auth0/java-jwt/compare/3.19.2...4.0.0)
526

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ This library is supported for Java 8, 11, and 17. For issues on non-LTS versions
3939
### Gradle
4040

4141
```gradle
42-
implementation 'com.auth0:java-jwt:4.0.0'
42+
implementation 'com.auth0:java-jwt:4.1.0'
4343
```
4444

4545
### Maven
@@ -48,7 +48,7 @@ implementation 'com.auth0:java-jwt:4.0.0'
4848
<dependency>
4949
<groupId>com.auth0</groupId>
5050
<artifactId>java-jwt</artifactId>
51-
<version>4.0.0</version>
51+
<version>4.1.0</version>
5252
</dependency>
5353
```
5454

lib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
version = "4.0.0"
2+
version = "4.1.0"
33
}
44

55
plugins {

0 commit comments

Comments
 (0)