Skip to content

Commit

Permalink
Push versions of dependent libraries. (#134)
Browse files Browse the repository at this point in the history
* Push versions of dependent libraries.

* Update checksums.

* grpc java plugin -> 1.66.0

* protobuf -> 27.2

* protobuf -> 28.1
  • Loading branch information
jcferretti authored Sep 16, 2024
1 parent feb3277 commit 699c71e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
24 changes: 12 additions & 12 deletions cpp-client/build-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -531,8 +531,8 @@ if [ "$CLONE_ZLIB" = "yes" ]; then
echo
echo "*** Clone zlib"
cd $SRC
# Previously used version: v1.2.13
git clone $GIT_FLAGS -b v1.3 --depth 1 "${GITHUB_BASE_URL}/madler/zlib"
# Previously used version: v1.3
git clone $GIT_FLAGS -b v1.3.1 --depth 1 "${GITHUB_BASE_URL}/madler/zlib"
echo "*** Cloning zlib DONE"
fi
if [ "$BUILD_ZLIB" = "yes" ]; then
Expand Down Expand Up @@ -562,8 +562,8 @@ if [ "$CLONE_PROTOBUF" = "yes" ]; then
echo
echo "*** Cloning protobuf"
cd $SRC
# Previously used version: v3.21.2
git clone $GIT_FLAGS -b v25.3 --depth 1 "${GITHUB_BASE_URL}/protocolbuffers/protobuf.git"
# Previously used version: v25.4
git clone $GIT_FLAGS -b v28.1 --depth 1 "${GITHUB_BASE_URL}/protocolbuffers/protobuf.git"
echo "*** Cloning protobuf DONE"
fi
if [ "$BUILD_PROTOBUF" = "yes" ]; then
Expand Down Expand Up @@ -592,8 +592,8 @@ if [ "$CLONE_RE2" = "yes" ]; then
echo
echo "*** Cloning re2"
cd $SRC
# Previously used version: 2022-04-01
git clone $GIT_FLAGS -b 2022-06-01 --depth 1 "${GITHUB_BASE_URL}/google/re2.git"
# Previously used version: 2022-06-01
git clone $GIT_FLAGS -b 2024-07-02 --depth 1 "${GITHUB_BASE_URL}/google/re2.git"
echo "*** Cloning re2 DONE"
fi
if [ "$BUILD_RE2" = "yes" ]; then
Expand Down Expand Up @@ -690,8 +690,8 @@ if [ "$CLONE_CARES" = "yes" ]; then
echo
echo "*** Clone ares"
cd $SRC
# Previously used version: cares-1_18_1
git clone $GIT_FLAGS -b cares-1_28_1 --depth 1 "${GITHUB_BASE_URL}/c-ares/c-ares.git"
# Previously used version: cares-1_28_1
git clone $GIT_FLAGS -b v1.33.1 --depth 1 "${GITHUB_BASE_URL}/c-ares/c-ares.git"
echo "*** Cloning ares DONE"
fi
if [ "$BUILD_CARES" = "yes" ]; then
Expand Down Expand Up @@ -723,8 +723,8 @@ if [ "$CLONE_GRPC" = "yes" ]; then
echo
echo "*** Clone grpc"
cd $SRC
# Previously used version: v1.46.7
git clone $GIT_FLAGS -b v1.63.0 --depth 1 "${GITHUB_BASE_URL}/grpc/grpc"
# Previously used version: v1.63.0
git clone $GIT_FLAGS -b v1.66.1 --depth 1 "${GITHUB_BASE_URL}/grpc/grpc"
echo "*** Cloning grpc DONE"
fi
if [ "$BUILD_GRPC" = "yes" ]; then
Expand Down Expand Up @@ -758,8 +758,8 @@ if [ "$CLONE_ARROW" = "yes" ]; then
echo
echo "*** Cloning arrow"
cd $SRC
# Previously used version: apache-arrow-13.0.0
git clone $GIT_FLAGS -b apache-arrow-16.0.0 --depth 1 "${GITHUB_BASE_URL}/apache/arrow"
# Previously used version: apache-arrow-16.0.0
git clone $GIT_FLAGS -b apache-arrow-16.1.0 --depth 1 "${GITHUB_BASE_URL}/apache/arrow"
echo "*** Cloning arrow DONE"
fi
if [ "$BUILD_ARROW" = "yes" ]; then
Expand Down
6 changes: 3 additions & 3 deletions proto/01-protoc-base/checksums.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
f853e691868d0557425ea290bf7ba6384eef2fa9b04c323afab49a770ba9da80 protoc-25.3-linux-x86_64.zip
b0f50f6a857c3e17f7a83ce90d9f877640381100289fedc4658dc47d69bc7f36 protoc-gen-grpc-java-1.63.1-linux-x86_64.exe
075ed6163fea314c415f67a4af68d1b6dbddc8fa8be35addf74e4c81812a9148 protobuf-javascript-3.21.2-linux-x86_64.zip
4966d0dce71a637b3b46de511aefc52c5df449159c6acbd7967ba742944012fd protobuf-javascript-3.21.4-linux-x86_64.zip
58b1e2e45889187c22598bf5d9944d7c4f5f68407906f26cc4831911ae8ada53 protoc-28.1-linux-x86_64.zip
47cd72b07e6dab3408d686a65d37d3a6ab616da7d8b564b2bd2a2963a72b72fd protoc-gen-doc_1.5.1_linux_amd64.tar.gz
654626545f36b0cda5179e4b46c7bde2a8eefee8d265d346967c8542537137a8 protoc-gen-grpc-java-1.66.0-linux-x86_64.exe
6 changes: 3 additions & 3 deletions proto/01-protoc-base/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ python3 -m pip install -q --no-cache-dir --upgrade setuptools
python3 -m pip install -q --no-cache-dir -r "${__dir}/requirements.txt"
python3 -m pip list

pbuf_ver=25.3
pbuf_ver=28.1
wget -q "https://github.com/protocolbuffers/protobuf/releases/download/v${pbuf_ver}/protoc-${pbuf_ver}-linux-x86_64.zip"

java_plugin_ver=1.63.1
java_plugin_ver=1.66.0
wget -q "https://repo1.maven.org/maven2/io/grpc/protoc-gen-grpc-java/${java_plugin_ver}/protoc-gen-grpc-java-${java_plugin_ver}-linux-x86_64.exe"

js_ver=3.21.2
js_ver=3.21.4
wget -q "https://github.com/protocolbuffers/protobuf-javascript/releases/download/v${js_ver}/protobuf-javascript-${js_ver}-linux-x86_64.zip"

doc_plugin_ver=1.5.1
Expand Down

0 comments on commit 699c71e

Please sign in to comment.