Conversation
There was a problem hiding this comment.
Pull request overview
Upgrades the repository’s pinned pnpm version to 11.9.0 and removes a previously-needed pmOnFail: download workaround from the pnpm workspace configuration.
Changes:
- Bump pinned pnpm version in
package.jsondevEngines.packageManagerto11.9.0(with integrity). - Update
pnpm-lock.yamlpackage-manager dependencies and pnpm package entries to11.9.0. - Remove
pmOnFail: downloadworkaround block frompnpm-workspace.yaml.
Reviewed changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| pnpm-workspace.yaml | Removes the pmOnFail: download workaround configuration. |
| pnpm-lock.yaml | Updates lock metadata and package-manager dependency entries for pnpm 11.9.0. |
| package.json | Updates devEngines.packageManager.version to pnpm 11.9.0 (with integrity). |
Files not reviewed (1)
- pnpm-lock.yaml: Generated file
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| pnpm@11.9.0: | ||
| resolution: {integrity: sha512-vWgtXQP+Ul73yf1ngMaITR51asTJyf4AxTh4KCQxDc+Q493E9Tg18G3669UIXkGFXgvLs7YN4qxburieUDbwOw==} | ||
| engines: {node: '>=22.13'} | ||
| hasBin: true |
There was a problem hiding this comment.
engines.node would pass this requirement on to consumers, which do not have to run the pnpm version in the package
so I would skip this
|
@coderabbitai did I fix the parsing error? if yes, maybe you can update your comment above |
|
Tip For best results, initiate chat on the files or code changes. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
set -euo pipefail
echo "== PR metadata =="
gh pr view 957 --repo sql-formatter-org/sql-formatter --json number,title,headRefName,baseRefName,url
echo
echo "== Review comments by coderabbitai =="
gh api repos/sql-formatter-org/sql-formatter/pulls/957/comments --paginate \
--jq '.[] | select(.user.login=="coderabbitai") | {id, path, line, body, html_url}'
echo
echo "== Issue comments mentioning parsing by coderabbitai or user =="
gh api repos/sql-formatter-org/sql-formatter/issues/957/comments --paginate \
--jq '.[] | select((.user.login=="coderabbitai" or .user.login=="karlhorky") and (.body|test("parsing|parse"; "i"))) | {user: .user.login, body, html_url}'
echo
echo "== package.json excerpt =="
sed -n '1,120p' package.json
echo
echo "== pnpm-workspace.yaml =="
sed -n '1,120p' pnpm-workspace.yamlLength of output: 6038
The One note: GitHub didn’t return any active |

Upgrade to
pnpm@11.9.0and removepmOnFail: downloadworkaround:pmOnFaildoes not default to'download'withdevEngines.packageManagerpnpm/pnpm#11676