This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch quarkus-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
discard 27fedf8473 Disable OptaPlanner native profile due to #3899 discard 37d89e13fc Upgrade Quarkus to 2.11.0.CR1 add e952348d93 Updated CHANGELOG.md add 6a5abae88a Add JQ extension add 91e644b684 Add test for property placeholders and non-resolvable config profile properties add fdf5beaa8c Add test for @Singleton scoped beans in dev mode new ff31630fe2 Upgrade Quarkus to 2.11.0.CR1 new b96735db93 Disable OptaPlanner native profile due to #3899 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 (27fedf8473) \ N -- N -- N refs/heads/quarkus-main (b96735db93) 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 2 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 | 3 + docs/modules/ROOT/examples/languages/jq.yml | 13 ++ docs/modules/ROOT/nav.adoc | 1 + .../ROOT/pages/reference/extensions/jq.adoc | 71 +++++++++ extensions-core/core/deployment/pom.xml | 10 ++ .../CamelConfigurationPlaceholdersTest.java} | 44 +++--- .../CamelDevModeSingletonBeanTest.java} | 62 ++++---- extensions/{jackson-avro => jq}/deployment/pom.xml | 16 ++- .../component/jq/deployment/JqProcessor.java} | 21 ++- .../parent-pom.xml => extensions/jq/pom.xml | 8 +- extensions/{jackson-avro => jq}/runtime/pom.xml | 22 +-- extensions/jq/runtime/src/main/doc/usage.adoc | 28 ++++ .../quarkus/component/jq/CamelJqRecorder.java} | 23 ++- .../main/resources/META-INF/quarkus-extension.yaml | 6 +- extensions/pom.xml | 1 + .../jq}/pom.xml | 15 +- .../camel/quarkus/component/jq/it/Book.java} | 49 ++++--- .../camel/quarkus/component/jq/it/JqResource.java | 158 +++++++++++++++++++++ .../camel/quarkus/component/jq/it/JqRoutes.java | 58 ++++++++ .../jq/src/main}/resources/application.properties | 4 +- .../apache/camel/quarkus/component/jq/it/JqIT.java | 4 +- .../camel/quarkus/component/jq/it/JqTest.java | 89 ++++++++++++ integration-tests/pom.xml | 1 + pom.xml | 1 + poms/bom/pom.xml | 25 ++++ poms/bom/src/main/generated/flattened-full-pom.xml | 25 ++++ .../src/main/generated/flattened-reduced-pom.xml | 25 ++++ .../generated/flattened-reduced-verbose-pom.xml | 25 ++++ tooling/scripts/test-categories.yaml | 1 + 29 files changed, 680 insertions(+), 129 deletions(-) create mode 100644 docs/modules/ROOT/examples/languages/jq.yml create mode 100644 docs/modules/ROOT/pages/reference/extensions/jq.adoc copy extensions-core/core/deployment/src/test/java/org/apache/camel/quarkus/core/{deployment/main/CamelMainInjectTest.java => runtime/CamelConfigurationPlaceholdersTest.java} (70%) copy extensions-core/core/deployment/src/test/java/org/apache/camel/quarkus/core/{deployment/main/CamelMainInjectTest.java => runtime/CamelDevModeSingletonBeanTest.java} (57%) copy extensions/{jackson-avro => jq}/deployment/pom.xml (78%) copy extensions/{headersmap/deployment/src/main/java/org/apache/camel/quarkus/component/headersmap/deployment/HeadersmapProcessor.java => jq/deployment/src/main/java/org/apache/camel/quarkus/component/jq/deployment/JqProcessor.java} (64%) copy tooling/create-extension-templates/parent-pom.xml => extensions/jq/pom.xml (86%) copy extensions/{jackson-avro => jq}/runtime/pom.xml (80%) create mode 100644 extensions/jq/runtime/src/main/doc/usage.adoc copy extensions/{qute/runtime/src/main/java/org/apache/camel/quarkus/component/qute/CamelQuteRecorder.java => jq/runtime/src/main/java/org/apache/camel/quarkus/component/jq/CamelJqRecorder.java} (64%) copy extensions/{atom => jq}/runtime/src/main/resources/META-INF/quarkus-extension.yaml (90%) copy {integration-test-groups/foundation/component-name-resolver => integration-tests/jq}/pom.xml (89%) copy integration-tests/{dataformat/src/main/java/org/apache/camel/quarkus/component/dataformat/it/model/TestPojo.java => jq/src/main/java/org/apache/camel/quarkus/component/jq/it/Book.java} (58%) create mode 100644 integration-tests/jq/src/main/java/org/apache/camel/quarkus/component/jq/it/JqResource.java create mode 100644 integration-tests/jq/src/main/java/org/apache/camel/quarkus/component/jq/it/JqRoutes.java copy {extensions/kafka/deployment/src/test => integration-tests/jq/src/main}/resources/application.properties (87%) copy integration-test-groups/foundation/eip/src/test/java/org/apache/camel/quarkus/eip/it/EipIT.java => integration-tests/jq/src/test/java/org/apache/camel/quarkus/component/jq/it/JqIT.java (91%) create mode 100644 integration-tests/jq/src/test/java/org/apache/camel/quarkus/component/jq/it/JqTest.java