Skip to content

Commit

Permalink
release 5.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jvmlet committed Apr 25, 2023
1 parent 4813d31 commit 0ca46d9
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ repositories {
}
dependencies {
compile 'io.github.lognet:grpc-spring-boot-starter:5.1.0'
compile 'io.github.lognet:grpc-spring-boot-starter:5.1.1'
}
Expand All @@ -48,10 +48,10 @@ By default, starter pulls `io.grpc:grpc-netty-shaded` as transitive dependency

[source,groovy]
----
compile ('io.github.lognet:grpc-spring-boot-starter:5.1.0') {
compile ('io.github.lognet:grpc-spring-boot-starter:5.1.1') {
exclude group: 'io.grpc', module: 'grpc-netty-shaded'
}
compile 'io.grpc:grpc-netty:1.54.0' // <1>
compile 'io.grpc:grpc-netty:1.54.1' // <1>
----
<1> Make sure to pull the version that matches the release.

Expand All @@ -65,7 +65,7 @@ In this case you'll need to forcibly and explicitly set the `grpc` version to
configurations.all {
resolutionStrategy.eachDependency { details ->
if ("io.grpc".equalsIgnoreCase(details.requested.group)) {
details.useVersion "1.54.0"
details.useVersion "1.54.1"
}
}
}
Expand Down
13 changes: 13 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
| Starter Version | gRPC versions | Spring Boot version |
|:------------------------|:-------------:|:-------------------:|
| [5.1.1](#version-510) | 1.54.1 | 3.0.6 |
| [5.1.0](#version-510) | 1.54.0 | 3.0.5 |
| [5.0.0](#version-500) | 1.51.0 | 3.0.0 |
| [4.9.1](#version-491) | 1.51.0 | 2.7.6 |
Expand Down Expand Up @@ -38,6 +39,18 @@
| [4.0.0](#version-400) | 1.32.1 | 2.3.3.RELEASE |
| [3.5.7](#version-357) | 1.31.1 | 1.5.13.RELEASE |

# Version 5.1.1
## :star: New Features

- Support error handling of reactive `@Transactional` [#348](https://github.com/LogNet/grpc-spring-boot-starter/issues/348)

## :hammer: Dependency Upgrades

- Upgarde grpc to 1.54.1 [#352](https://github.com/LogNet/grpc-spring-boot-starter/issues/352)
- Bump spring boot to 3.0.6 due to CVE-2023-20863 [#350](https://github.com/LogNet/grpc-spring-boot-starter/issues/350)
- Upgrade grpc-reactive to 1.2.4 [#347](https://github.com/LogNet/grpc-spring-boot-starter/issues/347)


# Version 5.1.0
## :lady_beetle: Bug Fixes

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ gradleErrorPronePluginVersion=3.0.1
errorProneVersion=2.16
lombokVersion=1.18.24

version=5.1.1-SNAPSHOT
version=5.1.1
group=io.github.lognet
description=Spring Boot starter for Google RPC.
gitHubUrl=https\://github.com/LogNet/grpc-spring-boot-starter
Expand Down
2 changes: 1 addition & 1 deletion grpc-spring-boot-starter-gradle-plugin/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Bootstraps the project with `com.google.protobuf` gradle plugin (including `grp
----
plugins {
id 'java'
id "io.github.lognet.grpc-spring-boot" version '5.1.0'
id "io.github.lognet.grpc-spring-boot" version '5.1.1'
}
----
Expand Down

0 comments on commit 0ca46d9

Please sign in to comment.