You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gi...@apache.org on 2020/11/27 08:07:58 UTC

[camel] branch regen_bot updated (10ae13a -> 6099471)

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

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git.


    omit 10ae13a  Regen for commit a1802ab9792b41180d21ea85f712dcb2691a31e4
     add f0613f4  Regen
     add cb814f9  CAMEL-15806 - Camel-AWS2-SNS: Support FIFO Topic
     add 5edf0ba  CAMEL-15806 - Camel-AWS2-SNS: Support FIFO Topic
     add 6099471  Regen sns and others stuff

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   (10ae13a)
            \
             N -- N -- N   refs/heads/regen_bot (6099471)

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:
 .../apache/camel/catalog/components/aws2-sns.json  |  4 ++
 .../camel/catalog/docs/aws2-sns-component.adoc     |  8 ++-
 .../aws2/sns/Sns2ComponentConfigurer.java          | 12 ++++
 .../component/aws2/sns/Sns2EndpointConfigurer.java | 12 ++++
 .../component/aws2/sns/Sns2EndpointUriFactory.java |  4 +-
 .../apache/camel/component/aws2/sns/aws2-sns.json  |  4 ++
 .../src/main/docs/aws2-sns-component.adoc          |  8 ++-
 ...ts.java => ConstantMessageGroupIdStrategy.java} | 15 ++---
 ... ExchangeIdMessageDeduplicationIdStrategy.java} | 15 ++---
 ....java => ExchangeIdMessageGroupIdStrategy.java} | 15 ++---
 ...ts.java => MessageDeduplicationIdStrategy.java} | 12 ++--
 ...2Constants.java => MessageGroupIdStrategy.java} | 12 ++--
 ...ava => NullMessageDeduplicationIdStrategy.java} | 15 ++---
 ...va => PropertyValueMessageGroupIdStrategy.java} | 15 ++---
 .../component/aws2/sns/Sns2Configuration.java      | 62 ++++++++++++++++++++
 .../camel/component/aws2/sns/Sns2Constants.java    |  1 +
 .../camel/component/aws2/sns/Sns2Endpoint.java     |  8 ++-
 .../camel/component/aws2/sns/Sns2Producer.java     | 16 ++++++
 .../SnsComponentFifoIntegrationTest.java           | 67 ++++++++++++++++++++++
 .../dsl/Aws2SnsComponentBuilderFactory.java        | 33 +++++++++++
 .../endpoint/dsl/Sns2EndpointBuilderFactory.java   | 66 +++++++++++++++++++++
 .../modules/ROOT/pages/aws2-sns-component.adoc     |  8 ++-
 22 files changed, 355 insertions(+), 57 deletions(-)
 copy components/camel-aws2-sns/src/main/java/org/apache/camel/component/aws2/sns/{Sns2Constants.java => ConstantMessageGroupIdStrategy.java} (78%)
 copy components/camel-aws2-sns/src/main/java/org/apache/camel/component/aws2/sns/{Sns2Constants.java => ExchangeIdMessageDeduplicationIdStrategy.java} (76%)
 copy components/camel-aws2-sns/src/main/java/org/apache/camel/component/aws2/sns/{Sns2Constants.java => ExchangeIdMessageGroupIdStrategy.java} (78%)
 copy components/camel-aws2-sns/src/main/java/org/apache/camel/component/aws2/sns/{Sns2Constants.java => MessageDeduplicationIdStrategy.java} (78%)
 copy components/camel-aws2-sns/src/main/java/org/apache/camel/component/aws2/sns/{Sns2Constants.java => MessageGroupIdStrategy.java} (78%)
 copy components/camel-aws2-sns/src/main/java/org/apache/camel/component/aws2/sns/{Sns2Constants.java => NullMessageDeduplicationIdStrategy.java} (78%)
 copy components/camel-aws2-sns/src/main/java/org/apache/camel/component/aws2/sns/{Sns2Constants.java => PropertyValueMessageGroupIdStrategy.java} (74%)
 create mode 100644 components/camel-aws2-sns/src/test/java/org/apache/camel/component/aws2/sns/integration/SnsComponentFifoIntegrationTest.java