Skip to content

Commit c9a9bd9

Browse files
committed
5.1.2 release
1 parent 0d8b452 commit c9a9bd9

File tree

4 files changed

+18
-7
lines changed

4 files changed

+18
-7
lines changed

README.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,18 @@ repositories {
3737
// maven { url "https://oss.sonatype.org/content/repositories/snapshots" } // for snapshot builds
3838
}
3939
dependencies {
40-
compile 'io.github.lognet:grpc-spring-boot-starter:5.1.1'
40+
compile 'io.github.lognet:grpc-spring-boot-starter:5.1.2'
4141
}
4242
----
4343

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

4646
[source,groovy]
4747
----
48-
compile ('io.github.lognet:grpc-spring-boot-starter:5.1.1') {
48+
compile ('io.github.lognet:grpc-spring-boot-starter:5.1.2') {
4949
exclude group: 'io.grpc', module: 'grpc-netty-shaded'
5050
}
51-
compile 'io.grpc:grpc-netty:1.54.1' // <1>
51+
compile 'io.grpc:grpc-netty:1.55.1' // <1>
5252
----
5353
<1> Make sure to pull the version that matches the release.
5454

@@ -62,7 +62,7 @@ In this case you'll need to forcibly and explicitly set the `grpc` version to
6262
configurations.all {
6363
resolutionStrategy.eachDependency { details ->
6464
if ("io.grpc".equalsIgnoreCase(details.requested.group)) {
65-
details.useVersion "1.54.1"
65+
details.useVersion "1.55.1"
6666
}
6767
}
6868
}

ReleaseNotes.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
| Starter Version | gRPC versions | Spring Boot version |
22
|:------------------------|:-------------:|:-------------------:|
3-
| [5.1.1](#version-510) | 1.54.1 | 3.0.6 |
3+
| [5.1.2](#version-512) | 1.55.1 | 3.0.6 |
4+
| [5.1.1](#version-511) | 1.54.1 | 3.0.6 |
45
| [5.1.0](#version-510) | 1.54.0 | 3.0.5 |
56
| [5.0.0](#version-500) | 1.51.0 | 3.0.0 |
67
| [4.9.1](#version-491) | 1.51.0 | 2.7.6 |
@@ -39,6 +40,16 @@
3940
| [4.0.0](#version-400) | 1.32.1 | 2.3.3.RELEASE |
4041
| [3.5.7](#version-357) | 1.31.1 | 1.5.13.RELEASE |
4142

43+
# Version 5.1.2
44+
## :lady_beetle: Bug Fixes
45+
46+
- Security interceptor doesn't propagate the original exception [#357](https://github.com/LogNet/grpc-spring-boot-starter/issues/357)
47+
- Issue with reactive-grpc and the default security interceptors [#355](https://github.com/LogNet/grpc-spring-boot-starter/issues/355)
48+
49+
## :hammer: Dependency Upgrades
50+
51+
- Upgrade grpc to 1.55.1 [#356](https://github.com/LogNet/grpc-spring-boot-starter/issues/356)
52+
-
4253
# Version 5.1.1
4354
## :star: New Features
4455

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.2-SNAPSHOT
11+
version=5.1.2
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.1'
25+
id "io.github.lognet.grpc-spring-boot" version '5.1.2'
2626
}
2727
2828
----

0 commit comments

Comments
 (0)