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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 0.1.7

### Security

- **Bump starlette** to >=1.1.0 to remediate CVE-2025-62727 (HIGH) and CVE-2025-54121 (MEDIUM).
- **Bump lxml** to >=6.1.1 to remediate CVE-2026-41066 (HIGH).
- **Bump python-multipart** to >=0.0.29 to remediate CVE-2026-40347 (MEDIUM).
- **Rebuild** to pick up latest python-3.12 apk, resolving CVE-2025-12781 (MEDIUM).

## 0.1.6

### Security
Expand Down
2 changes: 1 addition & 1 deletion prepline_general/api/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.6" # pragma: no cover
__version__ = "0.1.7" # pragma: no cover
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ requires-python = ">=3.12"
dependencies = [
"unstructured[all-docs] >=0.18.31, <1.0.0",
"fastapi >=0.128.4, <1.0.0",
"python-multipart >=0.0.18",
"python-multipart >=0.0.29",
"uvicorn >=0.40.0, <1.0.0",
"backoff >=2.2.1, <3.0.0",
"pandas >=3.0.0, <4.0.0",
Expand Down Expand Up @@ -43,6 +43,10 @@ path = "prepline_general/api/__version__.py"
constraint-dependencies = [
# pdfminer.six 20260107 includes performance fix
"pdfminer-six==20260107",
# starlette >=1.1.0 fixes CVE-2025-62727 (HIGH) and CVE-2025-54121 (MEDIUM)
"starlette>=1.1.0",
# lxml >=6.1.1 fixes CVE-2026-41066 (HIGH)
"lxml>=6.1.1",
]

[[tool.uv.index]]
Expand Down
Loading
Loading