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
12 changes: 6 additions & 6 deletions data-management/viewer/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version = "0.1.0"
description = "Web-based dataset analysis and annotation tool for robot demonstration datasets"
requires-python = ">=3.12"
dependencies = [
"fastapi==0.136.0",
"uvicorn[standard]==0.44.0",
"fastapi==0.136.1",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fastapi 0.136.0 → 0.136.1 — low risk

Patch update that addresses Pydantic v2 deprecations. No breaking changes expected.

"uvicorn[standard]==0.46.0",
Comment thread
bindsi marked this conversation as resolved.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

uvicorn[standard] 0.44.0 → 0.46.0 — skips 0.45.x

This bump skips the entire 0.45.x release series. While overall risk is low, verify the uvicorn changelog for any HTTP/1.1, WebSocket, or lifespan handling changes that could affect the viewer backend API behaviour.

"pydantic==2.13.3",
"python-multipart==0.0.26",
"python-dotenv==1.2.2",
Expand All @@ -14,14 +14,14 @@ dependencies = [
"scipy==1.17.1",
"scikit-learn==1.8.0",
"pandas==3.0.2",
"pyarrow==23.0.1",
"pyarrow==24.0.0",
Comment thread
bindsi marked this conversation as resolved.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ pyarrow MAJOR version bump — ABI-sensitive (python-runtime surface)

pyarrow crosses a major version boundary (23.0.1 → 24.0.0). Apache Arrow major releases introduce C++ ABI and IPC format changes that can break:

  • DataFrame/Table serialisation contracts between processes
  • Interoperability with pandas, numpy, and scipy (all present in this manifest)
  • Dataset and Parquet reader APIs

The python-runtime surface rubric explicitly flags pyarrow as high-risk. No GHSA or CVE IDs were found in the PR body; external advisory APIs were unreachable, so the security driver could not be confirmed. Check the GitHub Advisory Database for pyarrow to identify the specific advisory.

Recommended validation: ruff check + pytest in data-management/viewer/backend/ before merging.

"Pillow==12.2.0",
"opencv-python-headless==4.13.0.92",
]

[project.optional-dependencies]
dev = [
"ruff==0.15.11",
"ruff==0.15.12",
"pytest==9.0.3",
"pytest-asyncio==1.3.0",
"httpx==0.28.1",
Expand All @@ -32,7 +32,7 @@ azure = [
"azure-identity==1.25.3",
]
huggingface = [
"huggingface-hub==1.11.0",
"huggingface-hub==1.12.0",
Comment thread
bindsi marked this conversation as resolved.
]
hdf5 = [
"h5py==3.16.0",
Expand All @@ -43,7 +43,7 @@ export = [
"Pillow==12.2.0",
]
yolo = [
"ultralytics==8.4.40",
"ultralytics==8.4.41",
"numpy==2.4.4",
"Pillow==12.2.0",
]
Expand Down
Loading
Loading