This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch ci-issue-CAMEL-23298
in repository https://gitbox.apache.org/repos/asf/camel.git


    omit 7cff7697f5b9 CAMEL-23298: Add missing PQC and OCSF dataformats in 
model and fix A..Z ordering
     add 72201ec4d26c CAMEL-23297: Add deserialization filtering to camel-netty 
converters and codecs (#22490)
     add 15c6bef81e00 CAMEL-23276: Add PluginRunCustomizer to JBang Plugin SPI
     add 2fae35ed2447 CAMEL-23276: Run beforeRun() before dependency resolution
     add 1df033fa2a81 CAMEL-23276: Fix Javadoc and protect files list from 
mutation
     add c28e0d715645 CAMEL-23252: Add onReload hook to ContextServicePlugin 
for dev-mode route reloading
     add 098e1e704060 CAMEL-23252: Fix formatting and import sort order
     add 6cbb2f89efb2 chore(deps): Bump org.ehcache:ehcache from 3.11.1 to 
3.12.0 (#22487)
     add 356052ef228b chore(deps): Bump ognl:ognl from 3.4.10 to 3.4.11 (#22486)
     add 7228b3f5037a chore(deps): Bump ca.uhn.hapi.fhir:org.hl7.fhir.utilities 
(#22485)
     add f0f0b0e5e525 chore(deps): Bump aws-java-sdk2-version from 2.42.29 to 
2.42.30 (#22481)
     add 8374ebb5ba58 chore(deps): Bump io.camunda:zeebe-client-java from 
8.8.21 to 8.9.0 (#22482)
     add 54857e658368 chore(deps): Bump io.github.littleproxy:littleproxy from 
2.6.0 to 2.7.0 (#22464)
     add 48c2c29aac14 chore(deps): Bump 
org.apache.camel.kamelets:camel-kamelets (#22457)
     add 2ef75cdad453 chore(deps): Bump org.springframework.ai:spring-ai-bom 
(#22291)
     add 9e8b740e3ea2 CAMEL-23281: fix split/aggregate deadlock with 
SynchronousExecutorService in transacted routes
     add a24746d51a78 CAMEL-23298: Add missing PQC and OCSF dataformats in 
model and fix A..Z ordering
     add a2dc090e7a34 CAMEL-23298: Add missing PQC and OCSF dataformats in 
model and fix A..Z ordering

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   (7cff7697f5b9)
            \
             N -- N -- N   refs/heads/ci-issue-CAMEL-23298 (a2dc090e7a34)

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:
 .../catalog/models/dataFormatTransformer.json      |   2 +-
 .../apache/camel/catalog/models/dataFormats.json   |   2 +-
 .../apache/camel/catalog/schemas/camel-spring.xsd  | 462 +++++++++++----------
 .../apache/camel/catalog/schemas/camel-xml-io.xsd  | 462 +++++++++++----------
 ...ttpUnfilteredDeserializationReproducerTest.java | 126 ++++++
 .../camel/component/netty/NettyConverter.java      |  21 +-
 .../netty/codec/DatagramPacketObjectDecoder.java   |   6 +-
 .../camel/component/netty/codec/ObjectDecoder.java | 106 ++++-
 ...ttyUnfilteredDeserializationReproducerTest.java | 123 ++++++
 .../spi/ContextServiceLoaderPluginResolver.java    |   6 +
 .../org/apache/camel/spi/ContextServicePlugin.java |  16 +
 .../engine/DefaultContextServiceLoaderPlugin.java  |  15 +
 .../processor/aggregate/AggregateProcessor.java    |  21 +-
 ...itAggregateInChoiceSynchronousExecutorTest.java | 142 +++++++
 .../RouteWatcherReloadStrategyOnReloadTest.java    | 169 ++++++++
 .../camel/support/RouteWatcherReloadStrategy.java  |   8 +
 .../java/org/apache/camel/xml/out/ModelWriter.java |  14 +-
 .../org/apache/camel/yaml/out/ModelWriter.java     |  14 +-
 .../apache/camel/dsl/jbang/core/commands/Run.java  |  12 +-
 .../apache/camel/dsl/jbang/core/common/Plugin.java |  11 +
 .../dsl/jbang/core/common/PluginRunCustomizer.java |  40 ++
 .../jbang/core/common/PluginRunCustomizerTest.java |  73 ++++
 dsl/camel-jbang/camel-launcher/pom.xml             |   2 +-
 .../dsl/yaml/deserializers/ModelDeserializers.java |  84 ++--
 .../generated/resources/schema/camelYamlDsl.json   |  28 ++
 parent/pom.xml                                     |  14 +-
 26 files changed, 1461 insertions(+), 518 deletions(-)
 create mode 100644 
components/camel-netty-http/src/test/java/org/apache/camel/component/netty/http/NettyHttpUnfilteredDeserializationReproducerTest.java
 create mode 100644 
components/camel-netty/src/test/java/org/apache/camel/component/netty/NettyUnfilteredDeserializationReproducerTest.java
 create mode 100644 
core/camel-core/src/test/java/org/apache/camel/processor/aggregator/SplitAggregateInChoiceSynchronousExecutorTest.java
 create mode 100644 
core/camel-core/src/test/java/org/apache/camel/support/RouteWatcherReloadStrategyOnReloadTest.java
 create mode 100644 
dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/common/PluginRunCustomizer.java
 create mode 100644 
dsl/camel-jbang/camel-jbang-core/src/test/java/org/apache/camel/dsl/jbang/core/common/PluginRunCustomizerTest.java

Reply via email to