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

davsclaus pushed a change to branch 
fix/CAMEL-23997-deprecate-queueBufferingMaxMessages
in repository https://gitbox.apache.org/repos/asf/camel.git


    omit 47bda61a3688 CAMEL-23997: Deprecate queueBufferingMaxMessages option 
in camel-kafka
     add 8898beef8dbe CAMEL-24049: Fix flaky JMS Spring tests - queue name 
isolation and readiness (#24660)
     add d603bdd93625 CAMEL-23703: Add native x64 camel.exe bootstrap to 
camel-launcher Windows distribution
     add 113088da6cda CAMEL-23995: Fix saslAuthType overriding explicit 
securityProtocol and generating non-working configs
     add 1ba98b8108d6 CAMEL-23996: Fix SingleNodeKafkaResumeStrategy 
correctness bugs
     add fa91d7f4463d CAMEL-23997: Fix medium-severity findings from 
camel-kafka code review
     add ea2c5bd15990 CAMEL-23997: Deprecate queueBufferingMaxMessages option 
in camel-kafka

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   (47bda61a3688)
            \
             N -- N -- N   
refs/heads/fix/CAMEL-23997-deprecate-queueBufferingMaxMessages (ea2c5bd15990)

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/camel-launcher-windows.yml       | 133 +++++++++++++
 .../apache/camel/component/jms/JmsRouteTest.java   |  12 +-
 .../spring/JmsSpringLoadBalanceFailOverJMSIT.java  |   4 +
 .../integration/spring/tx/RouteIdTransactedIT.java |  13 +-
 .../spring/JmsSpringLoadBalanceFailOverIT.xml      |  14 +-
 .../camel/component/kafka/KafkaConfiguration.java  |  38 ++--
 .../camel/component/kafka/KafkaConsumer.java       |   7 +-
 .../camel/component/kafka/KafkaFetchRecords.java   |   2 +-
 .../camel/component/kafka/KafkaProducer.java       |   3 +
 .../support/classic/ClassicRebalanceListener.java  |   2 +-
 .../support/resume/ResumeRebalanceListener.java    |   2 +-
 .../producer/support/KeyValueHolderIterator.java   |  25 +--
 .../kafka/security/KafkaSecurityConfigurer.java    |  40 +++-
 .../kafka/transform/MessageTimestampRouter.java    |   6 +-
 .../component/kafka/transform/ReplaceField.java    |   2 +-
 .../kafka/SingleNodeKafkaResumeStrategy.java       |   8 +-
 .../camel/component/kafka/KafkaComponentTest.java  |  62 ++++++
 .../component/kafka/KafkaConfigurationTest.java    |  83 ++++++++
 .../camel/component/kafka/KafkaConsumerTest.java   |  29 +++
 .../security/KafkaSecurityConfigurerTest.java      |  83 +++++++-
 .../transform/MessageTimestampRouterTest.java      |  79 ++++++++
 .../kafka/transform/ReplaceFieldTest.java          |  14 ++
 .../kafka/SingleNodeKafkaResumeStrategyTest.java   | 104 ++++++++++
 .../ROOT/pages/camel-4x-upgrade-guide-4_22.adoc    |  46 +++++
 dsl/camel-jbang/camel-launcher/README.md           |  20 ++
 dsl/camel-jbang/camel-launcher/pom.xml             | 106 ++++++++++
 .../camel-launcher/src/main/assembly/bin.xml       |   8 +
 .../jbang/launcher/CamelLauncherWindowsExeIT.java  |  77 ++++++++
 tooling/camel-exe/README.md                        |  45 +++++
 tooling/camel-exe/pom.xml                          | 214 ++++++++++++++++++++
 tooling/camel-exe/src/main/native/README.md        |  26 +++
 tooling/camel-exe/src/main/native/camel.c          | 146 ++++++++++++++
 .../camel/tooling/exe/CamelExeBootstrapTest.java   | 217 +++++++++++++++++++++
 .../java/org/apache/camel/maven/RepackageMojo.java |   8 +-
 .../org/apache/camel/maven/RepackageMojoTest.java  |  45 +++++
 tooling/pom.xml                                    |   1 +
 36 files changed, 1662 insertions(+), 62 deletions(-)
 create mode 100644 .github/workflows/camel-launcher-windows.yml
 create mode 100644 
components/camel-kafka/src/test/java/org/apache/camel/component/kafka/KafkaConfigurationTest.java
 create mode 100644 
components/camel-kafka/src/test/java/org/apache/camel/component/kafka/transform/MessageTimestampRouterTest.java
 create mode 100644 
components/camel-kafka/src/test/java/org/apache/camel/processor/resume/kafka/SingleNodeKafkaResumeStrategyTest.java
 create mode 100644 
dsl/camel-jbang/camel-launcher/src/test/java/org/apache/camel/dsl/jbang/launcher/CamelLauncherWindowsExeIT.java
 create mode 100644 tooling/camel-exe/README.md
 create mode 100644 tooling/camel-exe/pom.xml
 create mode 100644 tooling/camel-exe/src/main/native/README.md
 create mode 100644 tooling/camel-exe/src/main/native/camel.c
 create mode 100644 
tooling/camel-exe/src/test/java/org/apache/camel/tooling/exe/CamelExeBootstrapTest.java

Reply via email to