You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<1> Make sure to pull the version that matches the release.
57
57
@@ -960,6 +960,16 @@ class MyClient{
960
960
The starter registers the default implementation of https://github.com/grpc/grpc-java/blob/bab1fe38dc/services/src/main/java/io/grpc/protobuf/services/HealthServiceImpl.java[HealthServiceImpl]. +
961
961
You can provide you own by registering link:./grpc-spring-boot-starter/src/main/java/org/lognet/springboot/grpc/health/ManagedHealthStatusService.java[ManagedHealthStatusService] bean in your application context.
962
962
963
+
964
+
== Spring actuator support
965
+
966
+
If you have `org.springframework.boot:spring-boot-starter-actuator` and `org.springframework.boot:spring-boot-starter-web` in the classpath, the starter will expose:
967
+
968
+
* `grpc` health indicator under `/actuator/health` endpoint.
969
+
* `/actuator/grpc` endpoint.
970
+
971
+
This can be controlled by standard https://docs.spring.io/spring-boot/docs/2.5.x/reference/html/actuator.html#actuator.endpoints.enabling[endpoints] and https://docs.spring.io/spring-boot/docs/2.5.x/reference/html/actuator.html#actuator.endpoints.health[health] configuration.
972
+
963
973
== Consul Integration
964
974
965
975
Starting from version `3.3.0`, the starter will auto-register the running grpc server in Consul registry if `org.springframework.cloud:spring-cloud-starter-consul-discovery` is in classpath and
- Application with configured grpc.consul.xxx properties fails to start if no consul in classpath [#256](https://github.com/LogNet/grpc-spring-boot-starter/issues/256)
42
+
43
+
## :hammer: Dependency Upgrades
44
+
45
+
- Upgrade protoc compiler to 3.17.3 [#262](https://github.com/LogNet/grpc-spring-boot-starter/issues/262)
46
+
- Upgrade protobuf-gradle-plugin to 0.8.17 [#261](https://github.com/LogNet/grpc-spring-boot-starter/issues/261)
47
+
- Upgrade grpc to 1.42.0 [#260](https://github.com/LogNet/grpc-spring-boot-starter/issues/260)
Copy file name to clipboardExpand all lines: grpc-spring-boot-starter-gradle-plugin/README.adoc
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ Bootstraps the project with `com.google.protobuf` gradle plugin (including `grp
23
23
----
24
24
plugins {
25
25
id 'java'
26
-
id "io.github.lognet.grpc-spring-boot" version '4.5.9'
26
+
id "io.github.lognet.grpc-spring-boot" version '4.5.10'
27
27
}
28
28
29
29
----
@@ -53,7 +53,7 @@ grpcSpringBoot {
53
53
----
54
54
<1> `io.github.lognet:grpc-spring-boot-starter` version to use, defaults to the same version as this plugin.
55
55
<2> `grpc` version to use, defaults to the version the `io.github.lognet:grpc-spring-boot-starter` was compiled with (see version matrix https://github.com/LogNet/grpc-spring-boot-starter/blob/master/ReleaseNotes.md[here])
56
-
<3> Version of `com.google.protobuf:protoc` protocol compiler to use (defaults to `3.17.2`)
56
+
<3> Version of `com.google.protobuf:protoc` protocol compiler to use (defaults to `3.17.3`)
57
57
58
58
59
59
The version of `com.google.protobuf` can be controlled via `pluginManagement` block :
0 commit comments