From 8624a5f58150b2c8d7b31f1cc34a91189558b2e6 Mon Sep 17 00:00:00 2001 From: Koman Rudden Date: Thu, 19 Jun 2025 11:57:09 +0200 Subject: [PATCH 1/4] fix: Synk spring security web/crypto --- kinde-springboot/kinde-springboot-starter/pom.xml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/kinde-springboot/kinde-springboot-starter/pom.xml b/kinde-springboot/kinde-springboot-starter/pom.xml index 974a454d..ea686b94 100644 --- a/kinde-springboot/kinde-springboot-starter/pom.xml +++ b/kinde-springboot/kinde-springboot-starter/pom.xml @@ -23,6 +23,16 @@ kinde-core 2.0.1 + + org.springframework.security + spring-security-web + 6.4.6 + + + org.springframework.security + spring-security-crypto + 6.4.6 + From 34a005fd38f782ddef5e3167e0b43c033ecdac40 Mon Sep 17 00:00:00 2001 From: Koman Rudden Date: Thu, 19 Jun 2025 12:16:39 +0200 Subject: [PATCH 2/4] fix: Synk spring dependency upgrades --- kinde-management/pom.xml | 6 ++---- kinde-springboot/kinde-springboot-core/pom.xml | 14 +++++++------- playground/springboot-pkce-client-example/pom.xml | 6 +++--- 3 files changed, 12 insertions(+), 14 deletions(-) diff --git a/kinde-management/pom.xml b/kinde-management/pom.xml index 0d638958..f439f2a1 100644 --- a/kinde-management/pom.xml +++ b/kinde-management/pom.xml @@ -12,7 +12,7 @@ UTF-8 2.2.28 4.0.0-M2 - 2.18.3 + 2.19.0 2.18.3 0.2.6 1.3.5 @@ -193,9 +193,7 @@ Fixing syntax error in generated OpenAPI code - + diff --git a/kinde-springboot/kinde-springboot-core/pom.xml b/kinde-springboot/kinde-springboot-core/pom.xml index d2f766dc..509a6b7d 100644 --- a/kinde-springboot/kinde-springboot-core/pom.xml +++ b/kinde-springboot/kinde-springboot-core/pom.xml @@ -30,7 +30,7 @@ org.springframework.boot spring-boot-starter true - 3.4.4 + 3.4.6 @@ -50,34 +50,34 @@ org.springframework.security spring-security-config - 6.4.4 + 6.4.6 org.springframework.boot spring-boot-starter-security - 3.4.4 + 3.4.6 org.springframework.security spring-security-oauth2-client - 6.4.4 + 6.4.6 org.springframework.security spring-security-oauth2-jose - 6.4.4 + 6.4.6 org.springframework.security spring-security-oauth2-resource-server - 6.4.4 + 6.4.6 org.springframework.boot spring-boot-starter-security - 3.4.4 + 3.4.6 org.springframework.boot diff --git a/playground/springboot-pkce-client-example/pom.xml b/playground/springboot-pkce-client-example/pom.xml index 13071571..27b85c1c 100644 --- a/playground/springboot-pkce-client-example/pom.xml +++ b/playground/springboot-pkce-client-example/pom.xml @@ -15,12 +15,12 @@ org.springframework.boot spring-boot-starter-webflux - 3.4.4 + 3.4.6 org.springframework.boot spring-boot-starter-oauth2-client - 3.4.4 + 3.4.6 org.springframework.boot @@ -30,7 +30,7 @@ org.springframework.boot spring-boot-starter-oauth2-resource-server - 3.4.4 + 3.4.6 From 9bac768daca7adb7a0b290dba7a4d56d4be44112 Mon Sep 17 00:00:00 2001 From: Koman Rudden Date: Fri, 20 Jun 2025 05:35:14 +0200 Subject: [PATCH 3/4] fix: guava monorepo upgrade --- pom.xml | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/pom.xml b/pom.xml index 2a39c7d9..e82ed870 100644 --- a/pom.xml +++ b/pom.xml @@ -51,7 +51,6 @@ - com.nimbusds oauth2-oidc-sdk @@ -68,7 +67,6 @@ 4.13.2 test - org.junit.jupiter junit-jupiter-api @@ -81,28 +79,21 @@ 5.12.0 test - - org.junit.jupiter junit-jupiter-params 5.12.0 test - - org.mockito mockito-core 5.17.0 test - - com.google.inject guice - 7.0.0 @@ -111,22 +102,17 @@ - com.google.guava guava - 32.1.3-jre + 33.4.8-jre - - - org.projectlombok lombok 1.18.36 provided - org.slf4j slf4j-api @@ -198,7 +184,6 @@ - @@ -227,7 +212,7 @@ org.projectlombok lombok - 1.18.36 + 1.18.36 @@ -257,7 +242,6 @@ - org.apache.maven.plugins maven-source-plugin @@ -314,13 +298,9 @@ **/generated/** **/thirdparty/** **/openapitools/** - - - - From ede0c72e73a24d005cc74aa652568e3d8c9608f5 Mon Sep 17 00:00:00 2001 From: Koman Rudden Date: Fri, 20 Jun 2025 05:50:49 +0200 Subject: [PATCH 4/4] fix: guava monorepo upgrade --- kinde-core/pom.xml | 5 +++++ .../session/KindeClientCodeSessionImpl.java | 2 +- pom.xml | 22 ++++++++++++++++++- 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/kinde-core/pom.xml b/kinde-core/pom.xml index 341b78ac..3c0f590e 100644 --- a/kinde-core/pom.xml +++ b/kinde-core/pom.xml @@ -25,6 +25,11 @@ com.nimbusds nimbus-jose-jwt + + org.checkerframework + checker-qual + 3.33.0 + junit junit diff --git a/kinde-core/src/main/java/com/kinde/session/KindeClientCodeSessionImpl.java b/kinde-core/src/main/java/com/kinde/session/KindeClientCodeSessionImpl.java index 3673bd90..fe1cee60 100644 --- a/kinde-core/src/main/java/com/kinde/session/KindeClientCodeSessionImpl.java +++ b/kinde-core/src/main/java/com/kinde/session/KindeClientCodeSessionImpl.java @@ -20,7 +20,7 @@ import com.nimbusds.openid.connect.sdk.token.OIDCTokens; import lombok.SneakyThrows; -import javax.annotation.Nullable; +import org.checkerframework.checker.nullness.qual.Nullable; import java.net.URI; import java.util.Arrays; import java.util.List; diff --git a/pom.xml b/pom.xml index e82ed870..9385cf4c 100644 --- a/pom.xml +++ b/pom.xml @@ -51,6 +51,7 @@ + com.nimbusds oauth2-oidc-sdk @@ -67,6 +68,7 @@ 4.13.2 test + org.junit.jupiter junit-jupiter-api @@ -79,21 +81,28 @@ 5.12.0 test + + org.junit.jupiter junit-jupiter-params 5.12.0 test + + org.mockito mockito-core 5.17.0 test + + com.google.inject guice + 7.0.0 @@ -102,17 +111,22 @@ + com.google.guava guava 33.4.8-jre + + + org.projectlombok lombok 1.18.36 provided + org.slf4j slf4j-api @@ -184,6 +198,7 @@ + @@ -212,7 +227,7 @@ org.projectlombok lombok - 1.18.36 + 1.18.36 @@ -242,6 +257,7 @@ + org.apache.maven.plugins maven-source-plugin @@ -298,9 +314,13 @@ **/generated/** **/thirdparty/** **/openapitools/** + + + +