This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
discard f2f94279ac Upgrade Camel to 3.19.0 add cfbe7817d8 Updated CHANGELOG.md add 7d0e3808ff Fix route inclusion / exclusion filtering add a25812a829 Clean up redundant plugin executions for the docs module add 5f7f579e18 Remove docs module verification step from CI build as it is now a manual step add 7b2118ba25 Rename docs README_local_build.adoc to README.adoc add 6d88cf18b6 perf-regression: add integration tests #3982 add d70da15319 perf-regression: add unit test #4001 new 152ce27328 Upgrade Camel to 3.19.0 This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (f2f94279ac) \ N -- N -- N refs/heads/camel-main (152ce27328) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. The 1 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: .github/workflows/camel-master-cron.yaml | 2 +- .github/workflows/ci-build.yaml | 13 ++-- .github/workflows/quarkus-master-cron.yaml | 2 +- CHANGELOG.md | 2 + docs/{README_local_build.adoc => README.adoc} | 2 +- docs/pom.xml | 74 ------------------ .../quarkus/core/deployment/CamelProcessor.java | 31 +++++++- .../core/deployment/main/CamelMainProcessor.java | 8 +- ...inRoutesExcludeFilterCombinedPropertyTest.java} | 35 +++++---- ....java => CamelMainRoutesExcludeFilterTest.java} | 47 +++++++++--- ...inRoutesIncludeFilterCombinedPropertyTest.java} | 36 +++++---- ....java => CamelMainRoutesIncludeFilterTest.java} | 49 +++++++++--- .../camel/quarkus/core/RegistryRoutesLoaders.java | 9 +++ .../camel/quarkus/main/CamelMainRecorder.java | 9 ++- .../quarkus/main/CamelMainRoutesCollector.java | 27 ++++++- pom.xml | 2 +- tooling/perf-regression/pom.xml | 64 +++++++++++++++- .../PerformanceRegressionReportTest.java | 36 ++++++--- .../regression/it/PerfRegressionIT.java | 89 ++++++++++++++++++++++ .../test/resources/expecteds/jvm-and-native.txt | 8 ++ .../src/test/resources/expecteds/jvm-only.txt | 6 ++ .../perf-regression-expecteds/nominal.txt | 6 -- 22 files changed, 391 insertions(+), 166 deletions(-) rename docs/{README_local_build.adoc => README.adoc} (97%) copy extensions-core/core/deployment/src/test/java/org/apache/camel/quarkus/core/deployment/main/{CamelMainRoutesFilterTest.java => CamelMainRoutesExcludeFilterCombinedPropertyTest.java} (72%) copy extensions-core/core/deployment/src/test/java/org/apache/camel/quarkus/core/deployment/main/{CamelMainRoutesFilterTest.java => CamelMainRoutesExcludeFilterTest.java} (67%) copy extensions-core/core/deployment/src/test/java/org/apache/camel/quarkus/core/deployment/main/{CamelMainRoutesFilterTest.java => CamelMainRoutesIncludeFilterCombinedPropertyTest.java} (69%) rename extensions-core/core/deployment/src/test/java/org/apache/camel/quarkus/core/deployment/main/{CamelMainRoutesFilterTest.java => CamelMainRoutesIncludeFilterTest.java} (64%) create mode 100644 tooling/perf-regression/src/test/java/org/apache/camel/quarkus/performance/regression/it/PerfRegressionIT.java create mode 100644 tooling/perf-regression/src/test/resources/expecteds/jvm-and-native.txt create mode 100644 tooling/perf-regression/src/test/resources/expecteds/jvm-only.txt delete mode 100644 tooling/perf-regression/src/test/resources/perf-regression-expecteds/nominal.txt