From fdf1f26d8e196561819587847731166dd802f487 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 4 Jun 2026 17:45:26 +0000 Subject: [PATCH] release: prepare release v0.0.8 --- CHANGELOG.md | 7 ++++++ RELEASE_BODY.md | 10 +++----- RELEASE_NOTES.md | 6 +++++ go.mod | 2 +- go.sum | 4 ++-- package.json | 2 +- .../site/content/blog/changelog/v0.0.8.mdx | 24 +++++++++++++++++++ 7 files changed, 44 insertions(+), 11 deletions(-) create mode 100644 packages/site/content/blog/changelog/v0.0.8.mdx diff --git a/CHANGELOG.md b/CHANGELOG.md index 6783e1d4..dd867659 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.0.8 - 2026-06-04 + +### 🧪 Testing + +- Remove not needed test + ## 0.0.7 - 2026-06-04 ### ♻️ Refactoring @@ -330,6 +336,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Stabilize release e2e flows - Improve suite speed +[0.0.8]: https://github.com/compozy/agh/compare/v0.0.7...v0.0.8 [0.0.7]: https://github.com/compozy/agh/compare/v0.0.6...v0.0.7 [0.0.6]: https://github.com/compozy/agh/compare/v0.0.5...v0.0.6 [0.0.5]: https://github.com/compozy/agh/compare/v0.0.4...v0.0.5 diff --git a/RELEASE_BODY.md b/RELEASE_BODY.md index 140daf36..30a19b70 100644 --- a/RELEASE_BODY.md +++ b/RELEASE_BODY.md @@ -1,9 +1,5 @@ -## 0.0.7 - 2026-06-04 +## 0.0.8 - 2026-06-04 -### ♻️ Refactoring +### 🧪 Testing -- Improvements on create modals (#252) - -### 🐛 Bug Fixes - -- Repair daemon-served e2e flows +- Remove not needed test diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index c2f9a6e3..608cfc41 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,9 @@ +## 0.0.8 - 2026-06-04 + +### 🧪 Testing + +- Remove not needed test + ## 0.0.7 - 2026-06-04 ### ♻️ Refactoring diff --git a/go.mod b/go.mod index 8da26757..6561a806 100644 --- a/go.mod +++ b/go.mod @@ -10,7 +10,7 @@ require ( github.com/charmbracelet/bubbles v1.0.0 github.com/charmbracelet/bubbletea v1.3.10 github.com/coder/acp-go-sdk v0.12.2 - github.com/compozy/agh-web-assets v0.0.33 + github.com/compozy/agh-web-assets v0.0.34 github.com/creativeprojects/go-selfupdate v1.5.2 github.com/daytonaio/daytona/libs/sdk-go v0.166.0 github.com/getkin/kin-openapi v0.135.0 diff --git a/go.sum b/go.sum index 428c0f7e..7088cd16 100644 --- a/go.sum +++ b/go.sum @@ -122,8 +122,8 @@ github.com/codahale/rfc6979 v0.0.0-20141003034818-6a90f24967eb h1:EDmT6Q9Zs+SbUo github.com/codahale/rfc6979 v0.0.0-20141003034818-6a90f24967eb/go.mod h1:ZjrT6AXHbDs86ZSdt/osfBi5qfexBrKUdONk989Wnk4= github.com/coder/acp-go-sdk v0.12.2 h1:fpRJ8Z5HMSr5cZ5IywzFlFZcIxZOsto+laNVu7XelFA= github.com/coder/acp-go-sdk v0.12.2/go.mod h1:yKzM/3R9uELp4+nBAwwtkS0aN1FOFjo11CNPy37yFko= -github.com/compozy/agh-web-assets v0.0.33 h1:2JPPFauTBE550hkYwn7RNP4HjbdwZOiijFGTxvx9+2A= -github.com/compozy/agh-web-assets v0.0.33/go.mod h1:X4Gwpl8HRswrtrQqM43F4bTd+Mw7iTojtj0JkDOqRGI= +github.com/compozy/agh-web-assets v0.0.34 h1:OJ6ACEQyPy4NUhnwdtXekb+Aou0R05liXu94qImkdZg= +github.com/compozy/agh-web-assets v0.0.34/go.mod h1:X4Gwpl8HRswrtrQqM43F4bTd+Mw7iTojtj0JkDOqRGI= github.com/coreos/go-oidc/v3 v3.16.0 h1:qRQUCFstKpXwmEjDQTIbyY/5jF00+asXzSkmkoa/mow= github.com/coreos/go-oidc/v3 v3.16.0/go.mod h1:wqPbKFrVnE90vty060SB40FCJ8fTHTxSwyXJqZH+sI8= github.com/cpuguy83/go-md2man/v2 v2.0.6/go.mod h1:oOW0eioCTA6cOiMLiUPZOpcVxMig6NIQQ7OS05n1F4g= diff --git a/package.json b/package.json index bf917e1f..bc5a677d 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "0.0.7", + "version": "0.0.8", "private": true, "workspaces": [ "packages/ui", diff --git a/packages/site/content/blog/changelog/v0.0.8.mdx b/packages/site/content/blog/changelog/v0.0.8.mdx new file mode 100644 index 00000000..36f574de --- /dev/null +++ b/packages/site/content/blog/changelog/v0.0.8.mdx @@ -0,0 +1,24 @@ +--- +version: "v0.0.8" +date: "2026-06-04T17:44:09.000Z" +status: "alpha" +summary: "Release v0.0.8" +added: [] +changed: [] +fixed: [] +breaking: [] +compareUrl: "https://github.com/compozy/agh/compare/v0.0.7...v0.0.8" +--- + +Generated from release artifacts for v0.0.8. + +## Verification posture + +This generated release entry names the release gates and artifact guarantees that the AGH release workflow owns: + +- Repository gate: `make verify` covers codegen drift, Bun lint/typecheck/test/build, Go fmt/lint/test/build, and import boundaries. +- Release PR dry-run: `pr-release dry-run`, `make test-e2e-nightly`, and `make test-integration` run before the release commit is merged. +- Production release: generated release assets are validated before `goreleaser release --clean` publishes the release. +- Artifact provenance: GoReleaser signs `checksums.txt` with cosign, publishes the Sigstore bundle `checksums.txt.sigstore.json`, and generates Syft SBOMs for archives, packages, and source. + +Known limitation: this generated changelog does not claim a manual post-release install smoke or live-provider QA run unless a release note in this entry names that evidence.