chore: pin @libpg-query/parser to 17.7.x line#17
Merged
Conversation
Updates to the maintainer's latest stable PG17 tag. Parser and autocomplete test suites pass unchanged. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Pull request overview
Updates the project’s PostgreSQL grammar/parser dependency to a newer PG17-line release by bumping @libpg-query/parser and updating the lockfile so installs use the intended version.
Changes:
- Bump
@libpg-query/parserdependency inpackage.jsonfrom^17.6.9to^17.6.10. - Update
pnpm-lock.yamlto resolve@libpg-query/parserto17.6.10(including integrity/snapshot entries).
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| package.json | Updates the declared dependency range for @libpg-query/parser to ^17.6.10. |
| pnpm-lock.yaml | Updates the resolved @libpg-query/parser version and related lock entries to 17.6.10. |
Files not reviewed (1)
- pnpm-lock.yaml: Generated file
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+71
to
+73
| '@libpg-query/parser': | ||
| specifier: ^17.6.9 | ||
| version: 17.7.0 | ||
| specifier: ^17.6.10 | ||
| version: 17.6.10 |
Use a tilde range so the manifest enforces the PG17 stable line, not just the lockfile. Caret would still allow fresh installs to resolve up to 17.7.x; tilde blocks 17.7.0+ while permitting 17.6.x patches. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Switch the pin from the 17.6.x stable backport to the 17.7.x line. Tilde range allows 17.7.x patches while blocking the 18.x major. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
Pins
@libpg-query/parserto the 17.7.x line.What this changes
Moves the resolved version from 17.6.9 to 17.7.0. Uses
~17.7.0(tilde) so the manifest allows 17.7.x patches but blocks the18.xmajor — the lockfile isn't the only thing doing the pinning.The separate
18.0.0(pg18) major is intentionally deferred to a future task, gated on whether PG18 syntax support is needed.Verification
pnpm test:parser— 25/25 ✓pnpm test:autocomplete— 256/256 ✓🤖 Generated with Claude Code