Skip to content
Open
Show file tree
Hide file tree
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
41 changes: 41 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,20 @@ updates:
- dependency-name: "cookie"
- dependency-name: "webpack*"
- dependency-name: "typescript"
ignore:
# typescript 6+ (and the native tsc 7) fail the renderer type-check. Stay on 5.x.
- dependency-name: "typescript"
versions: [">=6.0.0"]
# Babel 8 / babel-loader 10 break the build (the class-properties plugin
# peer-deps on @babel/core ^7). Stay on the 7.x / 9.x line.
- dependency-name: "@babel/*"
versions: [">=8.0.0"]
- dependency-name: "babel-loader"
versions: [">=10.0.0"]
# @types/ramda is exact-pinned to 0.29.x to match the types-ramda override
# in package.json (each @types/ramda minor targets a matching types-ramda).
- dependency-name: "@types/ramda"
versions: [">=0.30.0"]

# Components - dash-core-components
- package-ecosystem: "npm"
Expand Down Expand Up @@ -92,6 +106,18 @@ updates:
# the react-docgen 5 API) and must never be updated.
ignore:
- dependency-name: "react-docgen"
# react-window 2.x is a full API rewrite; the components use the 1.x API.
- dependency-name: "react-window"
versions: [">=2.0.0"]
# typescript 6+ (and the native tsc 7) break the type-check. Stay on 5.x.
- dependency-name: "typescript"
versions: [">=6.0.0"]
# Babel 8 / babel-loader 10 break the build (the class-properties plugin
# peer-deps on @babel/core ^7). Stay on the 7.x / 9.x line.
- dependency-name: "@babel/*"
versions: [">=8.0.0"]
- dependency-name: "babel-loader"
versions: [">=10.0.0"]

# Components - dash-html-components
- package-ecosystem: "npm"
Expand Down Expand Up @@ -120,6 +146,12 @@ updates:
# the react-docgen 5 API) and must never be updated.
ignore:
- dependency-name: "react-docgen"
# Babel 8 / babel-loader 10 break the build (the class-properties plugin
# peer-deps on @babel/core ^7). Stay on the 7.x / 9.x line.
- dependency-name: "@babel/*"
versions: [">=8.0.0"]
- dependency-name: "babel-loader"
versions: [">=10.0.0"]

# Components - dash-table
- package-ecosystem: "npm"
Expand Down Expand Up @@ -152,6 +184,15 @@ updates:
# the react-docgen 5 API) and must never be updated.
ignore:
- dependency-name: "react-docgen"
# typescript 6+ (and the native tsc 7) break the type-check. Stay on 5.x.
- dependency-name: "typescript"
versions: [">=6.0.0"]
# Babel 8 / babel-loader 10 break the build (the class-properties plugin
# peer-deps on @babel/core ^7). Stay on the 7.x / 9.x line.
- dependency-name: "@babel/*"
versions: [">=8.0.0"]
- dependency-name: "babel-loader"
versions: [">=10.0.0"]

# Python dependencies
- package-ecosystem: "pip"
Expand Down
Loading
Loading