mirror of https://github.com/jwtk/jjwt.git
Upgraded org.json dependency to 20231013
* Upgrades org.json dependency to 20231013 (#862)
This commit is contained in:
parent
db339704e5
commit
28a2ca716a
|
@ -1,5 +1,14 @@
|
||||||
## Release Notes
|
## Release Notes
|
||||||
|
|
||||||
|
### 0.12.3
|
||||||
|
|
||||||
|
This patch release:
|
||||||
|
|
||||||
|
* Upgrades the `org.json` dependency to `20231013` to address that library's
|
||||||
|
[CVE-2023-5072](https://nvd.nist.gov/vuln/detail/CVE-2023-5072) vulnerability.
|
||||||
|
* (Re-)enables empty values for custom claims, which was the behavior in <= 0.11.5.
|
||||||
|
[Issue 858](https://github.com/jwtk/jjwt/issues/858).
|
||||||
|
|
||||||
### 0.12.2
|
### 0.12.2
|
||||||
|
|
||||||
This is a follow-up release to finalize the work in 0.12.1 that tried to fix a reflection scope problem
|
This is a follow-up release to finalize the work in 0.12.1 that tried to fix a reflection scope problem
|
||||||
|
|
3
pom.xml
3
pom.xml
|
@ -110,7 +110,7 @@
|
||||||
<buildNumber>${user.name}-${maven.build.timestamp}</buildNumber>
|
<buildNumber>${user.name}-${maven.build.timestamp}</buildNumber>
|
||||||
|
|
||||||
<jackson.version>2.12.7.1</jackson.version>
|
<jackson.version>2.12.7.1</jackson.version>
|
||||||
<orgjson.version>20230618</orgjson.version>
|
<orgjson.version>20231013</orgjson.version>
|
||||||
<gson.version>2.9.0</gson.version>
|
<gson.version>2.9.0</gson.version>
|
||||||
|
|
||||||
<maven.javadoc.additionalOptions />
|
<maven.javadoc.additionalOptions />
|
||||||
|
@ -677,6 +677,7 @@
|
||||||
<properties>
|
<properties>
|
||||||
<maven.jar.version>3.2.2</maven.jar.version>
|
<maven.jar.version>3.2.2</maven.jar.version>
|
||||||
<maven.compiler.version>3.8.1</maven.compiler.version>
|
<maven.compiler.version>3.8.1</maven.compiler.version>
|
||||||
|
<orgjson.version>20230618</orgjson.version>
|
||||||
<bcprov.artifactId>bcprov-jdk15to18</bcprov.artifactId>
|
<bcprov.artifactId>bcprov-jdk15to18</bcprov.artifactId>
|
||||||
<bcpkix.artifactId>bcpkix-jdk15to18</bcpkix.artifactId>
|
<bcpkix.artifactId>bcpkix-jdk15to18</bcpkix.artifactId>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
Loading…
Reference in New Issue