Upgrade debezium to 2.3.3.Final
This commit is contained in:
@@ -145,7 +145,7 @@ Instructions below explains how to run pre-configured test databases form Docker
|
||||
Start the `debezium/example-mysql` in a docker:
|
||||
[source, bash]
|
||||
----
|
||||
docker run -it --rm --name mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=debezium -e MYSQL_USER=mysqluser -e MYSQL_PASSWORD=mysqlpw debezium/example-mysql:2.3.0.Final
|
||||
docker run -it --rm --name mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=debezium -e MYSQL_USER=mysqluser -e MYSQL_PASSWORD=mysqlpw debezium/example-mysql:2.3.3.Final
|
||||
----
|
||||
|
||||
[TIP]
|
||||
@@ -205,7 +205,7 @@ NOTE: Disable the mysql GenericContainer test initialization code.
|
||||
Start a pre-configured postgres server from the `debezium/example-postgres:1.0` Docker image:
|
||||
[source, bash]
|
||||
----
|
||||
docker run -it --rm --name postgres -p 5432:5432 -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres debezium/example-postgres:2.3.0.Final
|
||||
docker run -it --rm --name postgres -p 5432:5432 -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres debezium/example-postgres:2.3.3.Final
|
||||
----
|
||||
|
||||
You can connect to this server like this:
|
||||
@@ -257,10 +257,10 @@ NOTE: Disable the postgres GenericContainer test initialization code.
|
||||
|
||||
=== MongoDB
|
||||
|
||||
Start a pre-configured mongodb from the `debezium/example-mongodb:2.3.0.Final` container image:
|
||||
Start a pre-configured mongodb from the `debezium/example-mongodb:2.3.3.Final` container image:
|
||||
[source, bash]
|
||||
----
|
||||
docker run -it --rm --name mongodb -p 27017:27017 -e MONGODB_USER=debezium -e MONGODB_PASSWORD=dbz debezium/example-mongodb:2.3.0.Final
|
||||
docker run -it --rm --name mongodb -p 27017:27017 -e MONGODB_USER=debezium -e MONGODB_PASSWORD=dbz debezium/example-mongodb:2.3.3.Final
|
||||
----
|
||||
|
||||
Initialize the inventory collections
|
||||
|
||||
@@ -115,7 +115,7 @@
|
||||
<dependency>
|
||||
<groupId>io.debezium</groupId>
|
||||
<artifactId>debezium-testing-testcontainers</artifactId>
|
||||
<version>2.3.0.Final</version>
|
||||
<version>2.3.3.Final</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
||||
@@ -34,7 +34,7 @@ public final class DebeziumTestUtils {
|
||||
|
||||
public static final String DATABASE_NAME = "inventory";
|
||||
public static final String BINDING_NAME = "debeziumSupplier-out-0";
|
||||
public static final String IMAGE_TAG = "2.3.0.Final";
|
||||
public static final String IMAGE_TAG = "2.3.3.Final";
|
||||
public static final String DEBEZIUM_EXAMPLE_MYSQL_IMAGE = "debezium/example-mysql:" + IMAGE_TAG;
|
||||
public static final String DEBEZIUM_EXAMPLE_POSTGRES_IMAGE = "debezium/example-postgres:" + IMAGE_TAG;
|
||||
public static final String DEBEZIUM_EXAMPLE_MONGODB_IMAGE = "debezium/example-mongodb:" + IMAGE_TAG;
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
<description>Debezium Spring Boot auto-configuration</description>
|
||||
|
||||
<properties>
|
||||
<version.debezium>2.3.0.Final</version.debezium>
|
||||
<version.debezium>2.3.3.Final</version.debezium>
|
||||
<apicurio.version>2.4.2.Final</apicurio.version>
|
||||
</properties>
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
<description>Debezium Supplier</description>
|
||||
|
||||
<properties>
|
||||
<version.debezium>2.3.0.Final</version.debezium>
|
||||
<version.debezium>2.3.3.Final</version.debezium>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
||||
@@ -73,7 +73,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||
@Testcontainers
|
||||
public class DebeziumSupplierIntegrationTest {
|
||||
|
||||
public static final String IMAGE_TAG = "2.3.0.Final";
|
||||
public static final String IMAGE_TAG = "2.3.3.Final";
|
||||
public static final String DEBEZIUM_EXAMPLE_MYSQL_IMAGE = "debezium/example-mysql:" + IMAGE_TAG;
|
||||
|
||||
@Container
|
||||
|
||||
Reference in New Issue
Block a user