-
Notifications
You must be signed in to change notification settings - Fork 243
Expand file tree
/
Copy pathdependabot.yml
More file actions
26 lines (26 loc) · 1.13 KB
/
dependabot.yml
File metadata and controls
26 lines (26 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
ignore:
# We are ignoring major updates on yargs-parser because yargs-parser@22
# does not play nicely when bundled using webpack. Our VSCode extension
# bundles MCP server with the extension code and yargs-parser from MCP
# server ends up on the final bundle which leads to issues such as -
# https://github.com/mongodb-js/vscode/issues/1149.
#
# This was reported to yargs-parser as well -
# https://github.com/yargs/yargs-parser/issues/517 and we already tried
# their suggestion about disabling the meta resolution in webpack,
# alongside others (dependency overrides, disabling the bundling of
# yargs-parser), and none of the solutions yield a working extension. So
# until we figure out a fix for this we need to keep mongodb-mcp-server
# working with v21 of yargs-parser.
- dependency-name: "yargs-parser"
update-types: ["version-update:semver-major"]
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"