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 b0f3d98 [create-pull-request] automated change add de0c9ab [create-pull-request] automated change add 930088d CAMEL-15152: AWS2 Athena Spring Boot starter (see CAMEL-14992) add bed9421 Regen and add aws2-athena page to the website add a19359e Upgrade Spring Cloud Commons to version 2.2.3.RELEASE add 71a4de8 Upgrade Spring Cloud Consul to version 2.2.3.RELEASE add 4be9bb4 Upgrade Spring Cloud Netflix to version 2.2.3.RELEASE add c6d1c0e Upgrade Spring Cloud Zookeeper to version 2.2.2.RELEASE add aa37c45 came-health - Spring Boot. WIP add f539061 came-health - Spring Boot. WIP add 3793338 came-health - Spring Boot. add 4d10df2 Regen 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 (b0f3d98) \ N -- N -- N refs/heads/automatic-periodic-sync (4d10df2) 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 + .../springboot/catalog/components/aws2-athena.json | 86 ++++ components-starter/README.adoc | 5 +- .../pom.xml | 4 +- .../src/main/docs/aws2-athena-starter.adoc | 60 +++ .../Athena2ComponentAutoConfiguration.java} | 32 +- .../springboot/Athena2ComponentConfiguration.java | 437 +++++++++++++++++++++ .../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 +- .../src/main/docs/consul-starter.adoc | 5 +- .../health/HealthCheckRepositoryConfiguration.java | 56 --- components-starter/pom.xml | 1 + .../src/main/docs/spring-boot.adoc | 14 +- .../camel/spring/boot/CamelAutoConfiguration.java | 2 + .../health/CamelHealthAutoConfiguration.java | 55 --- .../health/CamelHealthCheckAutoConfiguration.java | 128 ++++++ .../CamelHealthCheckConfigurationProperties.java | 173 ++++++++ ...dicator.java => CamelHealthCheckIndicator.java} | 52 +-- .../health/AbstractHealthCheckConfiguration.java | 49 --- .../health/HealthCheckRoutesAutoConfiguration.java | 61 --- .../health/HealthCheckRoutesConfiguration.java | 36 -- .../health/HealthCheckVerboseConfiguration.java | 36 -- .../spring/boot/health/HealthConfiguration.java | 35 -- .../camel/spring/boot/health/HealthConstants.java | 24 -- .../src/main/resources/META-INF/spring.factories | 3 +- .../boot/actuate/health/CamelHealthTest.java | 12 +- docs/modules/ROOT/pages/aws2-athena-starter.adoc | 60 +++ docs/modules/ROOT/pages/consul-starter.adoc | 5 +- docs/modules/ROOT/pages/list.adoc | 5 +- docs/modules/ROOT/pages/spring-boot.adoc | 10 +- pom.xml | 8 +- ...ws2LambdaTest.java => CamelAws2AthenaTest.java} | 4 +- tooling/camel-spring-boot-dependencies/pom.xml | 10 + 35 files changed, 1042 insertions(+), 431 deletions(-) create mode 100644 catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/aws2-athena.json copy components-starter/{camel-aws2-cw-starter => camel-aws2-athena-starter}/pom.xml (95%) create mode 100644 components-starter/camel-aws2-athena-starter/src/main/docs/aws2-athena-starter.adoc copy components-starter/{camel-aws2-lambda-starter/src/main/java/org/apache/camel/component/aws2/lambda/springboot/Lambda2ComponentAutoConfiguration.java => camel-aws2-athena-starter/src/main/java/org/apache/camel/component/aws2/athena/springboot/Athena2ComponentAutoConfiguration.java} (81%) create mode 100644 components-starter/camel-aws2-athena-starter/src/main/java/org/apache/camel/component/aws2/athena/springboot/Athena2ComponentConfiguration.java copy {tooling/camel-spring-boot-docs-maven-plugin => components-starter/camel-aws2-athena-starter}/src/main/resources/META-INF/LICENSE.txt (100%) copy {tooling/camel-spring-boot-docs-maven-plugin => components-starter/camel-aws2-athena-starter}/src/main/resources/META-INF/NOTICE.txt (100%) copy components-starter/{camel-aws2-lambda-starter => camel-aws2-athena-starter}/src/main/resources/META-INF/spring.factories (94%) copy components-starter/{camel-ahc-ws-starter => camel-aws2-athena-starter}/src/main/resources/META-INF/spring.provides (97%) delete mode 100644 components-starter/camel-consul-starter/src/main/java/org/apache/camel/component/consul/springboot/health/HealthCheckRepositoryConfiguration.java delete mode 100644 core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/actuate/health/CamelHealthAutoConfiguration.java create mode 100644 core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/actuate/health/CamelHealthCheckAutoConfiguration.java create mode 100644 core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/actuate/health/CamelHealthCheckConfigurationProperties.java rename core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/actuate/health/{CamelHealthIndicator.java => CamelHealthCheckIndicator.java} (53%) delete mode 100644 core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/health/AbstractHealthCheckConfiguration.java delete mode 100644 core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/health/HealthCheckRoutesAutoConfiguration.java delete mode 100644 core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/health/HealthCheckRoutesConfiguration.java delete mode 100644 core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/health/HealthCheckVerboseConfiguration.java delete mode 100644 core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/health/HealthConfiguration.java delete mode 100644 core/camel-spring-boot/src/main/java/org/apache/camel/spring/boot/health/HealthConstants.java create mode 100644 docs/modules/ROOT/pages/aws2-athena-starter.adoc copy tests/camel-itest-spring-boot/src/test/java/org/apache/camel/itest/springboot/{CamelAws2LambdaTest.java => CamelAws2AthenaTest.java} (92%)