Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ assertj = "3.26.3"
caffeine = "2.9.3"
checkstyle = "9.3"
# @pin
jackson = "2.14.2"
jackson = "2.18.4"
# @pin
jctools = "3.3.0"
junit-jupiter = "5.11.3"
licenser = "0.6.1"
log4j = "2.24.3"
mockito = "5.18.0"
pulsar = "4.0.5"
mockito = "5.20.0"
pulsar = "4.1.1"
rat-gradle = "0.8.0"
reactor = "3.6.17"
reactor = "3.7.11"
slf4j = "2.0.17"
spring-javaformat = "0.0.46"
testcontainers = "1.21.1"
spring-javaformat = "0.0.47"
testcontainers = "1.21.3"
testlogger = "3.2.0"

[libraries]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ static PulsarAdmin createPulsarAdmin() throws PulsarClientException {
}

static DockerImageName getPulsarImage() {
return DockerImageName.parse("apachepulsar/pulsar:4.0.4");
return DockerImageName.parse("apachepulsar/pulsar:4.1.1");
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,11 @@ public byte[] getSchemaVersion() {
return new byte[0];
}

@Override
public Optional<byte[]> getSchemaId() {
return Optional.empty();
}

@Override
public boolean isReplicated() {
return false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -685,6 +685,11 @@ public byte[] getSchemaVersion() {
return new byte[0];
}

@Override
public Optional<byte[]> getSchemaId() {
return Optional.empty();
}

@Override
public boolean isReplicated() {
return false;
Expand Down
4 changes: 2 additions & 2 deletions scripts/validate_staging_repo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ if ! command -v gradle &>/dev/null; then
fi

DOCKER_CONTAINER_NAME=pulsar-standalone-$$
: ${DOCKER_IMAGE_NAME:=apachepulsar/pulsar:4.0.4}
: ${DOCKER_IMAGE_NAME:=apachepulsar/pulsar:4.1.1}

mkdir test-app-reactive-$$
cd test-app-reactive-$$
Expand Down Expand Up @@ -90,7 +90,7 @@ public class HelloPulsarClientReactive {

public static void main(String[] args) throws PulsarClientException, InterruptedException {
// Before running this, start Pulsar within docker with this command:
// docker run -it -p 8080:8080 -p 6650:6650 apachepulsar/pulsar:4.0.4 /pulsar/bin/pulsar standalone -nss -nfw
// docker run -it -p 8080:8080 -p 6650:6650 apachepulsar/pulsar:4.1.1 /pulsar/bin/pulsar standalone -nss -nfw

try (PulsarClient pulsarClient = PulsarClient.builder().serviceUrl("pulsar://localhost:6650").build()) {

Expand Down