Skip to content

release: Release v0.0.7#254

Merged
pedronauck merged 1 commit into
mainfrom
release/v0.0.7
Jun 4, 2026
Merged

release: Release v0.0.7#254
pedronauck merged 1 commit into
mainfrom
release/v0.0.7

Conversation

@pedronauck
Copy link
Copy Markdown
Member

@pedronauck pedronauck commented Jun 4, 2026

Release v0.0.7

This PR prepares the release of version v0.0.7.

Changelog

0.0.7 - 2026-06-04

♻️ Refactoring

🐛 Bug Fixes

  • Repair daemon-served e2e flows

Summary by CodeRabbit

  • Chores
    • Updated web assets dependency to a newer version.

@vercel
Copy link
Copy Markdown

vercel Bot commented Jun 4, 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 4, 2026 3:30pm

Request Review

@github-actions
Copy link
Copy Markdown
Contributor

github-actions Bot commented Jun 4, 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.7 vs. main.

View workflow run

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

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Jun 4, 2026

Review Change Stack

Walkthrough

Updated the github.com/compozy/agh-web-assets dependency from v0.0.31 to v0.0.33 in go.mod.

Changes

Dependency Update

Layer / File(s) Summary
Web Assets dependency upgrade
go.mod
github.com/compozy/agh-web-assets version is bumped from v0.0.31 to v0.0.33 in the primary require list.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Possibly related PRs

  • compozy/agh#251: Previous bump of github.com/compozy/agh-web-assets to v0.0.31, the base version for this upgrade to v0.0.33.
  • compozy/agh#237: Related dependency version bump for the same github.com/compozy/agh-web-assets module.
  • compozy/agh#216: Prior upgrade of github.com/compozy/agh-web-assets dependency to a different version.
🚥 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 title 'release: Release v0.0.7' is directly related to the PR's primary objective of preparing a v0.0.7 release, though the file change shows only a dependency update rather than comprehensive release changes.
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.7

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

Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@go.mod`:
- Line 13: Confirm provenance of the github.com/compozy/agh-web-assets v0.0.33
change by regenerating the module properly rather than leaving a manual edit:
fetch the module version so go.mod and go.sum are produced by the toolchain
(ensure the dependency line "github.com/compozy/agh-web-assets v0.0.33" in
go.mod and corresponding hashes in go.sum are the result of a module fetch),
then commit the regenerated go.mod and go.sum; if the change was intentionally
manual, document in the PR description which command or workflow produced the
update and include that note in the commit message so reviewers can verify
provenance.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: fd191bc5-a24c-4c8d-babf-dc681de4482b

📥 Commits

Reviewing files that changed from the base of the PR and between 3df9241 and 5ef1e88.

⛔ 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.7.mdx is excluded by !**/*.mdx
📒 Files selected for processing (1)
  • go.mod

Comment thread go.mod
github.com/charmbracelet/bubbletea v1.3.10
github.com/coder/acp-go-sdk v0.12.2
github.com/compozy/agh-web-assets v0.0.31
github.com/compozy/agh-web-assets v0.0.33
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

❓ Verification inconclusive

🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "=== go.mod (with line numbers around line 13) ==="
nl -ba go.mod | sed -n '1,40p'

echo
echo "=== go.sum entries for compozy/agh-web-assets ==="
rg -n "github\.com/compozy/agh-web-assets" go.sum || true

echo
echo "=== git diff for go.mod and go.sum (if git metadata exists) ==="
if git rev-parse --is-inside-work-tree >/dev/null 2>&1; then
  git diff -- go.mod go.sum | sed -n '1,200p'
else
  echo "No git repository metadata available."
fi

echo
echo "=== Current module versions for compozy/agh-web-assets from go.mod parsing ==="
node -e "const fs=require('fs');const txt=fs.readFileSync('go.mod','utf8').split(/\\r?\\n/);for(const line of txt){const m=line.match(/^github\\.com\\/compozy\\/agh-web-assets\\s+v\\S+/); if(m) console.log(m[0]);}"

Repository: compozy/agh

Length of output: 166


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "=== go.mod (with line numbers around line 13) ==="
nl -ba go.mod | sed -n '1,40p'

echo
echo "=== go.sum entries for compozy/agh-web-assets ==="
rg -n "github\.com/compozy/agh-web-assets" go.sum || true

echo
echo "=== git diff for go.mod and go.sum (if git metadata exists) ==="
if git rev-parse --is-inside-work-tree >/dev/null 2>&1; then
  git diff -- go.mod go.sum | sed -n '1,200p'
else
  echo "No git repository metadata available."
fi

echo
echo "=== Current module versions for compozy/agh-web-assets from go.mod parsing ==="
node -e "const fs=require('fs');const txt=fs.readFileSync('go.mod','utf8').split(/\\r?\\n/);for(const line of txt){const m=line.match(/^github\\.com\\/compozy\\/agh-web-assets\\s+v\\S+/); if(m) console.log(m[0]);}"

Repository: compozy/agh

Length of output: 166


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "=== go.mod (lines 1-30) ==="
sed -n '1,30p' go.mod || true

echo
echo "=== go.sum entries for compozy/agh-web-assets ==="
if [ -f go.sum ]; then
  rg -n "github\.com/compozy/agh-web-assets" go.sum || true
else
  echo "go.sum not found."
fi

echo
echo "=== git diff for go.mod and go.sum (if git metadata exists) ==="
if git rev-parse --is-inside-work-tree >/dev/null 2>&1; then
  git diff -- go.mod go.sum | sed -n '1,200p' || true
else
  echo "No git repository metadata available."
fi

echo
echo "=== Current module versions for compozy/agh-web-assets from go.mod parsing ==="
node -e "const fs=require('fs');const txt=fs.readFileSync('go.mod','utf8').split(/\r?\n/);for(const line of txt){const m=line.match(/^github\\.com\\/compozy\\/agh-web-assets\\s+v\\S+/); if(m) console.log(m[0]);}"

Repository: compozy/agh

Length of output: 1569


Confirm go.mod update provenance for github.com/compozy/agh-web-assets v0.0.33
go.mod now requires github.com/compozy/agh-web-assets v0.0.33, and go.sum contains matching v0.0.33 hashes, but the repo state provided doesn’t show whether the change was produced by go get github.com/compozy/agh-web-assets@v0.0.33 (with metadata refresh) versus a manual edit to go.mod.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@go.mod` at line 13, Confirm provenance of the
github.com/compozy/agh-web-assets v0.0.33 change by regenerating the module
properly rather than leaving a manual edit: fetch the module version so go.mod
and go.sum are produced by the toolchain (ensure the dependency line
"github.com/compozy/agh-web-assets v0.0.33" in go.mod and corresponding hashes
in go.sum are the result of a module fetch), then commit the regenerated go.mod
and go.sum; if the change was intentionally manual, document in the PR
description which command or workflow produced the update and include that note
in the commit message so reviewers can verify provenance.

@pedronauck
Copy link
Copy Markdown
Member Author

✅ Dry-Run Completed Successfully

📊 Build Summary

  • Version: 0.0.0-1780587126
  • Commit: ba6c1a0

📦 Built Artifacts

Not available.


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

@pedronauck pedronauck merged commit bc75c82 into main Jun 4, 2026
12 checks passed
@pedronauck pedronauck deleted the release/v0.0.7 branch June 4, 2026 17:06
@coderabbitai coderabbitai Bot mentioned this pull request Jun 4, 2026
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