Skip to content

Commit 0ca46d9

Browse files
committed
release 5.1.1
1 parent 4813d31 commit 0ca46d9

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.1.0'
41+
compile 'io.github.lognet:grpc-spring-boot-starter:5.1.1'
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.1.0') {
51+
compile ('io.github.lognet:grpc-spring-boot-starter:5.1.1') {
5252
exclude group: 'io.grpc', module: 'grpc-netty-shaded'
5353
}
54-
compile 'io.grpc:grpc-netty:1.54.0' // <1>
54+
compile 'io.grpc:grpc-netty:1.54.1' // <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.54.0"
68+
details.useVersion "1.54.1"
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.1](#version-510) | 1.54.1 | 3.0.6 |
34
| [5.1.0](#version-510) | 1.54.0 | 3.0.5 |
45
| [5.0.0](#version-500) | 1.51.0 | 3.0.0 |
56
| [4.9.1](#version-491) | 1.51.0 | 2.7.6 |
@@ -38,6 +39,18 @@
3839
| [4.0.0](#version-400) | 1.32.1 | 2.3.3.RELEASE |
3940
| [3.5.7](#version-357) | 1.31.1 | 1.5.13.RELEASE |
4041

42+
# Version 5.1.1
43+
## :star: New Features
44+
45+
- Support error handling of reactive `@Transactional` [#348](https://github.com/LogNet/grpc-spring-boot-starter/issues/348)
46+
47+
## :hammer: Dependency Upgrades
48+
49+
- Upgarde grpc to 1.54.1 [#352](https://github.com/LogNet/grpc-spring-boot-starter/issues/352)
50+
- Bump spring boot to 3.0.6 due to CVE-2023-20863 [#350](https://github.com/LogNet/grpc-spring-boot-starter/issues/350)
51+
- Upgrade grpc-reactive to 1.2.4 [#347](https://github.com/LogNet/grpc-spring-boot-starter/issues/347)
52+
53+
4154
# Version 5.1.0
4255
## :lady_beetle: Bug Fixes
4356

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.1-SNAPSHOT
11+
version=5.1.1
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
@@ -22,7 +22,7 @@ Bootstraps the project with `com.google.protobuf` gradle plugin (including `grp
2222
----
2323
plugins {
2424
id 'java'
25-
id "io.github.lognet.grpc-spring-boot" version '5.1.0'
25+
id "io.github.lognet.grpc-spring-boot" version '5.1.1'
2626
}
2727
2828
----

0 commit comments

Comments
 (0)