This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.
discard dbb2a1d Adapt to latest Camel API changes discard 8e368c5 Remove redundant reflective class registration for SunJaxb21NamespacePrefixMapper discard 1135277 Sync minio version with quarkiverse version due to incompatible okhttp version between quarkus and recent minio version discard 72e72f0 Camel 3.12 : Dataformat fix attributes names discard da83001 Upgrade spark and hadoop versions discard 3d63b45 Upgrade Camel to 3.12.0 add 4b1a484 Updated CHANGELOG.md add 29950b4 Expand OpenApi Java test coverage new 6f7e511 Upgrade Camel to 3.12.0 new 267dafd Upgrade spark and hadoop versions new c5b92dd Camel 3.12 : Dataformat fix attributes names new 138bea1 Sync minio version with quarkiverse version due to incompatible okhttp version between quarkus and recent minio version new 314a0d5 Remove redundant reflective class registration for SunJaxb21NamespacePrefixMapper new a52e35f Adapt to latest Camel API changes 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 (dbb2a1d) \ N -- N -- N refs/heads/camel-main (a52e35f) 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: CHANGELOG.md | 2 + integration-tests/openapi-java/pom.xml | 41 +++- .../component/openapijava/it/OpenApiResource.java} | 20 +- .../component/openapijava/it/OpenApiRoutes.java | 84 +++++--- .../it/{OpenApiIT.java => OpenApiContentType.java} | 15 +- .../component/openapijava/it/OpenApiTest.java | 216 -------------------- .../openapijava/it/common/OpenApiTest.java | 224 +++++++++++++++++++++ .../component/openapijava/it/v2/OpenApiV2IT.java | 7 +- .../component/openapijava/it/v2/OpenApiV2Test.java | 139 +++++++++++++ .../openapijava/it/v2/OpenApiV2TestProfile.java | 15 +- .../component/openapijava/it/v3/OpenApiV3IT.java | 7 +- .../component/openapijava/it/v3/OpenApiV3Test.java | 95 +++++++++ .../openapijava/it/v3/OpenApiV3TestProfile.java | 15 +- 13 files changed, 605 insertions(+), 275 deletions(-) copy integration-tests/{rest-openapi/src/main/java/org/apache/camel/quarkus/component/rest/openapi/it/RestOpenapiResource.java => openapi-java/src/main/java/org/apache/camel/quarkus/component/openapijava/it/OpenApiResource.java} (70%) rename integration-tests/openapi-java/src/test/java/org/apache/camel/quarkus/component/openapijava/it/{OpenApiIT.java => OpenApiContentType.java} (76%) delete mode 100644 integration-tests/openapi-java/src/test/java/org/apache/camel/quarkus/component/openapijava/it/OpenApiTest.java create mode 100644 integration-tests/openapi-java/src/test/java/org/apache/camel/quarkus/component/openapijava/it/common/OpenApiTest.java copy extensions/aws2-lambda/runtime/src/main/org/apache/lambda/it/Aws2LambdaIT.java => integration-tests/openapi-java/src/test/java/org/apache/camel/quarkus/component/openapijava/it/v2/OpenApiV2IT.java (78%) create mode 100644 integration-tests/openapi-java/src/test/java/org/apache/camel/quarkus/component/openapijava/it/v2/OpenApiV2Test.java copy integration-test-groups/foundation/core-languages/src/main/java/org/apache/camel/quarkus/core/languages/it/ExchangePropertyLanguageRoutes.java => integration-tests/openapi-java/src/test/java/org/apache/camel/quarkus/component/openapijava/it/v2/OpenApiV2TestProfile.java (69%) copy extensions/aws2-lambda/runtime/src/main/org/apache/lambda/it/Aws2LambdaIT.java => integration-tests/openapi-java/src/test/java/org/apache/camel/quarkus/component/openapijava/it/v3/OpenApiV3IT.java (78%) create mode 100644 integration-tests/openapi-java/src/test/java/org/apache/camel/quarkus/component/openapijava/it/v3/OpenApiV3Test.java copy integration-test-groups/foundation/core-languages/src/main/java/org/apache/camel/quarkus/core/languages/it/ExchangePropertyLanguageRoutes.java => integration-tests/openapi-java/src/test/java/org/apache/camel/quarkus/component/openapijava/it/v3/OpenApiV3TestProfile.java (69%)