Skip to content

release: Release v0.0.6#248

Closed
pedronauck wants to merge 1 commit into
mainfrom
release/v0.0.6
Closed

release: Release v0.0.6#248
pedronauck wants to merge 1 commit into
mainfrom
release/v0.0.6

Conversation

@pedronauck
Copy link
Copy Markdown
Member

@pedronauck pedronauck commented Jun 2, 2026

Release v0.0.6

This PR prepares the release of version v0.0.6.

Changelog

0.0.6 - 2026-06-02

🎉 Features

🐛 Bug Fixes

Summary by CodeRabbit

  • Chores
    • Updated dependencies to improve application stability and performance.

@vercel
Copy link
Copy Markdown

vercel Bot commented Jun 2, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
agh-site Ready Ready Preview, Comment Jun 2, 2026 3:18pm

Request Review

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Jun 2, 2026

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: a3e723d7-ab16-4dab-9bcf-6a44b87e9737

📥 Commits

Reviewing files that changed from the base of the PR and between 8cc8ff3 and e16fcb7.

⛔ Files ignored due to path filters (6)
  • CHANGELOG.md is excluded by !**/*.md
  • RELEASE_BODY.md is excluded by !**/*.md
  • RELEASE_NOTES.md is excluded by !**/*.md
  • go.sum is excluded by !**/*.sum, !**/*.sum
  • package.json is excluded by !**/*.json
  • packages/site/content/blog/changelog/v0.0.6.mdx is excluded by !**/*.mdx
📒 Files selected for processing (1)
  • go.mod

Walkthrough

This PR updates the github.com/compozy/agh-web-assets Go module dependency from v0.0.24 to v0.0.29 in go.mod. The change applies to the main require block with no other module directives or dependencies affected.

Changes

Dependency Update

Layer / File(s) Summary
agh-web-assets version bump
go.mod
The github.com/compozy/agh-web-assets dependency is updated to version v0.0.29.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Possibly related PRs

  • compozy/agh#237: Updates the same github.com/compozy/agh-web-assets dependency across different version stages.
  • compozy/agh#216: Also modifies go.mod to bump the github.com/compozy/agh-web-assets dependency.
  • compozy/agh#220: Makes a similar dependency version update to the same github.com/compozy/agh-web-assets module.
🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The PR title 'release: Release v0.0.6' clearly indicates this is a release preparation PR for version v0.0.6, which aligns with the PR objectives and the single file change (updating web assets dependency for the release).
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch release/v0.0.6

Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Jun 2, 2026

React Doctor

React Doctor found 7 files changed in this pull request, but none matched the files covered by its enabled checks.

Scope: 7 files changed on release/v0.0.6 vs. main.

View workflow run

Generated by React Doctor. Questions? Contact founders@million.dev.

@pedronauck
Copy link
Copy Markdown
Member Author

✅ Dry-Run Completed Successfully

📊 Build Summary

  • Version: 0.0.0-1780413623
  • Commit: cf5f384

📦 Built Artifacts

Not available.


This is an automated comment from the release dry-run check.

pedronauck added a commit that referenced this pull request Jun 2, 2026
…249)

## Summary

`main` (commit `8cc8ff39`) is red, blocking the **v0.0.6** release PR
#248. All three failing release-PR checks trace back to `main`, not the
release branch:

- **Verify** — `internal/daemon/coordinator_runtime.go` `bootstrapRun`
exceeded the gocyclo threshold (CC **21 > 20**). Extracted
`reconcileCreatedCoordinator` and `wakeCoordinatorIfNeeded` — a
behavior-preserving split that drops complexity to ~10.
- **Integration** —
`TestHarnessContextIntegrationStartupAndPromptShareResolverPolicy`
counted `<agh-situation-context>` (the **open** tag), which the bundled
tools guide (`tools-and-skills.md`) documents in prose, so the count was
2. It now counts the closing `</agh-situation-context>` tag → measures
**rendered sections** (exactly 1). The product already renders the
section once; the assertion was fragile (red since v0.0.5).
- **E2E Nightly** — the sandbox *"real session execution"* test
direct-navigates to a session created in a temp workspace while the
**global** workspace is active. #238's `useSessionWorkspaceGuard`
redirects away on a workspace/session mismatch, so the composer never
rendered and `locator.fill` hit the 180s timeout. The test now activates
the session's workspace via the switcher first — the
persisted-active-workspace precondition #238 assumes for direct
navigation.

## Verification

- `make verify` — **pass** (full monorepo gate).
- golangci-lint **v2.12.2** `./...` (CI's pinned version) — **0
issues**.
- `go test -race ./internal/daemon/...` — **875 unit pass**; **987
integration pass** (`-tags integration`).
- `bun-lint` — 0 warnings / 0 errors; web typecheck — pass.
- The E2E fix is verified by deterministic root-cause analysis +
typecheck/lint; the release PR's **E2E Nightly** lane (the lane that
failed) is its end-to-end gate. A faithful single-test local run is
blocked by the nightly coverage-gate plus the daemon-served harness env.

## Release impact

Merging this refreshes `release/v0.0.6` (#248) to include the fix so its
**Verify** and **Integration** lanes go green. Version stays **v0.0.6**
— CI's pinned git-cliff `2.7.0` treats `feat:` as a patch bump on `0.x`
(same as how v0.0.5 was cut).

> Note: v0.0.5's own release PR (#237) merged with **Integration +
Verify failing**. The heavy lanes (Integration, E2E Nightly) only run on
release PRs, so these regressions slipped past per-feature CI. Worth
tightening the merge gate separately.

AGH Impact Audit:

- Native tools: no impact — no `agh__*` IDs, toolsets, descriptors,
input/output schemas, schema digests, risk flags, or capability gates
changed; this is an internal daemon refactor plus two test files.
- Extensibility and hooks: no impact — no extension manifests/resources,
hook taxonomy or dispatch call sites, skill/capability declarations,
bundles, registries, bridge SDKs, MCP sidecars, or `config.toml`
lifecycle changed. `bootstrapRun`'s dispatch call sites, locking, and
ordering are preserved by the extraction.
- Workspace data isolation: no impact on runtime data ownership — the
coordinator refactor preserves `workspace_id`-scoped
bootstrap/reconcile/dispatch exactly; the e2e change only makes the test
honor the existing per-workspace session-route guard from #238.
- Official AGH skill: no impact — `skills/agh/SKILL.md` and
`skills/agh/references/*.md` are unchanged. The `tools-and-skills.md`
`<agh-situation-context>` mention is correct documentation and
intentionally left as-is; the test was corrected instead.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

* **Refactor**
* Improved internal coordinator session initialization and management
code organization for better maintainability and clarity.

* **Tests**
* Updated integration tests with refined assertions to better validate
rendered output correctness.
* Enhanced end-to-end tests with explicit verification steps for
workspace-to-session binding workflows.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
@pedronauck pedronauck closed this Jun 2, 2026
@pedronauck pedronauck deleted the release/v0.0.6 branch June 2, 2026 22:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant