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 2021/01/27 11:08:05 UTC

[camel] branch regen_bot updated (27d0887 -> 0af8b9a)

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 27d0887  Regen for commit 65632ea5424e10a2508359c846855534f8869d86
     add 822ba07  CAMEL-16082: Fix Java DSL expression vs predicate when using predicates via ExpressionClause (delegate) making it harder to know if it was a expression or predicate. So introducing PredicateFactory/Aware and initPredicate to handle predicates differently than expressions.
     add b1bc768  Fixed duplicate artifact in parent/pom.xml
     add 0af8b9a  Regen for commit b1bc76867e3d821d0ad2141db3f2281e4609bb4b

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   (27d0887)
            \
             N -- N -- N   refs/heads/regen_bot (0af8b9a)

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:
 .../src/main/java/org/apache/camel/Predicate.java  |  9 +++
 ...xpressionFactory.java => PredicateFactory.java} | 10 +--
 ...reProcessor.java => PredicateFactoryAware.java} | 10 +--
 .../org/apache/camel/builder/ExpressionClause.java | 22 +++++-
 .../camel/builder/ExpressionClauseSupport.java     | 72 ++++++++++++-------
 .../camel/model/language/ExpressionDefinition.java | 16 ++++-
 .../apache/camel/processor/ChoiceProcessor.java    |  2 +-
 .../camel/reifier/language/ExpressionReifier.java  |  4 +-
 .../ChoiceNoOtherwiseTest.java}                    | 80 ++++++++++++----------
 parent/pom.xml                                     |  5 --
 10 files changed, 147 insertions(+), 83 deletions(-)
 copy core/camel-api/src/main/java/org/apache/camel/{ExpressionFactory.java => PredicateFactory.java} (80%)
 copy core/camel-api/src/main/java/org/apache/camel/spi/{WrapAwareProcessor.java => PredicateFactoryAware.java} (77%)
 copy core/camel-core/src/test/java/org/apache/camel/{component/bean/BeanOverloadedCovariantMethodTest.java => processor/ChoiceNoOtherwiseTest.java} (50%)