From 395bb9ffa447f4560e3fa79bae9bce9448ff9886 Mon Sep 17 00:00:00 2001 From: Yunze Xu Date: Tue, 1 Jul 2025 12:13:30 +0800 Subject: [PATCH 1/3] Bump C++ client to 3.7.2 --- build-support/dep-url.sh | 2 +- dependencies.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build-support/dep-url.sh b/build-support/dep-url.sh index 7670bb9..b949426 100644 --- a/build-support/dep-url.sh +++ b/build-support/dep-url.sh @@ -23,7 +23,7 @@ pulsar_cpp_base_url() { exit 1 fi VERSION=$1 - echo "https://archive.apache.org/dist/pulsar/pulsar-client-cpp-${VERSION}" + echo "https://dist.apache.org/repos/dist/dev/pulsar/pulsar-client-cpp/pulsar-client-cpp-${VERSION}-candidate-1" } download_dependency() { diff --git a/dependencies.yaml b/dependencies.yaml index 9db4747..20dc5f5 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -17,7 +17,7 @@ # under the License. # -pulsar-cpp: 3.7.1 +pulsar-cpp: 3.7.2 pybind11: 2.10.1 # The OpenSSL dependency is only used when building Python from source openssl: 1.1.1q From 4a8b45c6203cb8ed551c4c1808e2b59be58d1dcc Mon Sep 17 00:00:00 2001 From: Yunze Xu Date: Tue, 1 Jul 2025 12:43:24 +0800 Subject: [PATCH 2/3] Upgrade windows runner image --- .github/workflows/ci-build-release-wheels.yaml | 2 +- .github/workflows/ci-pr-validation.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-build-release-wheels.yaml b/.github/workflows/ci-build-release-wheels.yaml index 0e47360..47155a5 100644 --- a/.github/workflows/ci-build-release-wheels.yaml +++ b/.github/workflows/ci-build-release-wheels.yaml @@ -122,7 +122,7 @@ jobs: windows-wheels: name: Wheel Windows - Py ${{matrix.python.version}} - runs-on: windows-2019 + runs-on: windows-2022 env: PULSAR_CPP_DIR: 'C:\\pulsar-cpp' timeout-minutes: 300 diff --git a/.github/workflows/ci-pr-validation.yaml b/.github/workflows/ci-pr-validation.yaml index 01a3543..60a9e7d 100644 --- a/.github/workflows/ci-pr-validation.yaml +++ b/.github/workflows/ci-pr-validation.yaml @@ -175,7 +175,7 @@ jobs: windows-wheels: name: "Python ${{ matrix.python.version }} Wheel on Windows x64" needs: unit-tests - runs-on: windows-2019 + runs-on: windows-2022 timeout-minutes: 120 env: From 3fd18addd7c34dbf2051bede7591aa8ac02a694f Mon Sep 17 00:00:00 2001 From: Yunze Xu Date: Tue, 8 Jul 2025 13:46:38 +0800 Subject: [PATCH 3/3] use formal release --- build-support/dep-url.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-support/dep-url.sh b/build-support/dep-url.sh index b949426..7670bb9 100644 --- a/build-support/dep-url.sh +++ b/build-support/dep-url.sh @@ -23,7 +23,7 @@ pulsar_cpp_base_url() { exit 1 fi VERSION=$1 - echo "https://dist.apache.org/repos/dist/dev/pulsar/pulsar-client-cpp/pulsar-client-cpp-${VERSION}-candidate-1" + echo "https://archive.apache.org/dist/pulsar/pulsar-client-cpp-${VERSION}" } download_dependency() {