This is an automated email from the ASF dual-hosted git repository.
gnodet pushed a change to branch CAMEL-23250-security-policy-enforcement
in repository https://gitbox.apache.org/repos/asf/camel.git
from eeeaa2e099d8 CAMEL-23250: Keep secret=true alongside security="secret"
on vault configs
add c5c8da094010 ci: fix CmdStartStopITCase regex to handle line-wrapped
URIs
add 2b07e28e9bf7 CAMEL-23274: Disable SonarCloud temporarily and fix
script injection (#22477)
add 971b8bbea271 chore(deps): Bump aws-java-sdk2-version from 2.42.27 to
2.42.29 (#22461)
add c63d92b983d3 chore(deps): Bump org.redisson:redisson from 4.3.0 to
4.3.1 (#22462)
add 85828e40ad72 chore(deps): Bump eu.maveniverse.maven.nisse:extension
(#22463)
add b61ed81b57c1 chore(deps-dev): Bump eslint from 10.0.3 to 10.2.0 in
/docs (#22460)
add 437e014f6550 chore(deps): Bump redis.clients:jedis from 7.4.0 to 7.4.1
(#22465)
add d0019eaf4f3e CAMEL-23274: Fix SonarCloud critical bugs in test code
(#22478)
add f00eb4631819 chore(deps): Bump com.google.genai:google-genai from
1.45.0 to 1.46.0 (#22459)
add 99300f428c30 chore(deps): Bump io.camunda:camunda-client-java from
8.8.19 to 8.8.21 (#22466)
add 660148fc60f2 CAMEL-23260: fix graceful shutdown for ServiceBus
consumer (#22443)
add 6125faadce9b chore(camel-test-infra-kafka): upgrade
redpanda.container.image to v26.1.1 (#22447)
add c0367b41914f chore(camel-test-infra-pulsar): upgrade pulsar.container
to 4.2.0 (#22452)
add b828e5601f45 chore(deps): Bump io.milvus:milvus-sdk-java from 2.6.16
to 2.6.17 (#22456)
add dad41a9d8dfd chore(camel-test-infra-weaviate): upgrade
weaviate.container to 1.36.9 (#22453)
add 0bf9acfa35ef CAMEL-23289: Fix empty catch blocks and resource leaks in
DrillProducer (#22417)
add 959c7e87610e chore(ci): rationalize CI into single workflow with
unified comment (#22247)
add 15445c1f97ba CAMEL-23271: Fix SonarCloud blocker reliability issues
(resource leaks) (#22343)
add 80bafde44d85 chore(camel-test-infra-neo4j): upgrade neo4j.container to
2026.03-community-ubi10 (#22449)
add d203a3430828 chore: fix SonarCloud security hotspots in sonar-scan and
huggingface (#22480)
add 4ac0fa0a8c78 Merge remote-tracking branch 'origin/main' into
CAMEL-23250-security-policy-enforcement
No new revisions were added by this update.
Summary of changes:
.github/CI-ARCHITECTURE.md | 164 +++++
.github/actions/component-test/action.yaml | 121 ----
.github/actions/component-test/component-test.sh | 71 ---
.github/actions/detect-dependencies/action.yaml | 39 --
.github/actions/detect-dependencies/detect-test.sh | 96 ---
.github/actions/incremental-build/action.yaml | 28 +-
.../actions/incremental-build/incremental-build.sh | 710 ++++++++++++++++-----
.../incremental-build/manual-it-mapping.txt | 15 +
.github/workflows/main-build.yml | 1 -
.github/workflows/pr-build-main.yml | 97 ++-
.github/workflows/pr-commenter.yml | 2 +-
.github/workflows/pr-manual-component-test.yml | 90 +--
.github/workflows/pr-test-commenter.yml | 121 ++++
.github/workflows/sonar-build.yml | 19 +-
.github/workflows/sonar-scan.yml | 11 +-
.mvn/extensions.xml | 2 +-
.../huggingface/tasks/AbstractTaskPredictor.java | 13 +-
.../azure/servicebus/ServiceBusConsumer.java | 93 ++-
.../azure/servicebus/ServiceBusConsumerTest.java | 73 +++
components/camel-drill/pom.xml | 6 +
.../camel/component/drill/DrillProducer.java | 29 +-
.../camel/component/drill/DrillProducerTest.java | 130 ++++
.../apache/camel/component/jcr/JcrConsumer.java | 16 +-
.../component/salesforce/SalesforceComponent.java | 3 +-
.../org/apache/camel/reifier/AggregateReifier.java | 2 +
.../org/apache/camel/reifier/ThreadsReifier.java | 2 +
.../org/apache/camel/xml/in/ModelParserTest.java | 3 +-
docs/.pnp.cjs | 132 ++--
docs/package.json | 2 +-
docs/yarn.lock | 83 ++-
.../jbang/core/common/EnvironmentHelperTest.java | 11 +-
.../camel/dsl/jbang/it/CmdStartStopITCase.java | 12 +-
.../camel/dsl/yaml/validator/CamelYamlParser.java | 12 +-
parent/pom.xml | 12 +-
pom.xml | 1 +
.../test/infra/kafka/services/container.properties | 2 +-
.../test/infra/neo4j/services/container.properties | 2 +-
.../infra/pulsar/services/container.properties | 2 +-
.../infra/weaviate/services/container.properties | 2 +-
.../maven/packaging/ModelWriterGeneratorMojo.java | 10 +-
40 files changed, 1427 insertions(+), 813 deletions(-)
create mode 100644 .github/CI-ARCHITECTURE.md
delete mode 100644 .github/actions/component-test/action.yaml
delete mode 100755 .github/actions/component-test/component-test.sh
delete mode 100644 .github/actions/detect-dependencies/action.yaml
delete mode 100755 .github/actions/detect-dependencies/detect-test.sh
create mode 100644 .github/actions/incremental-build/manual-it-mapping.txt
create mode 100644 .github/workflows/pr-test-commenter.yml
create mode 100644
components/camel-drill/src/test/java/org/apache/camel/component/drill/DrillProducerTest.java