chore(deps): hard-pin the graphile v5 stack via overrides - #1672
Merged
Conversation
Contributor
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
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.
Summary
Makes benjie's graphile v5 stack a hard, exact pin across the workspace instead of caret ranges scattered across package manifests. Graphile is the one third-party family we deliberately don't want floating: a minor bump ripples through PostGraphile plugins/codegen, and the
constructive-hubupdate automation re-resolves lockfiles under a release-age gate, so an unpinned graphile release landing hours before a run causes non-deterministic resolution. Pinning at the workspace root (pnpm.overrides) is the single enforcement point — it wins over every package's own range, so the whole tree resolves to one known-good set regardless of what individual manifests declare.Pins are set to the versions already resolved today, so this is enforcement, not an upgrade — the only lockfile changes are the
overrides:snapshot and the effective specifiers flipping^x → x(verified: no unrelated dep churn). These move only when we deliberately bump one and re-pin, under review."pnpm": { "overrides": { + "grafast": "1.1.1", + "grafserv": "1.0.1", + "graphile-build": "5.1.1", + "graphile-build-pg": "5.1.3", + "graphile-config": "1.1.0", + "graphile-utils": "5.0.3", + "postgraphile": "5.1.3", + "pg-sql2": "5.0.1", + "pg-introspection": "1.0.1", + "tamedevil": "0.1.1", + "@dataplan/pg": "1.1.1", "@dataplan/json": "1.0.1", + "@graphile/lru": "5.0.0", + "@graphile-contrib/pg-many-to-many": "2.0.0-rc.2", "graphql": "16.13.0", "@smithy/node-http-handler": "<4.5.0" }Companion to constructive-db#2808, which whitelists this same graphile set from the release-age wait (constructive-db pulls it transitively via our
@constructive-io/*packages, which already fix the exact versions).Validation
pnpm install --no-frozen-lockfilewith the age gate active resolves cleanly;policy:checkpasses; lockfile diff is limited to the overrides snapshot + specifier normalization.Link to Devin session: https://app.devin.ai/sessions/ef0c67d2f7bd4cb3b157dbd4f2e7c533
Requested by: @pyramation