Skip to content

Commit

Permalink
[MINOR UPDATE] Bump protobuf-java from 3.16.1 to 3.16.3 (#2671)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored and jnturton committed Dec 26, 2022
1 parent 85aa70c commit d738df2
Show file tree
Hide file tree
Showing 20 changed files with 5,699 additions and 7,548 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,16 @@ jobs:
run: |
sudo apt update -y && sudo apt install -y libboost-all-dev libzookeeper-mt-dev libsasl2-dev cmake libcppunit-dev checkinstall && \
pushd .. && \
if [ -f $HOME/protobuf/protobuf_3.16.1* ]; then \
sudo dpkg -i $HOME/protobuf/protobuf_3.16.1*; \
if [ -f $HOME/protobuf/protobuf_3.16.3* ]; then \
sudo dpkg -i $HOME/protobuf/protobuf_3.16.3*; \
else \
wget https://github.com/protocolbuffers/protobuf/releases/download/v3.16.1/protobuf-java-3.16.1.zip && \
unzip protobuf-java-3.16.1.zip && pushd protobuf-3.16.1 && \
wget https://github.com/protocolbuffers/protobuf/releases/download/v3.16.3/protobuf-java-3.16.3.zip && \
unzip protobuf-java-3.16.3.zip && pushd protobuf-3.16.3 && \
./configure && sudo make && sudo checkinstall -y && \
if [ ! -d $HOME/protobuf ]; then \
mkdir -p $HOME/protobuf; \
fi && \
mv protobuf_3.16.1* $HOME/protobuf/ && popd; \
mv protobuf_3.16.3* $HOME/protobuf/ && popd; \
fi && \
sudo ldconfig && popd; \
# Builds Drill project, performs license checkstyle goal and regenerates java and C++ protobuf files
Expand Down
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,16 @@ before_install:
if [ $PHASE = "build_checkstyle_protobuf" ]; then \
sudo apt-get install -y libboost-all-dev libzookeeper-mt-dev libsasl2-dev cmake libcppunit-dev checkinstall && \
pushd .. && \
if [ -f $HOME/protobuf/protobuf_3.16.1* ]; then \
sudo dpkg -i $HOME/protobuf/protobuf_3.16.1*; \
if [ -f $HOME/protobuf/protobuf_3.16.3* ]; then \
sudo dpkg -i $HOME/protobuf/protobuf_3.16.3*; \
else \
wget https://github.com/protocolbuffers/protobuf/releases/download/v3.16.1/protobuf-java-3.16.1.zip && \
unzip protobuf-java-3.16.1.zip && pushd protobuf-3.16.1 && \
wget https://github.com/protocolbuffers/protobuf/releases/download/v3.16.3/protobuf-java-3.16.3.zip && \
unzip protobuf-java-3.16.3.zip && pushd protobuf-3.16.3 && \
./configure && sudo make && sudo checkinstall -y && \
if [ ! -d $HOME/protobuf ]; then \
mkdir -p $HOME/protobuf; \
fi && \
mv protobuf_3.16.1* $HOME/protobuf/ && popd; \
mv protobuf_3.16.3* $HOME/protobuf/ && popd; \
fi && \
sudo ldconfig && popd; \
fi
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contrib/native/client/src/protobuf/BitControl.pb.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contrib/native/client/src/protobuf/BitData.pb.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contrib/native/client/src/protobuf/Coordination.pb.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contrib/native/client/src/protobuf/ExecutionProtos.pb.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contrib/native/client/src/protobuf/GeneralRPC.pb.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contrib/native/client/src/protobuf/SchemaDef.pb.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contrib/native/client/src/protobuf/User.pb.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion contrib/native/client/src/protobuf/UserBitShared.pb.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
<commons.net.version>3.9.0</commons.net.version>
<commons.validator.version>1.6</commons.validator.version>
<commons.text.version>1.10.0</commons.text.version>
<protobuf.version>3.16.1</protobuf.version>
<protobuf.version>3.16.3</protobuf.version>
<protostuff.version>1.7.1</protostuff.version>
<codemodel.version>2.6</codemodel.version>
<joda.version>2.10.5</joda.version>
Expand Down
Loading

0 comments on commit d738df2

Please sign in to comment.