-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Expand file tree
/
Copy pathdependabot.yml
More file actions
175 lines (170 loc) · 5.13 KB
/
Copy pathdependabot.yml
File metadata and controls
175 lines (170 loc) · 5.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
version: 2
updates:
# Root package dependencies.
# NOTE: listing more than one entry under `directories` makes Dependabot treat
# "/" as a recursive glob, so it scans every nested package.json. The negated
# globs below keep it out of directories that have their own update entry — the
# components and the renderer carry narrow allow/ignore lists (e.g. react-docgen
# is pinned) that the root entry would otherwise bypass. @plotly/* is internal.
- package-ecosystem: "npm"
directories:
- "/"
- "!/@plotly/*"
- "!/components/*"
- "!/dash/dash-renderer"
schedule:
interval: "weekly"
day: "monday"
cooldown:
default-days: 14
groups:
npm-dependencies:
applies-to: version-updates
patterns:
- "*"
npm-dependencies-security:
applies-to: security-updates
patterns:
- "*"
# Dash renderer
- package-ecosystem: "npm"
directory: "/dash/dash-renderer"
schedule:
interval: "weekly"
day: "monday"
cooldown:
default-days: 14
groups:
npm-dependencies:
applies-to: version-updates
patterns:
- "*"
npm-dependencies-security:
applies-to: security-updates
patterns:
- "*"
allow:
- dependency-name: "@types/*"
- dependency-name: "@babel/*"
- dependency-name: "babel-loader"
- dependency-name: "ts-loader"
- dependency-name: "cookie"
- dependency-name: "webpack*"
- dependency-name: "typescript"
# Components - dash-core-components
- package-ecosystem: "npm"
directory: "/components/dash-core-components"
schedule:
interval: "weekly"
day: "monday"
cooldown:
default-days: 14
groups:
npm-dependencies:
applies-to: version-updates
patterns:
- "*"
npm-dependencies-security:
applies-to: security-updates
patterns:
- "*"
# Only auto-update these packages for version updates
allow:
- dependency-name: "date-fns"
- dependency-name: "file-saver"
- dependency-name: "ramda"
- dependency-name: "react-window"
- dependency-name: "@radix-ui/*"
- dependency-name: "@types/*"
- dependency-name: "@babel/*"
- dependency-name: "babel-loader"
- dependency-name: "webpack*"
- dependency-name: "typescript"
# react-docgen is pinned for legacy metadata extraction (extract-meta.js uses
# the react-docgen 5 API) and must never be updated.
ignore:
- dependency-name: "react-docgen"
# Components - dash-html-components
- package-ecosystem: "npm"
directory: "/components/dash-html-components"
schedule:
interval: "weekly"
day: "monday"
cooldown:
default-days: 14
groups:
npm-dependencies:
applies-to: version-updates
patterns:
- "*"
npm-dependencies-security:
applies-to: security-updates
patterns:
- "*"
allow:
- dependency-name: "@types/*"
- dependency-name: "@babel/*"
- dependency-name: "babel-loader"
- dependency-name: "webpack*"
- dependency-name: "typescript"
# react-docgen is pinned for legacy metadata extraction (extract-meta.js uses
# the react-docgen 5 API) and must never be updated.
ignore:
- dependency-name: "react-docgen"
# Components - dash-table
- package-ecosystem: "npm"
directory: "/components/dash-table"
schedule:
interval: "weekly"
day: "monday"
cooldown:
default-days: 14
groups:
npm-dependencies:
applies-to: version-updates
patterns:
- "*"
npm-dependencies-security:
applies-to: security-updates
patterns:
- "*"
allow:
- dependency-name: "@types/*"
- dependency-name: "@babel/*"
- dependency-name: "babel-loader"
- dependency-name: "ts-loader"
- dependency-name: "css-loader"
- dependency-name: "less"
- dependency-name: "less-loader"
- dependency-name: "webpack*"
- dependency-name: "typescript"
# react-docgen is pinned for legacy metadata extraction (extract-meta.js uses
# the react-docgen 5 API) and must never be updated.
ignore:
- dependency-name: "react-docgen"
# Python dependencies
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
cooldown:
default-days: 14
# Keep lower bounds (e.g. Flask>=1.0.4 in install.txt) low: only raise a
# floor when the latest release is incompatible with the current range.
# Exact (==) pins in ci/dev/testing still update as normal.
versioning-strategy: increase-if-necessary
groups:
pip-dependencies:
applies-to: version-updates
patterns:
- "*"
pip-dependencies-security:
applies-to: security-updates
patterns:
- "*"
# jupyterlab is pinned <4.0.0: jupyterlab 4.x ships jlpm as Yarn Berry, which
# cannot consume @plotly/dash-jupyterlab's Yarn 1 lockfile and breaks the build.
ignore:
- dependency-name: "jupyterlab"
versions: [">=4.0.0"]