From b837e8ea163349d95b8bf1018db23d370abff8df Mon Sep 17 00:00:00 2001 From: Andrey Litvitski Date: Sun, 22 Jun 2025 23:54:38 +0300 Subject: [PATCH] update to spring boot 3.5.3 Signed-off-by: Andrey Litvitski --- .github/workflows/check-samples.yml | 2 +- pom.xml | 4 ++-- samples/grpc-client/README.md | 2 +- samples/grpc-client/build.gradle | 2 +- samples/grpc-client/pom.xml | 2 +- samples/grpc-oauth2/README.md | 2 +- samples/grpc-oauth2/build.gradle | 2 +- samples/grpc-oauth2/pom.xml | 2 +- .../grpc/sample/GrpcServerApplicationTests.java | 2 +- samples/grpc-reactive/README.md | 2 +- samples/grpc-reactive/build.gradle | 2 +- samples/grpc-reactive/pom.xml | 2 +- samples/grpc-secure/README.md | 2 +- samples/grpc-secure/build.gradle | 2 +- samples/grpc-secure/pom.xml | 2 +- samples/grpc-server-kotlin/HELP-gradle.md | 6 +++--- samples/grpc-server-kotlin/HELP-maven.md | 6 +++--- samples/grpc-server-kotlin/README.md | 2 +- samples/grpc-server-kotlin/build.gradle | 2 +- samples/grpc-server-kotlin/pom.xml | 2 +- samples/grpc-server-netty-shaded/README.md | 4 ++-- samples/grpc-server-netty-shaded/build.gradle | 2 +- samples/grpc-server-netty-shaded/pom.xml | 2 +- samples/grpc-server/HELP-gradle.md | 6 +++--- samples/grpc-server/HELP-maven.md | 6 +++--- samples/grpc-server/README.md | 2 +- samples/grpc-server/build.gradle | 2 +- samples/grpc-server/pom.xml | 2 +- samples/grpc-tomcat-secure/README.md | 4 ++-- samples/grpc-tomcat-secure/build.gradle | 2 +- samples/grpc-tomcat-secure/pom.xml | 2 +- samples/grpc-tomcat/README.md | 4 ++-- samples/grpc-tomcat/build.gradle | 2 +- samples/grpc-tomcat/pom.xml | 2 +- samples/grpc-webflux/README.md | 4 ++-- samples/grpc-webflux/build.gradle | 2 +- samples/grpc-webflux/pom.xml | 2 +- spring-grpc-build-dependencies/pom.xml | 8 ++++---- 38 files changed, 54 insertions(+), 54 deletions(-) diff --git a/.github/workflows/check-samples.yml b/.github/workflows/check-samples.yml index 22cbf97c..de11bfa7 100644 --- a/.github/workflows/check-samples.yml +++ b/.github/workflows/check-samples.yml @@ -11,7 +11,7 @@ jobs: matrix: include: - javaVersion: 17 - springBootVersion: "3.5.0" + springBootVersion: "3.5.3" - javaVersion: 17 springBootVersion: "3.5.0-SNAPSHOT" runs-on: ubuntu-latest diff --git a/pom.xml b/pom.xml index 518ac75b..d29b5aae 100644 --- a/pom.xml +++ b/pom.xml @@ -79,8 +79,8 @@ 17 - 3.5.0 - 2.19.0 + 3.5.3 + 2.19.1 5.12.2 3.27.3 diff --git a/samples/grpc-client/README.md b/samples/grpc-client/README.md index 8a5d08e1..eddab2c5 100644 --- a/samples/grpc-client/README.md +++ b/samples/grpc-client/README.md @@ -11,7 +11,7 @@ $ ./mvnw spring-boot:run \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v3.5.0) + :: Spring Boot :: (v3.5.3) ... 2025-02-27T09:21:19.515Z INFO 1211091 --- [grpc-client] [ main] o.s.g.sample.GrpcClientApplication : Started GrpcClientApplication in 0.909 seconds (process running for 1.172) diff --git a/samples/grpc-client/build.gradle b/samples/grpc-client/build.gradle index 55ff1c22..a8751157 100644 --- a/samples/grpc-client/build.gradle +++ b/samples/grpc-client/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'org.springframework.boot' version '3.5.0' + id 'org.springframework.boot' version '3.5.3' id 'io.spring.dependency-management' version '1.1.6' id 'com.google.protobuf' version '0.9.4' } diff --git a/samples/grpc-client/pom.xml b/samples/grpc-client/pom.xml index 7a6f60fc..9d9fc2ba 100644 --- a/samples/grpc-client/pom.xml +++ b/samples/grpc-client/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 3.5.0 + 3.5.3 org.springframework.grpc diff --git a/samples/grpc-oauth2/README.md b/samples/grpc-oauth2/README.md index 5dd8203a..1c60a512 100644 --- a/samples/grpc-oauth2/README.md +++ b/samples/grpc-oauth2/README.md @@ -11,7 +11,7 @@ $ ./mvnw spring-boot:test-run \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v3.5.0) + :: Spring Boot :: (v3.5.3) ... 2022-12-08T05:32:25.427-08:00 INFO 551632 --- [ main] g.s.a.GrpcServerFactoryAutoConfiguration : Detected grpc-netty: Creating NettyGrpcServerFactory diff --git a/samples/grpc-oauth2/build.gradle b/samples/grpc-oauth2/build.gradle index 312ae119..b9447c21 100644 --- a/samples/grpc-oauth2/build.gradle +++ b/samples/grpc-oauth2/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'org.springframework.boot' version '3.5.0' + id 'org.springframework.boot' version '3.5.3' id 'io.spring.dependency-management' version '1.1.6' id 'org.graalvm.buildtools.native' version '0.10.3' id 'com.google.protobuf' version '0.9.4' diff --git a/samples/grpc-oauth2/pom.xml b/samples/grpc-oauth2/pom.xml index 7e7ac13c..fa6d2efa 100644 --- a/samples/grpc-oauth2/pom.xml +++ b/samples/grpc-oauth2/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 3.5.0 + 3.5.3 org.springframework.grpc diff --git a/samples/grpc-oauth2/src/test/java/org/springframework/grpc/sample/GrpcServerApplicationTests.java b/samples/grpc-oauth2/src/test/java/org/springframework/grpc/sample/GrpcServerApplicationTests.java index 90646fa7..c4183bd1 100644 --- a/samples/grpc-oauth2/src/test/java/org/springframework/grpc/sample/GrpcServerApplicationTests.java +++ b/samples/grpc-oauth2/src/test/java/org/springframework/grpc/sample/GrpcServerApplicationTests.java @@ -124,7 +124,7 @@ static CommonsExecWebServerFactoryBean authServer() { return CommonsExecWebServerFactoryBean.builder() .useGenericSpringBootMain() .classpath(classpath -> classpath.entries(new MavenClasspathEntry( - "org.springframework.boot:spring-boot-starter-oauth2-authorization-server:3.5.0"))); + "org.springframework.boot:spring-boot-starter-oauth2-authorization-server:3.5.3"))); } @Bean diff --git a/samples/grpc-reactive/README.md b/samples/grpc-reactive/README.md index 6c30b70b..5ddfcbae 100644 --- a/samples/grpc-reactive/README.md +++ b/samples/grpc-reactive/README.md @@ -11,7 +11,7 @@ $ ./mvnw spring-boot:run \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v3.5.0) + :: Spring Boot :: (v3.5.3) 2022-12-08T05:32:24.934-08:00 INFO 551632 --- [ main] com.example.demo.DemoApplication : Starting DemoApplication using Java 17.0.5 with PID 551632 (/home/dsyer/dev/scratch/demo/target/classes started by dsyer in /home/dsyer/dev/scratch/demo) 2022-12-08T05:32:24.938-08:00 INFO 551632 --- [ main] com.example.demo.DemoApplication : No active profile set, falling back to 1 default profile: "default" diff --git a/samples/grpc-reactive/build.gradle b/samples/grpc-reactive/build.gradle index 7f646b42..c42f8db4 100644 --- a/samples/grpc-reactive/build.gradle +++ b/samples/grpc-reactive/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'org.springframework.boot' version '3.5.0' + id 'org.springframework.boot' version '3.5.3' id 'io.spring.dependency-management' version '1.1.6' id 'org.graalvm.buildtools.native' version '0.10.3' id 'com.google.protobuf' version '0.9.4' diff --git a/samples/grpc-reactive/pom.xml b/samples/grpc-reactive/pom.xml index 3bb24250..f04a9a9c 100644 --- a/samples/grpc-reactive/pom.xml +++ b/samples/grpc-reactive/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 3.5.0 + 3.5.3 org.springframework.grpc diff --git a/samples/grpc-secure/README.md b/samples/grpc-secure/README.md index ed4b9c7e..fa0d34c5 100644 --- a/samples/grpc-secure/README.md +++ b/samples/grpc-secure/README.md @@ -11,7 +11,7 @@ $ ./mvnw spring-boot:run \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v3.5.0) + :: Spring Boot :: (v3.5.3) 2022-12-08T05:32:24.934-08:00 INFO 551632 --- [ main] com.example.demo.DemoApplication : Starting DemoApplication using Java 17.0.5 with PID 551632 (/home/dsyer/dev/scratch/demo/target/classes started by dsyer in /home/dsyer/dev/scratch/demo) 2022-12-08T05:32:24.938-08:00 INFO 551632 --- [ main] com.example.demo.DemoApplication : No active profile set, falling back to 1 default profile: "default" diff --git a/samples/grpc-secure/build.gradle b/samples/grpc-secure/build.gradle index 58d79b7d..13da09b5 100644 --- a/samples/grpc-secure/build.gradle +++ b/samples/grpc-secure/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'org.springframework.boot' version '3.5.0' + id 'org.springframework.boot' version '3.5.3' id 'io.spring.dependency-management' version '1.1.6' id 'org.graalvm.buildtools.native' version '0.10.3' id 'com.google.protobuf' version '0.9.4' diff --git a/samples/grpc-secure/pom.xml b/samples/grpc-secure/pom.xml index 0e9fbae1..c527aec9 100644 --- a/samples/grpc-secure/pom.xml +++ b/samples/grpc-secure/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 3.5.0 + 3.5.3 org.springframework.grpc diff --git a/samples/grpc-server-kotlin/HELP-gradle.md b/samples/grpc-server-kotlin/HELP-gradle.md index eeef1582..d3d3ce8f 100644 --- a/samples/grpc-server-kotlin/HELP-gradle.md +++ b/samples/grpc-server-kotlin/HELP-gradle.md @@ -4,9 +4,9 @@ For further reference, please consider the following sections: * [Official Gradle documentation](https://docs.gradle.org) -* [Spring Boot Gradle Plugin Reference Guide](https://docs.spring.io/spring-boot/3.5.0/gradle-plugin) -* [Create an OCI image](https://docs.spring.io/spring-boot/3.5.0/gradle-plugin/packaging-oci-image.html) -* [GraalVM Native Image Support](https://docs.spring.io/spring-boot/3.5.0/reference/packaging/native-image/introducing-graalvm-native-images.html) +* [Spring Boot Gradle Plugin Reference Guide](https://docs.spring.io/spring-boot/3.5.3/gradle-plugin) +* [Create an OCI image](https://docs.spring.io/spring-boot/3.5.3/gradle-plugin/packaging-oci-image.html) +* [GraalVM Native Image Support](https://docs.spring.io/spring-boot/3.5.3/reference/packaging/native-image/introducing-graalvm-native-images.html) * [Spring gRPC [Experimental]](https://docs.spring.io/spring-grpc/reference/index.html) ### Additional Links diff --git a/samples/grpc-server-kotlin/HELP-maven.md b/samples/grpc-server-kotlin/HELP-maven.md index cde187da..c8b6cc8d 100644 --- a/samples/grpc-server-kotlin/HELP-maven.md +++ b/samples/grpc-server-kotlin/HELP-maven.md @@ -4,9 +4,9 @@ For further reference, please consider the following sections: * [Official Apache Maven documentation](https://maven.apache.org/guides/index.html) -* [Spring Boot Maven Plugin Reference Guide](https://docs.spring.io/spring-boot/3.5.0/maven-plugin) -* [Create an OCI image](https://docs.spring.io/spring-boot/3.5.0/maven-plugin/build-image.html) -* [GraalVM Native Image Support](https://docs.spring.io/spring-boot/3.5.0/reference/packaging/native-image/introducing-graalvm-native-images.html) +* [Spring Boot Maven Plugin Reference Guide](https://docs.spring.io/spring-boot/3.5.3/maven-plugin) +* [Create an OCI image](https://docs.spring.io/spring-boot/3.5.3/maven-plugin/build-image.html) +* [GraalVM Native Image Support](https://docs.spring.io/spring-boot/3.5.3/reference/packaging/native-image/introducing-graalvm-native-images.html) * [Spring gRPC [Experimental]](https://docs.spring.io/spring-grpc/reference/index.html) ### Additional Links diff --git a/samples/grpc-server-kotlin/README.md b/samples/grpc-server-kotlin/README.md index 61bc494f..ffe383cc 100644 --- a/samples/grpc-server-kotlin/README.md +++ b/samples/grpc-server-kotlin/README.md @@ -11,7 +11,7 @@ $ ./mvnw spring-boot:run \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v3.5.0) + :: Spring Boot :: (v3.5.3) 2022-12-08T05:32:24.934-08:00 INFO 551632 --- [ main] com.example.demo.DemoApplication : Starting DemoApplication using Java 17.0.5 with PID 551632 (/home/dsyer/dev/scratch/demo/target/classes started by dsyer in /home/dsyer/dev/scratch/demo) 2022-12-08T05:32:24.938-08:00 INFO 551632 --- [ main] com.example.demo.DemoApplication : No active profile set, falling back to 1 default profile: "default" 2022-12-08T05:32:25.377-08:00 WARN 551632 --- [ main] ocalVariableTableParameterNameDiscoverer : Using deprecated '-debug' fallback for parameter name resolution. Compile the affected code with '-parameters' instead or avoid its introspection: net.devh.boot.grpc.server.autoconfigure.GrpcHealthServiceAutoConfiguration diff --git a/samples/grpc-server-kotlin/build.gradle b/samples/grpc-server-kotlin/build.gradle index 88352341..17e8f2d0 100644 --- a/samples/grpc-server-kotlin/build.gradle +++ b/samples/grpc-server-kotlin/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'org.springframework.boot' version '3.5.0' + id 'org.springframework.boot' version '3.5.3' id 'io.spring.dependency-management' version '1.1.6' // id 'org.graalvm.buildtools.native' version '0.10.3' id 'com.google.protobuf' version '0.9.4' diff --git a/samples/grpc-server-kotlin/pom.xml b/samples/grpc-server-kotlin/pom.xml index 577943e0..d333263e 100644 --- a/samples/grpc-server-kotlin/pom.xml +++ b/samples/grpc-server-kotlin/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 3.5.0 + 3.5.3 org.springframework.grpc diff --git a/samples/grpc-server-netty-shaded/README.md b/samples/grpc-server-netty-shaded/README.md index 59ab9e40..ca34cf22 100644 --- a/samples/grpc-server-netty-shaded/README.md +++ b/samples/grpc-server-netty-shaded/README.md @@ -11,7 +11,7 @@ $ ./mvnw spring-boot:run \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v3.0.0) + :: Spring Boot :: (v3.5.3) 2022-12-08T05:32:24.934-08:00 INFO 551632 --- [ main] com.example.demo.DemoApplication : Starting DemoApplication using Java 17.0.5 with PID 551632 (/home/dsyer/dev/scratch/demo/target/classes started by dsyer in /home/dsyer/dev/scratch/demo) 2022-12-08T05:32:24.938-08:00 INFO 551632 --- [ main] com.example.demo.DemoApplication : No active profile set, falling back to 1 default profile: "default" @@ -48,7 +48,7 @@ $ ./target/demo \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v3.0.0) + :: Spring Boot :: (v3.5.3) 2022-12-08T05:36:54.365-08:00 INFO 554359 --- [ main] com.example.demo.DemoApplication : Starting AOT-processed DemoApplication using Java 17.0.5 with PID 554359 (/home/dsyer/dev/scratch/demo/target/demo started by dsyer in /home/dsyer/dev/scratch/demo) 2022-12-08T05:36:54.366-08:00 INFO 554359 --- [ main] com.example.demo.DemoApplication : No active profile set, falling back to 1 default profile: "default" diff --git a/samples/grpc-server-netty-shaded/build.gradle b/samples/grpc-server-netty-shaded/build.gradle index af776efa..39ffef95 100644 --- a/samples/grpc-server-netty-shaded/build.gradle +++ b/samples/grpc-server-netty-shaded/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'org.springframework.boot' version '3.5.0' + id 'org.springframework.boot' version '3.5.3' id 'io.spring.dependency-management' version '1.1.6' id 'org.graalvm.buildtools.native' version '0.10.3' id 'com.google.protobuf' version '0.9.4' diff --git a/samples/grpc-server-netty-shaded/pom.xml b/samples/grpc-server-netty-shaded/pom.xml index 15123f46..579e8b4e 100644 --- a/samples/grpc-server-netty-shaded/pom.xml +++ b/samples/grpc-server-netty-shaded/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 3.5.0 + 3.5.3 com.example diff --git a/samples/grpc-server/HELP-gradle.md b/samples/grpc-server/HELP-gradle.md index eeef1582..d3d3ce8f 100644 --- a/samples/grpc-server/HELP-gradle.md +++ b/samples/grpc-server/HELP-gradle.md @@ -4,9 +4,9 @@ For further reference, please consider the following sections: * [Official Gradle documentation](https://docs.gradle.org) -* [Spring Boot Gradle Plugin Reference Guide](https://docs.spring.io/spring-boot/3.5.0/gradle-plugin) -* [Create an OCI image](https://docs.spring.io/spring-boot/3.5.0/gradle-plugin/packaging-oci-image.html) -* [GraalVM Native Image Support](https://docs.spring.io/spring-boot/3.5.0/reference/packaging/native-image/introducing-graalvm-native-images.html) +* [Spring Boot Gradle Plugin Reference Guide](https://docs.spring.io/spring-boot/3.5.3/gradle-plugin) +* [Create an OCI image](https://docs.spring.io/spring-boot/3.5.3/gradle-plugin/packaging-oci-image.html) +* [GraalVM Native Image Support](https://docs.spring.io/spring-boot/3.5.3/reference/packaging/native-image/introducing-graalvm-native-images.html) * [Spring gRPC [Experimental]](https://docs.spring.io/spring-grpc/reference/index.html) ### Additional Links diff --git a/samples/grpc-server/HELP-maven.md b/samples/grpc-server/HELP-maven.md index cde187da..c8b6cc8d 100644 --- a/samples/grpc-server/HELP-maven.md +++ b/samples/grpc-server/HELP-maven.md @@ -4,9 +4,9 @@ For further reference, please consider the following sections: * [Official Apache Maven documentation](https://maven.apache.org/guides/index.html) -* [Spring Boot Maven Plugin Reference Guide](https://docs.spring.io/spring-boot/3.5.0/maven-plugin) -* [Create an OCI image](https://docs.spring.io/spring-boot/3.5.0/maven-plugin/build-image.html) -* [GraalVM Native Image Support](https://docs.spring.io/spring-boot/3.5.0/reference/packaging/native-image/introducing-graalvm-native-images.html) +* [Spring Boot Maven Plugin Reference Guide](https://docs.spring.io/spring-boot/3.5.3/maven-plugin) +* [Create an OCI image](https://docs.spring.io/spring-boot/3.5.3/maven-plugin/build-image.html) +* [GraalVM Native Image Support](https://docs.spring.io/spring-boot/3.5.3/reference/packaging/native-image/introducing-graalvm-native-images.html) * [Spring gRPC [Experimental]](https://docs.spring.io/spring-grpc/reference/index.html) ### Additional Links diff --git a/samples/grpc-server/README.md b/samples/grpc-server/README.md index 61bc494f..ffe383cc 100644 --- a/samples/grpc-server/README.md +++ b/samples/grpc-server/README.md @@ -11,7 +11,7 @@ $ ./mvnw spring-boot:run \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v3.5.0) + :: Spring Boot :: (v3.5.3) 2022-12-08T05:32:24.934-08:00 INFO 551632 --- [ main] com.example.demo.DemoApplication : Starting DemoApplication using Java 17.0.5 with PID 551632 (/home/dsyer/dev/scratch/demo/target/classes started by dsyer in /home/dsyer/dev/scratch/demo) 2022-12-08T05:32:24.938-08:00 INFO 551632 --- [ main] com.example.demo.DemoApplication : No active profile set, falling back to 1 default profile: "default" 2022-12-08T05:32:25.377-08:00 WARN 551632 --- [ main] ocalVariableTableParameterNameDiscoverer : Using deprecated '-debug' fallback for parameter name resolution. Compile the affected code with '-parameters' instead or avoid its introspection: net.devh.boot.grpc.server.autoconfigure.GrpcHealthServiceAutoConfiguration diff --git a/samples/grpc-server/build.gradle b/samples/grpc-server/build.gradle index c3e8d6f2..69b442e9 100644 --- a/samples/grpc-server/build.gradle +++ b/samples/grpc-server/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'org.springframework.boot' version '3.5.0' + id 'org.springframework.boot' version '3.5.3' id 'io.spring.dependency-management' version '1.1.6' id 'org.graalvm.buildtools.native' version '0.10.3' id 'com.google.protobuf' version '0.9.4' diff --git a/samples/grpc-server/pom.xml b/samples/grpc-server/pom.xml index b106c177..8d0b87f1 100644 --- a/samples/grpc-server/pom.xml +++ b/samples/grpc-server/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 3.5.0 + 3.5.3 org.springframework.grpc diff --git a/samples/grpc-tomcat-secure/README.md b/samples/grpc-tomcat-secure/README.md index 6c30b70b..d7a46b34 100644 --- a/samples/grpc-tomcat-secure/README.md +++ b/samples/grpc-tomcat-secure/README.md @@ -11,7 +11,7 @@ $ ./mvnw spring-boot:run \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v3.5.0) + :: Spring Boot :: (v3.5.3) 2022-12-08T05:32:24.934-08:00 INFO 551632 --- [ main] com.example.demo.DemoApplication : Starting DemoApplication using Java 17.0.5 with PID 551632 (/home/dsyer/dev/scratch/demo/target/classes started by dsyer in /home/dsyer/dev/scratch/demo) 2022-12-08T05:32:24.938-08:00 INFO 551632 --- [ main] com.example.demo.DemoApplication : No active profile set, falling back to 1 default profile: "default" @@ -48,7 +48,7 @@ $ ./target/demo \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v3.0.0) + :: Spring Boot :: (v3.5.3) 2022-12-08T05:36:54.365-08:00 INFO 554359 --- [ main] com.example.demo.DemoApplication : Starting AOT-processed DemoApplication using Java 17.0.5 with PID 554359 (/home/dsyer/dev/scratch/demo/target/demo started by dsyer in /home/dsyer/dev/scratch/demo) 2022-12-08T05:36:54.366-08:00 INFO 554359 --- [ main] com.example.demo.DemoApplication : No active profile set, falling back to 1 default profile: "default" diff --git a/samples/grpc-tomcat-secure/build.gradle b/samples/grpc-tomcat-secure/build.gradle index da5db8b0..a775641f 100644 --- a/samples/grpc-tomcat-secure/build.gradle +++ b/samples/grpc-tomcat-secure/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'org.springframework.boot' version '3.5.0' + id 'org.springframework.boot' version '3.5.3' id 'io.spring.dependency-management' version '1.1.6' id 'org.graalvm.buildtools.native' version '0.10.3' id 'com.google.protobuf' version '0.9.4' diff --git a/samples/grpc-tomcat-secure/pom.xml b/samples/grpc-tomcat-secure/pom.xml index f9ef1564..6423d7ae 100644 --- a/samples/grpc-tomcat-secure/pom.xml +++ b/samples/grpc-tomcat-secure/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 3.5.0 + 3.5.3 org.springframework.grpc diff --git a/samples/grpc-tomcat/README.md b/samples/grpc-tomcat/README.md index 6c30b70b..d7a46b34 100644 --- a/samples/grpc-tomcat/README.md +++ b/samples/grpc-tomcat/README.md @@ -11,7 +11,7 @@ $ ./mvnw spring-boot:run \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v3.5.0) + :: Spring Boot :: (v3.5.3) 2022-12-08T05:32:24.934-08:00 INFO 551632 --- [ main] com.example.demo.DemoApplication : Starting DemoApplication using Java 17.0.5 with PID 551632 (/home/dsyer/dev/scratch/demo/target/classes started by dsyer in /home/dsyer/dev/scratch/demo) 2022-12-08T05:32:24.938-08:00 INFO 551632 --- [ main] com.example.demo.DemoApplication : No active profile set, falling back to 1 default profile: "default" @@ -48,7 +48,7 @@ $ ./target/demo \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v3.0.0) + :: Spring Boot :: (v3.5.3) 2022-12-08T05:36:54.365-08:00 INFO 554359 --- [ main] com.example.demo.DemoApplication : Starting AOT-processed DemoApplication using Java 17.0.5 with PID 554359 (/home/dsyer/dev/scratch/demo/target/demo started by dsyer in /home/dsyer/dev/scratch/demo) 2022-12-08T05:36:54.366-08:00 INFO 554359 --- [ main] com.example.demo.DemoApplication : No active profile set, falling back to 1 default profile: "default" diff --git a/samples/grpc-tomcat/build.gradle b/samples/grpc-tomcat/build.gradle index 211968c0..a5482e9b 100644 --- a/samples/grpc-tomcat/build.gradle +++ b/samples/grpc-tomcat/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'org.springframework.boot' version '3.5.0' + id 'org.springframework.boot' version '3.5.3' id 'io.spring.dependency-management' version '1.1.6' id 'org.graalvm.buildtools.native' version '0.10.3' id 'com.google.protobuf' version '0.9.4' diff --git a/samples/grpc-tomcat/pom.xml b/samples/grpc-tomcat/pom.xml index 2c091230..9d91c886 100644 --- a/samples/grpc-tomcat/pom.xml +++ b/samples/grpc-tomcat/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 3.5.0 + 3.5.3 org.springframework.grpc diff --git a/samples/grpc-webflux/README.md b/samples/grpc-webflux/README.md index 6c30b70b..d7a46b34 100644 --- a/samples/grpc-webflux/README.md +++ b/samples/grpc-webflux/README.md @@ -11,7 +11,7 @@ $ ./mvnw spring-boot:run \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v3.5.0) + :: Spring Boot :: (v3.5.3) 2022-12-08T05:32:24.934-08:00 INFO 551632 --- [ main] com.example.demo.DemoApplication : Starting DemoApplication using Java 17.0.5 with PID 551632 (/home/dsyer/dev/scratch/demo/target/classes started by dsyer in /home/dsyer/dev/scratch/demo) 2022-12-08T05:32:24.938-08:00 INFO 551632 --- [ main] com.example.demo.DemoApplication : No active profile set, falling back to 1 default profile: "default" @@ -48,7 +48,7 @@ $ ./target/demo \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ - :: Spring Boot :: (v3.0.0) + :: Spring Boot :: (v3.5.3) 2022-12-08T05:36:54.365-08:00 INFO 554359 --- [ main] com.example.demo.DemoApplication : Starting AOT-processed DemoApplication using Java 17.0.5 with PID 554359 (/home/dsyer/dev/scratch/demo/target/demo started by dsyer in /home/dsyer/dev/scratch/demo) 2022-12-08T05:36:54.366-08:00 INFO 554359 --- [ main] com.example.demo.DemoApplication : No active profile set, falling back to 1 default profile: "default" diff --git a/samples/grpc-webflux/build.gradle b/samples/grpc-webflux/build.gradle index f6c2d592..098b4890 100644 --- a/samples/grpc-webflux/build.gradle +++ b/samples/grpc-webflux/build.gradle @@ -1,6 +1,6 @@ plugins { id 'java' - id 'org.springframework.boot' version '3.5.0' + id 'org.springframework.boot' version '3.5.3' id 'io.spring.dependency-management' version '1.1.6' id 'org.graalvm.buildtools.native' version '0.10.3' id 'com.google.protobuf' version '0.9.4' diff --git a/samples/grpc-webflux/pom.xml b/samples/grpc-webflux/pom.xml index cfdadb14..0f440c4c 100644 --- a/samples/grpc-webflux/pom.xml +++ b/samples/grpc-webflux/pom.xml @@ -6,7 +6,7 @@ org.springframework.boot spring-boot-starter-parent - 3.5.0 + 3.5.3 org.springframework.grpc diff --git a/spring-grpc-build-dependencies/pom.xml b/spring-grpc-build-dependencies/pom.xml index 4bd4e468..dce06b6b 100644 --- a/spring-grpc-build-dependencies/pom.xml +++ b/spring-grpc-build-dependencies/pom.xml @@ -49,10 +49,10 @@ - 6.2.7 - 6.5.0 - 1.15.0 - 4.1.121.Final + 6.2.8 + 6.5.1 + 1.15.1 + 4.1.122.Final 0.0.43