chore: upgrade remaining major dependencies#54
Open
birdwell wants to merge 1 commit into
Open
Conversation
Bump graphql 17, jest-dom 7, and @types/node 26, and align graphql-codegen peers that support GraphQL 17. graphql-request still declares a 14–16 peer range but works with the current client usage. Co-authored-by: Cursor <cursoragent@cursor.com>
Greptile SummaryThis PR upgrades the remaining major dependencies and updates their lockfile entries.
Confidence Score: 5/5This looks mergeable with a peer-dependency compatibility caveat.
package.json Important Files Changed
Reviews (1): Last reviewed commit: "Upgrade remaining major dependencies aft..." | Re-trigger Greptile |
Comment on lines
+69
to
70
| "graphql": "^17.0.2", | ||
| "graphql-request": "^7.4.0", |
There was a problem hiding this comment.
GraphQL Peer Contract Is Violated
graphql-request@7.4.0 declares support through GraphQL 16, while this change installs GraphQL 17 for the runtime GraphQLClient path. Strict peer-dependency installers can reject this dependency tree before the application builds; align both packages or explicitly constrain the supported installation environment.
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
graphql16 → 17.0.2 (Node 22+; aligns with current runtime)@testing-library/jest-dom6 → 7.0.0 (@testing-library/domalready present; Node ≥22)@types/node25 → 26.1.1cli7.2, typescript/operations/schema-ast minors)Note:
graphql-request@7.4.0still declares peergraphql@14-16. Install warns, butyarn run check/ tests / build pass with currentGraphQLClient+gqlusage. Revisit when graffle publishes a GraphQL 17-compatible release.Generated AniList schema drift from
yarn generatewas intentionally not committed.Test plan
yarn run checkyarn test(85)yarn buildyarn generate(smoke only; output reverted)Made with Cursor