From 7e9e4bd8c3d54c6665a560d578ce6e479acef5c1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 22:39:43 +0000 Subject: [PATCH] chore(deps): bump io.jsonwebtoken:jjwt-impl from 0.12.6 to 0.13.0 Bumps [io.jsonwebtoken:jjwt-impl](https://github.com/jwtk/jjwt) from 0.12.6 to 0.13.0. - [Release notes](https://github.com/jwtk/jjwt/releases) - [Changelog](https://github.com/jwtk/jjwt/blob/main/CHANGELOG.md) - [Commits](https://github.com/jwtk/jjwt/compare/0.12.6...0.13.0) --- updated-dependencies: - dependency-name: io.jsonwebtoken:jjwt-impl dependency-version: 0.13.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index be3e9fc..57d8e78 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -42,9 +42,9 @@ dependencies { annotationProcessor("org.springframework.boot:spring-boot-configuration-processor") // JWT - api scope exposes Claims, JwtException to consumers - api("io.jsonwebtoken:jjwt-api:0.12.6") - runtimeOnly("io.jsonwebtoken:jjwt-impl:0.12.6") - runtimeOnly("io.jsonwebtoken:jjwt-jackson:0.12.6") + api("io.jsonwebtoken:jjwt-api:0.13.0") + runtimeOnly("io.jsonwebtoken:jjwt-impl:0.13.0") + runtimeOnly("io.jsonwebtoken:jjwt-jackson:0.13.0") // Cache (for token blacklist) implementation("com.github.ben-manes.caffeine:caffeine:3.1.8")