This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/maven/jakarta.annotation-jakarta.annotation-api-3.0.0
in repository https://gitbox.apache.org/repos/asf/camel.git
discard 56d88188e44 Bump jakarta.annotation:jakarta.annotation-api from 2.1.1
to 3.0.0
add 334db6914fc Camel-Hashicorp-Vault: Use latest Vault container image
version 1.16.1 (#13743)
add dbf8f34024c Bump debezium-version from 2.5.4.Final to 2.6.0.Final
(#13744)
add 9830f8a9a7b CAMEL-20758: make the subscription logic more flexible
add 3512b8a8569 Camel-Debezium: Upgrade to 2.6.0.Final and regen
add a14c62d6132 Bump com.google.cloud:libraries-bom from 26.34.0 to
26.37.0 (#13745)
add 65336357091 Bump org.opensearch.client:opensearch-java from 2.8.3 to
2.9.1 (#13746)
add c8667d26be7 Bump com.hazelcast:hazelcast from 5.3.6 to 5.3.7 (#13747)
add f0dc6e07e72 Bump aws-java-sdk2-version from 2.25.27 to 2.25.29 (#13750)
add 718feb6d295 Bump com.dropbox.core:dropbox-core-sdk from 6.0.0 to 6.1.0
(#13751)
add 77e077ab7ab Upgrade Opensearch test-infra image to version 2.13.0
(#13757)
add f916f82784e Bump jakarta.annotation:jakarta.annotation-api from 2.1.1
to 3.0.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 (56d88188e44)
\
N -- N -- N
refs/heads/dependabot/maven/jakarta.annotation-jakarta.annotation-api-3.0.0
(f916f82784e)
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.
No new revisions were added by this update.
Summary of changes:
.../camel/catalog/components/debezium-db2.json | 52 +--
.../camel/catalog/components/debezium-mongodb.json | 146 ++++----
.../camel/catalog/components/debezium-mysql.json | 60 ++--
.../camel/catalog/components/debezium-oracle.json | 356 +++++++++----------
.../catalog/components/debezium-postgres.json | 98 +++---
.../catalog/components/debezium-sqlserver.json | 218 ++++++------
.../debezium/DebeziumDb2ComponentConfigurer.java | 36 ++
.../debezium/DebeziumDb2EndpointConfigurer.java | 36 ++
.../debezium/DebeziumDb2EndpointUriFactory.java | 8 +-
.../Db2ConnectorEmbeddedDebeziumConfiguration.java | 99 ++++++
.../camel/component/debezium/debezium-db2.json | 52 +--
.../DebeziumMongodbComponentConfigurer.java | 42 ++-
.../DebeziumMongodbEndpointConfigurer.java | 42 ++-
.../DebeziumMongodbEndpointUriFactory.java | 9 +-
...goDbConnectorEmbeddedDebeziumConfiguration.java | 116 ++++++-
.../camel/component/debezium/debezium-mongodb.json | 146 ++++----
.../debezium/DebeziumMySqlComponentConfigurer.java | 48 +++
.../debezium/DebeziumMySqlEndpointConfigurer.java | 48 +++
.../debezium/DebeziumMySqlEndpointUriFactory.java | 10 +-
...ySqlConnectorEmbeddedDebeziumConfiguration.java | 132 ++++++++
.../camel/component/debezium/debezium-mysql.json | 60 ++--
.../DebeziumOracleComponentConfigurer.java | 72 +++-
.../debezium/DebeziumOracleEndpointConfigurer.java | 72 +++-
.../debezium/DebeziumOracleEndpointUriFactory.java | 14 +-
...acleConnectorEmbeddedDebeziumConfiguration.java | 193 +++++++++--
.../camel/component/debezium/debezium-oracle.json | 356 +++++++++----------
.../DebeziumPostgresComponentConfigurer.java | 66 +++-
.../DebeziumPostgresEndpointConfigurer.java | 66 +++-
.../DebeziumPostgresEndpointUriFactory.java | 13 +-
...gresConnectorEmbeddedDebeziumConfiguration.java | 191 ++++++++++-
.../component/debezium/debezium-postgres.json | 98 +++---
.../DebeziumSqlserverComponentConfigurer.java | 42 +++
.../DebeziumSqlserverEndpointConfigurer.java | 42 +++
.../DebeziumSqlserverEndpointUriFactory.java | 9 +-
...rverConnectorEmbeddedDebeziumConfiguration.java | 142 +++++++-
.../component/debezium/debezium-sqlserver.json | 218 ++++++------
.../camel/component/kafka/KafkaFetchRecords.java | 28 +-
.../{ProcessingResult.java => TopicHelper.java} | 47 ++-
.../subcription/DefaultSubscribeAdapter.java} | 32 +-
.../support/subcription/SubscribeAdapter.java} | 24 +-
.../consumer/support/subcription/TopicInfo.java} | 29 +-
.../dsl/DebeziumDb2ComponentBuilderFactory.java | 115 +++++++
.../DebeziumMongodbComponentBuilderFactory.java | 135 ++++++--
.../dsl/DebeziumMysqlComponentBuilderFactory.java | 152 +++++++++
.../dsl/DebeziumOracleComponentBuilderFactory.java | 223 ++++++++++--
.../DebeziumPostgresComponentBuilderFactory.java | 218 ++++++++++--
.../DebeziumSqlserverComponentBuilderFactory.java | 158 ++++++++-
.../dsl/DebeziumDb2EndpointBuilderFactory.java | 204 +++++++++++
.../dsl/DebeziumMongodbEndpointBuilderFactory.java | 223 ++++++++++--
.../dsl/DebeziumMySqlEndpointBuilderFactory.java | 239 +++++++++++++
.../dsl/DebeziumOracleEndpointBuilderFactory.java | 375 ++++++++++++++++++---
.../DebeziumPostgresEndpointBuilderFactory.java | 302 +++++++++++++++--
.../DebeziumSqlserverEndpointBuilderFactory.java | 246 +++++++++++++-
.../camel/kotlin/components/DebeziumDb2UriDsl.kt | 109 ++++++
.../kotlin/components/DebeziumMongodbUriDsl.kt | 118 ++++++-
.../camel/kotlin/components/DebeziumMysqlUriDsl.kt | 125 +++++++
.../kotlin/components/DebeziumOracleUriDsl.kt | 185 ++++++++--
.../kotlin/components/DebeziumPostgresUriDsl.kt | 158 ++++++++-
.../kotlin/components/DebeziumSqlserverUriDsl.kt | 125 ++++++-
parent/pom.xml | 12 +-
.../hashicorp/vault/services/container.properties | 2 +-
.../infra/opensearch/services/container.properties | 2 +-
62 files changed, 5696 insertions(+), 1298 deletions(-)
copy
components/camel-kafka/src/main/java/org/apache/camel/component/kafka/consumer/support/{ProcessingResult.java
=> TopicHelper.java} (50%)
copy
components/camel-kafka/src/main/java/org/apache/camel/component/kafka/consumer/{errorhandler/DiscardErrorStrategy.java
=> support/subcription/DefaultSubscribeAdapter.java} (52%)
copy
components/{camel-wal/src/main/java/org/apache/camel/component/wal/LogSupervisor.java
=>
camel-kafka/src/main/java/org/apache/camel/component/kafka/consumer/support/subcription/SubscribeAdapter.java}
(56%)
copy
components/{camel-salesforce/camel-salesforce-codegen/src/main/java/org/apache/camel/component/salesforce/codegen/Defaults.java
=>
camel-kafka/src/main/java/org/apache/camel/component/kafka/consumer/support/subcription/TopicInfo.java}
(59%)