Skip to content

Commit 3f7a77f

Browse files
committed
Upgrade to Pulsar 4.0.4
Closes gh-45124
1 parent 9a6048f commit 3f7a77f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/pulsar/PulsarPropertiesMapperTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ void customizeConsumerBuilder() {
254254
then(builder).should().topicsPattern(topisPattern);
255255
then(builder).should().priorityLevel(123);
256256
then(builder).should().readCompacted(true);
257-
then(builder).should().deadLetterPolicy(new DeadLetterPolicy(1, null, "my-dlt", null));
257+
then(builder).should().deadLetterPolicy(new DeadLetterPolicy(1, null, "my-dlt", null, null, null));
258258
}
259259

260260
@Test

spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/pulsar/PulsarReactivePropertiesMapperTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ void customizeMessageConsumerBuilder() {
107107
then(builder).should().topicsPattern(topisPattern);
108108
then(builder).should().priorityLevel(123);
109109
then(builder).should().readCompacted(true);
110-
then(builder).should().deadLetterPolicy(new DeadLetterPolicy(1, null, "my-dlt", null));
110+
then(builder).should().deadLetterPolicy(new DeadLetterPolicy(1, null, "my-dlt", null, null, null));
111111
then(builder).should().retryLetterTopicEnable(false);
112112
then(builder).should().subscriptionName("subname");
113113
then(builder).should().subscriptionInitialPosition(SubscriptionInitialPosition.Earliest);

spring-boot-project/spring-boot-dependencies/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1776,7 +1776,7 @@ bom {
17761776
releaseNotes("https://github.com/prometheus/client_java/releases/tag/parent-{version}")
17771777
}
17781778
}
1779-
library("Pulsar", "4.0.3") {
1779+
library("Pulsar", "4.0.4") {
17801780
group("org.apache.pulsar") {
17811781
bom("pulsar-bom") {
17821782
permit("org.apache.maven.plugin-tools:maven-plugin-annotations")

0 commit comments

Comments
 (0)