This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch camel-master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git.
discard 9253684 Shiro native support #1844 discard 19ab48b Upgrade to Camel 3.6.0 discard 661cdb4 Remove createEndpoint method override in QuarkusVertxWebsocketComponent discard 64d82b7 Remove QuarkusVertxHttpBinding add 62a4201 Crypto extension requires reflective access to DigitalSignatureConstants add 26d7968 CAMEL-QUARKUS-1720: Added Postgres replication slot native support new 47796a2 Remove QuarkusVertxHttpBinding new 4ac4aea Remove createEndpoint method override in QuarkusVertxWebsocketComponent new a417bf3 Upgrade to Camel 3.6.0 new 2628b89 Shiro native support #1844 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 (9253684) \ N -- N -- N refs/heads/camel-master (2628b89) 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 4 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: .../reference/extensions/pg-replication-slot.adoc | 8 +- .../reference/components/pg-replication-slot.adoc | 6 +- .../pg-replication-slot/integration-test/pom.xml | 100 --------------------- .../replication/slot/it/PgReplicationSlotTest.java | 34 ------- extensions-jvm/pom.xml | 1 - .../crypto/deployment/CryptoProcessor.java | 9 ++ .../pg-replication-slot/deployment/pom.xml | 8 +- .../deployment/PgReplicationSlotProcessor.java | 17 ++-- .../pg-replication-slot/pom.xml | 1 - .../pg-replication-slot/runtime/pom.xml | 9 +- .../slot/PostgresDriverRegistrationRecorder.java | 14 +-- .../main/resources/META-INF/quarkus-extension.yaml | 3 +- extensions/pom.xml | 1 + .../component/crypto/it/CryptoResource.java | 19 +++- .../quarkus/component/crypto/it/CryptoTest.java | 4 +- .../{jpa => pg-replication-slot}/pom.xml | 27 +++--- .../slot/it/PgReplicationSlotResource.java | 28 +++--- .../slot/it/PgReplicationSlotRoute.java | 45 ++++++++++ .../replication/slot/it/PgReplicationSlotIT.java | 4 +- .../replication/slot/it/PgReplicationSlotTest.java | 93 +++++++++++++++++++ .../slot/it/PgReplicationSlotTestResource.java | 75 ++++++++++++++++ integration-tests/pom.xml | 1 + tooling/scripts/test-categories.yaml | 1 + 23 files changed, 307 insertions(+), 201 deletions(-) delete mode 100644 extensions-jvm/pg-replication-slot/integration-test/pom.xml delete mode 100644 extensions-jvm/pg-replication-slot/integration-test/src/test/java/org/apache/camel/quarkus/component/pg/replication/slot/it/PgReplicationSlotTest.java rename {extensions-jvm => extensions}/pg-replication-slot/deployment/pom.xml (94%) rename {extensions-jvm => extensions}/pg-replication-slot/deployment/src/main/java/org/apache/camel/quarkus/component/pg/replication/slot/deployment/PgReplicationSlotProcessor.java (68%) rename {extensions-jvm => extensions}/pg-replication-slot/pom.xml (97%) rename {extensions-jvm => extensions}/pg-replication-slot/runtime/pom.xml (94%) copy extensions-jvm/avro-rpc/runtime/src/main/java/org/apache/camel/quarkus/component/avro/AvroRecorder.java => extensions/pg-replication-slot/runtime/src/main/java/org/apache/camel/quarkus/component/pg/replication/slot/PostgresDriverRegistrationRecorder.java (72%) rename {extensions-jvm => extensions}/pg-replication-slot/runtime/src/main/resources/META-INF/quarkus-extension.yaml (97%) copy integration-tests/{jpa => pg-replication-slot}/pom.xml (86%) rename {extensions-jvm/pg-replication-slot/integration-test => integration-tests/pg-replication-slot}/src/main/java/org/apache/camel/quarkus/component/pg/replication/slot/it/PgReplicationSlotResource.java (62%) create mode 100644 integration-tests/pg-replication-slot/src/main/java/org/apache/camel/quarkus/component/pg/replication/slot/it/PgReplicationSlotRoute.java copy extensions/aws2-lambda/runtime/src/main/org/apache/lambda/it/Aws2LambdaIT.java => integration-tests/pg-replication-slot/src/test/java/org/apache/camel/quarkus/component/pg/replication/slot/it/PgReplicationSlotIT.java (87%) create mode 100644 integration-tests/pg-replication-slot/src/test/java/org/apache/camel/quarkus/component/pg/replication/slot/it/PgReplicationSlotTest.java create mode 100644 integration-tests/pg-replication-slot/src/test/java/org/apache/camel/quarkus/component/pg/replication/slot/it/PgReplicationSlotTestResource.java