Skip to content

Commit 4e586ca

Browse files
committed
starlette 0.46.1 → 0.49.1
✅ urllib3 2.3.0 → 2.5.0 ✅ requests 2.32.3 → 2.32.5 (even better than required 2.32.4!) ✅ aiohttp 3.11.16 → 3.13.2 (even better than required 3.12.14!)
1 parent 8db5844 commit 4e586ca

File tree

5 files changed

+163
-97
lines changed

5 files changed

+163
-97
lines changed

DOCKER_README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# PostgreSQL MCP Server - Enhanced
22

3-
Last Updated October 18, 2025 8:59 PM EST Production/Stable v1.1.1
3+
Last Updated October 27, 2025 - Production/Stable v1.1.1
44

55
<!-- mcp-name: io.github.neverinfamous/postgres-mcp-server -->
66

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ RUN apt-get update && apt-get install -y \
3939
&& rm -rf /var/lib/apt/lists/* \
4040
&& apt-get clean
4141

42+
# Security: Upgrade pip to fix CVE-2025-8869
43+
RUN pip install --no-cache-dir --upgrade pip>=25.3
44+
4245
COPY --from=builder --chown=app:app /app /app
4346
COPY --chown=app:app docker-entrypoint.sh /app/
4447
RUN chmod +x /app/docker-entrypoint.sh

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# PostgreSQL MCP Server - Version 1.1.1
22

3-
Last Updated October 18, 2025 8:59 PM EST - Production/Stable v1.1.1
3+
Last Updated October 27, 2025 - Production/Stable v1.1.1
44

55
<!-- mcp-name: io.github.neverinfamous/postgres-mcp-server -->
66

pyproject.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ dependencies = [
1414
"instructor>=1.7.9",
1515
"h11>=0.16.0",
1616
"setuptools>=78.1.1",
17+
# Security: Force updated versions to fix CVEs
18+
"starlette>=0.49.1", # CVE-2025-62727, CVE-2025-54121
19+
"urllib3>=2.5.0", # CVE-2025-50181, CVE-2025-50182
20+
"requests>=2.32.4", # CVE-2024-47081
21+
"aiohttp>=3.12.14", # CVE-2025-53643
1722
]
1823
license = "mit"
1924
license-files = ["LICENSE"]

0 commit comments

Comments
 (0)