fix: upgrade jupyter-server to 2.20.0 (CVE-2026-44727) - #24
Merged
pengyuzhang merged 2 commits intoAug 6, 2026
Merged
Conversation
Automated dependency upgrade by OrbisAI Security
pengyuzhang
approved these changes
Aug 6, 2026
pengyuzhang
left a comment
Collaborator
There was a problem hiding this comment.
Approving — verified locally and against PyPI.
Scope: single commit, Detection/uv.lock only, 8 changed lines, all inside the jupyter-server block. jupyter-server is not a direct dependency (arrives via the optional notebook extra → jupyterlab/notebook), so no pyproject.toml pin conventions are affected.
Verification:
- Lockfile sdist/wheel sha256 match the official PyPI artifacts for 2.20.0 byte-for-byte.
- The
overridesmarker change matches upstream metadata exactly (overrides>=5.0; python_version < "3.12"in 2.20.0's requires_dist) — expected, not hand-edited. uv lock --check— consistent, 368 packages resolved.uv run pytest tests/ -q— 53 passed.- After
uv sync --extra dev,jupyter_serverisn't even installed (notebook extra only), and nothing inDetection/imports it — so runtime exposure was already nil; this clears dashboard risk.
Impact: closes 5 open Dependabot alerts, not just the one in the title — CVE-2026-44727 (critical, patched exactly at 2.20.0), CVE-2026-40934 / CVE-2026-40110 / CVE-2026-35397 (high, patched at 2.18.0), CVE-2025-61669 (medium).
Nice, minimal fix — exactly the right shape for a security bump.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Upgrade jupyter-server from 2.16.0 to 2.20.0 to fix CVE-2026-44727.
Vulnerability
CVE-2026-44727Detection/uv.lock(dependency:jupyter-server)Description: jupyter-server: Jupyter Server: Remote Code Execution via stored Cross-Site Scripting in nbconvert handlers
Evidence
Scanner confirmation: trivy rule
CVE-2026-44727flagged this pattern.Changes
Detection/uv.lockBehavior Preservation
The change is scoped to 1 file on the vulnerable path; it only tightens handling of untrusted input and leaves valid inputs unaffected.
This change addresses a pattern flagged by static analysis. The code path handles user-influenced input and the fix reduces the attack surface against both manual and automated exploitation.
Automated security fix by OrbisAI Security