From 9047cd06b4968fe9116dfdf31b27c193ac7145ce Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Sep 2024 12:08:10 +0200 Subject: [PATCH 1/4] Bump com.fasterxml.jackson.dataformat:jackson-dataformat-smile (#1054) Bumps [com.fasterxml.jackson.dataformat:jackson-dataformat-smile](https://github.com/FasterXML/jackson-dataformats-binary) from 2.17.1 to 2.17.2. - [Commits](https://github.com/FasterXML/jackson-dataformats-binary/compare/jackson-dataformats-binary-2.17.1...jackson-dataformats-binary-2.17.2) --- updated-dependencies: - dependency-name: com.fasterxml.jackson.dataformat:jackson-dataformat-smile dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index da62f471..e1aea143 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ ${basedir} - 2.17.1 + 2.17.2 4.1.5-SNAPSHOT From 7cab5a253ff8140751318ef7644f494547341122 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Sep 2024 12:09:13 +0200 Subject: [PATCH 2/4] Bump com.google.protobuf:protobuf-java from 3.25.3 to 3.25.4 (#1055) Bumps [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf) from 3.25.3 to 3.25.4. - [Release notes](https://github.com/protocolbuffers/protobuf/releases) - [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl) - [Commits](https://github.com/protocolbuffers/protobuf/compare/v3.25.3...v3.25.4) --- updated-dependencies: - dependency-name: com.google.protobuf:protobuf-java dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- spring-cloud-openfeign-core/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-cloud-openfeign-core/pom.xml b/spring-cloud-openfeign-core/pom.xml index 0081de40..44ad53be 100644 --- a/spring-cloud-openfeign-core/pom.xml +++ b/spring-cloud-openfeign-core/pom.xml @@ -183,7 +183,7 @@ com.google.protobuf protobuf-java - 3.25.3 + 3.25.4 test From 027a7b7e8bdcf931427d4c16395a09db065ccff8 Mon Sep 17 00:00:00 2001 From: dowenliu-xyz Date: Wed, 4 Sep 2024 18:20:25 +0800 Subject: [PATCH 3/4] fix: defaultValue for `spring.cloud.openfeign.circuitbreaker.alphanumeric-ids.enabled` is true since version 4.0.0 (#1041) --- .../META-INF/additional-spring-configuration-metadata.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-cloud-openfeign-core/src/main/resources/META-INF/additional-spring-configuration-metadata.json b/spring-cloud-openfeign-core/src/main/resources/META-INF/additional-spring-configuration-metadata.json index 9a76cb58..fc7ddc43 100644 --- a/spring-cloud-openfeign-core/src/main/resources/META-INF/additional-spring-configuration-metadata.json +++ b/spring-cloud-openfeign-core/src/main/resources/META-INF/additional-spring-configuration-metadata.json @@ -24,7 +24,7 @@ "name": "spring.cloud.openfeign.circuitbreaker.alphanumeric-ids.enabled", "type": "java.lang.Boolean", "description": "If true, Circuit Breaker ids will only contain alphanumeric characters to allow for configuration via configuration properties.", - "defaultValue": "false" + "defaultValue": "true" }, { "name": "spring.cloud.openfeign.httpclient.hc5.enabled", From b03516adfbd3bac1512f2fb10d29a1b13cefb82b Mon Sep 17 00:00:00 2001 From: Olga Maciaszek-Sharma Date: Wed, 4 Sep 2024 14:18:02 +0200 Subject: [PATCH 4/4] Fix doc section anchor. --- docs/modules/ROOT/pages/spring-cloud-openfeign.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/spring-cloud-openfeign.adoc b/docs/modules/ROOT/pages/spring-cloud-openfeign.adoc index 5533f442..258175d5 100644 --- a/docs/modules/ROOT/pages/spring-cloud-openfeign.adoc +++ b/docs/modules/ROOT/pages/spring-cloud-openfeign.adoc @@ -562,7 +562,7 @@ public interface UserClient extends UserService { WARNING: `@FeignClient` interfaces should not be shared between server and client and annotating `@FeignClient` interfaces with `@RequestMapping` on class level is no longer supported. -[[feign-request/response-compression]] +[[feign-request-response-compression]] === Feign request/response compression You may consider enabling the request or response GZIP compression for your