Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -462,12 +462,6 @@ jobs:
inputs: /tmp/requirements-prod.txt
require-hashes: true
disable-pip: true
# PYSEC-2023-121 (CVE-2022-4899 / GHSA-5c9c-6x87-f9vm)
# * incorrectly flags zstd versions >= 1.5.4.0 as vulnerable to CVE-2022-4899
# * see https://github.com/pypa/advisory-database/blob/main/vulns/zstd/PYSEC-2023-121.yaml (our version ranges are outside of reported versions)
# CVE-2026-0994 (protobuf DoS via nested Any messages in ParseDict)
# * no fix version available yet
# * low risk: only affects json_format.ParseDict() with untrusted input
# PYSEC-2024-161 (pyarrow deserialization vulnerability)
# * false positive: only affects Arrow R package, not PyArrow
# * see CVE description: "This vulnerability only affects the arrow R package, not other Apache Arrow implementations"
Expand All @@ -477,8 +471,6 @@ jobs:
# * this repo uses PyArrow through pandas parquet IO and Arrow table construction, not IPC file pre-buffering
# * databricks-sqlalchemy 1.x caps pyarrow<17, but upgrading requires SQLAlchemy 2.x (which is not possible for some Python versions)
ignore-vulns: &ignore-vulns |
PYSEC-2023-121
CVE-2026-0994
PYSEC-2024-161
PYSEC-2026-113

Expand Down
12 changes: 6 additions & 6 deletions poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ dependencies = [

# SQL templating
"jinja2>=3.1.6,<4",
"sqlparse>=0.4.4,<0.6",
"sqlparse>=0.6.0,<0.7",
"pymysql>=1.1.1,<1.2",
"pymongo>=4.6.3,<4.10; python_version < '3.13'",
"pymongo>=4.9.0,<5; python_version>='3.13'",
Expand Down
Loading