Skip to content

Commit fced774

Browse files
committed
dependency: Bump Protobuf to v29.1
1 parent a6ae3d6 commit fced774

15 files changed

+16
-16
lines changed

Dependencies.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
ZLIB=1.3.1
22
abseil-cpp=20240722.0
3-
Protobuf=v29.0
3+
Protobuf=v29.1
44
Eigen=3.4.0
55
Re2=2024-04-01
66
CoinUtils=2.11.12

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ bazel_dep(name = "google_benchmark", version = "1.8.5", repo_name = "com_google_
2424
bazel_dep(name = "googletest", version = "1.15.2", repo_name = "com_google_googletest")
2525
bazel_dep(name = "highs", version = "1.8.1")
2626
bazel_dep(name = "platforms", version = "0.0.10")
27-
bazel_dep(name = "protobuf", version = "29.0", repo_name = "com_google_protobuf")
27+
bazel_dep(name = "protobuf", version = "29.1", repo_name = "com_google_protobuf")
2828
bazel_dep(name = "pybind11_abseil", version = "202402.0", repo_name = "org_pybind11_abseil")
2929
bazel_dep(name = "pybind11_bazel", version = "2.13.6")
3030
bazel_dep(name = "pybind11_protobuf", version = "0.0.0-20240524-1d7a729")

bazel/notebook_requirements.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
absl-py==2.1.0
33
immutabledict==3.0.0
44
numpy==2.1.1
5-
protobuf==5.29.0
5+
protobuf==5.29.1
66
requests==2.32.0
77
scipy==1.14.1
88

bazel/notebook_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ prometheus-client==0.17.1
216216
# via jupyter-server
217217
prompt-toolkit==3.0.39
218218
# via ipython
219-
protobuf==5.29.0
219+
protobuf==5.29.1
220220
# via
221221
# -r bazel/notebook_requirements.in
222222
# mypy-protobuf

bazel/ortools_requirements.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
absl-py==2.1.0
33
immutabledict==3.0.0
44
numpy==2.1.1
5-
protobuf==5.29.0
5+
protobuf==5.29.1
66
requests==2.32.3
77
scipy==1.14.1
88

bazel/ortools_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ platformdirs==3.10.0
4545
# via
4646
# black
4747
# virtualenv
48-
protobuf==5.29.0
48+
protobuf==5.29.1
4949
# via
5050
# -r bazel/ortools_requirements.in
5151
# mypy-protobuf

cmake/dependencies/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@ if(BUILD_Protobuf)
108108
FetchContent_Declare(
109109
Protobuf
110110
GIT_REPOSITORY "https://github.com/protocolbuffers/protobuf.git"
111-
GIT_TAG "v29.0"
111+
GIT_TAG "v29.1"
112112
GIT_SHALLOW TRUE
113113
GIT_SUBMODULES ""
114-
PATCH_COMMAND git apply --ignore-whitespace "${CMAKE_CURRENT_LIST_DIR}/../../patches/protobuf-v29.0.patch"
114+
PATCH_COMMAND git apply --ignore-whitespace "${CMAKE_CURRENT_LIST_DIR}/../../patches/protobuf-v29.1.patch"
115115
)
116116
FetchContent_MakeAvailable(Protobuf)
117117
list(POP_BACK CMAKE_MESSAGE_INDENT)

cmake/host.CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@ set(protobuf_WITH_ZLIB OFF)
121121
FetchContent_Declare(
122122
protobuf
123123
GIT_REPOSITORY "https://github.com/protocolbuffers/protobuf.git"
124-
GIT_TAG "v29.0"
124+
GIT_TAG "v29.1"
125125
GIT_SUBMODULES ""
126-
PATCH_COMMAND git apply "${CMAKE_CURRENT_LIST_DIR}/@PATCHES_PATH@/protobuf-v29.0.patch")
126+
PATCH_COMMAND git apply "${CMAKE_CURRENT_LIST_DIR}/@PATCHES_PATH@/protobuf-v29.1.patch")
127127
FetchContent_MakeAvailable(protobuf)
128128
list(POP_BACK CMAKE_MESSAGE_INDENT)
129129
message(CHECK_PASS "fetched")

ortools/dotnet/Google.OrTools-full.csproj.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@
193193
</ItemGroup>
194194

195195
<ItemGroup>
196-
<PackageReference Include="Google.Protobuf" Version="3.29.0"/>
196+
<PackageReference Include="Google.Protobuf" Version="3.29.1"/>
197197
</ItemGroup>
198198

199199
<!-- Need to add required runtime dependencies so Meta-Project will pull runtime Nuget(s) -->

ortools/dotnet/Google.OrTools-local.csproj.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@
181181
</ItemGroup>
182182

183183
<ItemGroup>
184-
<PackageReference Include="Google.Protobuf" Version="3.29.0"/>
184+
<PackageReference Include="Google.Protobuf" Version="3.29.1"/>
185185
</ItemGroup>
186186

187187
<!-- Need to add required runtime dependencies so Meta-Project will pull runtime Nuget(s) -->

0 commit comments

Comments
 (0)