Skip to content

Commit 079b7b9

Browse files
committed
security: Dependency Updates
- **Security**: Bump `flask` to `3.1.3` (fixes CVE-2026-27205) - **Security**: Bump `requests` to `2.33.0` (fixes CVE-2026-25645) - **Security**: Upgrade `pip` during Docker build to `>=26.1` (addresses pip CVEs affecting older versions) **Files changed** - `requirements.txt` - `Dockerfile`
1 parent 2467fb0 commit 079b7b9

3 files changed

Lines changed: 12 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to Nudgarr are documented here.
44

55
---
66

7+
## Unreleased
8+
9+
- **Security:** Bump `flask` to 3.1.3 (fixes CVE-2026-27205).
10+
- **Security:** Bump `requests` to 2.33.0 (fixes CVE-2026-25645).
11+
- **Security:** Upgrade `pip` during Docker build to >= 26.1 (addresses multiple pip CVEs affecting older versions).
12+
13+
---
14+
715
## v5.0.1
816

917
**Library, CF Score, and config follow-ups**

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ RUN apk upgrade --no-cache
55

66
# Install dependencies including su-exec for privilege dropping
77
COPY requirements.txt /app/requirements.txt
8-
RUN pip install --no-cache-dir --no-compile -r /app/requirements.txt \
8+
RUN python -m pip install --no-cache-dir --upgrade "pip>=26.1" \
9+
&& pip install --no-cache-dir --no-compile -r /app/requirements.txt \
910
&& apk add --no-cache su-exec
1011

1112
WORKDIR /app

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
flask==3.1.2
2-
requests==2.32.5
1+
flask==3.1.3
2+
requests==2.33.0
33
apprise==1.9.8
44
croniter==6.2.2
55
waitress==3.0.2

0 commit comments

Comments
 (0)