This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/camel.git.
from 996930b Regen new 68f6f3a CAMEL-16078: Deprecate camel-caffeine-lrucache and remove from camel-core pom.xml as we should use the default implementation out of the box. new 48cb978 Add camel-flight-recorder to regen new e332224 CAMEL-16078: move camel-caffeine-lrucache from core to components new a13a48c CAMEL-16078: move camel-caffeine-lrucache from core to components The 4 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../resources/org/apache/camel/catalog/others.properties | 2 ++ .../apache/camel/catalog/others/caffeine-lrucache.json | 15 +++++++++++++++ .../org/apache/camel/catalog/others/flight-recorder.json | 15 +++++++++++++++ {core => components}/camel-caffeine-lrucache/pom.xml | 4 ++-- .../META-INF/services/org/apache/camel/lru-cache-factory | 0 .../META-INF/services/org/apache/camel/other.properties | 7 +++++++ .../src/generated/resources/caffeine-lrucache.json | 15 +++++++++++++++ .../component/caffeine/lrucache/CaffeineLRUCache.java | 1 + .../caffeine/lrucache/CaffeineLRUCacheFactory.java | 1 + .../component/caffeine/lrucache/CaffeineLRUSoftCache.java | 1 + .../component/caffeine/lrucache/CaffeineLRUWeakCache.java | 1 + .../component/caffeine/lrucache/CaffeineLRUCacheTest.java | 0 .../caffeine/lrucache/CaffeineLRUSoftCacheTest.java | 0 .../src/test/resources/log4j2.properties | 0 components/camel-test-junit5/pom.xml | 4 ---- components/camel-test/pom.xml | 4 ---- components/pom.xml | 1 + core/camel-allcomponents/pom.xml | 4 ++++ core/camel-core/pom.xml | 4 ---- .../org/apache/camel/support/DefaultLRUCacheFactory.java | 3 +-- core/pom.xml | 1 - .../modules/ROOT/pages/camel-3x-upgrade-guide-3_8.adoc | 8 ++++++++ parent/pom.xml | 10 +++++----- 23 files changed, 79 insertions(+), 22 deletions(-) create mode 100644 catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/caffeine-lrucache.json create mode 100644 catalog/camel-catalog/src/generated/resources/org/apache/camel/catalog/others/flight-recorder.json rename {core => components}/camel-caffeine-lrucache/pom.xml (97%) rename {core => components}/camel-caffeine-lrucache/src/generated/resources/META-INF/services/org/apache/camel/lru-cache-factory (100%) create mode 100644 components/camel-caffeine-lrucache/src/generated/resources/META-INF/services/org/apache/camel/other.properties create mode 100644 components/camel-caffeine-lrucache/src/generated/resources/caffeine-lrucache.json rename {core => components}/camel-caffeine-lrucache/src/main/java/org/apache/camel/component/caffeine/lrucache/CaffeineLRUCache.java (99%) rename {core => components}/camel-caffeine-lrucache/src/main/java/org/apache/camel/component/caffeine/lrucache/CaffeineLRUCacheFactory.java (99%) rename {core => components}/camel-caffeine-lrucache/src/main/java/org/apache/camel/component/caffeine/lrucache/CaffeineLRUSoftCache.java (99%) rename {core => components}/camel-caffeine-lrucache/src/main/java/org/apache/camel/component/caffeine/lrucache/CaffeineLRUWeakCache.java (99%) rename {core => components}/camel-caffeine-lrucache/src/test/java/org/apache/camel/component/caffeine/lrucache/CaffeineLRUCacheTest.java (100%) rename {core => components}/camel-caffeine-lrucache/src/test/java/org/apache/camel/component/caffeine/lrucache/CaffeineLRUSoftCacheTest.java (100%) rename {core => components}/camel-caffeine-lrucache/src/test/resources/log4j2.properties (100%)