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
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -472,10 +472,20 @@ jobs:
# * 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"
# * databricks-sqlalchemy 1.x caps pyarrow<17, but upgrading requires SQLAlchemy 2.x (which is not possible for some Python versions)
# CVE-2026-32274 (black cache path injection via --python-cell-magics)
# * dev-only dependency, not used with untrusted input
# * fix requires black 26.x which changes formatting style; deferring upgrade
# CVE-2026-27448, CVE-2026-27459 (pyopenssl callback vulnerabilities)
# * transitive dep of snowflake-connector-python, not used directly
# * blocked: snowflake-connector-python pins pyOpenSSL<26.0.0 (even in latest 4.3.0 as of 2026-03-17)
# * upstream fix: https://github.com/snowflakedb/snowflake-connector-python/pull/2793
ignore-vulns: &ignore-vulns |
PYSEC-2023-121
CVE-2026-0994
PYSEC-2024-161
CVE-2026-32274
CVE-2026-27448
CVE-2026-27459

audit-all:
name: Audit - All
Expand Down
39 changes: 20 additions & 19 deletions poetry.lock

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

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,9 @@ dependencies = [
"cryptography>=46.0.5,<47",
"protobuf>=4.25.8,<6",
"requests>=2.32.4,<3",
"tornado>=6.5,<7",
"tornado>=6.5.5,<7",
"filelock>=3.20.3,<4",
"pyjwt>=2.12.0,<3",
"pynacl>=1.6.2,<2", # https://github.com/deepnote/deepnote-toolkit/security/dependabot/8

# Config dependencies - they need to be declared both in main and server extras, keep them in sync
Expand Down
Loading