Skip to content

Commit e1b21e8

Browse files
authored
Update Pulsar and various other dependencies (#199)
This commit updates the following: - Pulsar to 3.3.3 - Reactor to 3.6.13 - Testcontainers to 1.20.4
1 parent 5a8d096 commit e1b21e8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

gradle/libs.versions.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ junit-jupiter = "5.11.3"
2929
licenser = "0.6.1"
3030
log4j = "2.23.1"
3131
mockito = "5.14.2"
32-
pulsar = "3.3.2"
32+
pulsar = "3.3.3"
3333
rat-gradle = "0.8.0"
34-
reactor = "3.6.12"
34+
reactor = "3.6.13"
3535
slf4j = "2.0.16"
3636
spring-javaformat = "0.0.43"
37-
testcontainers = "1.20.3"
37+
testcontainers = "1.20.4"
3838
testlogger = "3.2.0"
3939

4040
[libraries]

pulsar-client-reactive-adapter/src/intTest/java/org/apache/pulsar/reactive/client/adapter/SingletonPulsarContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ static PulsarClient createPulsarClient() throws PulsarClientException {
4545
}
4646

4747
static DockerImageName getPulsarImage() {
48-
return DockerImageName.parse("apachepulsar/pulsar:3.3.2");
48+
return DockerImageName.parse("apachepulsar/pulsar:3.3.3");
4949
}
5050

5151
}

scripts/validate_staging_repo.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ if ! command -v gradle &>/dev/null; then
4040
fi
4141

4242
DOCKER_CONTAINER_NAME=pulsar-standalone-$$
43-
: ${DOCKER_IMAGE_NAME:=apachepulsar/pulsar:3.3.2}
43+
: ${DOCKER_IMAGE_NAME:=apachepulsar/pulsar:3.3.3}
4444

4545
mkdir test-app-reactive-$$
4646
cd test-app-reactive-$$
@@ -90,7 +90,7 @@ public class HelloPulsarClientReactive {
9090
9191
public static void main(String[] args) throws PulsarClientException, InterruptedException {
9292
// Before running this, start Pulsar within docker with this command:
93-
// docker run -it -p 8080:8080 -p 6650:6650 apachepulsar/pulsar:3.3.2 /pulsar/bin/pulsar standalone -nss -nfw
93+
// docker run -it -p 8080:8080 -p 6650:6650 apachepulsar/pulsar:3.3.3 /pulsar/bin/pulsar standalone -nss -nfw
9494
9595
try (PulsarClient pulsarClient = PulsarClient.builder().serviceUrl("pulsar://localhost:6650").build()) {
9696

0 commit comments

Comments
 (0)