You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2022/10/11 10:41:59 UTC

[camel] branch CAMEL-16909/events-support updated (2a3ef334f01 -> fc4a194084b)

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

nfilotto pushed a change to branch CAMEL-16909/events-support
in repository https://gitbox.apache.org/repos/asf/camel.git


    omit 2a3ef334f01 CAMEL-16909: camel-kubernetes - Event support
     add f7932e4ec60 CAMEL-18148: cleanup the offset update interfaces
     add aed463febc2 [CXF-8762] CXF client sends the SOAPAction header without quotes (#8494)
     add cb336a1ed4a Upgrade protobuf to 3.19.6 (#8505)
     add 2396b8f21e7 (chores) ci: FIX 404 on mvnd install and upgrade to 0.8.2
     add 5e7c55e7974 (chores) ci: fixed missing scape on the mvnd upgrade
     add 76a9dde3ab1 (chores) ci: fix upgrade Apache Maven Daemon to 0.8.2
     add e8d6de41c1d [camel-18588] Added condition to only commit offset if it is not -1
     add b065d3154c2 CAMEL-18576: Added unit test
     add ea1da2cf145 CAMEL-18576: Added unit test
     add e4f6186cf8f (chores) camel-base: removed unused exceptions in the ObjectConverter
     add 51ac1993928 Regen for commit e8d6de41c1d2cc820d7418b39c4476288b4b055b
     add 3b61316f5d2 Regen for commit e4f6186cf8f6cef4e84db038c4276c52e2c4cd4f
     add 15c67534785 CAMEL-18600: properties component - Allow to turn off nested placeholders
     add 87455105b69 Upgrade TestContainers to version 1.17.5
     add 0b5228797fb Sync deps
     add 2321dddade1 CAMEL-18600: properties component - Allow to turn off nested placeholders
     add c67673e9d71 CAMEL-18600: properties component - Allow to turn off nested placeholders
     add c488049f90e Polished docs: fixed grammar and wording issues (#8507)
     add 202200eb362 Upgrade Localstack to latest image 1.2.0
     add 71854cbd2cd CAMEL-18600: properties component - Allow to turn off nested placeholders
     add d183afda385 fix(deps): Align protobuf version to the grpc one to prevent compilation issue
     add fc4a194084b CAMEL-16909: camel-kubernetes - Event support

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   (2a3ef334f01)
            \
             N -- N -- N   refs/heads/CAMEL-16909/events-support (fc4a194084b)

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/actions/install-mvnd/action.yml            |  2 +-
 camel-dependencies/pom.xml                         |  5 ++-
 .../component/cxf/jaxws/DefaultCxfBinding.java     | 16 ++++++++
 .../component/cxf/jaxws/DefaultCxfBindingTest.java | 14 +++----
 components/camel-grpc/pom.xml                      | 10 +++++
 .../consumer/support/KafkaRecordProcessor.java     |  8 +++-
 .../resume/kafka/KafkaResumeStrategy.java          |  6 +--
 .../kafka/SingleNodeKafkaResumeStrategy.java       |  4 +-
 .../KafkaConsumerWithResumeRouteStrategyIT.java    |  4 +-
 .../spi/BridgePropertyPlaceholderConfigurer.java   | 14 ++++---
 .../org/apache/camel/resume/ResumeStrategy.java    |  8 ++++
 .../resume/UpdatableConsumerResumeStrategy.java    | 34 ---------------
 .../org/apache/camel/spi/PropertiesComponent.java  |  6 +++
 .../properties/PropertiesComponentConfigurer.java  |  6 +++
 .../src/main/docs/properties-component.adoc        |  5 ++-
 .../properties/DefaultPropertiesParser.java        | 48 +++++++++++++++++++---
 .../component/properties/PropertiesComponent.java  | 18 +++++++-
 .../component/properties/PropertiesParser.java     |  7 +++-
 .../apache/camel/converter/ObjectConverter.java    | 19 ++++-----
 .../docs/modules/eips/pages/resume-strategies.adoc |  2 +-
 .../processor/resume/ResumableCompletion.java      | 16 +++-----
 .../processor/resume/TransientResumeStrategy.java  |  6 +++
 .../FileConsumerResumeFromOffsetStrategyTest.java  | 11 +----
 ...ava => PropertiesComponentNestedFalseTest.java} | 17 ++++----
 ...est.java => PropertiesComponentNestedTest.java} | 15 +++----
 ...ionTest.java => ExpressionPlaceholderTest.java} | 23 ++++++++---
 .../modules/ROOT/pages/getting-started.adoc        | 33 +++++++--------
 parent/pom.xml                                     |  5 ++-
 .../test/infra/aws2/services/AWSContainer.java     |  2 +-
 29 files changed, 219 insertions(+), 145 deletions(-)
 delete mode 100644 core/camel-api/src/main/java/org/apache/camel/resume/UpdatableConsumerResumeStrategy.java
 copy core/camel-core/src/test/java/org/apache/camel/component/properties/{PropertiesComponentEIPConvertBodyToTest.java => PropertiesComponentNestedFalseTest.java} (71%)
 copy core/camel-core/src/test/java/org/apache/camel/component/properties/{PropertiesComponentOnExceptionDelayPatternTest.java => PropertiesComponentNestedTest.java} (74%)
 copy core/camel-core/src/test/java/org/apache/camel/processor/{TracerConfigurationTest.java => ExpressionPlaceholderTest.java} (71%)