From 6f4147ef0048f010f3fe938fd1038daa4da84499 Mon Sep 17 00:00:00 2001 From: Alexander Furer Date: Mon, 31 Jul 2023 08:19:39 +0300 Subject: [PATCH] release 5.1.4 --- README.adoc | 8 ++++---- ReleaseNotes.md | 11 +++++++++++ gradle.properties | 2 +- grpc-spring-boot-starter-gradle-plugin/README.adoc | 2 +- 4 files changed, 17 insertions(+), 6 deletions(-) diff --git a/README.adoc b/README.adoc index 64bcb05..c762d3c 100644 --- a/README.adoc +++ b/README.adoc @@ -37,7 +37,7 @@ repositories { // maven { url "https://oss.sonatype.org/content/repositories/snapshots" } // for snapshot builds } dependencies { - compile 'io.github.lognet:grpc-spring-boot-starter:5.1.3' + compile 'io.github.lognet:grpc-spring-boot-starter:5.1.4' } ---- @@ -45,10 +45,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.3') { +compile ('io.github.lognet:grpc-spring-boot-starter:5.1.4') { exclude group: 'io.grpc', module: 'grpc-netty-shaded' } -compile 'io.grpc:grpc-netty:1.56.1' // <1> +compile 'io.grpc:grpc-netty:1.57.0' // <1> ---- <1> Make sure to pull the version that matches the release. @@ -62,7 +62,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.56.1" + details.useVersion "1.57.0" } } } diff --git a/ReleaseNotes.md b/ReleaseNotes.md index f1ab9de..a6b16c4 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,5 +1,6 @@ | Starter Version | gRPC versions | Spring Boot version | |:------------------------|:-------------:|:-------------------:| +| [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 | @@ -41,6 +42,16 @@ | [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.4 +## :lady_beetle: Bug Fixes + +- Support all relaxed versions of "inProcessServeName" property name [#369](https://github.com/LogNet/grpc-spring-boot-starter/issues/369) + +## :hammer: Dependency Upgrades + +- Upgrade to grpc 1.57.0 [#370](https://github.com/LogNet/grpc-spring-boot-starter/issues/370) + + # Version 5.1.3 ## :hammer: Dependency Upgrades diff --git a/gradle.properties b/gradle.properties index c542e6c..1b4f855 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ gradleErrorPronePluginVersion=3.0.1 errorProneVersion=2.16 lombokVersion=1.18.24 -version=5.1.4-SNAPSHOT +version=5.1.4 group=io.github.lognet description=Spring Boot starter for Google RPC. gitHubUrl=https\://github.com/LogNet/grpc-spring-boot-starter diff --git a/grpc-spring-boot-starter-gradle-plugin/README.adoc b/grpc-spring-boot-starter-gradle-plugin/README.adoc index acb0f4f..e61d6cd 100644 --- a/grpc-spring-boot-starter-gradle-plugin/README.adoc +++ b/grpc-spring-boot-starter-gradle-plugin/README.adoc @@ -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.3' + id "io.github.lognet.grpc-spring-boot" version '5.1.4' } ----