Skip to content

Commit 1bb47f4

Browse files
committed
update to boot 3.4.5
1 parent eb82d46 commit 1bb47f4

File tree

30 files changed

+34
-34
lines changed

30 files changed

+34
-34
lines changed

.github/workflows/check-samples.yml

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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'

0 commit comments

Comments
 (0)