Skip to content

Commit f820eab

Browse files
panic08onobc
authored andcommitted
Update to Spring Boot 3.4.5
Signed-off-by: Andrey Litvitski <[email protected]>
1 parent eb82d46 commit f820eab

File tree

30 files changed

+34
-34
lines changed

30 files changed

+34
-34
lines changed

.github/workflows/check-samples.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
matrix:
1212
include:
1313
- javaVersion: 17
14-
springBootVersion: "3.4.4"
14+
springBootVersion: "3.4.5"
1515
- javaVersion: 17
1616
springBootVersion: "3.5.0-SNAPSHOT"
1717
runs-on: ubuntu-latest

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
<maven.compiler.target>17</maven.compiler.target>
8080

8181
<!-- internal dependencies -->
82-
<spring-boot.version>3.4.4</spring-boot.version>
82+
<spring-boot.version>3.4.5</spring-boot.version>
8383
<jackson.version>2.17.2</jackson.version>
8484
<junit.version>5.10.5</junit.version>
8585
<assertj.version>3.27.3</assertj.version>

samples/grpc-client/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ $ ./mvnw spring-boot:run
1111
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
1212
' |____| .__|_| |_|_| |_\__, | / / / /
1313
=========|_|==============|___/=/_/_/_/
14-
:: Spring Boot :: (v3.4.4)
14+
:: Spring Boot :: (v3.4.5)
1515
1616
...
1717
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)

samples/grpc-client/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '3.4.4'
3+
id 'org.springframework.boot' version '3.4.5'
44
id 'io.spring.dependency-management' version '1.1.6'
55
id 'com.google.protobuf' version '0.9.4'
66
}

samples/grpc-client/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.4.4</version>
9+
<version>3.4.5</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>

samples/grpc-oauth2/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ $ ./mvnw spring-boot:test-run
1111
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
1212
' |____| .__|_| |_|_| |_\__, | / / / /
1313
=========|_|==============|___/=/_/_/_/
14-
:: Spring Boot :: (v3.4.1)
14+
:: Spring Boot :: (v3.4.5)
1515
1616
...
1717
2022-12-08T05:32:25.427-08:00 INFO 551632 --- [ main] g.s.a.GrpcServerFactoryAutoConfiguration : Detected grpc-netty: Creating NettyGrpcServerFactory

samples/grpc-oauth2/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '3.4.4'
3+
id 'org.springframework.boot' version '3.4.5'
44
id 'io.spring.dependency-management' version '1.1.6'
55
id 'org.graalvm.buildtools.native' version '0.10.3'
66
id 'com.google.protobuf' version '0.9.4'

samples/grpc-oauth2/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.4.4</version>
9+
<version>3.4.5</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>

samples/grpc-reactive/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ $ ./mvnw spring-boot:run
1111
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
1212
' |____| .__|_| |_|_| |_\__, | / / / /
1313
=========|_|==============|___/=/_/_/_/
14-
:: Spring Boot :: (v3.0.0)
14+
:: Spring Boot :: (v3.4.5)
1515
1616
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)
1717
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"

samples/grpc-reactive/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '3.4.4'
3+
id 'org.springframework.boot' version '3.4.5'
44
id 'io.spring.dependency-management' version '1.1.6'
55
id 'org.graalvm.buildtools.native' version '0.10.3'
66
id 'com.google.protobuf' version '0.9.4'

samples/grpc-reactive/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.4.4</version>
9+
<version>3.4.5</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>

samples/grpc-secure/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ $ ./mvnw spring-boot:run
1111
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
1212
' |____| .__|_| |_|_| |_\__, | / / / /
1313
=========|_|==============|___/=/_/_/_/
14-
:: Spring Boot :: (v3.0.0)
14+
:: Spring Boot :: (v3.4.5)
1515
1616
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)
1717
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"

samples/grpc-secure/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '3.4.4'
3+
id 'org.springframework.boot' version '3.4.5'
44
id 'io.spring.dependency-management' version '1.1.6'
55
id 'org.graalvm.buildtools.native' version '0.10.3'
66
id 'com.google.protobuf' version '0.9.4'

samples/grpc-secure/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.4.4</version>
9+
<version>3.4.5</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>

samples/grpc-server-netty-shaded/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '3.4.4'
3+
id 'org.springframework.boot' version '3.4.5'
44
id 'io.spring.dependency-management' version '1.1.6'
55
id 'org.graalvm.buildtools.native' version '0.10.3'
66
id 'com.google.protobuf' version '0.9.4'

samples/grpc-server-netty-shaded/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.4.4</version>
9+
<version>3.4.5</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>com.example</groupId>

samples/grpc-server/HELP-gradle.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
For further reference, please consider the following sections:
55

66
* [Official Gradle documentation](https://docs.gradle.org)
7-
* [Spring Boot Gradle Plugin Reference Guide](https://docs.spring.io/spring-boot/3.4.4/gradle-plugin)
8-
* [Create an OCI image](https://docs.spring.io/spring-boot/3.4.4/gradle-plugin/packaging-oci-image.html)
9-
* [GraalVM Native Image Support](https://docs.spring.io/spring-boot/3.4.4/reference/packaging/native-image/introducing-graalvm-native-images.html)
7+
* [Spring Boot Gradle Plugin Reference Guide](https://docs.spring.io/spring-boot/3.4.5/gradle-plugin)
8+
* [Create an OCI image](https://docs.spring.io/spring-boot/3.4.5/gradle-plugin/packaging-oci-image.html)
9+
* [GraalVM Native Image Support](https://docs.spring.io/spring-boot/3.4.5/reference/packaging/native-image/introducing-graalvm-native-images.html)
1010
* [Spring gRPC [Experimental]](https://docs.spring.io/spring-grpc/reference/index.html)
1111

1212
### Additional Links

samples/grpc-server/HELP-maven.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
For further reference, please consider the following sections:
55

66
* [Official Apache Maven documentation](https://maven.apache.org/guides/index.html)
7-
* [Spring Boot Maven Plugin Reference Guide](https://docs.spring.io/spring-boot/3.4.4/maven-plugin)
8-
* [Create an OCI image](https://docs.spring.io/spring-boot/3.4.4/maven-plugin/build-image.html)
9-
* [GraalVM Native Image Support](https://docs.spring.io/spring-boot/3.4.4/reference/packaging/native-image/introducing-graalvm-native-images.html)
7+
* [Spring Boot Maven Plugin Reference Guide](https://docs.spring.io/spring-boot/3.4.5/maven-plugin)
8+
* [Create an OCI image](https://docs.spring.io/spring-boot/3.4.5/maven-plugin/build-image.html)
9+
* [GraalVM Native Image Support](https://docs.spring.io/spring-boot/3.4.5/reference/packaging/native-image/introducing-graalvm-native-images.html)
1010
* [Spring gRPC [Experimental]](https://docs.spring.io/spring-grpc/reference/index.html)
1111

1212
### Additional Links

samples/grpc-server/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ $ ./mvnw spring-boot:run
1111
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
1212
' |____| .__|_| |_|_| |_\__, | / / / /
1313
=========|_|==============|___/=/_/_/_/
14-
:: Spring Boot :: (v3.0.0)
14+
:: Spring Boot :: (v3.4.5)
1515
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)
1616
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"
1717
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

samples/grpc-server/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '3.4.4'
3+
id 'org.springframework.boot' version '3.4.5'
44
id 'io.spring.dependency-management' version '1.1.6'
55
id 'org.graalvm.buildtools.native' version '0.10.3'
66
id 'com.google.protobuf' version '0.9.4'

samples/grpc-server/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.4.4</version>
9+
<version>3.4.5</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>

samples/grpc-tomcat-secure/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ $ ./mvnw spring-boot:run
1111
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
1212
' |____| .__|_| |_|_| |_\__, | / / / /
1313
=========|_|==============|___/=/_/_/_/
14-
:: Spring Boot :: (v3.0.0)
14+
:: Spring Boot :: (v3.4.5)
1515
1616
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)
1717
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"

samples/grpc-tomcat-secure/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '3.4.4'
3+
id 'org.springframework.boot' version '3.4.5'
44
id 'io.spring.dependency-management' version '1.1.6'
55
id 'org.graalvm.buildtools.native' version '0.10.3'
66
id 'com.google.protobuf' version '0.9.4'

samples/grpc-tomcat-secure/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.4.4</version>
9+
<version>3.4.5</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>

samples/grpc-tomcat/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ $ ./mvnw spring-boot:run
1111
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
1212
' |____| .__|_| |_|_| |_\__, | / / / /
1313
=========|_|==============|___/=/_/_/_/
14-
:: Spring Boot :: (v3.0.0)
14+
:: Spring Boot :: (v3.4.5)
1515
1616
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)
1717
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"

samples/grpc-tomcat/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '3.4.4'
3+
id 'org.springframework.boot' version '3.4.5'
44
id 'io.spring.dependency-management' version '1.1.6'
55
id 'org.graalvm.buildtools.native' version '0.10.3'
66
id 'com.google.protobuf' version '0.9.4'

samples/grpc-tomcat/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.4.4</version>
9+
<version>3.4.5</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>

samples/grpc-webflux/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ $ ./mvnw spring-boot:run
1111
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
1212
' |____| .__|_| |_|_| |_\__, | / / / /
1313
=========|_|==============|___/=/_/_/_/
14-
:: Spring Boot :: (v3.0.0)
14+
:: Spring Boot :: (v3.4.5)
1515
1616
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)
1717
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"

samples/grpc-webflux/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '3.4.4'
3+
id 'org.springframework.boot' version '3.4.5'
44
id 'io.spring.dependency-management' version '1.1.6'
55
id 'org.graalvm.buildtools.native' version '0.10.3'
66
id 'com.google.protobuf' version '0.9.4'

samples/grpc-webflux/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.springframework.boot</groupId>
88
<artifactId>spring-boot-starter-parent</artifactId>
9-
<version>3.4.4</version>
9+
<version>3.4.5</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>

0 commit comments

Comments
 (0)