@@ -540,18 +540,18 @@ If you're building a (non-Android) JDK project, you will want to define the foll
540540<dependency >
541541 <groupId >io.jsonwebtoken</groupId >
542542 <artifactId >jjwt-api</artifactId >
543- <version >0.12.1 </version >
543+ <version >0.12.2 </version >
544544</dependency >
545545<dependency >
546546 <groupId >io.jsonwebtoken</groupId >
547547 <artifactId >jjwt-impl</artifactId >
548- <version >0.12.1 </version >
548+ <version >0.12.2 </version >
549549 <scope >runtime</scope >
550550</dependency >
551551<dependency >
552552 <groupId >io.jsonwebtoken</groupId >
553553 <artifactId >jjwt-jackson</artifactId > <!-- or jjwt-gson if Gson is preferred -->
554- <version >0.12.1 </version >
554+ <version >0.12.2 </version >
555555 <scope >runtime</scope >
556556</dependency >
557557<!-- Uncomment this next dependency if you are using:
@@ -574,9 +574,9 @@ If you're building a (non-Android) JDK project, you will want to define the foll
574574
575575``` groovy
576576dependencies {
577- implementation 'io.jsonwebtoken:jjwt-api:0.12.1 '
578- runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.1 '
579- runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.1 ' // or 'io.jsonwebtoken:jjwt-gson:0.12.1 ' for gson
577+ implementation 'io.jsonwebtoken:jjwt-api:0.12.2 '
578+ runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.2 '
579+ runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.2 ' // or 'io.jsonwebtoken:jjwt-gson:0.12.2 ' for gson
580580 /*
581581 Uncomment this next dependency if you are using:
582582 - JDK 10 or earlier, and you want to use RSASSA-PSS (PS256, PS384, PS512) signature algorithms.
@@ -601,9 +601,9 @@ Add the dependencies to your project:
601601
602602``` groovy
603603dependencies {
604- api('io.jsonwebtoken:jjwt-api:0.12.1 ')
605- runtimeOnly('io.jsonwebtoken:jjwt-impl:0.12.1 ')
606- runtimeOnly('io.jsonwebtoken:jjwt-orgjson:0.12.1 ') {
604+ api('io.jsonwebtoken:jjwt-api:0.12.2 ')
605+ runtimeOnly('io.jsonwebtoken:jjwt-impl:0.12.2 ')
606+ runtimeOnly('io.jsonwebtoken:jjwt-orgjson:0.12.2 ') {
607607 exclude(group: 'org.json', module: 'json') //provided by Android natively
608608 }
609609 /*
@@ -2952,7 +2952,7 @@ scope which is the typical JJWT default). That is:
29522952< dependency>
29532953 < groupId> io. jsonwebtoken< / groupId>
29542954 < artifactId> jjwt- jackson< / artifactId>
2955- < version> 0.12 . 1 < / version>
2955+ < version> 0.12 . 2 < / version>
29562956 < scope> compile< / scope> < ! -- Not runtime -- >
29572957< / dependency>
29582958```
@@ -2961,7 +2961,7 @@ scope which is the typical JJWT default). That is:
29612961
29622962```groovy
29632963dependencies {
2964- implementation ' io.jsonwebtoken:jjwt-jackson:0.12.1 '
2964+ implementation ' io.jsonwebtoken:jjwt-jackson:0.12.2 '
29652965}
29662966```
29672967
@@ -3069,7 +3069,7 @@ scope which is the typical JJWT default). That is:
30693069<dependency>
30703070 <groupId>io.jsonwebtoken</groupId>
30713071 <artifactId>jjwt-gson</artifactId>
3072- <version>0.12.1 </version>
3072+ <version>0.12.2 </version>
30733073 <scope>compile</scope> <!-- Not runtime -->
30743074</dependency>
30753075```
@@ -3078,7 +3078,7 @@ scope which is the typical JJWT default). That is:
30783078
30793079```groovy
30803080dependencies {
3081- implementation ' io. jsonwebtoken: jjwt- gson: 0.12 . 1 '
3081+ implementation ' io. jsonwebtoken: jjwt- gson: 0.12 . 2 '
30823082}
30833083```
30843084
0 commit comments