Skip to content

Commit

Permalink
DBZ-3837 upgrade Debezium UI to Debezium 1.6.1.Final
Browse files Browse the repository at this point in the history
  • Loading branch information
rk3rn3r committed Aug 12, 2021
1 parent 4b2e3fd commit 69c0b1c
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/backend-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ jobs:
- name: Build debezium-checkstyle
run: mvn clean install -f debezium/pom.xml -pl support/checkstyle -DskipTests -DskipITs
- name: Test Debezium UI Backend
run: mvn clean install -f dbzui -B -Dformat.formatter.goal=validate -Dformat.imports.goal=check -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
run: mvn clean install -f dbzui -B -Ddebezium.test.records.waittime=20 -Dformat.formatter.goal=validate -Dformat.imports.goal=check -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
8 changes: 4 additions & 4 deletions .github/workflows/end-to-end-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,25 +26,25 @@ jobs:

services:
dbzui-zookeeper:
image: debezium/zookeeper:1.5
image: debezium/zookeeper:1.6

dbzui-kafka:
image: debezium/kafka:1.5
image: debezium/kafka:1.6
ports:
- 9092:9092
env:
ZOOKEEPER_CONNECT: dbzui-zookeeper:2181

dbzui-postgres:
image: debezium/example-postgres:1.5
image: debezium/example-postgres:1.6
ports:
- 65432:5432
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres

dbzui-connect:
image: debezium/connect:1.5
image: debezium/connect:1.6
ports:
- 8083:8083
env:
Expand Down
2 changes: 1 addition & 1 deletion backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
<dependency>
<groupId>io.debezium</groupId>
<artifactId>debezium-checkstyle</artifactId>
<version>[${debezium.base.version}],[1.5.0-SNAPSHOT]</version>
<version>[${debezium.base.version}],[1.6.1-SNAPSHOT]</version>
</dependency>
</dependencies>
<configuration>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public FilterValidationResult validateFilters(Map<String, String> properties) {

PostgresConnectorConfig config = new PostgresConnectorConfig(Configuration.from(properties));

try (PostgresConnection connection = new PostgresConnection(config.jdbcConfig())) {
try (PostgresConnection connection = new PostgresConnection(config.getJdbcConfig())) {
Set<TableId> tables;
try {
tables = connection.readTableNames(config.databaseName(), null, null, new String[]{ "TABLE" });
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public enum DATABASE {
POSTGRES, MYSQL, SQLSERVER, MONGODB
}

private static final String DEBEZIUM_CONTAINER_VERSION = "1.5";
private static final String DEBEZIUM_CONTAINER_VERSION = "1.6";
private static final Logger LOGGER = LoggerFactory.getLogger(Infrastructure.class);

private static final Network NETWORK = Network.newNetwork();
Expand Down
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ version: '3'
services:
dbzui-zookeeper:
container_name: dbzui-zookeeper
image: debezium/zookeeper:1.5
image: debezium/zookeeper:1.6
networks:
- dbzui-network
dbzui-kafka:
container_name: dbzui-kafka
image: debezium/kafka:1.5
image: debezium/kafka:1.6
ports:
- "9092:9092"
depends_on:
Expand All @@ -19,7 +19,7 @@ services:
- dbzui-network
dbzui-db-pg:
container_name: dbzui-db-pg
image: debezium/example-postgres:1.5
image: debezium/example-postgres:1.6
ports:
- "65432:5432"
environment:
Expand All @@ -29,7 +29,7 @@ services:
- dbzui-network
dbzui-db-mysql:
container_name: dbzui-db-mysql
image: debezium/example-mysql:1.5
image: debezium/example-mysql:1.6
ports:
- "63306:3306"
environment:
Expand Down Expand Up @@ -61,7 +61,7 @@ services:
command: bash -c 'sleep 20 && mongo -u admin -p admin --authenticationDatabase admin dbzui-db-mongo:27017/inventory --eval "rs.initiate();"'
dbzui-connect:
container_name: dbzui-connect
image: debezium/connect:1.5
image: debezium/connect:1.6
ports:
- "8083:8083"
depends_on:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
<quarkus.platform.version>1.12.1.Final</quarkus.platform.version>
<testcontainers.version>1.15.2</testcontainers.version>
<debezium.base.version>1.5.0.Beta1</debezium.base.version>
<debezium.base.version>1.6.1.Final</debezium.base.version>
<okhttp.version>4.9.1</okhttp.version>
<okio.version>2.10.0</okio.version>
<version.checkstyle.plugin>3.1.1</version.checkstyle.plugin>
Expand Down

0 comments on commit 69c0b1c

Please sign in to comment.