Skip to content

Commit 43d37ff

Browse files
chore(cp-schema-registry): bump minor version (#8192)
1 parent 2b94a10 commit 43d37ff

File tree

9 files changed

+23
-23
lines changed

9 files changed

+23
-23
lines changed

docker/docker-compose-with-cassandra.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ services:
148148
schema-registry:
149149
container_name: schema-registry
150150
hostname: schema-registry
151-
image: confluentinc/cp-schema-registry:7.2.2
151+
image: confluentinc/cp-schema-registry:7.2.5
152152
ports:
153153
- ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081
154154
env_file: schema-registry/env/docker.env
@@ -164,7 +164,7 @@ services:
164164
broker:
165165
container_name: broker
166166
hostname: broker
167-
image: confluentinc/cp-kafka:7.2.2
167+
image: confluentinc/cp-kafka:7.2.5
168168
ports:
169169
- 29092:29092
170170
- 9092:9092
@@ -183,7 +183,7 @@ services:
183183
zookeeper:
184184
container_name: zookeeper
185185
hostname: zookeeper
186-
image: confluentinc/cp-zookeeper:7.2.2
186+
image: confluentinc/cp-zookeeper:7.2.5
187187
ports:
188188
- 2181:2181
189189
env_file: zookeeper/env/docker.env

docker/docker-compose-without-neo4j.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ services:
125125
schema-registry:
126126
container_name: schema-registry
127127
hostname: schema-registry
128-
image: confluentinc/cp-schema-registry:7.2.2
128+
image: confluentinc/cp-schema-registry:7.2.5
129129
ports:
130130
- ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081
131131
env_file: schema-registry/env/docker.env
@@ -141,7 +141,7 @@ services:
141141
broker:
142142
container_name: broker
143143
hostname: broker
144-
image: confluentinc/cp-kafka:7.2.2
144+
image: confluentinc/cp-kafka:7.2.5
145145
ports:
146146
- ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092
147147
env_file: broker/env/docker.env
@@ -159,7 +159,7 @@ services:
159159
zookeeper:
160160
container_name: zookeeper
161161
hostname: zookeeper
162-
image: confluentinc/cp-zookeeper:7.2.2
162+
image: confluentinc/cp-zookeeper:7.2.5
163163
ports:
164164
- ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181
165165
env_file: zookeeper/env/docker.env

docker/docker-compose.tools.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
version: '3.8'
44
services:
55
kafka-rest-proxy:
6-
image: confluentinc/cp-kafka-rest:7.2.2
6+
image: confluentinc/cp-kafka-rest:7.2.5
77
env_file: kafka-rest-proxy/env/docker.env
88
hostname: kafka-rest-proxy
99
container_name: kafka-rest-proxy

docker/docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ services:
144144
schema-registry:
145145
container_name: schema-registry
146146
hostname: schema-registry
147-
image: confluentinc/cp-schema-registry:7.2.2
147+
image: confluentinc/cp-schema-registry:7.2.5
148148
ports:
149149
- ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081
150150
env_file: schema-registry/env/docker.env
@@ -160,7 +160,7 @@ services:
160160
broker:
161161
container_name: broker
162162
hostname: broker
163-
image: confluentinc/cp-kafka:7.2.2
163+
image: confluentinc/cp-kafka:7.2.5
164164
ports:
165165
- ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092
166166
env_file: broker/env/docker.env
@@ -178,7 +178,7 @@ services:
178178
zookeeper:
179179
container_name: zookeeper
180180
hostname: zookeeper
181-
image: confluentinc/cp-zookeeper:7.2.2
181+
image: confluentinc/cp-zookeeper:7.2.5
182182
ports:
183183
- ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181
184184
env_file: zookeeper/env/docker.env

docker/quickstart/docker-compose-m1.quickstart.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ services:
2323
test: nc -z broker $${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}
2424
timeout: 5s
2525
hostname: broker
26-
image: confluentinc/cp-kafka:7.2.2
26+
image: confluentinc/cp-kafka:7.2.5
2727
ports:
2828
- ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092
2929
volumes:
@@ -273,7 +273,7 @@ services:
273273
test: nc -z schema-registry ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}
274274
timeout: 5s
275275
hostname: schema-registry
276-
image: confluentinc/cp-schema-registry:7.2.2
276+
image: confluentinc/cp-schema-registry:7.2.5
277277
ports:
278278
- ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081
279279
zookeeper:
@@ -288,7 +288,7 @@ services:
288288
test: echo srvr | nc zookeeper $${DATAHUB_MAPPED_ZK_PORT:-2181}
289289
timeout: 5s
290290
hostname: zookeeper
291-
image: confluentinc/cp-zookeeper:7.2.2
291+
image: confluentinc/cp-zookeeper:7.2.5
292292
ports:
293293
- ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181
294294
volumes:

docker/quickstart/docker-compose-without-neo4j-m1.quickstart.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ services:
2323
test: nc -z broker $${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}
2424
timeout: 5s
2525
hostname: broker
26-
image: confluentinc/cp-kafka:7.2.2
26+
image: confluentinc/cp-kafka:7.2.5
2727
ports:
2828
- ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092
2929
volumes:
@@ -247,7 +247,7 @@ services:
247247
test: nc -z schema-registry ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}
248248
timeout: 5s
249249
hostname: schema-registry
250-
image: confluentinc/cp-schema-registry:7.2.2
250+
image: confluentinc/cp-schema-registry:7.2.5
251251
ports:
252252
- ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081
253253
zookeeper:
@@ -262,7 +262,7 @@ services:
262262
test: echo srvr | nc zookeeper $${DATAHUB_MAPPED_ZK_PORT:-2181}
263263
timeout: 5s
264264
hostname: zookeeper
265-
image: confluentinc/cp-zookeeper:7.2.2
265+
image: confluentinc/cp-zookeeper:7.2.5
266266
ports:
267267
- ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181
268268
volumes:

docker/quickstart/docker-compose-without-neo4j.quickstart.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ services:
2323
test: nc -z broker $${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}
2424
timeout: 5s
2525
hostname: broker
26-
image: confluentinc/cp-kafka:7.2.2
26+
image: confluentinc/cp-kafka:7.2.5
2727
ports:
2828
- ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092
2929
volumes:
@@ -247,7 +247,7 @@ services:
247247
test: nc -z schema-registry ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}
248248
timeout: 5s
249249
hostname: schema-registry
250-
image: confluentinc/cp-schema-registry:7.2.2
250+
image: confluentinc/cp-schema-registry:7.2.5
251251
ports:
252252
- ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081
253253
zookeeper:
@@ -262,7 +262,7 @@ services:
262262
test: echo srvr | nc zookeeper $${DATAHUB_MAPPED_ZK_PORT:-2181}
263263
timeout: 5s
264264
hostname: zookeeper
265-
image: confluentinc/cp-zookeeper:7.2.2
265+
image: confluentinc/cp-zookeeper:7.2.5
266266
ports:
267267
- ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181
268268
volumes:

docker/quickstart/docker-compose.quickstart.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ services:
2323
test: nc -z broker $${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}
2424
timeout: 5s
2525
hostname: broker
26-
image: confluentinc/cp-kafka:7.2.2
26+
image: confluentinc/cp-kafka:7.2.5
2727
ports:
2828
- ${DATAHUB_MAPPED_KAFKA_BROKER_PORT:-9092}:9092
2929
volumes:
@@ -273,7 +273,7 @@ services:
273273
test: nc -z schema-registry ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}
274274
timeout: 5s
275275
hostname: schema-registry
276-
image: confluentinc/cp-schema-registry:7.2.2
276+
image: confluentinc/cp-schema-registry:7.2.5
277277
ports:
278278
- ${DATAHUB_MAPPED_SCHEMA_REGISTRY_PORT:-8081}:8081
279279
zookeeper:
@@ -288,7 +288,7 @@ services:
288288
test: echo srvr | nc zookeeper $${DATAHUB_MAPPED_ZK_PORT:-2181}
289289
timeout: 5s
290290
hostname: zookeeper
291-
image: confluentinc/cp-zookeeper:7.2.2
291+
image: confluentinc/cp-zookeeper:7.2.5
292292
ports:
293293
- ${DATAHUB_MAPPED_ZK_PORT:-2181}:2181
294294
volumes:

metadata-integration/java/datahub-client/src/test/java/datahub/client/kafka/containers/Utils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import java.net.ServerSocket;
55

66
final class Utils {
7-
public static final String CONFLUENT_PLATFORM_VERSION = "7.2.2";
7+
public static final String CONFLUENT_PLATFORM_VERSION = "7.2.5";
88

99
private Utils() {
1010
}

0 commit comments

Comments
 (0)