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 2022/01/31 14:00:41 UTC

[camel] branch regen_bot updated (4937902 -> 05c5112)

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.


 discard 4937902  Regen for commit a7ba2eef91f645bd56bfb8d22047fbde0b2c9c87
     add 3140763  CAMEL-17567: camel-main - Add basePackageScan to auto discover route builders, configuration classes, and type converters.
     add 1752e73  Regen
     add 05c5112  CAMEL-17567: camel-main - Add basePackageScan to auto discover route builders, configuration classes, and type converters.

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   (4937902)
            \
             N -- N -- N   refs/heads/regen_bot (05c5112)

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:
 .../main/camel-main-configuration-metadata.json    |   3 +-
 .../org/apache/camel/ExtendedCamelContext.java     |  14 +++
 .../camel/spi/AnnotationScanTypeConverters.java    |   2 +-
 .../camel/impl/engine/AbstractCamelContext.java    |  16 ++-
 .../impl/engine/DefaultCamelBeanPostProcessor.java |   6 ++
 .../apache/camel/impl/engine/DefaultInjector.java  |  11 ++-
 .../converter/AnnotationTypeConverterLoader.java   |  21 ++--
 .../camel/impl/converter/DefaultTypeConverter.java |  12 ++-
 .../camel/impl/ExtendedCamelContextConfigurer.java |   6 ++
 .../camel/impl/lw/LightweightCamelContext.java     |  10 ++
 .../impl/lw/LightweightRuntimeCamelContext.java    |  12 +++
 .../MainConfigurationPropertiesConfigurer.java     |  20 ++--
 .../camel-main-configuration-metadata.json         |   3 +-
 core/camel-main/src/main/docs/main.adoc            |  76 ++++++++++++++-
 .../org/apache/camel/main/BaseMainSupport.java     |  53 +++++++++-
 .../org/apache/camel/main/CamelConfiguration.java} |  16 +--
 .../src/main/java/org/apache/camel/main/Main.java  |  26 ++++-
 .../apache/camel/main/MainCommandLineSupport.java  |   3 +-
 .../camel/main/MainConfigurationProperties.java    | 107 +++++++++++++--------
 .../java/org/apache/camel/main/MainSupport.java    |   7 +-
 .../org/apache/camel/main/RoutesConfigurer.java    |  14 +--
 .../org/apache/camel/main/ContextEventsTest.java   |   2 +-
 .../org/apache/camel/main/MainCustomizerTest.java  |   8 +-
 .../camel/main/MainIoCNewRouteBuilderTest.java     |   2 +-
 .../java/org/apache/camel/main/MainIoCTest.java    |   4 +-
 .../main/MainRoutesCollectorPackageScanTest.java   |  10 +-
 .../org/apache/camel/main/scan/MyConverter.java}   |  16 +--
 .../camel/main/scan/MyScanConfiguration.java       |  17 ++--
 .../ROOT/pages/camel-3x-upgrade-guide-3_16.adoc    |  14 +++
 .../modules/ROOT/pages/camel-3x-upgrade-guide.adoc |   1 +
 30 files changed, 402 insertions(+), 110 deletions(-)
 copy core/{camel-api/src/main/java/org/apache/camel/cloud/ServiceFactory.java => camel-main/src/main/java/org/apache/camel/main/CamelConfiguration.java} (80%)
 copy core/{camel-core/src/test/java/org/apache/camel/component/bean/MyRequestBean.java => camel-main/src/test/java/org/apache/camel/main/scan/MyConverter.java} (78%)
 copy components/camel-spring-xml/src/test/java/org/apache/camel/spring/StartAndStopRouteBuilder.java => core/camel-main/src/test/java/org/apache/camel/main/scan/MyScanConfiguration.java (69%)
 create mode 100644 docs/user-manual/modules/ROOT/pages/camel-3x-upgrade-guide-3_16.adoc