Skip to content

Commit

Permalink
Release 3.19.4 (#651)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyjames authored Jan 11, 2023
1 parent 3f5df48 commit c4f4f09
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [3.19.4](https://github.com/auth0/java-jwt/tree/3.19.4) (2023-01-11)
[Full Changelog](https://github.com/auth0/java-jwt/compare/3.19.3...3.19.4)

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.
Please review [the README note for additional details.](https://github.com/auth0/java-jwt/blob/v3/README.md)

## [3.19.3](https://github.com/auth0/java-jwt/tree/3.19.3) (2022-10-24)
[Full Changelog](https://github.com/auth0/java-jwt/compare/3.19.2...3.19.3)

Expand Down
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@
[![License](https://img.shields.io/:license-mit-blue.svg?style=flat)](https://doge.mit-license.org)
[![Javadoc](https://javadoc.io/badge2/com.auth0/java-jwt/javadoc.svg)](https://javadoc.io/doc/com.auth0/java-jwt/latest/index.html)

> **Note**
> 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.
>
> 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.

A Java implementation of [JSON Web Token (JWT) - RFC 7519](https://tools.ietf.org/html/rfc7519).

> :warning: **Important security note:** JVM has a critical vulnerability for ECDSA Algorithms - [CVE-2022-21449](https://nvd.nist.gov/vuln/detail/CVE-2022-21449). Please review the details of the vulnerability and update your environment.
Expand All @@ -25,14 +31,14 @@ The library is available on both Maven Central and Bintray, and the Javadoc is p
<dependency>
<groupId>com.auth0</groupId>
<artifactId>java-jwt</artifactId>
<version>3.19.3</version>
<version>3.19.4</version>
</dependency>
```

### Gradle

```gradle
implementation 'com.auth0:java-jwt:3.19.3'
implementation 'com.auth0:java-jwt:3.19.4'
```

## Available Algorithms
Expand Down

0 comments on commit c4f4f09

Please sign in to comment.