Skip to content

Commit 7179239

Browse files
committed
WL#16966: Upgrade Python lz4 version
Change-Id: Id89f015b8313a433e1dedaeac67f505447146dc3
1 parent e3e12a4 commit 7179239

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Full release notes:
1111
v9.4.0
1212
======
1313

14+
- WL#16966: Upgrade Python lz4 version
1415
- WL#16963: Update the OpenTelemetry version
1516
- WL#16962: Update the Python Protobuf version
1617
- BUG#37820231: Text based django ORM filters doesn't work with Connector/Python

mysqlx-connector-python/docs/mysqlx/requirements.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ Requirements
66
* Protobuf C++ (version == 5.29.4)
77
* Python Protobuf (version == 5.29.4)
88
* dnspython (version == 2.6.1) for DNS SRV support
9-
* lz4 (version >= 2.1.6, <= 4.3.2) for connection compression support
9+
* lz4 (version == 4.4.4) for connection compression support
1010
* zstandard (version >= 0.12.0, <= 0.19.0) for connection compression support

mysqlx-connector-python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def main() -> None:
163163
install_requires=["protobuf==5.29.4"],
164164
extras_require={
165165
"dns-srv": ["dnspython==2.6.1"],
166-
"compression": ["lz4>=2.1.6,<=4.3.2", "zstandard==0.23.0"],
166+
"compression": ["lz4==4.4.4", "zstandard==0.23.0"],
167167
},
168168
)
169169

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
protobuf==5.29.4
22
dnspython==2.6.1
3-
lz4>=2.1.6,<=4.3.2
3+
lz4==4.4.4
44
zstandard>=0.12.0,<=0.19.0

0 commit comments

Comments
 (0)