Skip to content

Commit ff85394

Browse files
committed
5.1.0 release
1 parent 0ed0f1b commit ff85394

File tree

4 files changed

+19
-6
lines changed

4 files changed

+19
-6
lines changed

README.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ repositories {
3838
3939
}
4040
dependencies {
41-
compile 'io.github.lognet:grpc-spring-boot-starter:5.0.0'
41+
compile 'io.github.lognet:grpc-spring-boot-starter:5.1.0'
4242
}
4343
4444
@@ -48,10 +48,10 @@ By default, starter pulls `io.grpc:grpc-netty-shaded` as transitive dependency
4848

4949
[source,groovy]
5050
----
51-
compile ('io.github.lognet:grpc-spring-boot-starter:5.0.0') {
51+
compile ('io.github.lognet:grpc-spring-boot-starter:5.1.0') {
5252
exclude group: 'io.grpc', module: 'grpc-netty-shaded'
5353
}
54-
compile 'io.grpc:grpc-netty:1.51.0' // <1>
54+
compile 'io.grpc:grpc-netty:1.54.0' // <1>
5555
----
5656
<1> Make sure to pull the version that matches the release.
5757

@@ -65,7 +65,7 @@ In this case you'll need to forcibly and explicitly set the `grpc` version to
6565
configurations.all {
6666
resolutionStrategy.eachDependency { details ->
6767
if ("io.grpc".equalsIgnoreCase(details.requested.group)) {
68-
details.useVersion "1.51.0"
68+
details.useVersion "1.54.0"
6969
}
7070
}
7171
}

ReleaseNotes.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
| Starter Version | gRPC versions | Spring Boot version |
22
|:------------------------|:-------------:|:-------------------:|
3+
| [5.1.0](#version-510) | 1.54.0 | 3.0.5 |
34
| [5.0.0](#version-500) | 1.51.0 | 3.0.0 |
45
| [4.9.1](#version-491) | 1.51.0 | 2.7.6 |
56
| [4.9.0](#version-490) | 1.50.0 | 2.7.4 |
@@ -37,6 +38,18 @@
3738
| [4.0.0](#version-400) | 1.32.1 | 2.3.3.RELEASE |
3839
| [3.5.7](#version-357) | 1.31.1 | 1.5.13.RELEASE |
3940

41+
# Version 5.1.0
42+
## :lady_beetle: Bug Fixes
43+
44+
- Error interceptor does not work as expected when using R2DBC repositories [#342](https://github.com/LogNet/grpc-spring-boot-starter/issues/342)
45+
46+
## :hammer: Dependency Upgrades
47+
48+
- Upgrade spring boot to 3.0.5 [#346](https://github.com/LogNet/grpc-spring-boot-starter/issues/346)
49+
- Upgrade grpc to 1.54.0 [#345](https://github.com/LogNet/grpc-spring-boot-starter/issues/345)
50+
- Resolve TODO which waited on external issue [#340](https://github.com/LogNet/grpc-spring-boot-starter/issues/340)
51+
52+
4053
# Version 5.0.0
4154
## :hammer: Dependency Upgrades
4255

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ gradleErrorPronePluginVersion=3.0.1
88
errorProneVersion=2.16
99
lombokVersion=1.18.24
1010

11-
version=5.1.0-SNAPSHOT
11+
version=5.1.0
1212
group=io.github.lognet
1313
description=Spring Boot starter for Google RPC.
1414
gitHubUrl=https\://github.com/LogNet/grpc-spring-boot-starter

grpc-spring-boot-starter-gradle-plugin/README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Bootstraps the project with `com.google.protobuf` gradle plugin (including `grp
2323
----
2424
plugins {
2525
id 'java'
26-
id "io.github.lognet.grpc-spring-boot" version '5.0.0'
26+
id "io.github.lognet.grpc-spring-boot" version '5.1.0'
2727
}
2828
2929
----

0 commit comments

Comments
 (0)