From 9ddf113fe444b72536710200344d051bf355128d Mon Sep 17 00:00:00 2001 From: Joe Grandja Date: Mon, 16 Oct 2023 14:17:38 -0400 Subject: [PATCH 1/5] Update to Spring Framework 5.3.30 Closes gh-1394 --- buildSrc/build.gradle | 2 +- gradle.properties | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle index 6518c1e5..a4505beb 100644 --- a/buildSrc/build.gradle +++ b/buildSrc/build.gradle @@ -23,5 +23,5 @@ dependencies { implementation "org.hidetake:gradle-ssh-plugin:2.10.1" implementation "org.jfrog.buildinfo:build-info-extractor-gradle:4.29.0" implementation "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.7.1" - implementation "org.springframework:spring-core:5.3.28" + implementation "org.springframework:spring-core:5.3.30" } diff --git a/gradle.properties b/gradle.properties index f285b9fa..20308404 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,7 +2,7 @@ version=0.4.4-SNAPSHOT org.gradle.jvmargs=-Xmx3g -XX:+HeapDumpOnOutOfMemoryError org.gradle.parallel=true org.gradle.caching=true -springFrameworkVersion=5.3.28 +springFrameworkVersion=5.3.30 springSecurityVersion=5.8.4 springJavaformatVersion=0.0.38 springJavaformatExcludePackages=org/springframework/security/config org/springframework/security/oauth2 From 4f09f9361979f9a9cd2a1362d7dc0124c8784e66 Mon Sep 17 00:00:00 2001 From: Joe Grandja Date: Mon, 16 Oct 2023 14:19:29 -0400 Subject: [PATCH 2/5] Update to Spring Security 5.8.8 Closes gh-1395 --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 20308404..61618319 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx3g -XX:+HeapDumpOnOutOfMemoryError org.gradle.parallel=true org.gradle.caching=true springFrameworkVersion=5.3.30 -springSecurityVersion=5.8.4 +springSecurityVersion=5.8.8 springJavaformatVersion=0.0.38 springJavaformatExcludePackages=org/springframework/security/config org/springframework/security/oauth2 checkstyleToolVersion=8.34 From e0bc768ad11e7a6771d1a30706ac85716a526652 Mon Sep 17 00:00:00 2001 From: Joe Grandja Date: Mon, 16 Oct 2023 14:35:14 -0400 Subject: [PATCH 3/5] Update to Spring Boot 2.7.16 Closes gh-1396 --- .../examples/spring-authorization-server-docs-examples.gradle | 2 +- .../samples-custom-consent-authorizationserver.gradle | 2 +- .../samples-default-authorizationserver.gradle | 2 +- .../samples-federated-identity-authorizationserver.gradle | 2 +- samples/messages-client/samples-messages-client.gradle | 2 +- samples/messages-resource/samples-messages-resource.gradle | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/src/docs/asciidoc/examples/spring-authorization-server-docs-examples.gradle b/docs/src/docs/asciidoc/examples/spring-authorization-server-docs-examples.gradle index 829f1cb9..50f52520 100644 --- a/docs/src/docs/asciidoc/examples/spring-authorization-server-docs-examples.gradle +++ b/docs/src/docs/asciidoc/examples/spring-authorization-server-docs-examples.gradle @@ -11,7 +11,7 @@ repositories { } dependencies { - implementation platform("org.springframework.boot:spring-boot-dependencies:2.7.5") + implementation platform("org.springframework.boot:spring-boot-dependencies:2.7.16") implementation "org.springframework.boot:spring-boot-starter-web" implementation "org.springframework.boot:spring-boot-starter-thymeleaf" implementation "org.springframework.boot:spring-boot-starter-security" diff --git a/samples/custom-consent-authorizationserver/samples-custom-consent-authorizationserver.gradle b/samples/custom-consent-authorizationserver/samples-custom-consent-authorizationserver.gradle index e5e9019c..93bd6a42 100644 --- a/samples/custom-consent-authorizationserver/samples-custom-consent-authorizationserver.gradle +++ b/samples/custom-consent-authorizationserver/samples-custom-consent-authorizationserver.gradle @@ -1,5 +1,5 @@ plugins { - id "org.springframework.boot" version "2.7.5" + id "org.springframework.boot" version "2.7.16" id "io.spring.dependency-management" version "1.0.11.RELEASE" id "java" } diff --git a/samples/default-authorizationserver/samples-default-authorizationserver.gradle b/samples/default-authorizationserver/samples-default-authorizationserver.gradle index 73f08b99..15359bd6 100644 --- a/samples/default-authorizationserver/samples-default-authorizationserver.gradle +++ b/samples/default-authorizationserver/samples-default-authorizationserver.gradle @@ -1,5 +1,5 @@ plugins { - id "org.springframework.boot" version "2.7.5" + id "org.springframework.boot" version "2.7.16" id "io.spring.dependency-management" version "1.0.11.RELEASE" id "java" } diff --git a/samples/federated-identity-authorizationserver/samples-federated-identity-authorizationserver.gradle b/samples/federated-identity-authorizationserver/samples-federated-identity-authorizationserver.gradle index eb2fc75d..06d56313 100644 --- a/samples/federated-identity-authorizationserver/samples-federated-identity-authorizationserver.gradle +++ b/samples/federated-identity-authorizationserver/samples-federated-identity-authorizationserver.gradle @@ -1,5 +1,5 @@ plugins { - id "org.springframework.boot" version "2.7.5" + id "org.springframework.boot" version "2.7.16" id "io.spring.dependency-management" version "1.0.11.RELEASE" id "java" } diff --git a/samples/messages-client/samples-messages-client.gradle b/samples/messages-client/samples-messages-client.gradle index be5679aa..77c39790 100644 --- a/samples/messages-client/samples-messages-client.gradle +++ b/samples/messages-client/samples-messages-client.gradle @@ -1,5 +1,5 @@ plugins { - id "org.springframework.boot" version "2.7.5" + id "org.springframework.boot" version "2.7.16" id "io.spring.dependency-management" version "1.0.11.RELEASE" id "java" } diff --git a/samples/messages-resource/samples-messages-resource.gradle b/samples/messages-resource/samples-messages-resource.gradle index 1396a47b..893579b1 100644 --- a/samples/messages-resource/samples-messages-resource.gradle +++ b/samples/messages-resource/samples-messages-resource.gradle @@ -1,5 +1,5 @@ plugins { - id "org.springframework.boot" version "2.7.5" + id "org.springframework.boot" version "2.7.16" id "io.spring.dependency-management" version "1.0.11.RELEASE" id "java" } From 2a48bf6831a53407c1e9b8e0ed0077ba16cc6cf2 Mon Sep 17 00:00:00 2001 From: Joe Grandja Date: Mon, 16 Oct 2023 14:49:18 -0400 Subject: [PATCH 4/5] Release 0.4.4 --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 61618319..89276ca3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -version=0.4.4-SNAPSHOT +version=0.4.4 org.gradle.jvmargs=-Xmx3g -XX:+HeapDumpOnOutOfMemoryError org.gradle.parallel=true org.gradle.caching=true From 24d2a7c8dca7d4e2b22ae6fe5a5850f04a2132b1 Mon Sep 17 00:00:00 2001 From: Joe Grandja Date: Mon, 16 Oct 2023 14:57:53 -0400 Subject: [PATCH 5/5] Next Development Version --- gradle.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradle.properties b/gradle.properties index 89276ca3..c52a4610 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -version=0.4.4 +version=0.4.5-SNAPSHOT org.gradle.jvmargs=-Xmx3g -XX:+HeapDumpOnOutOfMemoryError org.gradle.parallel=true org.gradle.caching=true