Skip to content

Commit

Permalink
Upgrade msvcr140 and vcpkg dependencies (#4872)
Browse files Browse the repository at this point in the history
  • Loading branch information
emasab authored and PratRanj07 committed Nov 29, 2024
1 parent 41604e5 commit 6f1b949
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 12 deletions.
7 changes: 0 additions & 7 deletions .semaphore/semaphore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -304,20 +304,13 @@ blocks:
prologue:
commands:
# install vcpkg in the parent directory.
- pwd
- cd ..
# Setup vcpkg
- "& .\\librdkafka\\win32\\setup-vcpkg.ps1"
- cd librdkafka
- ..\vcpkg\vcpkg integrate install
# Install required packages.
- ..\vcpkg\vcpkg --feature-flags=versions install --triplet $Env:triplet
- cd ..
- pwd
- ls vcpkg/
- echo $Env:VCPKG_ROOT
- pwd
- cd librdkafka
epilogue:
commands:
- Get-ChildItem . -include *.dll -recurse
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ librdkafka v2.6.1 is a maintenance release:
* Fix to remove fetch queue messages that blocked the destroy of rdkafka
instances (#4724)
* Upgrade Linux dependencies: OpenSSL 3.0.15, CURL 8.10.1 (#4875).
* Upgrade Windows dependencies: MSVC runtime to 14.40.338160.0,
zstd 1.5.6, zlib 1.3.1, OpenSSL 3.3.2, CURL 8.10.1 (#4872).


## Fixes
Expand Down
Binary file not shown.
Binary file not shown.
8 changes: 4 additions & 4 deletions vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@
"dependencies": [
{
"name": "zstd",
"version>=": "1.5.5#2"
"version>=": "1.5.6#0"
},
{
"name": "zlib",
"version>=": "1.3"
"version>=": "1.3.1#0"
},
{
"name": "openssl",
"version>=": "3.0.8"
"version>=": "3.3.2#1"
},
{
"name": "curl",
"version>=": "8.4.0"
"version>=": "8.10.1#0"
}
],
"builtin-baseline": "56765209ec0e92c58a5fd91aa09c46a16d660026"
Expand Down
2 changes: 1 addition & 1 deletion win32/setup-vcpkg.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if (!(Test-Path -Path vcpkg/.git)) {
}

cd vcpkg
git checkout 2023.11.20
git checkout 2024.09.30
cd ..

.\vcpkg\bootstrap-vcpkg.bat
Expand Down

0 comments on commit 6f1b949

Please sign in to comment.