From 9ae26730d2cfe9ddf482ce43f6172d31ffa899f8 Mon Sep 17 00:00:00 2001 From: Debezium Builder Date: Tue, 30 Jan 2024 16:34:43 +0000 Subject: [PATCH] Updated container images for release 2.5.1.Final --- build-all-multiplatform.sh | 2 +- build-all.sh | 2 +- connect/2.5/Dockerfile | 26 +++++++++++++------------- connect/2.5/Dockerfile.local | 2 +- connect/snapshot/Dockerfile | 2 +- operator/2.5/Dockerfile | 4 ++-- operator/snapshot/Dockerfile | 2 +- postgres/10-alpine/Dockerfile | 2 +- postgres/10/Dockerfile | 2 +- postgres/11-alpine/Dockerfile | 2 +- postgres/11/Dockerfile | 2 +- postgres/12-alpine/Dockerfile | 2 +- postgres/12/Dockerfile | 2 +- postgres/13-alpine/Dockerfile | 2 +- postgres/13/Dockerfile | 2 +- postgres/14-alpine/Dockerfile | 2 +- postgres/14/Dockerfile | 2 +- postgres/15-alpine/Dockerfile | 2 +- postgres/15/Dockerfile | 2 +- postgres/16-alpine/Dockerfile | 2 +- postgres/16/Dockerfile | 2 +- postgres/9.6-alpine/Dockerfile | 2 +- postgres/9.6/Dockerfile | 2 +- server/2.5/Dockerfile | 4 ++-- server/snapshot/Dockerfile | 2 +- ui/2.5/Dockerfile | 2 +- 26 files changed, 40 insertions(+), 40 deletions(-) diff --git a/build-all-multiplatform.sh b/build-all-multiplatform.sh index c43e3d23..9f235790 100755 --- a/build-all-multiplatform.sh +++ b/build-all-multiplatform.sh @@ -2,7 +2,7 @@ set -eo pipefail -DEBEZIUM_VERSION="2.6" +DEBEZIUM_VERSION="2.5" if [ -z "$DEBEZIUM_VERSIONS" ]; then DEBEZIUM_VERSIONS="$DEBEZIUM_VERSION" fi diff --git a/build-all.sh b/build-all.sh index 96371d90..e688c210 100755 --- a/build-all.sh +++ b/build-all.sh @@ -2,7 +2,7 @@ set -eo pipefail -DEBEZIUM_VERSION="2.6" +DEBEZIUM_VERSION="2.5" if [ -z "$DEBEZIUM_VERSIONS" ]; then DEBEZIUM_VERSIONS="$DEBEZIUM_VERSION" fi diff --git a/connect/2.5/Dockerfile b/connect/2.5/Dockerfile index f947b91f..7c733b43 100644 --- a/connect/2.5/Dockerfile +++ b/connect/2.5/Dockerfile @@ -3,22 +3,22 @@ FROM $DEBEZIUM_DOCKER_REGISTRY_PRIMARY_NAME/connect-base:2.5 LABEL maintainer="Debezium Community" -ENV DEBEZIUM_VERSION="2.5.0.Final" \ +ENV DEBEZIUM_VERSION="2.5.1.Final" \ MAVEN_REPO_CENTRAL="" \ MAVEN_REPOS_ADDITIONAL="" \ MAVEN_DEP_DESTINATION=$KAFKA_CONNECT_PLUGINS_DIR \ - MONGODB_MD5=fd5ca6d535108cafaef2a92a9afd97ae \ - MYSQL_MD5=09d944f3a21bd205d9f01edde5cf3963 \ - POSTGRES_MD5=16e95339cb27dba3a3d96bdd7b5ba3d0 \ - SQLSERVER_MD5=64579046f37a1523e2fd27e5b9ab330c \ - ORACLE_MD5=250d169979d2d3d8d919f8da65007634 \ - DB2_MD5=aa5405943a493992d848679532c796a4 \ - SPANNER_MD5=fb1c4a80c0990070497498600c1d50d6 \ - VITESS_MD5=7462d3e3600bd98c20dd23bce5c415ea \ - JDBC_MD5=7e3dae35120837b21e2f98a72eaf91d9 \ - INFORMIX_MD5=5ae365d3a3ca3afaba00bd1312b69e58 \ - KCRESTEXT_MD5=1dd7df4e6c7dd5dc4e5a74a5c887365f \ - SCRIPTING_MD5=49163a506e826056ac2f5ef758c03f5e + MONGODB_MD5=43807de51c431a0eb56de795bd7a321e \ + MYSQL_MD5=eb881e72396ac05da698f3f4c7201923 \ + POSTGRES_MD5=b8d082fa4e63803db441c641c2269579 \ + SQLSERVER_MD5=2edf2a074162f2d6c455dedc36ffdc0e \ + ORACLE_MD5=529876251d68856aee1d1ac5f585faa1 \ + DB2_MD5=7dfde31a2388a2e91be6a7edcb33e42c \ + SPANNER_MD5=19bcc609e4f46355d7fd63bea42c4bdd \ + VITESS_MD5=76d3ce2e006ae78b1c61a5bf535bee59 \ + JDBC_MD5=67ceec4534a0db4f68ba5852ef1f7392 \ + INFORMIX_MD5=f0caba8221284433c0d0893b8d5daa70 \ + KCRESTEXT_MD5=2d67ed8f81052ba635623b03c61ce582 \ + SCRIPTING_MD5=da7f5e747cd89f7b562461c9c789326c RUN docker-maven-download debezium mongodb "$DEBEZIUM_VERSION" "$MONGODB_MD5" && \ docker-maven-download debezium mysql "$DEBEZIUM_VERSION" "$MYSQL_MD5" && \ diff --git a/connect/2.5/Dockerfile.local b/connect/2.5/Dockerfile.local index aa3de4ba..a04e3be3 100644 --- a/connect/2.5/Dockerfile.local +++ b/connect/2.5/Dockerfile.local @@ -2,7 +2,7 @@ FROM quay.io/debezium/connect-base:2.5 LABEL maintainer="Debezium Community" -ARG DEBEZIUM_VERSION=2.5.0.Final +ARG DEBEZIUM_VERSION=2.5.1.Final ENV DEBEZIUM_VERSION=${DEBEZIUM_VERSION} # -------- testing --------- diff --git a/connect/snapshot/Dockerfile b/connect/snapshot/Dockerfile index 237022e7..a611c26a 100644 --- a/connect/snapshot/Dockerfile +++ b/connect/snapshot/Dockerfile @@ -2,7 +2,7 @@ FROM quay.io/debezium/connect-base:2.6 LABEL maintainer="Debezium Community" -ARG DEBEZIUM_VERSION=2.6.0-SNAPSHOT +ARG DEBEZIUM_VERSION=2.5.0-SNAPSHOT ENV DEBEZIUM_VERSION=$DEBEZIUM_VERSION \ MAVEN_OSS_SNAPSHOT="https://oss.sonatype.org/content/repositories/snapshots" diff --git a/operator/2.5/Dockerfile b/operator/2.5/Dockerfile index 2c9d2dcd..50fedb08 100644 --- a/operator/2.5/Dockerfile +++ b/operator/2.5/Dockerfile @@ -84,11 +84,11 @@ LABEL maintainer="Debezium Community" # Set the version, home directory # ENV LANGUAGE='en_US:en' -ENV DEBEZIUM_VERSION=2.5.0.Final \ +ENV DEBEZIUM_VERSION=2.5.1.Final \ OPERATOR_HOME=/operator \ MAVEN_REPO_CENTRAL="https://repo1.maven.org/maven2" ENV OPERATOR_URL_PATH=io/debezium/debezium-operator-dist/$DEBEZIUM_VERSION/debezium-operator-dist-$DEBEZIUM_VERSION.tar.gz \ - OPERATOR_MD5=9e298cda18504c32f42e5e0b985f4206 + OPERATOR_MD5=c6be750009ae1d55f09e84782849a17c USER root # diff --git a/operator/snapshot/Dockerfile b/operator/snapshot/Dockerfile index cc0f5681..f355c086 100644 --- a/operator/snapshot/Dockerfile +++ b/operator/snapshot/Dockerfile @@ -83,7 +83,7 @@ LABEL maintainer="Debezium Community" # # Set the version, home directory # -ARG DEBEZIUM_VERSION=2.6.0-SNAPSHOT +ARG DEBEZIUM_VERSION=2.5.0-SNAPSHOT ENV LANGUAGE='en_US:en' ENV DEBEZIUM_VERSION=$DEBEZIUM_VERSION \ diff --git a/postgres/10-alpine/Dockerfile b/postgres/10-alpine/Dockerfile index 6a3a276d..054471a7 100644 --- a/postgres/10-alpine/Dockerfile +++ b/postgres/10-alpine/Dockerfile @@ -1,7 +1,7 @@ FROM postgres:10-alpine LABEL maintainer="Debezium Community" -ENV PLUGIN_VERSION=v2.3.7.Final +ENV PLUGIN_VERSION=v2.5.1.Final ENV WAL2JSON_COMMIT_ID=92b33c7d7c2fccbeb9f79455dafbc92e87e00ddd diff --git a/postgres/10/Dockerfile b/postgres/10/Dockerfile index 12b25ede..b0bb9aeb 100644 --- a/postgres/10/Dockerfile +++ b/postgres/10/Dockerfile @@ -1,7 +1,7 @@ FROM postgres:10-bullseye AS build ARG USE_POSTGIS=true -ENV PLUGIN_VERSION=v2.3.7.Final +ENV PLUGIN_VERSION=v2.5.1.Final ENV PROTOC_VERSION=1.4 ENV WAL2JSON_COMMIT_ID=92b33c7d7c2fccbeb9f79455dafbc92e87e00ddd diff --git a/postgres/11-alpine/Dockerfile b/postgres/11-alpine/Dockerfile index 432f2f7c..d5d8d9d0 100644 --- a/postgres/11-alpine/Dockerfile +++ b/postgres/11-alpine/Dockerfile @@ -1,7 +1,7 @@ FROM postgres:11-alpine LABEL maintainer="Debezium Community" -ENV PLUGIN_VERSION=v2.3.7.Final +ENV PLUGIN_VERSION=v2.5.1.Final ENV WAL2JSON_COMMIT_ID=92b33c7d7c2fccbeb9f79455dafbc92e87e00ddd diff --git a/postgres/11/Dockerfile b/postgres/11/Dockerfile index 44009059..90ae63d2 100644 --- a/postgres/11/Dockerfile +++ b/postgres/11/Dockerfile @@ -1,7 +1,7 @@ FROM postgres:11-bullseye AS build ARG USE_POSTGIS=true -ENV PLUGIN_VERSION=v2.3.7.Final +ENV PLUGIN_VERSION=v2.5.1.Final ENV PROTOC_VERSION=1.4 ENV WAL2JSON_COMMIT_ID=92b33c7d7c2fccbeb9f79455dafbc92e87e00ddd diff --git a/postgres/12-alpine/Dockerfile b/postgres/12-alpine/Dockerfile index 1d33d176..a6223a1f 100644 --- a/postgres/12-alpine/Dockerfile +++ b/postgres/12-alpine/Dockerfile @@ -1,7 +1,7 @@ FROM postgres:12-alpine LABEL maintainer="Debezium Community" -ENV PLUGIN_VERSION=v2.3.7.Final +ENV PLUGIN_VERSION=v2.5.1.Final ENV WAL2JSON_COMMIT_ID=92b33c7d7c2fccbeb9f79455dafbc92e87e00ddd diff --git a/postgres/12/Dockerfile b/postgres/12/Dockerfile index 360800d5..d69f3e0f 100644 --- a/postgres/12/Dockerfile +++ b/postgres/12/Dockerfile @@ -1,7 +1,7 @@ FROM postgres:12-bullseye AS build ARG USE_POSTGIS=true -ENV PLUGIN_VERSION=v2.3.7.Final +ENV PLUGIN_VERSION=v2.5.1.Final ENV PROTOC_VERSION=1.4 ENV WAL2JSON_COMMIT_ID=92b33c7d7c2fccbeb9f79455dafbc92e87e00ddd diff --git a/postgres/13-alpine/Dockerfile b/postgres/13-alpine/Dockerfile index 00566639..88412477 100644 --- a/postgres/13-alpine/Dockerfile +++ b/postgres/13-alpine/Dockerfile @@ -1,7 +1,7 @@ FROM postgres:13-alpine LABEL maintainer="Debezium Community" -ENV PLUGIN_VERSION=v2.3.7.Final +ENV PLUGIN_VERSION=v2.5.1.Final ENV WAL2JSON_COMMIT_ID=wal2json_2_3 diff --git a/postgres/13/Dockerfile b/postgres/13/Dockerfile index 69156327..abbace33 100644 --- a/postgres/13/Dockerfile +++ b/postgres/13/Dockerfile @@ -1,7 +1,7 @@ FROM postgres:13-bullseye AS build ARG USE_POSTGIS=true -ENV PLUGIN_VERSION=v2.3.7.Final +ENV PLUGIN_VERSION=v2.5.1.Final ENV PROTOC_VERSION=1.4 ENV WAL2JSON_COMMIT_ID=wal2json_2_3 diff --git a/postgres/14-alpine/Dockerfile b/postgres/14-alpine/Dockerfile index 962608d9..e3cccd39 100644 --- a/postgres/14-alpine/Dockerfile +++ b/postgres/14-alpine/Dockerfile @@ -1,7 +1,7 @@ FROM postgres:14-alpine LABEL maintainer="Debezium Community" -ENV PLUGIN_VERSION=v2.3.7.Final +ENV PLUGIN_VERSION=v2.5.1.Final ENV WAL2JSON_COMMIT_ID=wal2json_2_3 diff --git a/postgres/14/Dockerfile b/postgres/14/Dockerfile index 1c0fc7bc..ceaeb5d3 100644 --- a/postgres/14/Dockerfile +++ b/postgres/14/Dockerfile @@ -1,7 +1,7 @@ FROM postgres:14-bullseye AS build ARG USE_POSTGIS=true -ENV PLUGIN_VERSION=v2.3.7.Final +ENV PLUGIN_VERSION=v2.5.1.Final ENV PROTOC_VERSION=1.4 ENV WAL2JSON_COMMIT_ID=wal2json_2_3 diff --git a/postgres/15-alpine/Dockerfile b/postgres/15-alpine/Dockerfile index f95293b9..afccea95 100644 --- a/postgres/15-alpine/Dockerfile +++ b/postgres/15-alpine/Dockerfile @@ -1,7 +1,7 @@ FROM postgres:15-alpine LABEL maintainer="Debezium Community" -ENV PLUGIN_VERSION=v2.3.7.Final +ENV PLUGIN_VERSION=v2.5.1.Final RUN apk add --no-cache protobuf-c-dev diff --git a/postgres/15/Dockerfile b/postgres/15/Dockerfile index dae73a07..ec3a17b5 100644 --- a/postgres/15/Dockerfile +++ b/postgres/15/Dockerfile @@ -1,7 +1,7 @@ FROM postgres:15-bullseye AS build ARG USE_POSTGIS=true -ENV PLUGIN_VERSION=v2.3.7.Final +ENV PLUGIN_VERSION=v2.5.1.Final ENV PROTOC_VERSION=1.4 # Install the packages which will be required to get everything to compile diff --git a/postgres/16-alpine/Dockerfile b/postgres/16-alpine/Dockerfile index 5dd2467e..d59436b8 100644 --- a/postgres/16-alpine/Dockerfile +++ b/postgres/16-alpine/Dockerfile @@ -1,7 +1,7 @@ FROM postgres:16-alpine LABEL maintainer="Debezium Community" -ENV PLUGIN_VERSION=v2.6.0.Alpha1 +ENV PLUGIN_VERSION=v2.5.1.Final RUN apk add --no-cache protobuf-c-dev diff --git a/postgres/16/Dockerfile b/postgres/16/Dockerfile index d806af53..523cc7ae 100644 --- a/postgres/16/Dockerfile +++ b/postgres/16/Dockerfile @@ -1,7 +1,7 @@ FROM postgres:16-bullseye AS build ARG USE_POSTGIS=true -ENV PLUGIN_VERSION=v2.6.0.Alpha1 +ENV PLUGIN_VERSION=v2.5.1.Final ENV PROTOC_VERSION=1.4 # Install the packages which will be required to get everything to compile diff --git a/postgres/9.6-alpine/Dockerfile b/postgres/9.6-alpine/Dockerfile index 62caa8ab..96e56e3e 100644 --- a/postgres/9.6-alpine/Dockerfile +++ b/postgres/9.6-alpine/Dockerfile @@ -1,7 +1,7 @@ FROM postgres:9.6-alpine LABEL maintainer="Debezium Community" -ENV PLUGIN_VERSION=v2.3.7.Final +ENV PLUGIN_VERSION=v2.5.1.Final ENV WAL2JSON_COMMIT_ID=92b33c7d7c2fccbeb9f79455dafbc92e87e00ddd diff --git a/postgres/9.6/Dockerfile b/postgres/9.6/Dockerfile index fba796c3..7b1a4c0e 100644 --- a/postgres/9.6/Dockerfile +++ b/postgres/9.6/Dockerfile @@ -1,7 +1,7 @@ FROM postgres:9.6-bullseye AS build ARG USE_POSTGIS=true -ENV PLUGIN_VERSION=v2.3.7.Final +ENV PLUGIN_VERSION=v2.5.1.Final ENV PROTOC_VERSION=1.4 ENV WAL2JSON_COMMIT_ID=92b33c7d7c2fccbeb9f79455dafbc92e87e00ddd diff --git a/server/2.5/Dockerfile b/server/2.5/Dockerfile index 5d46d23f..272943eb 100644 --- a/server/2.5/Dockerfile +++ b/server/2.5/Dockerfile @@ -5,11 +5,11 @@ LABEL maintainer="Debezium Community" # # Set the version, home directory, and MD5 hash. # -ENV DEBEZIUM_VERSION=2.5.0.Final \ +ENV DEBEZIUM_VERSION=2.5.1.Final \ SERVER_HOME=/debezium \ MAVEN_REPO_CENTRAL="https://repo1.maven.org/maven2" ENV SERVER_URL_PATH=io/debezium/debezium-server-dist/$DEBEZIUM_VERSION/debezium-server-dist-$DEBEZIUM_VERSION.tar.gz \ - SERVER_MD5=0293ac8e8547bd2a8c7d385ce759682a + SERVER_MD5=3327742962d71f57689f9b53d7b21435 # # Create a directory for Debezium Server diff --git a/server/snapshot/Dockerfile b/server/snapshot/Dockerfile index 677c7e20..37506d6e 100644 --- a/server/snapshot/Dockerfile +++ b/server/snapshot/Dockerfile @@ -5,7 +5,7 @@ LABEL maintainer="Debezium Community" # # Set the version, home directory # -ARG DEBEZIUM_VERSION=2.6.0-SNAPSHOT +ARG DEBEZIUM_VERSION=2.5.0-SNAPSHOT ENV DEBEZIUM_VERSION=$DEBEZIUM_VERSION \ SERVER_HOME=/debezium \ diff --git a/ui/2.5/Dockerfile b/ui/2.5/Dockerfile index c937d8dd..3ea2ddad 100644 --- a/ui/2.5/Dockerfile +++ b/ui/2.5/Dockerfile @@ -6,7 +6,7 @@ FROM registry.access.redhat.com/ubi9/ubi-minimal AS builder ARG JAVA_PACKAGE=java-11-openjdk-devel -ARG BRANCH=v2.5.0.Final +ARG BRANCH=v2.5.1.Final ENV LANG='en_US.UTF-8' \ LANGUAGE='en_US:en' \