File tree Expand file tree Collapse file tree 4 files changed +23
-8
lines changed
grpc-spring-boot-starter-gradle-plugin Expand file tree Collapse file tree 4 files changed +23
-8
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ Autoconfigures and runs the embedded gRPC server with @GRpcService-enabled beans
3434[source,groovy]
3535----
3636plugins {
37- id "io.github.lognet.grpc-spring-boot" version '5.1.4 '
37+ id "io.github.lognet.grpc-spring-boot" version '5.1.5 '
3838}
3939----
4040
@@ -49,18 +49,18 @@ repositories {
4949 // maven { url "https://oss.sonatype.org/content/repositories/snapshots" } // for snapshot builds
5050}
5151dependencies {
52- implementation 'io.github.lognet:grpc-spring-boot-starter:5.1.4 '
52+ implementation 'io.github.lognet:grpc-spring-boot-starter:5.1.5 '
5353}
5454----
5555
5656By default, starter pulls `io.grpc:grpc-netty-shaded` as transitive dependency, if you are forced to use pure `grpc-netty` dependency:
5757
5858[source,groovy]
5959----
60- implementation ('io.github.lognet:grpc-spring-boot-starter:5.1.4 ') {
60+ implementation ('io.github.lognet:grpc-spring-boot-starter:5.1.5 ') {
6161 exclude group: 'io.grpc', module: 'grpc-netty-shaded'
6262}
63- implementation 'io.grpc:grpc-netty:1.57 .0' // <1>
63+ implementation 'io.grpc:grpc-netty:1.58 .0' // <1>
6464----
6565<1> Make sure to pull the version that matches the release.
6666
@@ -74,7 +74,7 @@ In this case you'll need to forcibly and explicitly set the `grpc` version to
7474configurations.all {
7575 resolutionStrategy.eachDependency { details ->
7676 if ("io.grpc".equalsIgnoreCase(details.requested.group)) {
77- details.useVersion "1.57 .0"
77+ details.useVersion "1.58 .0"
7878 }
7979 }
8080}
Original file line number Diff line number Diff line change 11| Starter Version | gRPC versions | Spring Boot version |
22| :------------------------| :-------------:| :-------------------:|
3- | [ 5.1.4] ( #version-514 ) | 1.57.0 | 3.1.1 |
3+ | [ 5.1.5] ( #version-515 ) | 1.58.0 | 3.1.1 |
4+ | [ 5.1.4] ( #version-514 ) | 1.57.0 | 3.1.1 |
45| [ 5.1.3] ( #version-513 ) | 1.56.1 | 3.1.1 |
56| [ 5.1.2] ( #version-512 ) | 1.55.1 | 3.0.6 |
67| [ 5.1.1] ( #version-511 ) | 1.54.1 | 3.0.6 |
4243| [ 4.0.0] ( #version-400 ) | 1.32.1 | 2.3.3.RELEASE |
4344| [ 3.5.7] ( #version-357 ) | 1.31.1 | 1.5.13.RELEASE |
4445
46+ # Version 5.1.5
47+ ## :star : New Features
48+
49+ - Allow order Interceptors by using ` @Order ` annotation in the ` @Bean ` definition [ #379 ] ( https://github.com/LogNet/grpc-spring-boot-starter/issues/379 )
50+
51+ ## :lady_beetle : Bug Fixes
52+
53+ - 5.1.0 changes status exception behaviour [ #371 ] ( https://github.com/LogNet/grpc-spring-boot-starter/issues/371 )
54+ - GRpcExceptionHandler doesn't work [ Kotlin] [ #268 ] ( https://github.com/LogNet/grpc-spring-boot-starter/issues/268 )
55+
56+ ## :hammer : Dependency Upgrades
57+
58+ - Upgrade grpc to 1.58 [ #375 ] ( https://github.com/LogNet/grpc-spring-boot-starter/issues/375 )
59+
4560# Version 5.1.4
4661## :lady_beetle : Bug Fixes
4762
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ gradleErrorPronePluginVersion=3.0.1
88errorProneVersion =2.16
99lombokVersion =1.18.24
1010
11- version =5.1.5-SNAPSHOT
11+ version =5.1.5
1212group =io.github.lognet
1313description =Spring Boot starter for Google RPC.
1414gitHubUrl =https\://github.com/LogNet/grpc-spring-boot-starter
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Bootstraps the project with `com.google.protobuf` gradle plugin (including `grp
2222----
2323plugins {
2424 id 'java'
25- id "io.github.lognet.grpc-spring-boot" version '5.1.4 '
25+ id "io.github.lognet.grpc-spring-boot" version '5.1.5 '
2626}
2727
2828----
You can’t perform that action at this time.
0 commit comments