This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a change to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
discard 362ab5d596 Upgrade Camel to 4.6.0 add d291182b09 Http: use FIPS complaiant keystore and truststore (#5968) add 09aa7fe4dc Remove findbugs exclusion from quarkus-grpc-common in gRPC extension (#5978) add e6a6743a61 Bump io.quarkiverse.artemis:quarkus-artemis-bom from 3.2.1 to 3.3.0 (#5984) add e490008680 Restore file tests original class naming add ee206ec774 Create AWS bedrock extensions (#5987) add dfe70e0326 Fix various ClassNotFoundExceptions for spring-redis extension new 427b29dc27 Upgrade Camel to 4.6.0 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 (362ab5d596) \ N -- N -- N refs/heads/camel-main (427b29dc27) 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 1 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: catalog/pom.xml | 26 ++ .../components/aws-bedrock-agent-runtime.yml | 13 + .../ROOT/examples/components/aws-bedrock-agent.yml | 13 + .../ROOT/examples/components/aws-bedrock.yml | 13 + docs/modules/ROOT/nav.adoc | 1 + .../pages/reference/extensions/aws-bedrock.adoc | 47 +++ extensions-jvm/spring-redis/runtime/pom.xml | 8 +- extensions-support/spring/shade/core/pom.xml | 1 + .../aws-bedrock}/deployment/pom.xml | 8 +- .../bedrock/deployment/AwsBedrockProcessor.java} | 6 +- extensions/{qdrant => aws-bedrock}/pom.xml | 4 +- .../aws-bedrock}/runtime/pom.xml | 11 +- .../main/resources/META-INF/quarkus-extension.yaml | 6 +- extensions/grpc/runtime/pom.xml | 4 - extensions/pom.xml | 1 + integration-test-groups/http/README.adoc | 6 +- .../http/common/generate-certs.sh | 67 ++++ .../component/http/common/CommonProducers.java | 10 +- .../src/main/resources/application.properties | 4 +- .../main/resources/jsse/client-truststore.pkcs12 | Bin 0 -> 2246 bytes .../common/src/main/resources/jsse/keystore.p12 | Bin 2421 -> 0 bytes .../main/resources/jsse/localhost-keystore.pkcs12 | Bin 0 -> 3638 bytes .../common/src/main/resources/jsse/truststore.jks | Bin 1018 -> 0 bytes integration-test-groups/http/common/v3.ext | 3 + integration-tests-jvm/spring-redis/pom.xml | 38 +++ .../spring/redis/it/SpringRedisProducers.java | 54 +++ .../spring/redis/it/SpringRedisResource.java | 27 +- .../spring/redis/it/SpringRedisRoutes.java | 28 +- .../component/spring/redis/it/SpringRedisTest.java | 21 +- .../spring/redis/it/SpringRedisTestResource.java | 47 ++- .../src/test/resources/redis.conf} | 3 +- integration-tests/aws2/pom.xml | 17 + .../camel/quarkus/component/aws2/CamelRoute.java | 4 + .../file/it/{NonFlakyFileIT.java => FileIT.java} | 2 +- .../it/{NonFlakyFileTest.java => FileTest.java} | 48 +-- ...FileTestResource.java => FileTestResource.java} | 2 +- pom.xml | 10 +- poms/bom/pom.xml | 37 +- poms/bom/src/main/generated/flattened-full-pom.xml | 377 +++++++++++---------- .../src/main/generated/flattened-reduced-pom.xml | 89 +++-- .../generated/flattened-reduced-verbose-pom.xml | 145 +++++--- rename.sh | 13 + .../camel-quarkus-banned-dependencies-spring.xml | 1 + .../enforcer-rules/quarkus-banned-dependencies.xsl | 2 +- 44 files changed, 823 insertions(+), 394 deletions(-) create mode 100644 docs/modules/ROOT/examples/components/aws-bedrock-agent-runtime.yml create mode 100644 docs/modules/ROOT/examples/components/aws-bedrock-agent.yml create mode 100644 docs/modules/ROOT/examples/components/aws-bedrock.yml create mode 100644 docs/modules/ROOT/pages/reference/extensions/aws-bedrock.adoc copy {extensions-jvm/langchain4j-embeddings => extensions/aws-bedrock}/deployment/pom.xml (88%) copy extensions/{attachments/deployment/src/main/java/org/apache/camel/quarkus/component/attachments/deployment/AttachmentsProcessor.java => aws-bedrock/deployment/src/main/java/org/apache/camel/quarkus/component/aws/bedrock/deployment/AwsBedrockProcessor.java} (86%) copy extensions/{qdrant => aws-bedrock}/pom.xml (93%) copy {extensions-jvm/langchain4j-embeddings => extensions/aws-bedrock}/runtime/pom.xml (90%) copy {extensions-core/yaml-io => extensions/aws-bedrock}/runtime/src/main/resources/META-INF/quarkus-extension.yaml (91%) create mode 100755 integration-test-groups/http/common/generate-certs.sh create mode 100644 integration-test-groups/http/common/src/main/resources/jsse/client-truststore.pkcs12 delete mode 100644 integration-test-groups/http/common/src/main/resources/jsse/keystore.p12 create mode 100644 integration-test-groups/http/common/src/main/resources/jsse/localhost-keystore.pkcs12 delete mode 100644 integration-test-groups/http/common/src/main/resources/jsse/truststore.jks create mode 100644 integration-test-groups/http/common/v3.ext create mode 100644 integration-tests-jvm/spring-redis/src/main/java/org/apache/camel/quarkus/component/spring/redis/it/SpringRedisProducers.java copy integration-test-groups/azure/azure-storage-queue/src/main/java/org/apache/camel/quarkus/component/azure/storage/queue/it/Routes.java => integration-tests-jvm/spring-redis/src/main/java/org/apache/camel/quarkus/component/spring/redis/it/SpringRedisRoutes.java (56%) copy integration-tests/smb/src/test/java/org/apache/camel/quarkus/component/smb/it/SmbTestResource.java => integration-tests-jvm/spring-redis/src/test/java/org/apache/camel/quarkus/component/spring/redis/it/SpringRedisTestResource.java (56%) copy integration-tests-jvm/{dsl-modeline/src/main/resources/myapp.properties => spring-redis/src/test/resources/redis.conf} (97%) rename integration-tests/file/src/test/java/org/apache/camel/quarkus/component/file/it/{NonFlakyFileIT.java => FileIT.java} (95%) rename integration-tests/file/src/test/java/org/apache/camel/quarkus/component/file/it/{NonFlakyFileTest.java => FileTest.java} (82%) rename integration-tests/file/src/test/java/org/apache/camel/quarkus/component/file/it/{NonFlakyFileTestResource.java => FileTestResource.java} (98%) create mode 100755 rename.sh