Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/gitlab-mcp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@
"@clack/prompts": "^1.5.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"express": "^5.2.1",
"graphql": "^16.14.2",
"graphql": "^17.0.0",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Update the lockfile

This workspace uses Yarn with an immutable yarn.lock, but this change updates only package.json. The lockfile still records the workspace dependency as graphql: "npm:^16.14.2" and still resolves graphql@16.14.2, so yarn install --immutable fails because it would need to rewrite the lockfile to graphql@17.0.0. Please commit the regenerated yarn.lock with this dependency bump.

"graphql-tag": "^2.12.6",
Comment on lines +564 to 565

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Resolve peer mismatch

graphql-tag@2.12.6 remains in this package, and its recorded peer range accepts GraphQL versions through ^16.0.0 but not ^17.0.0. After this bump, Yarn reports graphql 17 as an incorrectly met peer for graphql-tag, while the source builds GraphQL documents through graphql-tag in the GraphQL query modules. Please upgrade or replace graphql-tag, or add an explicit compatibility override only after validating it with GraphQL 17.

"open": "^11.0.0",
"picomatch": "^4.0.4",
Expand Down
Loading