Release: v1.0.1 - #30
Conversation
🤖 Augment PR SummarySummary: This PR cuts the v1.0.1 release and updates CLI behavior around container builds and database seeding. Changes:
Technical Notes: Updates now avoid re-seeding fixtures marked 🤖 Was this summary useful? React with 👍 or 👎 |
There was a problem hiding this comment.
Pull request overview
This PR prepares the v1.0.1 release by adding a top-level build command shortcut and changing database seeding behavior during build/update to leverage Ghostwriter v7.2.1’s --required-only fixtures seeding.
Changes:
- Added
ghostwriter-cli buildas a shortcut forghostwriter-cli containers build. - Updated
containers buildandupdateflows to seed with/seed_data --required-onlyto avoid re-seeding non-required fixtures. - Updated documentation (README + CHANGELOG) and corrected a help-string typo.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| README.md | Documents the new top-level build command in the command list. |
| cmd/update.go | Passes --required-only into the shared container update/seed path during updates. |
| cmd/install.go | Updates updateContainers to accept optional seed args and forwards them to /seed_data. |
| cmd/containersBuild.go | Uses /seed_data --required-only when re-seeding after container builds; fixes a help-string typo. |
| cmd/build.go | Introduces the new root-level build command wrapper. |
| CHANGELOG.md | Adds the 1.0.1 release entry describing the new command and seeding behavior change. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
CHANGELOG
[1.0.1] - 2026-07-01
Added
buildcommand that is a shortcut forcontainers buildChanged
buildandupdatecommands to use Ghostwriter v7.2.1's--required-onlyflag for database fixturesrequired: false