This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch regen_bot in repository https://gitbox.apache.org/repos/asf/camel.git
from 1fe0bfa46bd Upgrade CycloneDX Maven Plugin to version 2.7.10 (#11875) add 5abcb6c12c2 CAMEL-20039: camel-core - SimpleLRUCache add support for soft cache (#11876) No new revisions were added by this update. Summary of changes: .../SimpleLRUCacheTest.java} | 10 +- .../camel/support/cache/SimpleSoftCacheTest.java | 317 ++++++++++++++++ .../camel/support/DefaultLRUCacheFactory.java | 330 ++--------------- .../apache/camel/support/cache/SimpleLRUCache.java | 289 +++++++++++++++ .../camel/support/cache/SimpleSoftCache.java | 397 +++++++++++++++++++++ 5 files changed, 1045 insertions(+), 298 deletions(-) rename core/camel-core/src/test/java/org/apache/camel/support/{DefaultLRUCacheFactoryTest.java => cache/SimpleLRUCacheTest.java} (96%) create mode 100644 core/camel-core/src/test/java/org/apache/camel/support/cache/SimpleSoftCacheTest.java create mode 100644 core/camel-support/src/main/java/org/apache/camel/support/cache/SimpleLRUCache.java create mode 100644 core/camel-support/src/main/java/org/apache/camel/support/cache/SimpleSoftCache.java