Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/coverage/cpp.develop.coverage_report.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Directory: ..
------------------------------------------------------------------------------
File Lines Exec Cover Missing
------------------------------------------------------------------------------
client/cpp/CSVParserUtil.cpp 345 290 84% 37-45,48,50,239,241,264-265,269-270,286,292,304,313-314,317,323,331-332,335,345,351,363,368,373,379-387,389,425,435-437,450,474-476,478,503-506
client/cpp/CSVParserUtil.cpp 345 291 84% 37-45,48,50,239,241,264-265,269-270,286,292,304,313-314,317,323,331-332,335,345,351,363,368,373,379-387,389,425,435-437,474-476,478,503-506
client/cpp/VDMSClient.cc 20 20 100%
src/AutoDeleteNode.cc 9 8 88% 40
src/BackendNeo4j.cc 133 73 54% 7,11,13,15,20,24,29-41,65-70,89,115-117,119-121,129-131,133,177,183,185,187,201,210,212-215,219-220,222-223,226-230,235,239-241,243
Expand Down Expand Up @@ -64,5 +64,5 @@ utils/src/kubernetes/KubeHelper.cc 183 37 20% 23-30,32-35,37
utils/src/stats/SystemStats.cc 250 249 99% 455
utils/src/timers/TimerMap.cc 82 74 90% 126,151,153,155-158,162
------------------------------------------------------------------------------
TOTAL 12491 8507 68%
------------------------------------------------------------------------------
TOTAL 12491 8508 68%
------------------------------------------------------------------------------
2 changes: 1 addition & 1 deletion .github/coverage/cpp.develop.coverage_value.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
68.105
68.113
2 changes: 1 addition & 1 deletion .github/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ MarkupSafe==3.0.2
numpy==1.26.4
opencv-python-headless==4.11.0.86
pillow==11.1.0
protobuf==4.24.2
protobuf==4.25.8
pycparser==2.22
Pygments==2.19.1
pyzmq==26.4.0
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/Dockerfile.checkin
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ENV DEBIAN_FRONTEND=noninteractive
ENV DEBCONF_NOWARNINGS="yes"
ENV PYTHON_BASE="3.12"
ENV PYTHON_VERSION="${PYTHON_BASE}.3"
ENV PROTOBUF_VERSION="24.2"
ENV PROTOBUF_VERSION="25.8"
ENV NUMPY_MIN_VERSION="1.26.0"
ENV VIRTUAL_ENV=/opt/venv

Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/setup_vdms.sh
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ LIBEDIT_VERSION="20230828-3.1"
NUMPY_MIN_VERSION="1.26.0"
OPENCV_VERSION="4.9.0"
PEG_VERSION="0.1.19"
PROTOBUF_VERSION="24.2"
PROTOBUF_VERSION="25.8"
TILEDB_VERSION="2.14.1"
VALIJSON_VERSION="v0.6"

Expand Down
2 changes: 1 addition & 1 deletion client/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
author="Chaunté W. Lacewell",
author_email="[email protected]",
description="VDMS Client Module",
install_requires=["protobuf==4.24.2"],
install_requires=["protobuf==4.25.8"],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/IntelLabs/vdms",
Expand Down
2 changes: 1 addition & 1 deletion docker/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ENV DEBIAN_FRONTEND=noninteractive
ENV DEBCONF_NOWARNINGS="yes"
ENV PYTHON_BASE="3.12"
ENV PYTHON_VERSION="${PYTHON_BASE}.3"
ENV PROTOBUF_VERSION="24.2"
ENV PROTOBUF_VERSION="25.8"
ENV NUMPY_MIN_VERSION="1.26.0"
ENV VIRTUAL_ENV=/opt/venv

Expand Down
4 changes: 2 additions & 2 deletions docs/Install.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ sudo make install
```
<br>

#### **Protobuf v24.2 (4.24.2)**
#### **Protobuf v25.8 (4.25.8)**
Install Protobuf (C++ and Python) which requires GoogleTest and Abseil C++ as dependencies.
```bash
PROTOBUF_VERSION="24.2"
PROTOBUF_VERSION="25.8"
python3 -m pip install --no-cache-dir "protobuf==4.${PROTOBUF_VERSION}"

git clone -b v${PROTOBUF_VERSION} --recurse-submodules https://github.com/protocolbuffers/protobuf.git $VDMS_DEP_DIR/protobuf
Expand Down