diff --git a/samples/grpc-server-netty-shaded/pom.xml b/samples/grpc-server-netty-shaded/pom.xml index acbcf7f..6a0ff9b 100644 --- a/samples/grpc-server-netty-shaded/pom.xml +++ b/samples/grpc-server-netty-shaded/pom.xml @@ -18,7 +18,7 @@ 17 0.0.39 3.25.5 - 1.63.2 + 1.69.0 diff --git a/samples/grpc-server/pom.xml b/samples/grpc-server/pom.xml index 06592f1..9b1b83c 100644 --- a/samples/grpc-server/pom.xml +++ b/samples/grpc-server/pom.xml @@ -31,7 +31,7 @@ 17 0.0.39 3.25.5 - 1.63.2 + 1.69.0 diff --git a/samples/grpc-tomcat/pom.xml b/samples/grpc-tomcat/pom.xml index 8237919..b4802be 100644 --- a/samples/grpc-tomcat/pom.xml +++ b/samples/grpc-tomcat/pom.xml @@ -31,7 +31,7 @@ 17 0.0.39 3.25.5 - 1.63.2 + 1.69.0 diff --git a/samples/grpc-webflux/pom.xml b/samples/grpc-webflux/pom.xml index d22a5ac..66049a9 100644 --- a/samples/grpc-webflux/pom.xml +++ b/samples/grpc-webflux/pom.xml @@ -31,7 +31,7 @@ 17 0.0.39 3.25.5 - 1.63.2 + 1.69.0 diff --git a/spring-grpc-dependencies/pom.xml b/spring-grpc-dependencies/pom.xml index b53059e..21c783c 100644 --- a/spring-grpc-dependencies/pom.xml +++ b/spring-grpc-dependencies/pom.xml @@ -51,7 +51,7 @@ 6.2.1 4.1.115.Final - 1.63.2 + 1.69.0 3.25.5 2.46.0 1.13.6 diff --git a/spring-grpc-spring-boot-autoconfigure/src/main/java/org/springframework/grpc/autoconfigure/server/GrpcServerReflectionAutoConfiguration.java b/spring-grpc-spring-boot-autoconfigure/src/main/java/org/springframework/grpc/autoconfigure/server/GrpcServerReflectionAutoConfiguration.java index f8f58c5..dae7acf 100644 --- a/spring-grpc-spring-boot-autoconfigure/src/main/java/org/springframework/grpc/autoconfigure/server/GrpcServerReflectionAutoConfiguration.java +++ b/spring-grpc-spring-boot-autoconfigure/src/main/java/org/springframework/grpc/autoconfigure/server/GrpcServerReflectionAutoConfiguration.java @@ -8,6 +8,7 @@ import org.springframework.context.annotation.Bean; import io.grpc.BindableService; import io.grpc.protobuf.services.ProtoReflectionService; +import io.grpc.protobuf.services.ProtoReflectionServiceV1; /** * {@link EnableAutoConfiguration Auto-configuration} for gRPC Reflection service @@ -24,7 +25,7 @@ public class GrpcServerReflectionAutoConfiguration { @Bean public BindableService serverReflection() { - return ProtoReflectionService.newInstance(); + return ProtoReflectionServiceV1.newInstance(); } }