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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- **Bump docker group: python 3.13-slim→3.14-slim** (#24)
- **Bump github-actions group: codecov/codecov-action 5→6** (#23)
- **`.github/dependabot.yml`** commit-message prefix changed from `"chore(deps)"` to `"chore"` across all three ecosystems (pip, github-actions, docker). Combined with the existing `include: "scope"` setting, this restores the canonical Dependabot title format `chore(deps): bump <pkg>` instead of the doubled `chore(deps)(deps): bump <pkg>` produced by the previous config (Dependabot auto-appends `(deps)` when `include: scope` is set, so the prefix must be bare). Surfaced live on PRs #23 and #24, which exhibited the doubled prefix.

Expand Down
4 changes: 2 additions & 2 deletions deploy/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# collector with a Caddy static server sharing the output volume.

# --- build stage --------------------------------------------------------
FROM python:3.13-slim AS build
FROM python:3.14-slim AS build

RUN pip install --no-cache-dir uv==0.4.*

Expand All @@ -36,7 +36,7 @@ ENV UV_PROJECT_ENVIRONMENT=/opt/venv
RUN uv sync --frozen --no-dev --no-editable

# --- runtime stage ------------------------------------------------------
FROM python:3.13-slim AS runtime
FROM python:3.14-slim AS runtime

# Non-root service account. The output directory is the only writable
# path the collector touches; config + credential live read-only under
Expand Down
Loading