update changesets cli to v2.31.0 and remove frozen-lockfile arg from release workflow#122
Conversation
|
There was a problem hiding this comment.
Code Review
This pull request updates @changesets/cli from version ^2.24.0 to ^2.31.0 in package.json and updates the lockfile pnpm-lock.yaml accordingly. The review feedback recommends removing the redundant and outdated changeset package (v0.2.6) to clean up dependencies and prevent potential binary conflicts with @changesets/cli.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| "@changesets/cli": "^2.31.0", | ||
| "@types/node": "^22.7.4", | ||
| "changeset": "^0.2.6", |
There was a problem hiding this comment.
The changeset package (v0.2.6) is an ancient, unrelated package that is redundant and potentially conflicting with @changesets/cli. @changesets/cli already provides the changeset binary used in your release script (changeset publish). Removing changeset cleans up your dependencies and avoids potential binary/command conflicts.
| "@changesets/cli": "^2.31.0", | |
| "@types/node": "^22.7.4", | |
| "changeset": "^0.2.6", | |
| "@changesets/cli": "^2.31.0", | |
| "@types/node": "^22.7.4", |
No description provided.