Skip to content

Commit 66d3aeb

Browse files
committed
Update to Pulsar 4.1.0
Signed-off-by: onobc <chris.bono@gmail.com>
1 parent 93f3f65 commit 66d3aeb

File tree

14 files changed

+16
-19
lines changed

14 files changed

+16
-19
lines changed

.github/workflows/check-samples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
- javaVersion: 17
6060
springBootVersion: "${{ needs.prerequisites.outputs.boot_version }}"
6161
springPulsarVersion: "${{ needs.prerequisites.outputs.project_version }}"
62-
pulsarVersion: "4.0.1"
62+
pulsarVersion: "4.1.0"
6363
samplesTarget: ':runAllSampleTests'
6464
runs-on: ubuntu-latest
6565
if: needs.prerequisites.outputs.runjobs

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ micrometer = "1.16.0-M3"
99
micrometer-docs-gen = "1.0.4"
1010
micrometer-tracing = "1.6.0-M3"
1111
protobuf = "3.25.8"
12-
pulsar = "4.0.6"
12+
pulsar = "4.1.0"
1313
pulsar-reactive = "0.7.0"
1414
reactor = "2025.0.0-M7"
1515
spring = "7.0.0-M9"

spring-pulsar-docs/src/main/antora/modules/ROOT/pages/appendix/version-compatibility.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The following is the compatibility matrix:
88
| Spring for Apache Pulsar | Pulsar Client | Pulsar Reactive Client | Spring Boot | Java
99

1010
| 2.0.x
11-
| 3.3.x / 4.0.x^**(*)**^
11+
| 4.1.x / 4.0.x / 3.3.x
1212
| 0.5.x - 0.7.x
1313
| 4.0.x
1414
| 17+
@@ -36,7 +36,7 @@ The following is the compatibility matrix:
3636
[NOTE]
3737
====
3838
^**(*)**^ The `3.3.x` Pulsar client is the default version specified by Spring for Apache Pulsar `1.2.x` and Spring Boot `3.4.x`.
39-
However, the `4.0.x` Pulsar client is compatible and will be the default version in the next minor releases (`1.3.x` and `3.5.x`, respectively).
39+
However, the `4.0.x` Pulsar client is compatible.
4040
4141
You can follow xref:appendix/override-boot-dependencies.adoc#override-boot-deps[these steps] to override the Pulsar client version.
4242
====

spring-pulsar-sample-apps/sample-failover-custom-router/compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
pulsar:
3-
image: 'apachepulsar/pulsar:4.0.6'
3+
image: 'apachepulsar/pulsar:4.1.0'
44
ports:
55
- '6650'
66
- '8080'

spring-pulsar-sample-apps/sample-imperative-produce-consume/compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
pulsar:
3-
image: 'apachepulsar/pulsar:4.0.6'
3+
image: 'apachepulsar/pulsar:4.1.0'
44
ports:
55
- '6650'
66
- '8080'

spring-pulsar-sample-apps/sample-pulsar-binder/compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
pulsar:
3-
image: 'apachepulsar/pulsar:4.0.6'
3+
image: 'apachepulsar/pulsar:4.1.0'
44
ports:
55
- '6650'
66
- '8080'

spring-pulsar-sample-apps/sample-pulsar-functions/download-connectors.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
mkdir connectors
44
cd connectors
5-
wget https://archive.apache.org/dist/pulsar/pulsar-4.0.5/connectors/pulsar-io-cassandra-4.0.5.nar
6-
wget https://archive.apache.org/dist/pulsar/pulsar-4.0.5/connectors/pulsar-io-rabbitmq-4.0.5.nar
5+
wget https://archive.apache.org/dist/pulsar/pulsar-4.1.0/connectors/pulsar-io-cassandra-4.1.0.nar
6+
wget https://archive.apache.org/dist/pulsar/pulsar-4.1.0/connectors/pulsar-io-rabbitmq-4.1.0.nar
77
cd ..

spring-pulsar-sample-apps/sample-pulsar-reader/compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
pulsar:
3-
image: 'apachepulsar/pulsar:4.0.6'
3+
image: 'apachepulsar/pulsar:4.1.0'
44
ports:
55
- '6650'
66
- '8080'

spring-pulsar-sample-apps/sample-reactive/compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
pulsar:
3-
image: 'apachepulsar/pulsar:4.0.6'
3+
image: 'apachepulsar/pulsar:4.1.0'
44
ports:
55
- '6650'
66
- '8080'

spring-pulsar-test/src/main/java/org/springframework/pulsar/test/support/PulsarTestContainerSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public interface PulsarTestContainerSupport {
3333
PulsarContainer PULSAR_CONTAINER = new PulsarContainer(getPulsarImage());
3434

3535
static DockerImageName getPulsarImage() {
36-
return DockerImageName.parse("apachepulsar/pulsar:4.0.6");
36+
return DockerImageName.parse("apachepulsar/pulsar:4.1.0");
3737
}
3838

3939
@BeforeAll

0 commit comments

Comments
 (0)