Closes Response.body() in Logger after rebuffering to avoid resources leak#2530
Merged
velo merged 6 commits intoOpenFeign:masterfrom Sep 2, 2024
Merged
Closes Response.body() in Logger after rebuffering to avoid resources leak#2530velo merged 6 commits intoOpenFeign:masterfrom
velo merged 6 commits intoOpenFeign:masterfrom
Conversation
dc1b173 to
5f4a81b
Compare
velo
requested changes
Aug 29, 2024
Member
velo
left a comment
There was a problem hiding this comment.
The change look good, may I just get a unit test covering it for future generations?!
cheers
Contributor
Author
|
@velo please have a look. |
Contributor
There was a problem hiding this comment.
Some suggestions could not be made:
- annotation-error-decoder/pom.xml
- lines 32-31
- apt-test-generator/pom.xml
- lines 33-32
- lines 62-61
- benchmark/pom.xml
- lines 31-30
- core/pom.xml
- lines 32-31
- dropwizard-metrics4/pom.xml
- lines 30-29
- dropwizard-metrics5/pom.xml
- lines 30-29
- example-github-with-coroutine/pom.xml
- lines 32-31
- example-github/pom.xml
- lines 32-31
- example-wikipedia-with-springboot/pom.xml
- lines 33-32
- example-wikipedia/pom.xml
- lines 33-32
- fastjson2/pom.xml
- lines 32-31
- googlehttpclient/pom.xml
- lines 32-31
- gson/pom.xml
- lines 32-31
- hc5/pom.xml
- lines 32-31
- httpclient/pom.xml
- lines 32-31
- hystrix/pom.xml
- lines 32-31
- jackson-jaxb/pom.xml
- lines 32-31
- lines 82-83
- jackson-jr/pom.xml
- lines 32-31
- jackson/pom.xml
- lines 32-31
- jakarta/pom.xml
- lines 33-32
- java11/pom.xml
- lines 30-29
- jaxb-jakarta/pom.xml
- lines 32-33
- lines 54-56
- jaxb/pom.xml
- lines 32-31
- lines 47-51
- jaxrs/pom.xml
- lines 32-31
- jaxrs2/pom.xml
- lines 32-31
- jaxrs3/pom.xml
- lines 34-33
- jaxrs4/pom.xml
- lines 34-33
- json/pom.xml
- lines 32-31
- kotlin/pom.xml
- lines 34-33
- micrometer/pom.xml
- lines 30-29
- mock/pom.xml
- lines 32-31
- moshi/pom.xml
- lines 32-31
- okhttp/pom.xml
- lines 32-31
- pom.xml
- lines 534-535
- reactive/pom.xml
- lines 31-30
- ribbon/pom.xml
- lines 32-31
- sax/pom.xml
- lines 32-31
- slf4j/pom.xml
- lines 32-31
- soap-jakarta/pom.xml
- lines 32-33
- lines 63-62
- lines 79-81
- soap/pom.xml
- lines 32-31
- lines 55-60
- lines 70-71
- spring/pom.xml
- lines 34-33
- spring4/pom.xml
- lines 32-31
Comment on lines
+31
to
+33
| protected void log(String configKey, String format, Object... args) { | ||
| } | ||
| }; |
Contributor
There was a problem hiding this comment.
Suggested change
| protected void log(String configKey, String format, Object... args) { | |
| } | |
| }; | |
| protected void log(String configKey, String format, Object... args) {} | |
| Request request = | |
| Request.create(Request.HttpMethod.GET, "/api", Collections.emptyMap(), null, UTF_8, null); |
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
velo
approved these changes
Aug 30, 2024
Contributor
There was a problem hiding this comment.
Some suggestions could not be made:
- annotation-error-decoder/pom.xml
- lines 32-31
- apt-test-generator/pom.xml
- lines 33-32
- lines 62-61
- benchmark/pom.xml
- lines 31-30
- core/pom.xml
- lines 32-31
- dropwizard-metrics4/pom.xml
- lines 30-29
- dropwizard-metrics5/pom.xml
- lines 30-29
- example-github-with-coroutine/pom.xml
- lines 32-31
- example-github/pom.xml
- lines 32-31
- example-wikipedia-with-springboot/pom.xml
- lines 33-32
- example-wikipedia/pom.xml
- lines 33-32
- fastjson2/pom.xml
- lines 32-31
- googlehttpclient/pom.xml
- lines 32-31
- gson/pom.xml
- lines 32-31
- hc5/pom.xml
- lines 32-31
- httpclient/pom.xml
- lines 32-31
- hystrix/pom.xml
- lines 32-31
- jackson-jaxb/pom.xml
- lines 32-31
- lines 82-83
- jackson-jr/pom.xml
- lines 32-31
- jackson/pom.xml
- lines 32-31
- jakarta/pom.xml
- lines 33-32
- java11/pom.xml
- lines 30-29
- jaxb-jakarta/pom.xml
- lines 32-33
- lines 54-56
- jaxb/pom.xml
- lines 32-31
- lines 47-51
- jaxrs/pom.xml
- lines 32-31
- jaxrs2/pom.xml
- lines 32-31
- jaxrs3/pom.xml
- lines 34-33
- jaxrs4/pom.xml
- lines 34-33
- json/pom.xml
- lines 32-31
- kotlin/pom.xml
- lines 34-33
- micrometer/pom.xml
- lines 30-29
- mock/pom.xml
- lines 32-31
- moshi/pom.xml
- lines 32-31
- okhttp/pom.xml
- lines 32-31
- pom.xml
- lines 534-535
- reactive/pom.xml
- lines 31-30
- ribbon/pom.xml
- lines 32-31
- sax/pom.xml
- lines 32-31
- slf4j/pom.xml
- lines 32-31
- soap-jakarta/pom.xml
- lines 32-33
- lines 63-62
- lines 79-81
- soap/pom.xml
- lines 32-31
- lines 55-60
- lines 70-71
- spring/pom.xml
- lines 34-33
- spring4/pom.xml
- lines 32-31
github-merge-queue Bot
referenced
this pull request
in camunda/camunda
Sep 17, 2024
…#22415) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [io.github.openfeign:feign-bom](https://redirect.github.com/openfeign/feign) | `13.3` -> `13.4` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>openfeign/feign (io.github.openfeign:feign-bom)</summary> ### [`v13.4`](https://redirect.github.com/OpenFeign/feign/releases/tag/13.4): OpenFeign 13.4 [Compare Source](https://redirect.github.com/openfeign/feign/compare/13.3...13.4) #### What's Changed - Add description for RetryableException by [@​heli-os](https://redirect.github.com/heli-os) in [https://github.com/OpenFeign/feign/pull/2459](https://redirect.github.com/OpenFeign/feign/pull/2459) - Improve Documentation for feign-metrics by [@​si-net](https://redirect.github.com/si-net) in [https://github.com/OpenFeign/feign/pull/2463](https://redirect.github.com/OpenFeign/feign/pull/2463) - Allows adding literal header values to RequestTemplate by [@​dvag-yannick-reifschneider](https://redirect.github.com/dvag-yannick-reifschneider) in [https://github.com/OpenFeign/feign/pull/2471](https://redirect.github.com/OpenFeign/feign/pull/2471) - Auto rewrite by [@​velo](https://redirect.github.com/velo) in [https://github.com/OpenFeign/feign/pull/2477](https://redirect.github.com/OpenFeign/feign/pull/2477) - Update receive-pr.yml to use `master` branch by [@​timtebeek](https://redirect.github.com/timtebeek) in [https://github.com/OpenFeign/feign/pull/2484](https://redirect.github.com/OpenFeign/feign/pull/2484) - fake by [@​velo](https://redirect.github.com/velo) in [https://github.com/OpenFeign/feign/pull/2479](https://redirect.github.com/OpenFeign/feign/pull/2479) - Refactored data clumps with the help of LLMs (research project) by [@​compf](https://redirect.github.com/compf) in [https://github.com/OpenFeign/feign/pull/2497](https://redirect.github.com/OpenFeign/feign/pull/2497) - Client.Default - Null pointer exception when receiving an 'empty' response with compression by [@​gromspys](https://redirect.github.com/gromspys) in [https://github.com/OpenFeign/feign/pull/2510](https://redirect.github.com/OpenFeign/feign/pull/2510) - Closes Response.body() in Logger after rebuffering to avoid resources leak by [@​Nazukin-Dmitry](https://redirect.github.com/Nazukin-Dmitry) in [https://github.com/OpenFeign/feign/pull/2530](https://redirect.github.com/OpenFeign/feign/pull/2530) - Polish static nested test classes by [@​Nazukin-Dmitry](https://redirect.github.com/Nazukin-Dmitry) in [https://github.com/OpenFeign/feign/pull/2531](https://redirect.github.com/OpenFeign/feign/pull/2531) *** <details> <summary>List of PRs that updated libraries versions</summary> <br /> - Bump org.springframework:spring-context from 6.1.9 to 6.1.10 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2454](https://redirect.github.com/OpenFeign/feign/pull/2454) - Bump org.apache.maven.plugins:maven-jar-plugin from 3.4.1 to 3.4.2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2455](https://redirect.github.com/OpenFeign/feign/pull/2455) - Bump org.skyscreamer:jsonassert from 1.5.1 to 1.5.2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2456](https://redirect.github.com/OpenFeign/feign/pull/2456) - Bump org.junit:junit-bom from 5.10.2 to 5.10.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2462](https://redirect.github.com/OpenFeign/feign/pull/2462) - Bump org.moditect:moditect-maven-plugin from 1.2.1.Final to 1.2.2.Final by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2465](https://redirect.github.com/OpenFeign/feign/pull/2465) - Bump org.codehaus.mojo:versions-maven-plugin from 2.16.2 to 2.17.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2466](https://redirect.github.com/OpenFeign/feign/pull/2466) - Bump org.skyscreamer:jsonassert from 1.5.2 to 1.5.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2464](https://redirect.github.com/OpenFeign/feign/pull/2464) - Bump jackson.version from 2.17.1 to 2.17.2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2467](https://redirect.github.com/OpenFeign/feign/pull/2467) - Bump micrometer.version from 1.13.1 to 1.13.2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2468](https://redirect.github.com/OpenFeign/feign/pull/2468) - Bump org.assertj:assertj-core from 3.26.0 to 3.26.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2469](https://redirect.github.com/OpenFeign/feign/pull/2469) - Bump reactor.version from 3.6.7 to 3.6.8 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2470](https://redirect.github.com/OpenFeign/feign/pull/2470) - Bump maven-surefire-plugin.version from 3.3.0 to 3.3.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2472](https://redirect.github.com/OpenFeign/feign/pull/2472) - Bump org.springframework.cloud:spring-cloud-dependencies from 2023.0.2 to 2023.0.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2473](https://redirect.github.com/OpenFeign/feign/pull/2473) - Bump org.springframework:spring-context from 6.1.10 to 6.1.11 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2475](https://redirect.github.com/OpenFeign/feign/pull/2475) - Bump metrics5 version by [@​velo](https://redirect.github.com/velo) in [https://github.com/OpenFeign/feign/pull/2478](https://redirect.github.com/OpenFeign/feign/pull/2478) - Bump org.codehaus.mojo:versions-maven-plugin from 2.17.0 to 2.17.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2487](https://redirect.github.com/OpenFeign/feign/pull/2487) - Bump commons-codec:commons-codec from 1.17.0 to 1.17.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2488](https://redirect.github.com/OpenFeign/feign/pull/2488) - Bump netty.version from 4.1.111.Final to 4.1.112.Final by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2489](https://redirect.github.com/OpenFeign/feign/pull/2489) - Bump org.openrewrite.recipe:rewrite-migrate-java from 2.20.0 to 2.21.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2494](https://redirect.github.com/OpenFeign/feign/pull/2494) - Bump org.openrewrite.maven:rewrite-maven-plugin from 5.36.0 to 5.37.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2495](https://redirect.github.com/OpenFeign/feign/pull/2495) - Bump com.alibaba.fastjson2:fastjson2 from 2.0.49 to 2.0.52 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2496](https://redirect.github.com/OpenFeign/feign/pull/2496) - Bump org.openrewrite.recipe:rewrite-testing-frameworks from 2.14.0 to 2.15.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2499](https://redirect.github.com/OpenFeign/feign/pull/2499) - Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.7.0 to 3.8.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2500](https://redirect.github.com/OpenFeign/feign/pull/2500) - Bump org.openrewrite.maven:rewrite-maven-plugin from 5.37.0 to 5.37.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2501](https://redirect.github.com/OpenFeign/feign/pull/2501) - Bump org.apache.maven.plugins:maven-release-plugin from 3.1.0 to 3.1.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2502](https://redirect.github.com/OpenFeign/feign/pull/2502) - Bump jersey.version from 2.43 to 2.44 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2498](https://redirect.github.com/OpenFeign/feign/pull/2498) - Bump org.openrewrite.maven:rewrite-maven-plugin from 5.37.1 to 5.38.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2507](https://redirect.github.com/OpenFeign/feign/pull/2507) - Bump slf4j.version from 2.0.13 to 2.0.16 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2506](https://redirect.github.com/OpenFeign/feign/pull/2506) - Bump kotlin.version from 2.0.0 to 2.0.10 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2505](https://redirect.github.com/OpenFeign/feign/pull/2505) - Bump org.openrewrite.recipe:rewrite-migrate-java from 2.21.0 to 2.22.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2511](https://redirect.github.com/OpenFeign/feign/pull/2511) - Bump maven-surefire-plugin.version from 3.3.1 to 3.4.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2512](https://redirect.github.com/OpenFeign/feign/pull/2512) - Bump org.junit:junit-bom from 5.10.3 to 5.11.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2513](https://redirect.github.com/OpenFeign/feign/pull/2513) - Bump org.springframework:spring-context from 6.1.11 to 6.1.12 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2514](https://redirect.github.com/OpenFeign/feign/pull/2514) - Bump com.google.guava:guava from 33.2.1-jre to 33.3.0-jre by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2515](https://redirect.github.com/OpenFeign/feign/pull/2515) - Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.4 to 3.2.5 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2521](https://redirect.github.com/OpenFeign/feign/pull/2521) - Bump micrometer.version from 1.13.2 to 1.13.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2517](https://redirect.github.com/OpenFeign/feign/pull/2517) - Bump org.openrewrite.maven:rewrite-maven-plugin from 5.38.1 to 5.39.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2516](https://redirect.github.com/OpenFeign/feign/pull/2516) - Bump org.openrewrite.recipe:rewrite-testing-frameworks from 2.15.0 to 2.16.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2520](https://redirect.github.com/OpenFeign/feign/pull/2520) - Bump io.dropwizard.metrics:metrics-core from 4.2.26 to 4.2.27 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2519](https://redirect.github.com/OpenFeign/feign/pull/2519) - Bump reactor.version from 3.6.8 to 3.6.9 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2518](https://redirect.github.com/OpenFeign/feign/pull/2518) - Bump org.apache.maven.plugins:maven-install-plugin from 3.1.2 to 3.1.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2528](https://redirect.github.com/OpenFeign/feign/pull/2528) - Bump com.google.http-client:google-http-client from 1.44.2 to 1.45.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2527](https://redirect.github.com/OpenFeign/feign/pull/2527) - Bump org.openrewrite.maven:rewrite-maven-plugin from 5.39.0 to 5.39.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2526](https://redirect.github.com/OpenFeign/feign/pull/2526) - Bump kotlin.version from 2.0.10 to 2.0.20 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2525](https://redirect.github.com/OpenFeign/feign/pull/2525) - Bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.2 to 3.1.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2524](https://redirect.github.com/OpenFeign/feign/pull/2524) - Bump org.openrewrite.recipe:rewrite-testing-frameworks from 2.16.0 to 2.17.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2532](https://redirect.github.com/OpenFeign/feign/pull/2532) - Bump maven-surefire-plugin.version from 3.4.0 to 3.5.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2533](https://redirect.github.com/OpenFeign/feign/pull/2533) - Bump mockito.version from 5.12.0 to 5.13.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2534](https://redirect.github.com/OpenFeign/feign/pull/2534) - Bump org.openrewrite.recipe:rewrite-migrate-java from 2.22.1 to 2.23.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2536](https://redirect.github.com/OpenFeign/feign/pull/2536) - Bump org.openrewrite.maven:rewrite-maven-plugin from 5.39.1 to 5.39.2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2537](https://redirect.github.com/OpenFeign/feign/pull/2537) - Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.8.0 to 3.10.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2538](https://redirect.github.com/OpenFeign/feign/pull/2538) - Bump jersey.version from 2.44 to 2.45 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2535](https://redirect.github.com/OpenFeign/feign/pull/2535) </details> #### New Contributors * @​heli-os made their first contributi[https://github.com/OpenFeign/feign/pull/2459](https://redirect.github.com/OpenFeign/feign/pull/2459)l/2459 * @​si-net made their first contributi[https://github.com/OpenFeign/feign/pull/2463](https://redirect.github.com/OpenFeign/feign/pull/2463)l/2463 * @​dvag-yannick-reifschneider made their first contributi[https://github.com/OpenFeign/feign/pull/2471](https://redirect.github.com/OpenFeign/feign/pull/2471)l/2471 * @​timtebeek made their first contributi[https://github.com/OpenFeign/feign/pull/2484](https://redirect.github.com/OpenFeign/feign/pull/2484)l/2484 * @​compf made their first contributi[https://github.com/OpenFeign/feign/pull/2497](https://redirect.github.com/OpenFeign/feign/pull/2497)l/2497 * @​Nazukin-Dmitry made their first contributi[https://github.com/OpenFeign/feign/pull/2530](https://redirect.github.com/OpenFeign/feign/pull/2530)l/2530 **Full Changelog**: OpenFeign/feign@13.3...13.4 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/camunda/camunda). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXV0b21lcmdlIl19-->
github-merge-queue Bot
referenced
this pull request
in camunda/camunda
Sep 17, 2024
…#22415) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [io.github.openfeign:feign-bom](https://redirect.github.com/openfeign/feign) | `13.3` -> `13.4` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>openfeign/feign (io.github.openfeign:feign-bom)</summary> ### [`v13.4`](https://redirect.github.com/OpenFeign/feign/releases/tag/13.4): OpenFeign 13.4 [Compare Source](https://redirect.github.com/openfeign/feign/compare/13.3...13.4) #### What's Changed - Add description for RetryableException by [@​heli-os](https://redirect.github.com/heli-os) in [https://github.com/OpenFeign/feign/pull/2459](https://redirect.github.com/OpenFeign/feign/pull/2459) - Improve Documentation for feign-metrics by [@​si-net](https://redirect.github.com/si-net) in [https://github.com/OpenFeign/feign/pull/2463](https://redirect.github.com/OpenFeign/feign/pull/2463) - Allows adding literal header values to RequestTemplate by [@​dvag-yannick-reifschneider](https://redirect.github.com/dvag-yannick-reifschneider) in [https://github.com/OpenFeign/feign/pull/2471](https://redirect.github.com/OpenFeign/feign/pull/2471) - Auto rewrite by [@​velo](https://redirect.github.com/velo) in [https://github.com/OpenFeign/feign/pull/2477](https://redirect.github.com/OpenFeign/feign/pull/2477) - Update receive-pr.yml to use `master` branch by [@​timtebeek](https://redirect.github.com/timtebeek) in [https://github.com/OpenFeign/feign/pull/2484](https://redirect.github.com/OpenFeign/feign/pull/2484) - fake by [@​velo](https://redirect.github.com/velo) in [https://github.com/OpenFeign/feign/pull/2479](https://redirect.github.com/OpenFeign/feign/pull/2479) - Refactored data clumps with the help of LLMs (research project) by [@​compf](https://redirect.github.com/compf) in [https://github.com/OpenFeign/feign/pull/2497](https://redirect.github.com/OpenFeign/feign/pull/2497) - Client.Default - Null pointer exception when receiving an 'empty' response with compression by [@​gromspys](https://redirect.github.com/gromspys) in [https://github.com/OpenFeign/feign/pull/2510](https://redirect.github.com/OpenFeign/feign/pull/2510) - Closes Response.body() in Logger after rebuffering to avoid resources leak by [@​Nazukin-Dmitry](https://redirect.github.com/Nazukin-Dmitry) in [https://github.com/OpenFeign/feign/pull/2530](https://redirect.github.com/OpenFeign/feign/pull/2530) - Polish static nested test classes by [@​Nazukin-Dmitry](https://redirect.github.com/Nazukin-Dmitry) in [https://github.com/OpenFeign/feign/pull/2531](https://redirect.github.com/OpenFeign/feign/pull/2531) *** <details> <summary>List of PRs that updated libraries versions</summary> <br /> - Bump org.springframework:spring-context from 6.1.9 to 6.1.10 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2454](https://redirect.github.com/OpenFeign/feign/pull/2454) - Bump org.apache.maven.plugins:maven-jar-plugin from 3.4.1 to 3.4.2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2455](https://redirect.github.com/OpenFeign/feign/pull/2455) - Bump org.skyscreamer:jsonassert from 1.5.1 to 1.5.2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2456](https://redirect.github.com/OpenFeign/feign/pull/2456) - Bump org.junit:junit-bom from 5.10.2 to 5.10.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2462](https://redirect.github.com/OpenFeign/feign/pull/2462) - Bump org.moditect:moditect-maven-plugin from 1.2.1.Final to 1.2.2.Final by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2465](https://redirect.github.com/OpenFeign/feign/pull/2465) - Bump org.codehaus.mojo:versions-maven-plugin from 2.16.2 to 2.17.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2466](https://redirect.github.com/OpenFeign/feign/pull/2466) - Bump org.skyscreamer:jsonassert from 1.5.2 to 1.5.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2464](https://redirect.github.com/OpenFeign/feign/pull/2464) - Bump jackson.version from 2.17.1 to 2.17.2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2467](https://redirect.github.com/OpenFeign/feign/pull/2467) - Bump micrometer.version from 1.13.1 to 1.13.2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2468](https://redirect.github.com/OpenFeign/feign/pull/2468) - Bump org.assertj:assertj-core from 3.26.0 to 3.26.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2469](https://redirect.github.com/OpenFeign/feign/pull/2469) - Bump reactor.version from 3.6.7 to 3.6.8 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2470](https://redirect.github.com/OpenFeign/feign/pull/2470) - Bump maven-surefire-plugin.version from 3.3.0 to 3.3.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2472](https://redirect.github.com/OpenFeign/feign/pull/2472) - Bump org.springframework.cloud:spring-cloud-dependencies from 2023.0.2 to 2023.0.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2473](https://redirect.github.com/OpenFeign/feign/pull/2473) - Bump org.springframework:spring-context from 6.1.10 to 6.1.11 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2475](https://redirect.github.com/OpenFeign/feign/pull/2475) - Bump metrics5 version by [@​velo](https://redirect.github.com/velo) in [https://github.com/OpenFeign/feign/pull/2478](https://redirect.github.com/OpenFeign/feign/pull/2478) - Bump org.codehaus.mojo:versions-maven-plugin from 2.17.0 to 2.17.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2487](https://redirect.github.com/OpenFeign/feign/pull/2487) - Bump commons-codec:commons-codec from 1.17.0 to 1.17.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2488](https://redirect.github.com/OpenFeign/feign/pull/2488) - Bump netty.version from 4.1.111.Final to 4.1.112.Final by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2489](https://redirect.github.com/OpenFeign/feign/pull/2489) - Bump org.openrewrite.recipe:rewrite-migrate-java from 2.20.0 to 2.21.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2494](https://redirect.github.com/OpenFeign/feign/pull/2494) - Bump org.openrewrite.maven:rewrite-maven-plugin from 5.36.0 to 5.37.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2495](https://redirect.github.com/OpenFeign/feign/pull/2495) - Bump com.alibaba.fastjson2:fastjson2 from 2.0.49 to 2.0.52 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2496](https://redirect.github.com/OpenFeign/feign/pull/2496) - Bump org.openrewrite.recipe:rewrite-testing-frameworks from 2.14.0 to 2.15.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2499](https://redirect.github.com/OpenFeign/feign/pull/2499) - Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.7.0 to 3.8.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2500](https://redirect.github.com/OpenFeign/feign/pull/2500) - Bump org.openrewrite.maven:rewrite-maven-plugin from 5.37.0 to 5.37.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2501](https://redirect.github.com/OpenFeign/feign/pull/2501) - Bump org.apache.maven.plugins:maven-release-plugin from 3.1.0 to 3.1.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2502](https://redirect.github.com/OpenFeign/feign/pull/2502) - Bump jersey.version from 2.43 to 2.44 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2498](https://redirect.github.com/OpenFeign/feign/pull/2498) - Bump org.openrewrite.maven:rewrite-maven-plugin from 5.37.1 to 5.38.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2507](https://redirect.github.com/OpenFeign/feign/pull/2507) - Bump slf4j.version from 2.0.13 to 2.0.16 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2506](https://redirect.github.com/OpenFeign/feign/pull/2506) - Bump kotlin.version from 2.0.0 to 2.0.10 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2505](https://redirect.github.com/OpenFeign/feign/pull/2505) - Bump org.openrewrite.recipe:rewrite-migrate-java from 2.21.0 to 2.22.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2511](https://redirect.github.com/OpenFeign/feign/pull/2511) - Bump maven-surefire-plugin.version from 3.3.1 to 3.4.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2512](https://redirect.github.com/OpenFeign/feign/pull/2512) - Bump org.junit:junit-bom from 5.10.3 to 5.11.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2513](https://redirect.github.com/OpenFeign/feign/pull/2513) - Bump org.springframework:spring-context from 6.1.11 to 6.1.12 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2514](https://redirect.github.com/OpenFeign/feign/pull/2514) - Bump com.google.guava:guava from 33.2.1-jre to 33.3.0-jre by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2515](https://redirect.github.com/OpenFeign/feign/pull/2515) - Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.4 to 3.2.5 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2521](https://redirect.github.com/OpenFeign/feign/pull/2521) - Bump micrometer.version from 1.13.2 to 1.13.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2517](https://redirect.github.com/OpenFeign/feign/pull/2517) - Bump org.openrewrite.maven:rewrite-maven-plugin from 5.38.1 to 5.39.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2516](https://redirect.github.com/OpenFeign/feign/pull/2516) - Bump org.openrewrite.recipe:rewrite-testing-frameworks from 2.15.0 to 2.16.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2520](https://redirect.github.com/OpenFeign/feign/pull/2520) - Bump io.dropwizard.metrics:metrics-core from 4.2.26 to 4.2.27 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2519](https://redirect.github.com/OpenFeign/feign/pull/2519) - Bump reactor.version from 3.6.8 to 3.6.9 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2518](https://redirect.github.com/OpenFeign/feign/pull/2518) - Bump org.apache.maven.plugins:maven-install-plugin from 3.1.2 to 3.1.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2528](https://redirect.github.com/OpenFeign/feign/pull/2528) - Bump com.google.http-client:google-http-client from 1.44.2 to 1.45.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2527](https://redirect.github.com/OpenFeign/feign/pull/2527) - Bump org.openrewrite.maven:rewrite-maven-plugin from 5.39.0 to 5.39.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2526](https://redirect.github.com/OpenFeign/feign/pull/2526) - Bump kotlin.version from 2.0.10 to 2.0.20 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2525](https://redirect.github.com/OpenFeign/feign/pull/2525) - Bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.2 to 3.1.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2524](https://redirect.github.com/OpenFeign/feign/pull/2524) - Bump org.openrewrite.recipe:rewrite-testing-frameworks from 2.16.0 to 2.17.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2532](https://redirect.github.com/OpenFeign/feign/pull/2532) - Bump maven-surefire-plugin.version from 3.4.0 to 3.5.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2533](https://redirect.github.com/OpenFeign/feign/pull/2533) - Bump mockito.version from 5.12.0 to 5.13.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2534](https://redirect.github.com/OpenFeign/feign/pull/2534) - Bump org.openrewrite.recipe:rewrite-migrate-java from 2.22.1 to 2.23.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2536](https://redirect.github.com/OpenFeign/feign/pull/2536) - Bump org.openrewrite.maven:rewrite-maven-plugin from 5.39.1 to 5.39.2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2537](https://redirect.github.com/OpenFeign/feign/pull/2537) - Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.8.0 to 3.10.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2538](https://redirect.github.com/OpenFeign/feign/pull/2538) - Bump jersey.version from 2.44 to 2.45 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2535](https://redirect.github.com/OpenFeign/feign/pull/2535) </details> #### New Contributors * @​heli-os made their first contributi[https://github.com/OpenFeign/feign/pull/2459](https://redirect.github.com/OpenFeign/feign/pull/2459)l/2459 * @​si-net made their first contributi[https://github.com/OpenFeign/feign/pull/2463](https://redirect.github.com/OpenFeign/feign/pull/2463)l/2463 * @​dvag-yannick-reifschneider made their first contributi[https://github.com/OpenFeign/feign/pull/2471](https://redirect.github.com/OpenFeign/feign/pull/2471)l/2471 * @​timtebeek made their first contributi[https://github.com/OpenFeign/feign/pull/2484](https://redirect.github.com/OpenFeign/feign/pull/2484)l/2484 * @​compf made their first contributi[https://github.com/OpenFeign/feign/pull/2497](https://redirect.github.com/OpenFeign/feign/pull/2497)l/2497 * @​Nazukin-Dmitry made their first contributi[https://github.com/OpenFeign/feign/pull/2530](https://redirect.github.com/OpenFeign/feign/pull/2530)l/2530 **Full Changelog**: OpenFeign/feign@13.3...13.4 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/camunda/camunda). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXV0b21lcmdlIl19-->
github-merge-queue Bot
referenced
this pull request
in camunda/camunda
Sep 17, 2024
…#22415) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [io.github.openfeign:feign-bom](https://redirect.github.com/openfeign/feign) | `13.3` -> `13.4` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>openfeign/feign (io.github.openfeign:feign-bom)</summary> ### [`v13.4`](https://redirect.github.com/OpenFeign/feign/releases/tag/13.4): OpenFeign 13.4 [Compare Source](https://redirect.github.com/openfeign/feign/compare/13.3...13.4) #### What's Changed - Add description for RetryableException by [@​heli-os](https://redirect.github.com/heli-os) in [https://github.com/OpenFeign/feign/pull/2459](https://redirect.github.com/OpenFeign/feign/pull/2459) - Improve Documentation for feign-metrics by [@​si-net](https://redirect.github.com/si-net) in [https://github.com/OpenFeign/feign/pull/2463](https://redirect.github.com/OpenFeign/feign/pull/2463) - Allows adding literal header values to RequestTemplate by [@​dvag-yannick-reifschneider](https://redirect.github.com/dvag-yannick-reifschneider) in [https://github.com/OpenFeign/feign/pull/2471](https://redirect.github.com/OpenFeign/feign/pull/2471) - Auto rewrite by [@​velo](https://redirect.github.com/velo) in [https://github.com/OpenFeign/feign/pull/2477](https://redirect.github.com/OpenFeign/feign/pull/2477) - Update receive-pr.yml to use `master` branch by [@​timtebeek](https://redirect.github.com/timtebeek) in [https://github.com/OpenFeign/feign/pull/2484](https://redirect.github.com/OpenFeign/feign/pull/2484) - fake by [@​velo](https://redirect.github.com/velo) in [https://github.com/OpenFeign/feign/pull/2479](https://redirect.github.com/OpenFeign/feign/pull/2479) - Refactored data clumps with the help of LLMs (research project) by [@​compf](https://redirect.github.com/compf) in [https://github.com/OpenFeign/feign/pull/2497](https://redirect.github.com/OpenFeign/feign/pull/2497) - Client.Default - Null pointer exception when receiving an 'empty' response with compression by [@​gromspys](https://redirect.github.com/gromspys) in [https://github.com/OpenFeign/feign/pull/2510](https://redirect.github.com/OpenFeign/feign/pull/2510) - Closes Response.body() in Logger after rebuffering to avoid resources leak by [@​Nazukin-Dmitry](https://redirect.github.com/Nazukin-Dmitry) in [https://github.com/OpenFeign/feign/pull/2530](https://redirect.github.com/OpenFeign/feign/pull/2530) - Polish static nested test classes by [@​Nazukin-Dmitry](https://redirect.github.com/Nazukin-Dmitry) in [https://github.com/OpenFeign/feign/pull/2531](https://redirect.github.com/OpenFeign/feign/pull/2531) *** <details> <summary>List of PRs that updated libraries versions</summary> <br /> - Bump org.springframework:spring-context from 6.1.9 to 6.1.10 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2454](https://redirect.github.com/OpenFeign/feign/pull/2454) - Bump org.apache.maven.plugins:maven-jar-plugin from 3.4.1 to 3.4.2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2455](https://redirect.github.com/OpenFeign/feign/pull/2455) - Bump org.skyscreamer:jsonassert from 1.5.1 to 1.5.2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2456](https://redirect.github.com/OpenFeign/feign/pull/2456) - Bump org.junit:junit-bom from 5.10.2 to 5.10.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2462](https://redirect.github.com/OpenFeign/feign/pull/2462) - Bump org.moditect:moditect-maven-plugin from 1.2.1.Final to 1.2.2.Final by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2465](https://redirect.github.com/OpenFeign/feign/pull/2465) - Bump org.codehaus.mojo:versions-maven-plugin from 2.16.2 to 2.17.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2466](https://redirect.github.com/OpenFeign/feign/pull/2466) - Bump org.skyscreamer:jsonassert from 1.5.2 to 1.5.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2464](https://redirect.github.com/OpenFeign/feign/pull/2464) - Bump jackson.version from 2.17.1 to 2.17.2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2467](https://redirect.github.com/OpenFeign/feign/pull/2467) - Bump micrometer.version from 1.13.1 to 1.13.2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2468](https://redirect.github.com/OpenFeign/feign/pull/2468) - Bump org.assertj:assertj-core from 3.26.0 to 3.26.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2469](https://redirect.github.com/OpenFeign/feign/pull/2469) - Bump reactor.version from 3.6.7 to 3.6.8 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2470](https://redirect.github.com/OpenFeign/feign/pull/2470) - Bump maven-surefire-plugin.version from 3.3.0 to 3.3.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2472](https://redirect.github.com/OpenFeign/feign/pull/2472) - Bump org.springframework.cloud:spring-cloud-dependencies from 2023.0.2 to 2023.0.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2473](https://redirect.github.com/OpenFeign/feign/pull/2473) - Bump org.springframework:spring-context from 6.1.10 to 6.1.11 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2475](https://redirect.github.com/OpenFeign/feign/pull/2475) - Bump metrics5 version by [@​velo](https://redirect.github.com/velo) in [https://github.com/OpenFeign/feign/pull/2478](https://redirect.github.com/OpenFeign/feign/pull/2478) - Bump org.codehaus.mojo:versions-maven-plugin from 2.17.0 to 2.17.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2487](https://redirect.github.com/OpenFeign/feign/pull/2487) - Bump commons-codec:commons-codec from 1.17.0 to 1.17.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2488](https://redirect.github.com/OpenFeign/feign/pull/2488) - Bump netty.version from 4.1.111.Final to 4.1.112.Final by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2489](https://redirect.github.com/OpenFeign/feign/pull/2489) - Bump org.openrewrite.recipe:rewrite-migrate-java from 2.20.0 to 2.21.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2494](https://redirect.github.com/OpenFeign/feign/pull/2494) - Bump org.openrewrite.maven:rewrite-maven-plugin from 5.36.0 to 5.37.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2495](https://redirect.github.com/OpenFeign/feign/pull/2495) - Bump com.alibaba.fastjson2:fastjson2 from 2.0.49 to 2.0.52 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2496](https://redirect.github.com/OpenFeign/feign/pull/2496) - Bump org.openrewrite.recipe:rewrite-testing-frameworks from 2.14.0 to 2.15.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2499](https://redirect.github.com/OpenFeign/feign/pull/2499) - Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.7.0 to 3.8.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2500](https://redirect.github.com/OpenFeign/feign/pull/2500) - Bump org.openrewrite.maven:rewrite-maven-plugin from 5.37.0 to 5.37.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2501](https://redirect.github.com/OpenFeign/feign/pull/2501) - Bump org.apache.maven.plugins:maven-release-plugin from 3.1.0 to 3.1.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2502](https://redirect.github.com/OpenFeign/feign/pull/2502) - Bump jersey.version from 2.43 to 2.44 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2498](https://redirect.github.com/OpenFeign/feign/pull/2498) - Bump org.openrewrite.maven:rewrite-maven-plugin from 5.37.1 to 5.38.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2507](https://redirect.github.com/OpenFeign/feign/pull/2507) - Bump slf4j.version from 2.0.13 to 2.0.16 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2506](https://redirect.github.com/OpenFeign/feign/pull/2506) - Bump kotlin.version from 2.0.0 to 2.0.10 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2505](https://redirect.github.com/OpenFeign/feign/pull/2505) - Bump org.openrewrite.recipe:rewrite-migrate-java from 2.21.0 to 2.22.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2511](https://redirect.github.com/OpenFeign/feign/pull/2511) - Bump maven-surefire-plugin.version from 3.3.1 to 3.4.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2512](https://redirect.github.com/OpenFeign/feign/pull/2512) - Bump org.junit:junit-bom from 5.10.3 to 5.11.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2513](https://redirect.github.com/OpenFeign/feign/pull/2513) - Bump org.springframework:spring-context from 6.1.11 to 6.1.12 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2514](https://redirect.github.com/OpenFeign/feign/pull/2514) - Bump com.google.guava:guava from 33.2.1-jre to 33.3.0-jre by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2515](https://redirect.github.com/OpenFeign/feign/pull/2515) - Bump org.apache.maven.plugins:maven-gpg-plugin from 3.2.4 to 3.2.5 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2521](https://redirect.github.com/OpenFeign/feign/pull/2521) - Bump micrometer.version from 1.13.2 to 1.13.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2517](https://redirect.github.com/OpenFeign/feign/pull/2517) - Bump org.openrewrite.maven:rewrite-maven-plugin from 5.38.1 to 5.39.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2516](https://redirect.github.com/OpenFeign/feign/pull/2516) - Bump org.openrewrite.recipe:rewrite-testing-frameworks from 2.15.0 to 2.16.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2520](https://redirect.github.com/OpenFeign/feign/pull/2520) - Bump io.dropwizard.metrics:metrics-core from 4.2.26 to 4.2.27 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2519](https://redirect.github.com/OpenFeign/feign/pull/2519) - Bump reactor.version from 3.6.8 to 3.6.9 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2518](https://redirect.github.com/OpenFeign/feign/pull/2518) - Bump org.apache.maven.plugins:maven-install-plugin from 3.1.2 to 3.1.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2528](https://redirect.github.com/OpenFeign/feign/pull/2528) - Bump com.google.http-client:google-http-client from 1.44.2 to 1.45.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2527](https://redirect.github.com/OpenFeign/feign/pull/2527) - Bump org.openrewrite.maven:rewrite-maven-plugin from 5.39.0 to 5.39.1 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2526](https://redirect.github.com/OpenFeign/feign/pull/2526) - Bump kotlin.version from 2.0.10 to 2.0.20 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2525](https://redirect.github.com/OpenFeign/feign/pull/2525) - Bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.2 to 3.1.3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2524](https://redirect.github.com/OpenFeign/feign/pull/2524) - Bump org.openrewrite.recipe:rewrite-testing-frameworks from 2.16.0 to 2.17.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2532](https://redirect.github.com/OpenFeign/feign/pull/2532) - Bump maven-surefire-plugin.version from 3.4.0 to 3.5.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2533](https://redirect.github.com/OpenFeign/feign/pull/2533) - Bump mockito.version from 5.12.0 to 5.13.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2534](https://redirect.github.com/OpenFeign/feign/pull/2534) - Bump org.openrewrite.recipe:rewrite-migrate-java from 2.22.1 to 2.23.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2536](https://redirect.github.com/OpenFeign/feign/pull/2536) - Bump org.openrewrite.maven:rewrite-maven-plugin from 5.39.1 to 5.39.2 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2537](https://redirect.github.com/OpenFeign/feign/pull/2537) - Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.8.0 to 3.10.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2538](https://redirect.github.com/OpenFeign/feign/pull/2538) - Bump jersey.version from 2.44 to 2.45 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/OpenFeign/feign/pull/2535](https://redirect.github.com/OpenFeign/feign/pull/2535) </details> #### New Contributors * @​heli-os made their first contributi[https://github.com/OpenFeign/feign/pull/2459](https://redirect.github.com/OpenFeign/feign/pull/2459)l/2459 * @​si-net made their first contributi[https://github.com/OpenFeign/feign/pull/2463](https://redirect.github.com/OpenFeign/feign/pull/2463)l/2463 * @​dvag-yannick-reifschneider made their first contributi[https://github.com/OpenFeign/feign/pull/2471](https://redirect.github.com/OpenFeign/feign/pull/2471)l/2471 * @​timtebeek made their first contributi[https://github.com/OpenFeign/feign/pull/2484](https://redirect.github.com/OpenFeign/feign/pull/2484)l/2484 * @​compf made their first contributi[https://github.com/OpenFeign/feign/pull/2497](https://redirect.github.com/OpenFeign/feign/pull/2497)l/2497 * @​Nazukin-Dmitry made their first contributi[https://github.com/OpenFeign/feign/pull/2530](https://redirect.github.com/OpenFeign/feign/pull/2530)l/2530 **Full Changelog**: OpenFeign/feign@13.3...13.4 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/camunda/camunda). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC44MC4wIiwidXBkYXRlZEluVmVyIjoiMzguODAuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXV0b21lcmdlIl19-->
velo
added a commit
that referenced
this pull request
Oct 7, 2024
… leak (#2530) * Closes Response.body() in Logger after rebuffering to avoid resources leak Fixes #2529 * Add test * Update core/src/test/java/feign/LoggerMethodsTest.java Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update core/src/test/java/feign/LoggerMethodsTest.java Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Make code style changes --------- Co-authored-by: Dmitrii Nazukin <[email protected]> Co-authored-by: Marvin <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
velo
added a commit
that referenced
this pull request
Oct 8, 2024
… leak (#2530) * Closes Response.body() in Logger after rebuffering to avoid resources leak Fixes #2529 * Add test * Update core/src/test/java/feign/LoggerMethodsTest.java Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update core/src/test/java/feign/LoggerMethodsTest.java Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Make code style changes --------- Co-authored-by: Dmitrii Nazukin <[email protected]> Co-authored-by: Marvin <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #2529