Skip to content

Commit 98884c1

Browse files
therepanicdsyer
authored andcommitted
update to spring boot 3.5.3
Signed-off-by: Andrey Litvitski <[email protected]>
1 parent 3e069a6 commit 98884c1

File tree

38 files changed

+54
-54
lines changed

38 files changed

+54
-54
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.5.0"
14+
springBootVersion: "3.5.3"
1515
- javaVersion: 17
1616
springBootVersion: "3.5.0-SNAPSHOT"
1717
runs-on: ubuntu-latest

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@
7979
<maven.compiler.target>17</maven.compiler.target>
8080

8181
<!-- internal dependencies -->
82-
<spring-boot.version>3.5.0</spring-boot.version>
83-
<jackson.version>2.19.0</jackson.version>
82+
<spring-boot.version>3.5.3</spring-boot.version>
83+
<jackson.version>2.19.1</jackson.version>
8484
<junit.version>5.12.2</junit.version>
8585
<assertj.version>3.27.3</assertj.version>
8686
<!-- documentation dependencies -->

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.5.0)
14+
:: Spring Boot :: (v3.5.3)
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.5.0'
3+
id 'org.springframework.boot' version '3.5.3'
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.5.0</version>
9+
<version>3.5.3</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.5.0)
14+
:: Spring Boot :: (v3.5.3)
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.5.0'
3+
id 'org.springframework.boot' version '3.5.3'
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.5.0</version>
9+
<version>3.5.3</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>

samples/grpc-oauth2/src/test/java/org/springframework/grpc/sample/GrpcServerApplicationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ static CommonsExecWebServerFactoryBean authServer() {
124124
return CommonsExecWebServerFactoryBean.builder()
125125
.useGenericSpringBootMain()
126126
.classpath(classpath -> classpath.entries(new MavenClasspathEntry(
127-
"org.springframework.boot:spring-boot-starter-oauth2-authorization-server:3.5.0")));
127+
"org.springframework.boot:spring-boot-starter-oauth2-authorization-server:3.5.3")));
128128
}
129129

130130
@Bean

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.5.0)
14+
:: Spring Boot :: (v3.5.3)
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.5.0'
3+
id 'org.springframework.boot' version '3.5.3'
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

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.5.0</version>
9+
<version>3.5.3</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>

samples/grpc-secure/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.5.0)
14+
:: Spring Boot :: (v3.5.3)
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

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.5.0'
3+
id 'org.springframework.boot' version '3.5.3'
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

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.5.0</version>
9+
<version>3.5.3</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>

samples/grpc-server-kotlin/HELP-gradle.md

Lines changed: 3 additions & 3 deletions
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.5.0/gradle-plugin)
8-
* [Create an OCI image](https://docs.spring.io/spring-boot/3.5.0/gradle-plugin/packaging-oci-image.html)
9-
* [GraalVM Native Image Support](https://docs.spring.io/spring-boot/3.5.0/reference/packaging/native-image/introducing-graalvm-native-images.html)
7+
* [Spring Boot Gradle Plugin Reference Guide](https://docs.spring.io/spring-boot/3.5.3/gradle-plugin)
8+
* [Create an OCI image](https://docs.spring.io/spring-boot/3.5.3/gradle-plugin/packaging-oci-image.html)
9+
* [GraalVM Native Image Support](https://docs.spring.io/spring-boot/3.5.3/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-kotlin/HELP-maven.md

Lines changed: 3 additions & 3 deletions
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.5.0/maven-plugin)
8-
* [Create an OCI image](https://docs.spring.io/spring-boot/3.5.0/maven-plugin/build-image.html)
9-
* [GraalVM Native Image Support](https://docs.spring.io/spring-boot/3.5.0/reference/packaging/native-image/introducing-graalvm-native-images.html)
7+
* [Spring Boot Maven Plugin Reference Guide](https://docs.spring.io/spring-boot/3.5.3/maven-plugin)
8+
* [Create an OCI image](https://docs.spring.io/spring-boot/3.5.3/maven-plugin/build-image.html)
9+
* [GraalVM Native Image Support](https://docs.spring.io/spring-boot/3.5.3/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-kotlin/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.5.0)
14+
:: Spring Boot :: (v3.5.3)
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-kotlin/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.5.0'
3+
id 'org.springframework.boot' version '3.5.3'
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-kotlin/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.5.0</version>
9+
<version>3.5.3</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>

samples/grpc-server-netty-shaded/README.md

Lines changed: 2 additions & 2 deletions
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.5.3)
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"
@@ -48,7 +48,7 @@ $ ./target/demo
4848
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
4949
' |____| .__|_| |_|_| |_\__, | / / / /
5050
=========|_|==============|___/=/_/_/_/
51-
:: Spring Boot :: (v3.0.0)
51+
:: Spring Boot :: (v3.5.3)
5252
5353
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)
5454
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"

samples/grpc-server-netty-shaded/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.5.0'
3+
id 'org.springframework.boot' version '3.5.3'
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

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.5.0</version>
9+
<version>3.5.3</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>com.example</groupId>

samples/grpc-server/HELP-gradle.md

Lines changed: 3 additions & 3 deletions
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.5.0/gradle-plugin)
8-
* [Create an OCI image](https://docs.spring.io/spring-boot/3.5.0/gradle-plugin/packaging-oci-image.html)
9-
* [GraalVM Native Image Support](https://docs.spring.io/spring-boot/3.5.0/reference/packaging/native-image/introducing-graalvm-native-images.html)
7+
* [Spring Boot Gradle Plugin Reference Guide](https://docs.spring.io/spring-boot/3.5.3/gradle-plugin)
8+
* [Create an OCI image](https://docs.spring.io/spring-boot/3.5.3/gradle-plugin/packaging-oci-image.html)
9+
* [GraalVM Native Image Support](https://docs.spring.io/spring-boot/3.5.3/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

Lines changed: 3 additions & 3 deletions
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.5.0/maven-plugin)
8-
* [Create an OCI image](https://docs.spring.io/spring-boot/3.5.0/maven-plugin/build-image.html)
9-
* [GraalVM Native Image Support](https://docs.spring.io/spring-boot/3.5.0/reference/packaging/native-image/introducing-graalvm-native-images.html)
7+
* [Spring Boot Maven Plugin Reference Guide](https://docs.spring.io/spring-boot/3.5.3/maven-plugin)
8+
* [Create an OCI image](https://docs.spring.io/spring-boot/3.5.3/maven-plugin/build-image.html)
9+
* [GraalVM Native Image Support](https://docs.spring.io/spring-boot/3.5.3/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

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.5.0)
14+
:: Spring Boot :: (v3.5.3)
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

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.5.0'
3+
id 'org.springframework.boot' version '3.5.3'
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

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.5.0</version>
9+
<version>3.5.3</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>

samples/grpc-tomcat-secure/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ $ ./mvnw spring-boot:run
1111
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
1212
' |____| .__|_| |_|_| |_\__, | / / / /
1313
=========|_|==============|___/=/_/_/_/
14-
:: Spring Boot :: (v3.5.0)
14+
:: Spring Boot :: (v3.5.3)
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"
@@ -48,7 +48,7 @@ $ ./target/demo
4848
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
4949
' |____| .__|_| |_|_| |_\__, | / / / /
5050
=========|_|==============|___/=/_/_/_/
51-
:: Spring Boot :: (v3.0.0)
51+
:: Spring Boot :: (v3.5.3)
5252
5353
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)
5454
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"

samples/grpc-tomcat-secure/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.5.0'
3+
id 'org.springframework.boot' version '3.5.3'
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

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.5.0</version>
9+
<version>3.5.3</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>

samples/grpc-tomcat/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ $ ./mvnw spring-boot:run
1111
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
1212
' |____| .__|_| |_|_| |_\__, | / / / /
1313
=========|_|==============|___/=/_/_/_/
14-
:: Spring Boot :: (v3.5.0)
14+
:: Spring Boot :: (v3.5.3)
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"
@@ -48,7 +48,7 @@ $ ./target/demo
4848
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
4949
' |____| .__|_| |_|_| |_\__, | / / / /
5050
=========|_|==============|___/=/_/_/_/
51-
:: Spring Boot :: (v3.0.0)
51+
:: Spring Boot :: (v3.5.3)
5252
5353
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)
5454
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"

samples/grpc-tomcat/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.5.0'
3+
id 'org.springframework.boot' version '3.5.3'
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

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.5.0</version>
9+
<version>3.5.3</version>
1010
<relativePath /> <!-- lookup parent from repository -->
1111
</parent>
1212
<groupId>org.springframework.grpc</groupId>

samples/grpc-webflux/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ $ ./mvnw spring-boot:run
1111
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
1212
' |____| .__|_| |_|_| |_\__, | / / / /
1313
=========|_|==============|___/=/_/_/_/
14-
:: Spring Boot :: (v3.5.0)
14+
:: Spring Boot :: (v3.5.3)
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"
@@ -48,7 +48,7 @@ $ ./target/demo
4848
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
4949
' |____| .__|_| |_|_| |_\__, | / / / /
5050
=========|_|==============|___/=/_/_/_/
51-
:: Spring Boot :: (v3.0.0)
51+
:: Spring Boot :: (v3.5.3)
5252
5353
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)
5454
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"

0 commit comments

Comments
 (0)