Skip to content

Commit

Permalink
release 5.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jvmlet committed Sep 27, 2023
1 parent 4c0f536 commit d035f8a
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Autoconfigures and runs the embedded gRPC server with @GRpcService-enabled beans
[source,groovy]
----
plugins {
id "io.github.lognet.grpc-spring-boot" version '5.1.4'
id "io.github.lognet.grpc-spring-boot" version '5.1.5'
}
----

Expand All @@ -49,18 +49,18 @@ repositories {
// maven { url "https://oss.sonatype.org/content/repositories/snapshots" } // for snapshot builds
}
dependencies {
implementation 'io.github.lognet:grpc-spring-boot-starter:5.1.4'
implementation 'io.github.lognet:grpc-spring-boot-starter:5.1.5'
}
----

By default, starter pulls `io.grpc:grpc-netty-shaded` as transitive dependency, if you are forced to use pure `grpc-netty` dependency:

[source,groovy]
----
implementation ('io.github.lognet:grpc-spring-boot-starter:5.1.4') {
implementation ('io.github.lognet:grpc-spring-boot-starter:5.1.5') {
exclude group: 'io.grpc', module: 'grpc-netty-shaded'
}
implementation 'io.grpc:grpc-netty:1.57.0' // <1>
implementation 'io.grpc:grpc-netty:1.58.0' // <1>
----
<1> Make sure to pull the version that matches the release.

Expand All @@ -74,7 +74,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.57.0"
details.useVersion "1.58.0"
}
}
}
Expand Down
17 changes: 16 additions & 1 deletion ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
| Starter Version | gRPC versions | Spring Boot version |
|:------------------------|:-------------:|:-------------------:|
| [5.1.4](#version-514) | 1.57.0 | 3.1.1 |
| [5.1.5](#version-515) | 1.58.0 | 3.1.1 |
| [5.1.4](#version-514) | 1.57.0 | 3.1.1 |
| [5.1.3](#version-513) | 1.56.1 | 3.1.1 |
| [5.1.2](#version-512) | 1.55.1 | 3.0.6 |
| [5.1.1](#version-511) | 1.54.1 | 3.0.6 |
Expand Down Expand Up @@ -42,6 +43,20 @@
| [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.5
## :star: New Features

- Allow order Interceptors by using `@Order` annotation in the `@Bean` definition [#379](https://github.com/LogNet/grpc-spring-boot-starter/issues/379)

## :lady_beetle: Bug Fixes

- 5.1.0 changes status exception behaviour [#371](https://github.com/LogNet/grpc-spring-boot-starter/issues/371)
- GRpcExceptionHandler doesn't work [Kotlin] [#268](https://github.com/LogNet/grpc-spring-boot-starter/issues/268)

## :hammer: Dependency Upgrades

- Upgrade grpc to 1.58 [#375](https://github.com/LogNet/grpc-spring-boot-starter/issues/375)

# Version 5.1.4
## :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.5-SNAPSHOT
version=5.1.5
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.4'
id "io.github.lognet.grpc-spring-boot" version '5.1.5'
}
----
Expand Down

0 comments on commit d035f8a

Please sign in to comment.