This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/maven/io.quarkiverse.amazonservices-quarkus-amazon-services-bom-3.13.0
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
discard 824113a9c0 Auto generated changes for dependabot commit
063b7ac4191700f16caff3f154f07afda39e1f80
discard 063b7ac419 Bump
io.quarkiverse.amazonservices:quarkus-amazon-services-bom
add 089b95a62d Pin modelcontextprotocol/server-everything to 2025.12.18
for Langchain4jAgentTest.agentWithMcpClient test
add 0beb7e65e7 Restore Quarkus SNAPSHOT testing against
camel-quarkus-examples camel-quarkus-main branch
add fd44a19fb2 PDF generation with image in native with Apache FOP
add bcfa62adfb Upgrade MySQL test container version from 8.4 to 9.5
add bca5c064f5 Bump org.jolokia:jolokia-agent-jvm from 2.4.2 to 2.4.3
add 40448c7949 Upgrade quarkiverse batik to 1.1.0
add 1b5c166fff Add cli-debug JVM only extension
add 8f1c2f1833 Update MacOS build tips in contributor user guide
add 5ceae69067 Remove redundant localstack container
PROVIDER_OVERRIDE_CLOUDWATCH environment variable
add fe069a8025 Bump
io.quarkiverse.amazonservices:quarkus-amazon-services-bom
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 (824113a9c0)
\
N -- N -- N
refs/heads/dependabot/maven/io.quarkiverse.amazonservices-quarkus-amazon-services-bom-3.13.0
(fe069a8025)
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.
No new revisions were added by this update.
Summary of changes:
.github/workflows/ci-build.yaml | 3 -
.github/workflows/quarkus-master-cron.yaml | 4 +-
catalog/pom.xml | 13 +
docs/modules/ROOT/examples/others/cli-debug.yml | 13 +
docs/modules/ROOT/nav.adoc | 1 +
.../ROOT/pages/contributor-guide/index.adoc | 6 +-
.../extensions/{python.adoc => cli-debug.adoc} | 22 +-
.../org/apache/camel/quarkus/main/CamelMain.java | 19 +
.../cli-debug}/deployment/pom.xml | 10 +-
.../cli/debug/deployment/CliDebugProcessor.java} | 12 +-
.../milo => extensions-jvm/cli-debug}/pom.xml | 6 +-
.../cli-debug}/runtime/pom.xml | 17 +-
.../main/resources/META-INF/quarkus-extension.yaml | 6 +-
extensions-jvm/pom.xml | 1 +
extensions/fop/deployment/pom.xml | 4 +
.../component/fop/deployment/FopProcessor.java | 84 +-
extensions/fop/runtime/pom.xml | 8 +
.../{python => cli-debug}/pom.xml | 26 +-
.../component/cli/debug/it/CliDebugRoutes.java | 10 +-
.../src/main/resources/application.properties | 23 +-
.../component/cli/debug/it/CliDebugTest.java | 81 +
integration-tests-jvm/pom.xml | 1 +
.../test/support/aws2/Aws2TestResource.java | 1 -
.../camel/quarkus/component/fop/it/FopTest.java | 68 +-
.../langchain4j/agent/it/AgentProducers.java | 2 +-
.../langchain4j/agent/it/Langchain4jAgentTest.java | 2 -
pom.xml | 10 +-
poms/bom/pom.xml | 30 +
poms/bom/src/main/generated/flattened-full-pom.xml | 2779 ++++++++++----------
.../src/main/generated/flattened-reduced-pom.xml | 159 +-
.../generated/flattened-reduced-verbose-pom.xml | 387 +--
31 files changed, 2060 insertions(+), 1748 deletions(-)
create mode 100644 docs/modules/ROOT/examples/others/cli-debug.yml
copy docs/modules/ROOT/pages/reference/extensions/{python.adoc =>
cli-debug.adoc} (61%)
copy {extensions/oauth => extensions-jvm/cli-debug}/deployment/pom.xml (87%)
copy
extensions-jvm/{iec60870/deployment/src/main/java/org/apache/camel/quarkus/component/iec60870/deployment/Iec60870Processor.java
=>
cli-debug/deployment/src/main/java/org/apache/camel/quarkus/component/cli/debug/deployment/CliDebugProcessor.java}
(84%)
copy {extensions/milo => extensions-jvm/cli-debug}/pom.xml (89%)
copy {extensions/oauth => extensions-jvm/cli-debug}/runtime/pom.xml (89%)
copy extensions-jvm/{dns =>
cli-debug}/runtime/src/main/resources/META-INF/quarkus-extension.yaml (93%)
copy integration-tests-jvm/{python => cli-debug}/pom.xml (77%)
copy
integration-tests/base64/src/main/java/org/apache/camel/quarkus/component/base64/it/Base64RouteBuilder.java
=>
integration-tests-jvm/cli-debug/src/main/java/org/apache/camel/quarkus/component/cli/debug/it/CliDebugRoutes.java
(82%)
copy {integration-test-groups/aws2/aws-secrets-manager =>
integration-tests-jvm/cli-debug}/src/main/resources/application.properties (57%)
create mode 100644
integration-tests-jvm/cli-debug/src/test/java/org/apache/camel/quarkus/component/cli/debug/it/CliDebugTest.java