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/11/01 00:51:38 UTC

[camel-spring-boot] branch automatic-periodic-sync updated (b32f367 -> 95149a4)

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 b32f367  [create-pull-request] automated change
     add 1155a26  [create-pull-request] automated change
     add d935402  Remove crypto-cms as its removed
     add 773d24c  Regen
     add eaf68b5  Camel 17061 (#400)
     add 46500cb  CAMEL-17061: camel-springdoc-starter -- Integration with Springdoc.
     add 26e8528  CAMEL-17061: camel-springdoc-starter -- Integration with Springdoc.
     add 67c4ba9  CAMEL-17061: camel-springdoc-starter -- Integration with Springdoc.
     add 95149a4  [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   (b32f367)
            \
             N -- N -- N   refs/heads/automatic-periodic-sync (95149a4)

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 -
 .../camel/springboot/catalog/components/log.json   |   2 +-
 .../springboot/catalog/components/salesforce.json  |   4 +
 .../springboot/catalog/dataformats/any23.json      |   2 +-
 .../springboot/catalog/dataformats/fhirJson.json   |   2 +-
 .../springboot/catalog/dataformats/fhirXml.json    |   2 +-
 .../springboot/catalog/dataformats/protobuf.json   |   2 +-
 .../camel/springboot/catalog/languages/bean.json   |   2 +-
 .../springboot/catalog/languages/jsonpath.json     |   2 +-
 .../camel/springboot/catalog/languages/xpath.json  |   2 +-
 .../springboot/catalog/languages/xtokenize.json    |   2 +-
 .../camel-openapi-java-starter/pom.xml             |   5 +
 .../src/main/docs/openapi-java-starter.adoc        |  29 +++
 .../src/main/docs/openapi-java.json                |  18 +-
 .../openapi/OpenApiAutoConfiguration.java          | 216 +++++++++++++++++++++
 .../springboot/openapi/OpenApiConfiguration.java   |  33 ++--
 .../src/main/resources/META-INF/spring.factories   |   2 +-
 .../src/main/docs/salesforce.json                  |  12 ++
 .../SalesforceComponentConfiguration.java          |  31 +++
 .../camel-springdoc-starter}/pom.xml               |  72 +++----
 .../src/main/docs/springdoc-starter.adoc           |  29 +++
 .../src/main/docs/springdoc.json                   |  19 ++
 .../springdoc/SpringdocAutoConfiguration.java      | 187 ++++++++++++++++++
 .../springdoc/SpringdocConfiguration.java          |  33 ++--
 .../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    |   0
 components-starter/pom.xml                         |   1 +
 .../spring-boot/examples/json/openapi-java.json    |  18 +-
 .../spring-boot/examples/json/salesforce.json      |  12 ++
 .../spring-boot/examples/json/springdoc.json       |  19 ++
 .../spring-boot/partials/openapi-java-starter.adoc |  29 +++
 pom.xml                                            |   1 +
 tooling/camel-spring-boot-bom/pom.xml              |   5 +
 tooling/camel-spring-boot-dependencies/pom.xml     |   5 +
 36 files changed, 704 insertions(+), 97 deletions(-)
 create mode 100644 components-starter/camel-openapi-java-starter/src/main/docs/openapi-java-starter.adoc
 create mode 100644 components-starter/camel-openapi-java-starter/src/main/java/org/apache/camel/springboot/openapi/OpenApiAutoConfiguration.java
 copy core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/actuate/endpoint/CamelRoutesEndpointProperties.java => components-starter/camel-openapi-java-starter/src/main/java/org/apache/camel/springboot/openapi/OpenApiConfiguration.java (66%)
 copy components-starter/{camel-coap-starter => camel-openapi-java-starter}/src/main/resources/META-INF/spring.factories (94%)
 copy {catalog/camel-catalog-provider-springboot => components-starter/camel-springdoc-starter}/pom.xml (54%)
 create mode 100644 components-starter/camel-springdoc-starter/src/main/docs/springdoc-starter.adoc
 create mode 100644 components-starter/camel-springdoc-starter/src/main/docs/springdoc.json
 create mode 100644 components-starter/camel-springdoc-starter/src/main/java/org/apache/camel/springboot/springdoc/SpringdocAutoConfiguration.java
 copy core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/actuate/endpoint/CamelRoutesEndpointProperties.java => components-starter/camel-springdoc-starter/src/main/java/org/apache/camel/springboot/springdoc/SpringdocConfiguration.java (66%)
 copy {dsl-starter/camel-yaml-dsl-starter => components-starter/camel-springdoc-starter}/src/main/resources/META-INF/LICENSE.txt (100%)
 copy {dsl-starter/camel-yaml-dsl-starter => components-starter/camel-springdoc-starter}/src/main/resources/META-INF/NOTICE.txt (100%)
 copy components-starter/{camel-coap-starter => camel-springdoc-starter}/src/main/resources/META-INF/spring.factories (94%)
 copy components-starter/{camel-openapi-java-starter => camel-springdoc-starter}/src/main/resources/META-INF/spring.provides (100%)
 create mode 100644 docs/components/modules/spring-boot/examples/json/springdoc.json
 create mode 100644 docs/components/modules/spring-boot/partials/openapi-java-starter.adoc