Skip to content

Conversation

@renovate-coveo
Copy link
Contributor

@renovate-coveo renovate-coveo bot commented Oct 20, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@commitlint/config-conventional (source) 19.8.1 -> 20.0.0 age adoption passing confidence devDependencies major
@octokit/auth-app ^7.0.0 -> ^8.0.0 age adoption passing confidence devDependencies major
actions/checkout v4.3.0 -> v5.0.0 age adoption passing confidence action major
actions/checkout v4 -> v5 age adoption passing confidence action major
actions/setup-java v4.7.1 -> v5.0.0 age adoption passing confidence action major
actions/setup-node v4.4.0 -> v6.0.0 age adoption passing confidence action major
actions/upload-artifact v4.6.2 -> v5.0.0 age adoption passing confidence action major
com.diffplug.spotless:spotless-maven-plugin 2.46.1 -> 3.0.0 age adoption passing confidence build major
io.github.resilience4j:resilience4j-retry (source) 1.7.1 -> 2.3.0 age adoption passing confidence compile major

Release Notes

conventional-changelog/commitlint (@​commitlint/config-conventional)

v20.0.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

19.8.1 (2025-05-08)

Note: Version bump only for package @​commitlint/config-conventional

octokit/auth-app.js (@​octokit/auth-app)

v8.1.2

Compare Source

Bug Fixes

v8.1.1

Compare Source

Bug Fixes

v8.1.0

Compare Source

Features
  • support using a remote HSM or JWT signing service in lieu of private keys (#​712) (ef7a95d)

v8.0.2

Compare Source

Bug Fixes

v8.0.1

Compare Source

Bug Fixes

v8.0.0

Compare Source

Continuous Integration
BREAKING CHANGES
  • Drop support for NodeJS v18

  • build: set minimal node version in build script to v20

  • ci: stop testing against NodeJS v18

actions/checkout (actions/checkout)

v5.0.0

Compare Source

What's Changed
⚠️ Minimum Compatible Runner Version

v2.327.1
Release Notes

Make sure your runner is updated to this version or newer to use this release.

Full Changelog: actions/checkout@v4...v5.0.0

actions/setup-java (actions/setup-java)

v5.0.0

Compare Source

What's Changed
Breaking Changes

Make sure your runner is updated to this version or newer to use this release. v2.327.1 Release Notes

Dependency Upgrades
Bug Fixes
New Contributors

Full Changelog: actions/setup-java@v4...v5.0.0

actions/setup-node (actions/setup-node)

v6.0.0

Compare Source

What's Changed

Breaking Changes

Dependency Upgrades

Full Changelog: actions/setup-node@v5...v6.0.0

v5.0.0

Compare Source

What's Changed

Breaking Changes

This update, introduces automatic caching when a valid packageManager field is present in your package.json. This aims to improve workflow performance and make dependency management more seamless.
To disable this automatic caching, set package-manager-cache: false

steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
  with:
    package-manager-cache: false

Make sure your runner is on version v2.327.1 or later to ensure compatibility with this release. See Release Notes

Dependency Upgrades

New Contributors

Full Changelog: actions/setup-node@v4...v5.0.0

actions/upload-artifact (actions/upload-artifact)

v5.0.0

Compare Source

What's Changed

BREAKING CHANGE: this update supports Node v24.x. This is not a breaking change per-se but we're treating it as such.

New Contributors

Full Changelog: actions/upload-artifact@v4...v5.0.0

diffplug/spotless (com.diffplug.spotless:spotless-maven-plugin)

v3.0.0

[3.0.0] - 2025-01-06

resilience4j/resilience4j (io.github.resilience4j:resilience4j-retry)

v2.3.0

Compare Source

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 decorateSupplier as a Retry instance method.
  • Issue #​2246: Add handling for the case where a non-checked retry consumer is interrupted during sleep.
  • Issue #​2245: Refactor Retry#executeSuspendExecute condition to enhance consistency with FlowRetry.
  • Issue #​2232: Convert Synchronized to ReentrantLock to avoid virtual-thread pinning issues.
  • Issue #​2241: Implement a lock-free sliding window for internal CircuitBreaker metrics.
  • Issue #​2239: Add a Clock to CircuitBreakerConfig and 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.
  • Issue #​2179: Ensure RateLimiter.executeSuspendFunction respects drainPermissionsOnResult in the configuration.
  • Issue #​2152: Ensure the randomize function always returns a number greater than 1.0.
  • Issue #​2130: Add support for Feign 12.5+.
  • Issue #​2121: Specify required RateLimiter permits in annotations.

Bugs

  • Issue #​2243: Fixed potential memory leak in DefaultEventConsumerRegistry.
  • Issue #​2209: Resolved issue where CompletionStage does not complete on user-supplied predicate failures.
  • Issue #​2190: Fixed StackOverflowError and circular reference in CircuitBreaker configuration handling.
  • Issue #​2175: Fixed validation error message for slowCallDurationThreshold.

v2.2.0

Compare Source

Enhancements
  • Support Micronaut 4
  • Issue #​1962: Added apache commons configuration based registries
Bugs
  • Issue #​2052: Support class name using SpEL expression at @​Circuitbreaker name field enhancement
  • Issue #​2040: ThreadPoolBulkhead always uses the "default" configuration in micronaut application bug
  • Issue #​2037: Removing stale retry configurations from configuration map enhancement
  • Issue #​1625: New module that collects overall information enhancement
  • Issue #​1565: Do not retry if IntervalFunction returns interval less than 0
  • Issue #​1865: Timelimiter always uses the "default" configuration in micronaut application
  • Issue #​2038: java.lang.StackOverflowError due to infinite loop in CircuitBreakerStateMachine$OpenState.tryAcquirePermission

v2.1.0

Compare Source

Enhancements

  • Fallbackmethod supports usage of annotations in Spring
  • Issue #​1955: RecordResultPredicate can be configured in Spring Boot config now

Bugs

  • Issue #​1980: Fixed API regression following removal of io.vavr dependencies in v2.0.0

v2.0.2

Compare Source

Bugs

  • Issue #​1835: Fixed CircuitBreaker CheckedSupplier and CheckedFunction decorator not opening on recordResultPredicate

v2.0.1

Compare Source

Enhancements

  • Support Spring Boot 3 by adding resilience4j-spring-boot3 and resilience4j-spring6

  • Issue #​1787: Apply Spring Boot customizers even if there is no instance entry in the config file

Bugs

  • Issue #​1825: Aspectj must not be mandatory in Spring Boot modules

  • Issue #​1809: Fixed concurrency issue in Cache module

v2.0.0

Compare Source

  • Removed Vavr as a dependency
  • Upgraded to Java 17
  • Upgraded to Kotlin 1.7.20
  • Upgraded to Spring Boot 2.7
  • Upgraded to Micronaut 3.7.3

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) in timezone America/Toronto, Automerge - "after 9:00am and before 12:00pm on tuesday, wednesday, thursday" in timezone America/Toronto.

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant