Loading...
Loading...
Creates changesets for semantic versioning and automates release notes. Determines correct version bump type (patch/minor/major) and generates well-documented changelog entries. Triggers on: add changeset, create changeset, version bump, prepare release, CHANGELOG, breaking change, pnpm changeset.
npx skill4agent add saleor/configurator creating-changesets.changeset/| Type | When to Use | Version Change |
|---|---|---|
| Bug fixes, documentation, refactoring, dependency updates | 1.0.0 → 1.0.1 |
| New features, non-breaking enhancements | 1.0.0 → 1.1.0 |
| Breaking changes, API modifications | 1.0.0 → 2.0.0 |
patchminormajorpnpm changeset.changeset/---
"@saleor/configurator": minor
---
Add support for reference attributes with entityType field
- Attributes of type REFERENCE now require an entityType field
- Introspection properly captures entity type references
- Deploy correctly handles reference attribute creation---
"package-name": patch|minor|major
---
Short description of the change (shown in CHANGELOG)
Optional longer description with:
- Bullet points for details
- Code examples if needed
- Migration instructions for breaking changespnpm changeset
git add .changeset/
git commit -m "chore: add changeset for feature"# See what changesets exist
npx changeset status
# Preview version bump
npx changeset version --dry-run| Mistake | Issue | Fix |
|---|---|---|
| Wrong bump type | Unexpected version | Review decision guide above |
| Vague description | Poor CHANGELOG | Be specific about changes |
| Missing changeset | No release notes | Always add before PR |
| Multiple changesets | Fragmented notes | Combine related changes |
| Not including context | Hard to understand | Explain why not just what |
{baseDir}/.changeset/config.json{baseDir}/CHANGELOG.mdmanaging-github-civalidating-pre-commit