Skip to content

Commit 2eeded1

Browse files
author
HongW2019
committed
Bump version to fix 3rd-party components' vulnerabilities
1 parent 12d053a commit 2eeded1

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
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/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)