Migrate from standard-version to release-please#129
Merged
Conversation
Replace manual standard-version releases with automated release-please workflow. - Add release-please.yml workflow for automated releases - Remove standard-version from devDependencies - Remove npm release script - Update documentation in AGENTS.md 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]>
There was a problem hiding this comment.
Pull request overview
This PR migrates the project's release process from the deprecated standard-version to release-please, enabling automated releases via GitHub Actions. The changes remove manual release tooling and establish a conventional-commit-based automated release workflow.
Key Changes:
- Automated release workflow via GitHub Actions using
release-please-action@v4 - Removal of
standard-versiondependency and manual release script - Updated documentation reflecting the new automated release process
Reviewed changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| package.json | Removed standard-version dependency and release script |
| package-lock.json | Cleaned up standard-version and all its transitive dependencies |
| CHANGELOG.md | Deleted manual changelog (release-please will auto-generate) |
| AGENTS.md | Updated documentation to describe the new automated release process |
| .github/workflows/release-please.yml | Added new workflow to automate releases on main branch pushes |
Note: No issues were identified in this migration. The changes are clean, well-documented, and properly implement the release-please workflow as described in the PR description.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
see. https://github.com/conventional-changelog/standard-version
see also. https://github.com/googleapis/release-please-action
This pull request migrates the project's release process from
standard-versiontorelease-please, automating releases via GitHub Actions. It updates documentation and configuration files to reflect this change, and removes now-unnecessary dependencies and scripts.Release automation migration:
release-please.yml, to automate releases using therelease-pleaseaction.AGENTS.mdto document the new release process, replacing references tostandard-versionwithrelease-please, and explaining how releases are now handled automatically. [1] [2] [3]Dependency and script cleanup:
standard-versionfromdevDependenciesand deleted thereleasescript frompackage.jsonsince they are no longer needed. [1] [2]Changelog update:
CHANGELOG.md, as release notes will now be generated automatically byrelease-please.Release flow with release-please