File tree Expand file tree Collapse file tree 3 files changed +23
-27
lines changed Expand file tree Collapse file tree 3 files changed +23
-27
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,22 @@ updates:
4
4
directory : " /"
5
5
schedule :
6
6
interval : " weekly"
7
+ ignore :
8
+ # We are ignoring major updates on yargs-parser because yargs-parser@22
9
+ # does not play nicely when bundled using webpack. Our VSCode extension
10
+ # bundles MCP server with the extension code and yargs-parser from MCP
11
+ # server ends up on the final bundle which leads to issues such as -
12
+ # https://github.com/mongodb-js/vscode/issues/1149.
13
+ #
14
+ # This was reported to yargs-parser as well -
15
+ # https://github.com/yargs/yargs-parser/issues/517 and we already tried
16
+ # their suggestion about disabling the meta resolution in webpack,
17
+ # alongside others (dependency overrides, disabling the bundling of
18
+ # yargs-parser), and none of the solutions yield a working extension. So
19
+ # until we figure out a fix for this we need to keep mongodb-mcp-server
20
+ # working with v21 of yargs-parser.
21
+ - dependency-name : " yargs-parser"
22
+ update-types : ["version-update:semver-major"]
7
23
- package-ecosystem : " github-actions"
8
24
directory : " /"
9
25
schedule :
Original file line number Diff line number Diff line change 74
74
"@types/yargs-parser" : " ^21.0.3" ,
75
75
"@typescript-eslint/parser" : " ^8.44.0" ,
76
76
"@vitest/coverage-v8" : " ^3.2.4" ,
77
+ "@vitest/eslint-plugin" : " ^1.3.4" ,
77
78
"ai" : " ^4.3.17" ,
78
79
"duplexpair" : " ^1.0.2" ,
79
80
"eslint" : " ^9.34.0" ,
93
94
"tsx" : " ^4.20.5" ,
94
95
"typescript" : " ^5.9.2" ,
95
96
"typescript-eslint" : " ^8.41.0" ,
96
- "@vitest/eslint-plugin" : " ^1.3.4" ,
97
97
"uuid" : " ^13.0.0" ,
98
98
"vitest" : " ^3.2.4"
99
99
},
115
115
"oauth4webapi" : " ^3.8.0" ,
116
116
"openapi-fetch" : " ^0.14.0" ,
117
117
"ts-levenshtein" : " ^1.0.7" ,
118
- "yargs-parser" : " ^22.0.0 " ,
118
+ "yargs-parser" : " 21.1.1 " ,
119
119
"zod" : " ^3.25.76"
120
120
},
121
121
"engines" : {
You can’t perform that action at this time.
0 commit comments