Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
…ersion bump Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Adjusts the Changesets bump level for @objectstack/objectql to avoid an unintended repo-wide major version bump caused by the fixed versioning group configuration.
Changes:
- Updated
.changeset/upgrade-objectql-core.mdto bump@objectstack/objectqlaspatchinstead ofminor.
| @@ -1,5 +1,5 @@ | |||
| --- | |||
| '@objectstack/objectql': minor | |||
| '@objectstack/objectql': patch | |||
There was a problem hiding this comment.
Switching this changeset to a patch avoids the fixed-group major bump, but it also means the release will be published as a patch even though the changeset text describes new features (new exports like utility functions / kernel factory). If these are public API additions, consider whether the team still wants a patch (and update the release note wording accordingly), or alternatively adjust the versioning strategy (e.g., accept a minor/major bump) to keep SemVer expectations aligned.
| '@objectstack/objectql': patch | |
| '@objectstack/objectql': minor |
changeset versionbumps all packages from3.0.3→4.0.0instead of a patch release. Root cause:upgrade-objectql-core.mdspecifiesminorfor@objectstack/objectql, which in thefixedversion group triggers a major bump across all 21 packages.'@objectstack/objectql': minor→'@objectstack/objectql': patchin.changeset/upgrade-objectql-core.mdVerified
pnpm exec changeset versionnow correctly produces3.0.4for all packages.Original prompt
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.