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/03/20 01:06:43 UTC

[camel-spring-boot] branch automatic-periodic-sync updated (6223a36 -> 8f36a43)

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

github-bot pushed a change to branch automatic-periodic-sync
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git.


    omit 6223a36  [create-pull-request] automated change
     add 0fc7a15  [create-pull-request] automated change
     add 59340b5  Regen
     add 6fc490a  Regen
     add 58212bf  CAMEL-15963 Create a Google Cloud Functions component
     add d28b788  Google-Cloud-Functions: Added to kit
     add ccb3a51  Google Functions Starter: Added test
     add 3f949aa  CAMEL-16376: camel-spring-boot - Upgrade to Spring Boot 2.4.4
     add 48460b9  Regen
     add 8f36a43  [create-pull-request] automated change

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   (6223a36)
            \
             N -- N -- N   refs/heads/automatic-periodic-sync (8f36a43)

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:
 .../camel/springboot/catalog/components.properties |  1 +
 .../catalog/components/aws-secrets-manager.json    |  4 +-
 .../catalog/components/google-functions.json       | 38 ++++++++++
 .../camel/springboot/catalog/others.properties     |  1 +
 .../catalog/others/google-functions.json           | 14 ++++
 components-starter/README.adoc                     |  8 +-
 .../pom.xml                                        |  4 +-
 .../src/main/docs/google-functions-starter.adoc}   | 16 ++--
 ...eCloudFunctionsComponentAutoConfiguration.java} | 20 ++---
 ...oogleCloudFunctionsComponentConfiguration.java} | 11 +--
 .../src/main/resources/META-INF/LICENSE.txt        |  0
 .../src/main/resources/META-INF/NOTICE.txt         |  0
 .../src/main/resources/META-INF/spring.factories   |  2 +-
 .../src/main/resources/META-INF/spring.provides    |  2 +-
 components-starter/pom.xml                         |  1 +
 .../src/main/docs/spring-boot.adoc                 |  2 +-
 .../spring/boot/CamelConfigurationProperties.java  |  8 +-
 .../ROOT/pages/google-functions-starter.adoc       | 16 ++--
 docs/modules/ROOT/pages/list.adoc                  |  8 +-
 docs/modules/ROOT/pages/spring-boot.adoc           |  2 +-
 pom.xml                                            |  2 +-
 ...ueryTest.java => CamelGoogleFunctionsTest.java} |  4 +-
 tooling/camel-spring-boot-bom/pom.xml              |  5 ++
 tooling/camel-spring-boot-dependencies/pom.xml     | 85 +++++++++++++---------
 24 files changed, 166 insertions(+), 88 deletions(-)
 create mode 100644 catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/google-functions.json
 create mode 100644 catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/others/google-functions.json
 copy components-starter/{camel-aws-secrets-manager-starter => camel-google-functions-starter}/pom.xml (94%)
 copy components-starter/{camel-websocket-jsr356-starter/src/main/docs/websocket-jsr356-starter.adoc => camel-google-functions-starter/src/main/docs/google-functions-starter.adoc} (52%)
 copy components-starter/{camel-json-validator-starter/src/main/java/org/apache/camel/component/jsonvalidator/springboot/JsonValidatorComponentAutoConfiguration.java => camel-google-functions-starter/src/main/java/org/apache/camel/component/google/functions/springboot/GoogleCloudFunctionsComponentAutoConfiguration.java} (83%)
 copy components-starter/{camel-json-validator-starter/src/main/java/org/apache/camel/component/jsonvalidator/springboot/JsonValidatorComponentConfiguration.java => camel-google-functions-starter/src/main/java/org/apache/camel/component/google/functions/springboot/GoogleCloudFunctionsComponentConfiguration.java} (88%)
 copy {tooling/camel-spring-boot-docs-maven-plugin => components-starter/camel-google-functions-starter}/src/main/resources/META-INF/LICENSE.txt (100%)
 copy {tooling/camel-spring-boot-docs-maven-plugin => components-starter/camel-google-functions-starter}/src/main/resources/META-INF/NOTICE.txt (100%)
 copy components-starter/{camel-avro-starter => camel-google-functions-starter}/src/main/resources/META-INF/spring.factories (90%)
 copy components-starter/{camel-ahc-ws-starter => camel-google-functions-starter}/src/main/resources/META-INF/spring.provides (96%)
 copy components-starter/camel-websocket-jsr356-starter/src/main/docs/websocket-jsr356-starter.adoc => docs/modules/ROOT/pages/google-functions-starter.adoc (52%)
 copy tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/{CamelGoogleBigqueryTest.java => CamelGoogleFunctionsTest.java} (91%)