Skip to content

Commit 8e1e6b5

Browse files
committed
dependencies: bump Protobuf from v31.0 to v31.1
1 parent 478c8b5 commit 8e1e6b5

16 files changed

+17
-17
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=20250512.0
3-
Protobuf=v31.0
3+
Protobuf=v31.1
44
Eigen=3.4.0
55
Re2=2024-07-02
66
CoinUtils=2.11.12

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ bazel_dep(name = "google_benchmark", version = "1.9.2")
2626
bazel_dep(name = "googletest", version = "1.17.0")
2727
bazel_dep(name = "highs", version = "1.11.0")
2828
bazel_dep(name = "platforms", version = "0.0.11")
29-
bazel_dep(name = "protobuf", version = "31.0")
29+
bazel_dep(name = "protobuf", version = "31.1")
3030
bazel_dep(name = "pybind11_abseil", version = "202402.0")
3131
bazel_dep(name = "pybind11_bazel", version = "2.13.6")
3232
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.2.2
33
immutabledict==4.2.1
44
numpy==2.2.0
5-
protobuf==6.31.0
5+
protobuf==6.31.1
66
requests==2.32.4
77
scipy==1.14.1
88
typing-extensions==4.13.1

bazel/notebook_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ prometheus-client==0.22.1
215215
# via jupyter-server
216216
prompt-toolkit==3.0.51
217217
# via ipython
218-
protobuf==6.31.0
218+
protobuf==6.31.1
219219
# via
220220
# -r bazel/notebook_requirements.in
221221
# 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.2.2
33
immutabledict==4.2.1
44
numpy==2.2.0
5-
protobuf==6.31.0
5+
protobuf==6.31.1
66
requests==2.32.4
77
scipy==1.14.1
88
typing-extensions==4.13.1

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==6.31.0
48+
protobuf==6.31.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
@@ -136,11 +136,11 @@ if(BUILD_Protobuf)
136136
FetchContent_Declare(
137137
Protobuf
138138
GIT_REPOSITORY "https://github.com/protocolbuffers/protobuf.git"
139-
GIT_TAG "v31.0"
139+
GIT_TAG "v31.1"
140140
GIT_SHALLOW TRUE
141141
GIT_SUBMODULES ""
142142
PATCH_COMMAND git apply --ignore-whitespace
143-
"${CMAKE_CURRENT_LIST_DIR}/../../patches/protobuf-v31.0.patch"
143+
"${CMAKE_CURRENT_LIST_DIR}/../../patches/protobuf-v31.1.patch"
144144
)
145145
FetchContent_MakeAvailable(Protobuf)
146146
list(POP_BACK CMAKE_MESSAGE_INDENT)

cmake/host.CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,11 @@ set(protobuf_WITH_ZLIB OFF)
125125
FetchContent_Declare(
126126
protobuf
127127
GIT_REPOSITORY "https://github.com/protocolbuffers/protobuf.git"
128-
GIT_TAG "v31.0"
128+
GIT_TAG "v31.1"
129129
GIT_SHALLOW TRUE
130130
GIT_SUBMODULES ""
131131
PATCH_COMMAND git apply --ignore-whitespace
132-
"${CMAKE_CURRENT_LIST_DIR}/@PATCHES_PATH@/protobuf-v31.0.patch"
132+
"${CMAKE_CURRENT_LIST_DIR}/@PATCHES_PATH@/protobuf-v31.1.patch"
133133
)
134134
FetchContent_MakeAvailable(protobuf)
135135
list(POP_BACK CMAKE_MESSAGE_INDENT)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@
184184
</ItemGroup>
185185

186186
<ItemGroup>
187-
<PackageReference Include="Google.Protobuf" Version="3.31.0"/>
187+
<PackageReference Include="Google.Protobuf" Version="3.31.1"/>
188188
</ItemGroup>
189189

190190
<!-- 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
@@ -172,7 +172,7 @@
172172
</ItemGroup>
173173

174174
<ItemGroup>
175-
<PackageReference Include="Google.Protobuf" Version="3.31.0"/>
175+
<PackageReference Include="Google.Protobuf" Version="3.31.1"/>
176176
</ItemGroup>
177177

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

0 commit comments

Comments
 (0)