Skip to content

Commit

Permalink
Bump version, CHANGES.
Browse files Browse the repository at this point in the history
  • Loading branch information
robotdan committed Feb 29, 2024
1 parent 53d1026 commit ed29187
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGES
@@ -1,5 +1,16 @@
FusionAuth JWT Changes

Changes in 5.3.2

* Correct the padding when extracting the r and s components from a DER encoded public key.
This bug may cause some signatures to be invalid when using ES512.

Resolves https://github.com/FusionAuth/fusionauth-jwt/issues/57

Changes in 5.3.1

* Upgraded Jackson Core to 2.15.2.

Changes in 5.3.0

* Add support for providing your own JWT header. This will enable you to customize the header property order for example.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -41,23 +41,23 @@ We are very interested in compensating anyone that can identify a security relat
<dependency>
<groupId>io.fusionauth</groupId>
<artifactId>fusionauth-jwt</artifactId>
<version>5.3.1</version>
<version>5.3.2</version>
</dependency>
```

### Gradle
```groovy
implementation 'io.fusionauth:fusionauth-jwt:5.3.1'
implementation 'io.fusionauth:fusionauth-jwt:5.3.2'
```

### Gradle Kotlin
```kotlin
implementation("io.fusionauth:fusionauth-jwt:5.3.1")
implementation("io.fusionauth:fusionauth-jwt:5.3.2")
```

### Savant
```groovy
dependency(id: "io.fusionauth:fusionauth-jwt:5.3.1")
dependency(id: "io.fusionauth:fusionauth-jwt:5.3.2")
```

For others see [https://search.maven.org](https://search.maven.org/artifact/io.fusionauth/fusionauth-jwt/4.0.1/jar).
Expand Down
2 changes: 1 addition & 1 deletion build.savant
Expand Up @@ -16,7 +16,7 @@

jacksonVersion = "2.15.2"

project(group: "io.fusionauth", name: "fusionauth-jwt", version: "5.3.1", licenses: ["ApacheV2_0"]) {
project(group: "io.fusionauth", name: "fusionauth-jwt", version: "5.3.2", licenses: ["ApacheV2_0"]) {

workflow {
fetch {
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -6,7 +6,7 @@

<groupId>io.fusionauth</groupId>
<artifactId>fusionauth-jwt</artifactId>
<version>5.3.1</version>
<version>5.3.2</version>
<packaging>jar</packaging>

<name>FusionAuth JWT</name>
Expand Down

0 comments on commit ed29187

Please sign in to comment.