You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by co...@apache.org on 2020/03/14 08:30:43 UTC

[camel] branch CAMEL-14711 updated (1eba5c9 -> 77c5e5b)

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

coheigea pushed a change to branch CAMEL-14711
in repository https://gitbox.apache.org/repos/asf/camel.git.


 discard 1eba5c9  CAMEL-14711 - Disable RabbitMQ Java serialization by default
     add 080f088  Camel-Base: Fixed CS
     add db53fd6  CAMEL-14670: @BeanConfigInject for injecting bean configuration classes that are pre configured from properties files. Also add support for using configurer classes with option prefix in PropertyBindingSupport.
     add 640cbb7   CAMEL-14670: @BeanConfigInject for injecting bean configuration classes that are pre configured from properties files.
     add adb7036  CAMEL-14670: Use bean post processor helper instead of duplicate code.
     add ae9cfdc  CAMEL-14670: @BeanConfigInject for injecting bean configuration classes that are pre configured from properties files.
     add dc262a7  Do not use immutable context by default
     add 8bf7811  Camel-core-engine: Fixed CS
     add 2d7ca2d  Camel-Core: Fixed CS
     add fc9de02  Camel-Main: Fixed CS
     add 92879be  Fix VM component tests
     add ed26e22  Fixed tests
     add 4e67b1e  Move lifecycle api into its own api for camel context.
     add 094b8eb  Fixed tests
     add ab6aa2e  Move lifecycle api into its own api for camel context.
     add 77c5e5b  CAMEL-14711 - Disable RabbitMQ Java serialization by default

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   (1eba5c9)
            \
             N -- N -- N   refs/heads/CAMEL-14711 (77c5e5b)

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:
 .../disruptor/vm/AbstractVmTestSupport.java        |   6 +-
 .../{BeanInject.java => BeanConfigInject.java}     |  11 +-
 .../main/java/org/apache/camel/CamelContext.java   |  44 +-------
 .../org/apache/camel/CamelContextLifecycle.java    | 124 +++++++++++++++++++++
 .../impl/converter/CoreTypeConverterRegistry.java  |   2 +-
 .../impl/engine/CamelPostProcessorHelper.java      |  63 +++++++++++
 .../impl/engine/DefaultCamelBeanPostProcessor.java |  71 ++++++------
 .../camel/impl/lw/ImmutableCamelContext.java       |  14 +--
 .../impl/lw/RuntimeImmutableCamelContext.java      |   2 +-
 .../java/org/apache/camel/ContextTestSupport.java  |   2 +-
 .../directvm/AbstractDirectVmTestSupport.java      |   8 +-
 .../directvm/DirectVmConsumerExpressionTest.java   |  23 ++--
 .../camel/component/vm/AbstractVmTestSupport.java  |  26 ++++-
 .../test/java/org/apache/camel/impl/FooBar.java    |   4 +
 .../java/org/apache/camel/impl/FooBarConfig.java}  |  12 +-
 .../impl/engine/CamelPostProcessorHelperTest.java  |  71 ++++++++++++
 .../MainIoCBeanConfigInjectConfigurerTest.java     | 122 ++++++++++++++++++++
 ...xTest.java => MainIoCBeanConfigInjectTest.java} |  58 +++++-----
 .../camel/main/MainIoCNewRouteBuilderTest.java     |   2 +-
 .../camel/support/PropertyBindingSupport.java      |  11 +-
 .../generator/openapi/RestDslGeneratorTest.java    |  10 +-
 .../generator/openapi/RestDslGeneratorV3Test.java  |  10 +-
 22 files changed, 532 insertions(+), 164 deletions(-)
 copy core/camel-api/src/main/java/org/apache/camel/{BeanInject.java => BeanConfigInject.java} (80%)
 create mode 100644 core/camel-api/src/main/java/org/apache/camel/CamelContextLifecycle.java
 copy core/{camel-main/src/test/java/org/apache/camel/main/MyFoo.java => camel-core/src/test/java/org/apache/camel/impl/FooBarConfig.java} (83%)
 create mode 100644 core/camel-main/src/test/java/org/apache/camel/main/MainIoCBeanConfigInjectConfigurerTest.java
 copy core/camel-main/src/test/java/org/apache/camel/main/{MainIoCNewRouteBuilderComplexTest.java => MainIoCBeanConfigInjectTest.java} (63%)