This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a change to branch quarkus-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
discard c1c8280fb2 Disable OptaPlanner tests due to #4116 discard 9496301a9c Disable master-openshift integration tests due to #4095 discard 20d0f95a8f Disable kubernetes integration tests due to #4095 discard ec78ea36a6 Upgrade Quarkus to 2.14.0.CR1 add fd72df3661 Update release guide add 89d31b2b62 Increase test coverage of ref extension add ae08e2eb69 Add tests for rest-openapi extension (apache#4117) add 6db8e771d8 Updated CHANGELOG.md add c9585f539e Adjust the set of components to search in catalog tests add bcc89fa7f1 Add CI step to test the catalog add 6e7478a668 kubernetes: add documentation related to cluster service #4086 new 00d230fd36 Upgrade Quarkus to 2.14.0.CR1 new f59eaba75f Disable kubernetes integration tests due to #4095 new f669972288 Disable master-openshift integration tests due to #4095 new 85258c64b0 Disable OptaPlanner tests due to #4116 new 007ebc870d Disable tests for native mode serialization due to #4148 new c102221733 Disable XStream native tests due to #4149 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 (c1c8280fb2) \ N -- N -- N refs/heads/quarkus-main (c102221733) 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. The 6 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .github/workflows/ci-build.yaml | 6 ++ CHANGELOG.md | 9 ++ .../quarkus/QuarkusRuntimeProviderTest.java | 15 ++-- .../pages/contributor-guide/release-guide.adoc | 5 +- .../pages/reference/extensions/kubernetes.adoc | 31 +++++++ .../ROOT/pages/reference/extensions/master.adoc | 8 ++ .../pages/reference/extensions/rest-openapi.adoc | 30 +++++++ .../runtime/src/main/doc/configuration.adoc | 29 ++++++ .../master/runtime/src/main/doc/configuration.adoc | 3 + .../rest-openapi/runtime/src/main/doc/usage.adoc | 25 ++++++ integration-test-groups/foundation/ref/pom.xml | 19 +++- .../quarkus/component/ref/it/RefResource.java | 52 +++++++++-- .../camel/quarkus/component/ref/it/RefTest.java | 20 +++-- .../camel/quarkus/component/http/it/HttpTest.java | 2 + .../messaging/jms/AbstractJmsMessagingTest.java | 2 + integration-tests/rest-openapi/pom.xml | 38 +++++++- .../component/rest/openapi/it/RestOpenApiBean.java | 23 +++-- .../rest/openapi/it/RestOpenApiRoutes.java | 15 +++- .../rest/openapi/it/RestOpenapiResource.java | 40 ++++++++- .../src/main/resources/application.properties | 3 +- .../rest-openapi/src/main/resources/openapi.json | 100 +++++++++++++++++++++ .../component/rest/openapi/it/RestOpenapiTest.java | 50 ++++++++++- .../quarkus/component/xstream/it/XstreamTest.java | 2 + pom.xml | 2 +- 24 files changed, 484 insertions(+), 45 deletions(-) create mode 100644 extensions/master/runtime/src/main/doc/configuration.adoc create mode 100644 extensions/rest-openapi/runtime/src/main/doc/usage.adoc copy integration-test-groups/foundation/bean/src/main/java/org/apache/camel/quarkus/component/bean/method/RegisteredBean.java => integration-tests/rest-openapi/src/main/java/org/apache/camel/quarkus/component/rest/openapi/it/RestOpenApiBean.java (69%) copy {integration-test-groups/aws2-quarkus-client/aws2-sqs => integration-tests/rest-openapi}/src/main/resources/application.properties (95%) create mode 100644 integration-tests/rest-openapi/src/main/resources/openapi.json