From 385375cf65808c82e84e8aace172bd821feb8fa1 Mon Sep 17 00:00:00 2001 From: Hiroyuki Wada Date: Sat, 13 Jun 2026 14:50:44 +0900 Subject: [PATCH] build(docker): upgrade Alpine runtime to 3.24 Bump the runtime base image from alpine 3.21 to 3.24 (current latest stable) and add release-please changelog-sections so the release notes surface the right categories. The substantial work since v0.3.0 was committed under the `ci:` type, which release-please hides by default; this override restores it to the changelog for the 0.4.0 release. Dependency/security details are left to the real `deps:` commit (d4f878a) so they are not duplicated here. BEGIN_COMMIT_OVERRIDE feat: publish a multi-arch container image (linux/amd64, linux/arm64) to GitHub Container Registry on release (#49) feat: provide macOS (Apple Silicon + Intel) and Windows (x64 + ARM64) release binaries (#49) feat: build binaries and the container image with both SQLite and PostgreSQL backends (#49) fix: report the correct version from --version (it had been stuck at a stale 0.2.0) build: upgrade the Alpine runtime image to 3.24 and modernize the Dockerfile (rust 1.96-alpine builder) (#49) END_COMMIT_OVERRIDE --- Dockerfile | 2 +- release-please-config.json | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fe450c4..d5c52fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,7 +33,7 @@ COPY src ./src RUN cargo build --release --locked --features "${FEATURES}" # Runtime stage -FROM alpine:3.21 +FROM alpine:3.24 # Install runtime dependencies RUN apk add --no-cache \ diff --git a/release-please-config.json b/release-please-config.json index 470af6f..e6164e8 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -1,6 +1,20 @@ { "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", "include-component-in-tag": false, + "changelog-sections": [ + { "type": "feat", "section": "Features" }, + { "type": "fix", "section": "Bug Fixes" }, + { "type": "perf", "section": "Performance Improvements" }, + { "type": "deps", "section": "Dependencies" }, + { "type": "build", "section": "Build System" }, + { "type": "revert", "section": "Reverts" }, + { "type": "docs", "section": "Documentation", "hidden": true }, + { "type": "style", "section": "Styles", "hidden": true }, + { "type": "chore", "section": "Miscellaneous", "hidden": true }, + { "type": "refactor", "section": "Code Refactoring", "hidden": true }, + { "type": "test", "section": "Tests", "hidden": true }, + { "type": "ci", "section": "Continuous Integration", "hidden": true } + ], "packages": { ".": { "release-type": "rust"