Skip to content

Commit ed29187

Browse files
committed
Bump version, CHANGES.
1 parent 53d1026 commit ed29187

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
lines changed

CHANGES

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
FusionAuth JWT Changes
22

3+
Changes in 5.3.2
4+
5+
* Correct the padding when extracting the r and s components from a DER encoded public key.
6+
This bug may cause some signatures to be invalid when using ES512.
7+
8+
Resolves https://github.com/FusionAuth/fusionauth-jwt/issues/57
9+
10+
Changes in 5.3.1
11+
12+
* Upgraded Jackson Core to 2.15.2.
13+
314
Changes in 5.3.0
415

516
* Add support for providing your own JWT header. This will enable you to customize the header property order for example.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,23 +41,23 @@ We are very interested in compensating anyone that can identify a security relat
4141
<dependency>
4242
<groupId>io.fusionauth</groupId>
4343
<artifactId>fusionauth-jwt</artifactId>
44-
<version>5.3.1</version>
44+
<version>5.3.2</version>
4545
</dependency>
4646
```
4747

4848
### Gradle
4949
```groovy
50-
implementation 'io.fusionauth:fusionauth-jwt:5.3.1'
50+
implementation 'io.fusionauth:fusionauth-jwt:5.3.2'
5151
```
5252

5353
### Gradle Kotlin
5454
```kotlin
55-
implementation("io.fusionauth:fusionauth-jwt:5.3.1")
55+
implementation("io.fusionauth:fusionauth-jwt:5.3.2")
5656
```
5757

5858
### Savant
5959
```groovy
60-
dependency(id: "io.fusionauth:fusionauth-jwt:5.3.1")
60+
dependency(id: "io.fusionauth:fusionauth-jwt:5.3.2")
6161
```
6262

6363
For others see [https://search.maven.org](https://search.maven.org/artifact/io.fusionauth/fusionauth-jwt/4.0.1/jar).

build.savant

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
jacksonVersion = "2.15.2"
1818

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

2121
workflow {
2222
fetch {

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.fusionauth</groupId>
88
<artifactId>fusionauth-jwt</artifactId>
9-
<version>5.3.1</version>
9+
<version>5.3.2</version>
1010
<packaging>jar</packaging>
1111

1212
<name>FusionAuth JWT</name>

0 commit comments

Comments
 (0)