diff --git a/CHANGELOG.md b/CHANGELOG.md index ffcc54f..68e1cd7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [v1.6.6] - 2026-02-11 + +### Features + +- Simplify Forgejo runner image (Dagger Phase 3): remove Node.js, Docker CLI, buildx, skopeo, gnupg, lsb-release, and xz-utils. Add tzdata and flyctl. All build tools now live inside Dagger containers. + +### Bug Fixes + +- Restore Docker CLI to Forgejo runner image — Dagger shells out to ``docker`` to provision its BuildKit engine. +- Restore Node.js to Forgejo runner image — required by ``actions/checkout@v4`` and other JavaScript Actions that were broken by the Phase 3 simplification. + + ## [v1.6.4] - 2026-02-12 ### Bug Fixes diff --git a/argocd/manifests/docs/deployment.yaml b/argocd/manifests/docs/deployment.yaml index 11127f0..58ce7e6 100644 --- a/argocd/manifests/docs/deployment.yaml +++ b/argocd/manifests/docs/deployment.yaml @@ -22,7 +22,7 @@ spec: name: http env: - name: DOCS_RELEASE_URL - value: "https://forge.ops.eblu.me/eblume/blumeops/releases/download/v1.6.5/docs-v1.6.5.tar.gz" + value: "https://forge.ops.eblu.me/eblume/blumeops/releases/download/v1.6.6/docs-v1.6.6.tar.gz" resources: requests: memory: "64Mi" diff --git a/docs/changelog.d/dagger-phase3-runner.feature.md b/docs/changelog.d/dagger-phase3-runner.feature.md deleted file mode 100644 index d145b7b..0000000 --- a/docs/changelog.d/dagger-phase3-runner.feature.md +++ /dev/null @@ -1 +0,0 @@ -Simplify Forgejo runner image (Dagger Phase 3): remove Node.js, Docker CLI, buildx, skopeo, gnupg, lsb-release, and xz-utils. Add tzdata and flyctl. All build tools now live inside Dagger containers. diff --git a/docs/changelog.d/fix-runner-docker-cli.bugfix.md b/docs/changelog.d/fix-runner-docker-cli.bugfix.md deleted file mode 100644 index 8f8a6af..0000000 --- a/docs/changelog.d/fix-runner-docker-cli.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Restore Docker CLI to Forgejo runner image — Dagger shells out to ``docker`` to provision its BuildKit engine. diff --git a/docs/changelog.d/fix-runner-node.bugfix.md b/docs/changelog.d/fix-runner-node.bugfix.md deleted file mode 100644 index 8b9456f..0000000 --- a/docs/changelog.d/fix-runner-node.bugfix.md +++ /dev/null @@ -1 +0,0 @@ -Restore Node.js to Forgejo runner image — required by ``actions/checkout@v4`` and other JavaScript Actions that were broken by the Phase 3 simplification.