chore(cp-schema-registry): bump minor version (#8192)

This commit is contained in:
david-leifker 2023-06-09 05:53:18 -05:00 committed by GitHub
parent 2b94a103ac
commit 43d37ff442
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 23 additions and 23 deletions

View File

@ -148,7 +148,7 @@ services:
schema-registry: schema-registry:
container_name: schema-registry container_name: schema-registry
hostname: schema-registry hostname: schema-registry
image: confluentinc/cp-schema-registry:7.2.2 image: confluentinc/cp-schema-registry:7.2.5
ports: ports:
- ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081 - ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081
env_file: schema-registry/env/docker.env env_file: schema-registry/env/docker.env
@ -164,7 +164,7 @@ services:
broker: broker:
container_name: broker container_name: broker
hostname: broker hostname: broker
image: confluentinc/cp-kafka:7.2.2 image: confluentinc/cp-kafka:7.2.5
ports: ports:
- 29092:29092 - 29092:29092
- 9092:9092 - 9092:9092
@ -183,7 +183,7 @@ services:
zookeeper: zookeeper:
container_name: zookeeper container_name: zookeeper
hostname: zookeeper hostname: zookeeper
image: confluentinc/cp-zookeeper:7.2.2 image: confluentinc/cp-zookeeper:7.2.5
ports: ports:
- 2181:2181 - 2181:2181
env_file: zookeeper/env/docker.env env_file: zookeeper/env/docker.env

View File

@ -125,7 +125,7 @@ services:
schema-registry: schema-registry:
container_name: schema-registry container_name: schema-registry
hostname: schema-registry hostname: schema-registry
image: confluentinc/cp-schema-registry:7.2.2 image: confluentinc/cp-schema-registry:7.2.5
ports: ports:
- ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081 - ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081
env_file: schema-registry/env/docker.env env_file: schema-registry/env/docker.env
@ -141,7 +141,7 @@ services:
broker: broker:
container_name: broker container_name: broker
hostname: broker hostname: broker
image: confluentinc/cp-kafka:7.2.2 image: confluentinc/cp-kafka:7.2.5
ports: ports:
- ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092 - ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092
env_file: broker/env/docker.env env_file: broker/env/docker.env
@ -159,7 +159,7 @@ services:
zookeeper: zookeeper:
container_name: zookeeper container_name: zookeeper
hostname: zookeeper hostname: zookeeper
image: confluentinc/cp-zookeeper:7.2.2 image: confluentinc/cp-zookeeper:7.2.5
ports: ports:
- ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181 - ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181
env_file: zookeeper/env/docker.env env_file: zookeeper/env/docker.env

View File

@ -3,7 +3,7 @@
version: '3.8' version: '3.8'
services: services:
kafka-rest-proxy: kafka-rest-proxy:
image: confluentinc/cp-kafka-rest:7.2.2 image: confluentinc/cp-kafka-rest:7.2.5
env_file: kafka-rest-proxy/env/docker.env env_file: kafka-rest-proxy/env/docker.env
hostname: kafka-rest-proxy hostname: kafka-rest-proxy
container_name: kafka-rest-proxy container_name: kafka-rest-proxy

View File

@ -144,7 +144,7 @@ services:
schema-registry: schema-registry:
container_name: schema-registry container_name: schema-registry
hostname: schema-registry hostname: schema-registry
image: confluentinc/cp-schema-registry:7.2.2 image: confluentinc/cp-schema-registry:7.2.5
ports: ports:
- ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081 - ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081
env_file: schema-registry/env/docker.env env_file: schema-registry/env/docker.env
@ -160,7 +160,7 @@ services:
broker: broker:
container_name: broker container_name: broker
hostname: broker hostname: broker
image: confluentinc/cp-kafka:7.2.2 image: confluentinc/cp-kafka:7.2.5
ports: ports:
- ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092 - ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092
env_file: broker/env/docker.env env_file: broker/env/docker.env
@ -178,7 +178,7 @@ services:
zookeeper: zookeeper:
container_name: zookeeper container_name: zookeeper
hostname: zookeeper hostname: zookeeper
image: confluentinc/cp-zookeeper:7.2.2 image: confluentinc/cp-zookeeper:7.2.5
ports: ports:
- ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181 - ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181
env_file: zookeeper/env/docker.env env_file: zookeeper/env/docker.env

View File

@ -23,7 +23,7 @@ services:
test: nc -z broker $${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092} test: nc -z broker $${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}
timeout: 5s timeout: 5s
hostname: broker hostname: broker
image: confluentinc/cp-kafka:7.2.2 image: confluentinc/cp-kafka:7.2.5
ports: ports:
- ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092 - ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092
volumes: volumes:
@ -273,7 +273,7 @@ services:
test: nc -z schema-registry ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081} test: nc -z schema-registry ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}
timeout: 5s timeout: 5s
hostname: schema-registry hostname: schema-registry
image: confluentinc/cp-schema-registry:7.2.2 image: confluentinc/cp-schema-registry:7.2.5
ports: ports:
- ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081 - ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081
zookeeper: zookeeper:
@ -288,7 +288,7 @@ services:
test: echo srvr | nc zookeeper $${DATAHUB_MAPPED_ZK_PORT:-2181} test: echo srvr | nc zookeeper $${DATAHUB_MAPPED_ZK_PORT:-2181}
timeout: 5s timeout: 5s
hostname: zookeeper hostname: zookeeper
image: confluentinc/cp-zookeeper:7.2.2 image: confluentinc/cp-zookeeper:7.2.5
ports: ports:
- ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181 - ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181
volumes: volumes:

View File

@ -23,7 +23,7 @@ services:
test: nc -z broker $${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092} test: nc -z broker $${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}
timeout: 5s timeout: 5s
hostname: broker hostname: broker
image: confluentinc/cp-kafka:7.2.2 image: confluentinc/cp-kafka:7.2.5
ports: ports:
- ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092 - ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092
volumes: volumes:
@ -247,7 +247,7 @@ services:
test: nc -z schema-registry ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081} test: nc -z schema-registry ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}
timeout: 5s timeout: 5s
hostname: schema-registry hostname: schema-registry
image: confluentinc/cp-schema-registry:7.2.2 image: confluentinc/cp-schema-registry:7.2.5
ports: ports:
- ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081 - ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081
zookeeper: zookeeper:
@ -262,7 +262,7 @@ services:
test: echo srvr | nc zookeeper $${DATAHUB_MAPPED_ZK_PORT:-2181} test: echo srvr | nc zookeeper $${DATAHUB_MAPPED_ZK_PORT:-2181}
timeout: 5s timeout: 5s
hostname: zookeeper hostname: zookeeper
image: confluentinc/cp-zookeeper:7.2.2 image: confluentinc/cp-zookeeper:7.2.5
ports: ports:
- ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181 - ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181
volumes: volumes:

View File

@ -23,7 +23,7 @@ services:
test: nc -z broker $${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092} test: nc -z broker $${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}
timeout: 5s timeout: 5s
hostname: broker hostname: broker
image: confluentinc/cp-kafka:7.2.2 image: confluentinc/cp-kafka:7.2.5
ports: ports:
- ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092 - ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092
volumes: volumes:
@ -247,7 +247,7 @@ services:
test: nc -z schema-registry ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081} test: nc -z schema-registry ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}
timeout: 5s timeout: 5s
hostname: schema-registry hostname: schema-registry
image: confluentinc/cp-schema-registry:7.2.2 image: confluentinc/cp-schema-registry:7.2.5
ports: ports:
- ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081 - ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081
zookeeper: zookeeper:
@ -262,7 +262,7 @@ services:
test: echo srvr | nc zookeeper $${DATAHUB_MAPPED_ZK_PORT:-2181} test: echo srvr | nc zookeeper $${DATAHUB_MAPPED_ZK_PORT:-2181}
timeout: 5s timeout: 5s
hostname: zookeeper hostname: zookeeper
image: confluentinc/cp-zookeeper:7.2.2 image: confluentinc/cp-zookeeper:7.2.5
ports: ports:
- ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181 - ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181
volumes: volumes:

View File

@ -23,7 +23,7 @@ services:
test: nc -z broker $${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092} test: nc -z broker $${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}
timeout: 5s timeout: 5s
hostname: broker hostname: broker
image: confluentinc/cp-kafka:7.2.2 image: confluentinc/cp-kafka:7.2.5
ports: ports:
- ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092 - ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092
volumes: volumes:
@ -273,7 +273,7 @@ services:
test: nc -z schema-registry ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081} test: nc -z schema-registry ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}
timeout: 5s timeout: 5s
hostname: schema-registry hostname: schema-registry
image: confluentinc/cp-schema-registry:7.2.2 image: confluentinc/cp-schema-registry:7.2.5
ports: ports:
- ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081 - ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081
zookeeper: zookeeper:
@ -288,7 +288,7 @@ services:
test: echo srvr | nc zookeeper $${DATAHUB_MAPPED_ZK_PORT:-2181} test: echo srvr | nc zookeeper $${DATAHUB_MAPPED_ZK_PORT:-2181}
timeout: 5s timeout: 5s
hostname: zookeeper hostname: zookeeper
image: confluentinc/cp-zookeeper:7.2.2 image: confluentinc/cp-zookeeper:7.2.5
ports: ports:
- ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181 - ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181
volumes: volumes:

View File

@ -4,7 +4,7 @@ import java.io.IOException;
import java.net.ServerSocket; import java.net.ServerSocket;
final class Utils { final class Utils {
public static final String CONFLUENT_PLATFORM_VERSION = "7.2.2"; public static final String CONFLUENT_PLATFORM_VERSION = "7.2.5";
private Utils() { private Utils() {
} }