dependabot[bot] opened a new pull request, #3520:
URL: https://github.com/apache/servicecomb-java-chassis/pull/3520

   Bumps [resilience4j-bom](https://github.com/resilience4j/resilience4j) from 
1.7.0 to 2.0.2.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/resilience4j/resilience4j/releases";>resilience4j-bom's 
releases</a>.</em></p>
   <blockquote>
   <h2>Release v2.0.2</h2>
   <h1>Bugs</h1>
   <ul>
   <li>Issue <a 
href="https://github-redirect.dependabot.com/resilience4j/resilience4j/issues/1835";>#1835</a>:
 Fixed CircuitBreaker CheckedSupplier and CheckedFunction decorator not opening 
on recordResultPredicate</li>
   </ul>
   <h2>Release v2.0.1</h2>
   <h1>Enhancements</h1>
   <ul>
   <li>
   <p>Support Spring Boot 3 by adding resilience4j-spring-boot3 and 
resilience4j-spring6</p>
   </li>
   <li>
   <p>Issue <a 
href="https://github-redirect.dependabot.com/resilience4j/resilience4j/issues/1787";>#1787</a>:
 Apply Spring Boot customizers even if there is no instance entry in the config 
file</p>
   </li>
   </ul>
   <h1>Bugs</h1>
   <ul>
   <li>
   <p>Issue <a 
href="https://github-redirect.dependabot.com/resilience4j/resilience4j/issues/1825";>#1825</a>:
 Aspectj must not be mandatory in Spring Boot modules</p>
   </li>
   <li>
   <p>Issue <a 
href="https://github-redirect.dependabot.com/resilience4j/resilience4j/issues/1809";>#1809</a>:
 Fixed concurrency issue in Cache module</p>
   </li>
   </ul>
   <h2>Release v2.0.0</h2>
   <ul>
   <li>Removed Vavr as a dependency</li>
   <li>Upgraded to Java 17</li>
   <li>Upgraded to Kotlin 1.7.20</li>
   <li>Upgraded to Spring Boot 2.7</li>
   <li>Upgraded to Micronaut 3.7.3</li>
   </ul>
   <h2>Release v1.7.1</h2>
   <h1>Enhancements</h1>
   <ul>
   <li>Issue <a 
href="https://github-redirect.dependabot.com/resilience4j/resilience4j/issues/1414";>#1414</a>:
 SpEL expressions support passing runtime method arguments to bean methods</li>
   </ul>
   <h1>Bugs</h1>
   <ul>
   <li>Issue <a 
href="https://github-redirect.dependabot.com/resilience4j/resilience4j/issues/1268";>#1268</a>:
 Stream events from springboot2 stopped SSE after the 1st message.</li>
   <li>Issue <a 
href="https://github-redirect.dependabot.com/resilience4j/resilience4j/issues/1372";>#1372</a>:
 Kotlin Timelimiter executeSuspendFunction throws TimeoutException after 
coroutine is canceled</li>
   <li>Issue <a 
href="https://github-redirect.dependabot.com/resilience4j/resilience4j/issues/1432";>#1432</a>:
 CircuitBreaker permits more calls then expected when switching from OPEN to 
HALF_OPEN state</li>
   <li>Issue <a 
href="https://github-redirect.dependabot.com/resilience4j/resilience4j/issues/1437";>#1437</a>:
 Event can be published twice when CircuitBreaker in MetricsOnlyState</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/resilience4j/resilience4j/blob/master/RELEASENOTES.adoc";>resilience4j-bom's
 changelog</a>.</em></p>
   <blockquote>
   <p>= Release Notes</p>
   <p>== Version 0.1.0</p>
   <ul>
   <li>Initial version</li>
   </ul>
   <p>=== Version 0.1.1</p>
   <ul>
   <li>Added the functionality to add exceptions with are ignored by the 
CircuitBreaker</li>
   </ul>
   <p>=== Version 0.1.2</p>
   <ul>
   <li>Added the feature to get Metrics for function executions</li>
   </ul>
   <p>=== Version 0.1.3</p>
   <ul>
   <li>Added a static factory method for the CircuitBreakerConfig builder</li>
   </ul>
   <p>=== Version 0.1.4</p>
   <ul>
   <li>Added the feature to retry a failed function</li>
   </ul>
   <p>=== Version 0.1.5</p>
   <ul>
   <li>Added builders to simplify chaining of decorators</li>
   </ul>
   <p>=== Version 0.1.6</p>
   <ul>
   <li>Renamed project to javaslang-circuitbreaker</li>
   </ul>
   <p>=== Version 0.1.7</p>
   <ul>
   <li>Fixed Issue <a 
href="https://github-redirect.dependabot.com/resilience4j/resilience4j/issues/2";>#2</a></li>
   <li>Issue <a 
href="https://github-redirect.dependabot.com/resilience4j/resilience4j/issues/3";>#3</a>
 Added a listener mechanism for state transitions</li>
   </ul>
   <p>== Version 0.2.0</p>
   <ul>
   <li>Removed Dropwizard Metrics, because its a too heavy dependency for such 
a lightweight library.</li>
   <li>Changed the way exceptions can be handled. You have to provide a 
Predicate now instead of a list of exceptions to ignore.</li>
   </ul>
   <p>== Version 0.3.0</p>
   <ul>
   <li>The CircuitBreaker is based on a Ring Bit Buffer and a failure rate 
now.</li>
   </ul>
   <p>=== Version 0.3.1</p>
   <ul>
   <li>Changed the visibility of CircuitBreakerUtils.isCallPermitted to 
public.</li>
   </ul>
   <p>=== Version 0.3.2</p>
   <ul>
   <li>CircuitBreakerRegistry has a new method which takes a Supplier of a 
CircuitBreakerConfig so that the CircuitBreakerConfig is only created when 
needed.</li>
   </ul>
   <p>=== Version 0.3.3</p>
   <ul>
   <li>CircuitBreaker has a new method <code>getCircuitBreakerConfig</code> 
which allows to retrieve the CircuitBreakerConfig of the CircuitBreaker.</li>
   <li>Renamed the state HALF_CLOSED to HALF_OPEN to match the pattern 
description of Martin Fowler.</li>
   </ul>
   <p>=== Version 0.3.4</p>
   <ul>
   <li>Added a Metrics interface to the CircuitBreaker which allows to retrieve 
current statistics like failureRate and number of buffer calls.</li>
   </ul>
   <p>== Version 0.4.0</p>
   <ul>
   <li>Updated javaslang from 2.0.0-RC4 to 2.0.1</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/resilience4j/resilience4j/commit/0d3bb283a190307e2f9b99d80832f9471aa65da7";><code>0d3bb28</code></a>
 Prepare release 2.0.2</li>
   <li><a 
href="https://github.com/resilience4j/resilience4j/commit/1bcd4f55586102d599e48900e6f8f91f8de1547b";><code>1bcd4f5</code></a>
 Fixes <a 
href="https://github-redirect.dependabot.com/resilience4j/resilience4j/issues/1835";>#1835</a>:
 Call CircuitBreaker.onResult from decorators when result is avai...</li>
   <li><a 
href="https://github.com/resilience4j/resilience4j/commit/1e937e642e68ae6980256a76301ff908295167e0";><code>1e937e6</code></a>
 Fix typo (<a 
href="https://github-redirect.dependabot.com/resilience4j/resilience4j/issues/1838";>#1838</a>)</li>
   <li><a 
href="https://github.com/resilience4j/resilience4j/commit/a736c0e4f8224ac5d3195c748aea7ca6aab8a915";><code>a736c0e</code></a>
 Fix typo (<a 
href="https://github-redirect.dependabot.com/resilience4j/resilience4j/issues/1839";>#1839</a>)</li>
   <li><a 
href="https://github.com/resilience4j/resilience4j/commit/4514366d418fd08bbdd48f0bab92693862715bdb";><code>4514366</code></a>
 Updated release badge</li>
   <li><a 
href="https://github.com/resilience4j/resilience4j/commit/4552999db33ea16afe3ef58d3d950b7d2689c908";><code>4552999</code></a>
 Updated to version 2.1.0-SNAPSHOT</li>
   <li><a 
href="https://github.com/resilience4j/resilience4j/commit/32d464c8cc0b185f1729612369bf22db6f8d1641";><code>32d464c</code></a>
 Prepare release 2.0.1</li>
   <li><a 
href="https://github.com/resilience4j/resilience4j/commit/d79e99341efb10fcee15956e670f27aed1c26d7c";><code>d79e993</code></a>
 Fixed SpringBootCommonTest</li>
   <li><a 
href="https://github.com/resilience4j/resilience4j/commit/b9a6b5f9ddb00c51017508e23908089946266856";><code>b9a6b5f</code></a>
 Fixes <a 
href="https://github-redirect.dependabot.com/resilience4j/resilience4j/issues/1787";>#1787</a>:
 Added configs for resilience4j instances that only have customiz...</li>
   <li><a 
href="https://github.com/resilience4j/resilience4j/commit/d0705c865fd909f8826337169c776691e26d6483";><code>d0705c8</code></a>
 Update README.adoc</li>
   <li>Additional commits viewable in <a 
href="https://github.com/resilience4j/resilience4j/compare/v1.7.0...v2.0.2";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=io.github.resilience4j:resilience4j-bom&package-manager=maven&previous-version=1.7.0&new-version=2.0.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to