This is an automated email from the ASF dual-hosted git repository. hainenber pushed a commit to branch feat/prevent-dependabot-pr-for-rjsf-deps in repository https://gitbox.apache.org/repos/asf/superset.git
commit e79b66e682ae8124a5171ea3577e92109353548c Author: hainenber <[email protected]> AuthorDate: Sat Feb 14 22:10:24 2026 +0700 chore(build): prevent opening Dependabot PRs for `@rjsf/*` deps due to React 18 constraint Signed-off-by: hainenber <[email protected]> --- .github/dependabot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e0ea7d3cb0a..cffe1cfcdc8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -16,6 +16,7 @@ updates: update-types: ["version-update:semver-major", "version-update:semver-minor"] - dependency-name: "eslint-plugin-storybook" - dependency-name: "react-error-boundary" + - dependency-name: "@rjsf/*" # remark-gfm v4+ requires react-markdown v9+, which needs React 18 - dependency-name: "remark-gfm" - dependency-name: "react-markdown"
