Skip to content

Commit b4fae64

Browse files
authored
Release 4.2.2 (#650)
1 parent 23e8549 commit b4fae64

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

CHANGELOG.md

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

3+
## [4.2.2](https://github.com/auth0/java-jwt/tree/4.2.2) (2023-01-11)
4+
[Full Changelog](https://github.com/auth0/java-jwt/compare/4.2.1...4.2.2)
5+
6+
This patch release does not contain any functional changes, but is being released using an updated signing key for verification as part of our commitment to best security practices.
7+
Please review [the README note for additional details.](https://github.com/auth0/java-jwt/blob/master/README.md)
8+
39
## [4.2.1](https://github.com/auth0/java-jwt/tree/4.2.1) (2022-10-24)
410
[Full Changelog](https://github.com/auth0/java-jwt/compare/4.2.0...4.2.1)
511

README.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
> **Note**
2+
> As part of our ongoing commitment to best security practices, we have rotated the signing keys used to sign previous releases of this SDK. As a result, new patch builds have been released using the new signing key. Please upgrade at your earliest convenience.
3+
>
4+
> While this change won't affect most developers, if you have implemented a dependency signature validation step in your build process, you may notice a warning that past releases can't be verified. This is expected, and a result of the key rotation process. Updating to the latest version will resolve this for you.
5+
16
![A Java implementation of JSON Web Token (JWT) - RFC 7519.](https://cdn.auth0.com/website/sdks/banners/java-jwt-banner.png)
27

38
[![CircleCI](https://img.shields.io/circleci/project/github/auth0/java-jwt.svg?style=flat-square)](https://circleci.com/gh/auth0/java-jwt/tree/master)
@@ -45,14 +50,14 @@ Add the dependency via Maven:
4550
<dependency>
4651
<groupId>com.auth0</groupId>
4752
<artifactId>java-jwt</artifactId>
48-
<version>4.2.1</version>
53+
<version>4.2.2</version>
4954
</dependency>
5055
```
5156

5257
or Gradle:
5358

5459
```gradle
55-
implementation 'com.auth0:java-jwt:4.2.1'
60+
implementation 'com.auth0:java-jwt:4.2.2'
5661
```
5762

5863
### Create a JWT

0 commit comments

Comments
 (0)