Skip to content

Commit b77c527

Browse files
authored
Merge pull request #115 from HongW2019/sdle
Bump 3rd-party components' version to fix vulnerabilities
2 parents 2ceae0f + 52c71d0 commit b77c527

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1768,7 +1768,7 @@ library in certain binary distributions, like the python wheels. In the future
17681768
this will likely change to static linkage. zlib has the following license:
17691769

17701770
zlib.h -- interface of the 'zlib' general purpose compression library
1771-
version 1.2.11, January 15th, 2017
1771+
version 1.2.12, March 27, 2022
17721772

17731773
Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
17741774

cpp/thirdparty/versions.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ ARROW_THRIFT_BUILD_VERSION=0.13.0
5555
ARROW_THRIFT_BUILD_MD5_CHECKSUM=38a27d391a2b03214b444cb13d5664f1
5656
ARROW_UTF8PROC_BUILD_VERSION=v2.6.1
5757
ARROW_XSIMD_BUILD_VERSION=e9234cd6e6f4428fc260073b2c34ffe86fda1f34
58-
ARROW_ZLIB_BUILD_VERSION=1.2.11
58+
ARROW_ZLIB_BUILD_VERSION=1.2.12
5959
ARROW_ZSTD_BUILD_VERSION=v1.4.8
6060
ARROW_FASTPFOR_BUILD_VERSION=2e836403e964708730da4e81c302939b1878c927
6161

go/arrow/LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1612,7 +1612,7 @@ library in certain binary distributions, like the python wheels. In the future
16121612
this will likely change to static linkage. zlib has the following license:
16131613

16141614
zlib.h -- interface of the 'zlib' general purpose compression library
1615-
version 1.2.11, January 15th, 2017
1615+
version 1.2.12, March 27, 2022
16161616

16171617
Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
16181618

go/parquet/LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1612,7 +1612,7 @@ library in certain binary distributions, like the python wheels. In the future
16121612
this will likely change to static linkage. zlib has the following license:
16131613

16141614
zlib.h -- interface of the 'zlib' general purpose compression library
1615-
version 1.2.11, January 15th, 2017
1615+
version 1.2.12, March 27, 2022
16161616

16171617
Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
16181618

java/dataset/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<packaging>jar</packaging>
2626
<properties>
2727
<arrow.cpp.build.dir>../../../cpp/release-build/</arrow.cpp.build.dir>
28-
<protobuf.version>2.5.0</protobuf.version>
28+
<protobuf.version>3.19.4</protobuf.version>
2929
<parquet.version>1.11.0</parquet.version>
3030
<avro.version>1.9.1</avro.version>
3131
</properties>

java/gandiva/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<properties>
2626
<maven.compiler.source>1.8</maven.compiler.source>
2727
<maven.compiler.target>1.8</maven.compiler.target>
28-
<protobuf.version>2.5.0</protobuf.version>
28+
<protobuf.version>3.19.4</protobuf.version>
2929
<dep.guava.version>18.0</dep.guava.version>
3030
<checkstyle.failOnViolation>true</checkstyle.failOnViolation>
3131
<arrow.cpp.build.dir>../../../cpp/release-build</arrow.cpp.build.dir>

java/vector/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
<dependency>
7878
<groupId>org.apache.commons</groupId>
7979
<artifactId>commons-compress</artifactId>
80-
<version>1.20</version>
80+
<version>1.21</version>
8181
</dependency>
8282
</dependencies>
8383

python/pyarrow/tests/parquet/test_basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ def test_compression_level(use_legacy_dataset):
339339
# Uncompressed, snappy, lz4 and lzo do not support specifying a compression
340340
# level.
341341
# GZIP (zlib) allows for specifying a compression level but as of up
342-
# to version 1.2.11 the valid range is [-1, 9].
342+
# to version 1.2.12 the valid range is [-1, 9].
343343
invalid_combinations = [("snappy", 4), ("lz4", 5), ("gzip", -1337),
344344
("None", 444), ("lzo", 14)]
345345
buf = io.BytesIO()

rust/ballista/docker/rust-base.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ RUN echo "Building OpenSSL" && \
5959

6060
RUN echo "Building zlib" && \
6161
cd /tmp && \
62-
ZLIB_VERSION=1.2.11 && \
62+
ZLIB_VERSION=1.2.12 && \
6363
curl -LO "http://zlib.net/zlib-$ZLIB_VERSION.tar.gz" && \
6464
tar xzf "zlib-$ZLIB_VERSION.tar.gz" && cd "zlib-$ZLIB_VERSION" && \
6565
CC=musl-gcc ./configure --static --prefix=/usr/local/musl && \

0 commit comments

Comments
 (0)