Skip to content

Commit 73f76fe

Browse files
chore(deps): update dependabot ignore list DEV-89 (#6068)
### 💭 Notes We start keeping a list of dependencies (`.github/dependabot.yml`) that were not possible to be simply bumped, but rather require some or much refactor. I've split the list into two grops - deps we don't want to update, and deps we want to update. --------- Co-authored-by: Akuukis <[email protected]>
1 parent 5b407ec commit 73f76fe

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

dependabot.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,44 @@ updates:
77
# Specify labels for npm pull requests
88
labels:
99
- "dependencies"
10+
- "Front end"
1011
reviewers:
1112
- "magicznyleszek"
13+
ignore:
14+
##########################################################################
15+
# Deps that we do not plan to update
16+
##########################################################################
17+
18+
# We no longer want to use select2. The only usages left are in the Form Builder code.
19+
- dependancy-name: "select2"
20+
21+
# We need to use https://github.com/saifelse/coffeelint-no-implicit-returns in our ongoing decaffeination project.
22+
# Unfortunately it doesn't work with coffeelint 2+. The plan is to not have CoffeeScript files, so there would be
23+
# no need for coffeelint :fingers_crossed:
24+
- dependancy-name: "coffeelint"
25+
versions: [ ">=2.0.0" ]
26+
27+
# We want to slowly not have mobx, updating it is not a priority.
28+
- dependancy-name: "mobx-react"
29+
30+
##########################################################################
31+
# Deps that require refactor and work before updating
32+
##########################################################################
33+
34+
# https://linear.app/kobotoolbox/issue/DEV-864/choredeps-update-chai-to-5x
35+
- dependancy-name: "@types/chai"
36+
versions: [ ">=5.0.0" ]
37+
- dependancy-name: "chai"
38+
versions: [ ">=5.0.0" ]
39+
40+
# https://linear.app/kobotoolbox/issue/DEV-865/choredeps-update-css-loader-to-7x
41+
- dependancy-name: "css-loader"
42+
versions: [ ">=7.0.0" ]
43+
44+
# https://linear.app/kobotoolbox/issue/DEV-866/choredeps-update-replace-in-file-to-7x
45+
- dependancy-name: "replace-in-file"
46+
versions: [ ">=7.0.0" ]
47+
48+
# https://linear.app/kobotoolbox/issue/DEV-867/choredeps-update-storybookaddon-webpack5-compiler-swc-to-3x
49+
- dependancy-name: "@storybook/addon-webpack5-compiler-swc"
50+
versions: [ ">=3.0.0" ]

0 commit comments

Comments
 (0)