diff --git a/CHANGES b/CHANGES
index 2a11b37..43fc61e 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,10 @@
FusionAuth JWT Changes
+Changes in 5.3.3
+
+ * Upgraded com.fasterxml.jackson.core:jackson-* to 2.15.4.
+ * Upgraded test dependency org.bouncycastle.bc-fips to 1.0.2.5
+
Changes in 5.3.2
* Correct the padding when extracting the r and s components from a DER encoded public key.
diff --git a/README.md b/README.md
index 6b9e26c..0c65fbe 100644
--- a/README.md
+++ b/README.md
@@ -41,23 +41,23 @@ We are very interested in compensating anyone that can identify a security relat
io.fusionauth
fusionauth-jwt
- 5.3.2
+ 5.3.3
```
### Gradle
```groovy
-implementation 'io.fusionauth:fusionauth-jwt:5.3.2'
+implementation 'io.fusionauth:fusionauth-jwt:5.3.3'
```
### Gradle Kotlin
```kotlin
-implementation("io.fusionauth:fusionauth-jwt:5.3.2")
+implementation("io.fusionauth:fusionauth-jwt:5.3.3")
```
### Savant
```groovy
-dependency(id: "io.fusionauth:fusionauth-jwt:5.3.2")
+dependency(id: "io.fusionauth:fusionauth-jwt:5.3.3")
```
For others see [https://search.maven.org](https://search.maven.org/artifact/io.fusionauth/fusionauth-jwt/4.0.1/jar).
diff --git a/build.savant b/build.savant
index 92d52d3..84aacf7 100644
--- a/build.savant
+++ b/build.savant
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2016-2023, FusionAuth, All Rights Reserved
+ * Copyright (c) 2016-2024, FusionAuth, All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
* language governing permissions and limitations under the License.
*/
-jacksonVersion = "2.15.2"
+jacksonVersion = "2.15.4"
-project(group: "io.fusionauth", name: "fusionauth-jwt", version: "5.3.2", licenses: ["ApacheV2_0"]) {
+project(group: "io.fusionauth", name: "fusionauth-jwt", version: "5.3.3", licenses: ["ApacheV2_0"]) {
workflow {
fetch {
@@ -30,6 +30,9 @@ project(group: "io.fusionauth", name: "fusionauth-jwt", version: "5.3.2", licens
publish {
cache()
}
+ semanticVersions {
+ mapping(id: "org.bouncycastle:bc-fips:1.0.2.5", version: "1.0.2+P5")
+ }
}
publishWorkflow {
@@ -43,7 +46,7 @@ project(group: "io.fusionauth", name: "fusionauth-jwt", version: "5.3.2", licens
dependency(id: "com.fasterxml.jackson.core:jackson-annotations:${jacksonVersion}")
}
group(name: "test-compile", export: false) {
- dependency(id: "org.bouncycastle:bc-fips:1.0.2+P4")
+ dependency(id: "org.bouncycastle:bc-fips:1.0.2.5")
dependency(id: "org.testng:testng:7.5.1")
}
}
diff --git a/fusionauth-jwt.iml b/fusionauth-jwt.iml
index 1785c4c..c80b071 100644
--- a/fusionauth-jwt.iml
+++ b/fusionauth-jwt.iml
@@ -16,44 +16,44 @@
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/pom.xml b/pom.xml
index 32c2f1c..2539f1d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
io.fusionauth
fusionauth-jwt
- 5.3.2
+ 5.3.3
jar
FusionAuth JWT
@@ -62,17 +62,17 @@
com.fasterxml.jackson.core
jackson-core
- 2.15.2
+ 2.15.4
com.fasterxml.jackson.core
jackson-databind
- 2.15.2
+ 2.15.4
com.fasterxml.jackson.core
jackson-annotations
- 2.15.2
+ 2.15.4
@@ -87,7 +87,7 @@
org.bouncycastle
bc-fips
- 1.0.2.4
+ 1.0.2.5
test