@@ -543,18 +543,18 @@ If you're building a (non-Android) JDK project, you will want to define the foll
543543<dependency >
544544 <groupId >io.jsonwebtoken</groupId >
545545 <artifactId >jjwt-api</artifactId >
546- <version >0.12.4 </version >
546+ <version >0.12.5 </version >
547547</dependency >
548548<dependency >
549549 <groupId >io.jsonwebtoken</groupId >
550550 <artifactId >jjwt-impl</artifactId >
551- <version >0.12.4 </version >
551+ <version >0.12.5 </version >
552552 <scope >runtime</scope >
553553</dependency >
554554<dependency >
555555 <groupId >io.jsonwebtoken</groupId >
556556 <artifactId >jjwt-jackson</artifactId > <!-- or jjwt-gson if Gson is preferred -->
557- <version >0.12.4 </version >
557+ <version >0.12.5 </version >
558558 <scope >runtime</scope >
559559</dependency >
560560<!-- Uncomment this next dependency if you are using:
@@ -577,9 +577,9 @@ If you're building a (non-Android) JDK project, you will want to define the foll
577577
578578``` groovy
579579dependencies {
580- implementation 'io.jsonwebtoken:jjwt-api:0.12.4 '
581- runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.4 '
582- runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.4 ' // or 'io.jsonwebtoken:jjwt-gson:0.12.4 ' for gson
580+ implementation 'io.jsonwebtoken:jjwt-api:0.12.5 '
581+ runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.5 '
582+ runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.5 ' // or 'io.jsonwebtoken:jjwt-gson:0.12.5 ' for gson
583583 /*
584584 Uncomment this next dependency if you are using:
585585 - JDK 10 or earlier, and you want to use RSASSA-PSS (PS256, PS384, PS512) signature algorithms.
@@ -604,9 +604,9 @@ Add the dependencies to your project:
604604
605605``` groovy
606606dependencies {
607- api('io.jsonwebtoken:jjwt-api:0.12.4 ')
608- runtimeOnly('io.jsonwebtoken:jjwt-impl:0.12.4 ')
609- runtimeOnly('io.jsonwebtoken:jjwt-orgjson:0.12.4 ') {
607+ api('io.jsonwebtoken:jjwt-api:0.12.5 ')
608+ runtimeOnly('io.jsonwebtoken:jjwt-impl:0.12.5 ')
609+ runtimeOnly('io.jsonwebtoken:jjwt-orgjson:0.12.5 ') {
610610 exclude(group: 'org.json', module: 'json') //provided by Android natively
611611 }
612612 /*
@@ -3040,7 +3040,7 @@ scope which is the typical JJWT default). That is:
30403040< dependency>
30413041 < groupId> io. jsonwebtoken< / groupId>
30423042 < artifactId> jjwt- jackson< / artifactId>
3043- < version> 0.12 . 4 < / version>
3043+ < version> 0.12 . 5 < / version>
30443044 < scope> compile< / scope> < ! -- Not runtime -- >
30453045< / dependency>
30463046```
@@ -3049,7 +3049,7 @@ scope which is the typical JJWT default). That is:
30493049
30503050```groovy
30513051dependencies {
3052- implementation ' io.jsonwebtoken:jjwt-jackson:0.12.4 '
3052+ implementation ' io.jsonwebtoken:jjwt-jackson:0.12.5 '
30533053}
30543054```
30553055
@@ -3157,7 +3157,7 @@ scope which is the typical JJWT default). That is:
31573157<dependency>
31583158 <groupId>io.jsonwebtoken</groupId>
31593159 <artifactId>jjwt-gson</artifactId>
3160- <version>0.12.4 </version>
3160+ <version>0.12.5 </version>
31613161 <scope>compile</scope> <!-- Not runtime -->
31623162</dependency>
31633163```
@@ -3166,7 +3166,7 @@ scope which is the typical JJWT default). That is:
31663166
31673167```groovy
31683168dependencies {
3169- implementation ' io. jsonwebtoken: jjwt- gson: 0.12 . 4 '
3169+ implementation ' io. jsonwebtoken: jjwt- gson: 0.12 . 5 '
31703170}
31713171```
31723172
0 commit comments