Skip to content

Commit eab0497

Browse files
committed
chore: update kafkajs markdown and zookeeper version
Signed-off-by: Joe Bowbeer <[email protected]>
1 parent ad7dc86 commit eab0497

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/modules/kafka.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ npm install @testcontainers/kafka --save-dev
1212

1313
These examples use the following libraries:
1414

15-
- [kafkajs](https://www.npmjs.com/package/kafkajs)
15+
- [@confluentinc/kafka-javascript](https://www.npmjs.com/package/@confluentinc/kafka-javascript)
1616

17-
npm install kafkajs
17+
npm install @confluentinc/kafka-javascript
1818

1919
Choose an image from the [container registry](https://hub.docker.com/r/confluentinc/cp-kafka) and substitute `IMAGE`.
2020

@@ -38,9 +38,9 @@ Choose an image from the [container registry](https://hub.docker.com/r/confluent
3838

3939
These examples use the following libraries:
4040

41-
- [kafkajs](https://www.npmjs.com/package/kafkajs)
41+
- [@confluentinc/kafka-javascript](https://www.npmjs.com/package/@confluentinc/kafka-javascript)
4242

43-
npm install kafkajs
43+
npm install @confluentinc/kafka-javascript
4444

4545
Choose an image from the [container registry](https://hub.docker.com/r/confluentinc/cp-kafka) and substitute `IMAGE`.
4646

docs/modules/redpanda.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ npm install @testcontainers/redpanda --save-dev
1010

1111
These examples use the following libraries:
1212

13-
- [kafkajs](https://www.npmjs.com/package/kafkajs)
13+
- [@confluentinc/kafka-javascript](https://www.npmjs.com/package/@confluentinc/kafka-javascript)
1414

15-
npm install kafkajs
15+
npm install @confluentinc/kafka-javascript
1616

1717
Choose an image from the [container registry](https://hub.docker.com/r/redpandadata/redpanda) and substitute `IMAGE`.
1818

packages/modules/kafka/src/kafka-container-7.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ describe("KafkaContainer", { timeout: 240_000 }, () => {
3535
const zooKeeperHost = "zookeeper";
3636
const zooKeeperPort = 2181;
3737

38-
await using _ = await new GenericContainer("confluentinc/cp-zookeeper:5.5.4")
38+
await using _ = await new GenericContainer("confluentinc/cp-zookeeper:7.5.0")
3939
.withNetwork(network)
4040
.withNetworkAliases(zooKeeperHost)
4141
.withEnvironment({ ZOOKEEPER_CLIENT_PORT: zooKeeperPort.toString() })

0 commit comments

Comments
 (0)