v2.3.0
Enhancements
- Issue #2234: Allow passing custom Clock to CircuitBreaker without needing to use internal API.
- Issue #2131: Added support for RxJava3 in Spring projects.
- Issue #2029: Include
decorateSupplieras aRetryinstance method. - Issue #2246: Add handling for the case where a non-checked retry consumer is interrupted during sleep.
- Issue #2245: Refactor
Retry#executeSuspendExecutecondition to enhance consistency withFlowRetry. - Issue #2232: Convert
SynchronizedtoReentrantLockto avoid virtual-thread pinning issues. - Issue #2241: Implement a lock-free sliding window for internal CircuitBreaker metrics.
- Issue #2239: Add a
ClocktoCircuitBreakerConfigand utilize it in the state machine. - Issue #2200: Ignore unknown exceptions in CircuitBreaker configuration.
- Issue #2233: Improve exception message for failure rate threshold in CircuitBreaker configuration.
- Issue #1404: Configure exponential backoff or randomized wait duration if base configuration allows it.