Group @plotly workspace packages into one Dependabot job - #4005
Merged
Merged
Conversation
The /@plotly/* packages had no Dependabot entry, so the root "/" entry's recursion opened an individual, ungrouped PR per dependency for each one. Add a dedicated npm entry using a directories glob so all /@plotly/* manifests fold into a single grouped PR, matching the components and renderer. Carries the same ignore pins (react-docgen, @babel/* <8, babel-loader <10, typescript <6) plus react/react-dom <17 for the test fixtures.
camdecoster
approved these changes
Sep 22, 2026
camdecoster
left a comment
Contributor
There was a problem hiding this comment.
Looks good. I left one comment.
Co-authored-by: Cameron DeCoster <cameron.decoster@gmail.com>
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



What
Adds the missing 6th npm Dependabot job so the
/@plotly/*workspace packages are grouped instead of producing a stream of individual PRs. npm jobs are now://dash/dash-renderer/components/dash-core-components/components/dash-html-components/components/dash-table/@plotly/*Why
The 10
/@plotly/*packages had no Dependabot entry. The root/entry's npm updater recurses into every nestedpackage.json, and with nothing claiming these dirs it opened an individual, ungrouped PR per dependency (e.g. #4001, #3999, #3994, #3920, #3919, #3917). The new entry uses adirectories: ["/@plotly/*"]glob so all of them fold into a single grouped PR, the same shape as the component and renderer jobs.It carries the same ignore pins already established elsewhere in the file:
react-docgen(legacy extract-meta 5 API, never bump)@babel/*<8,babel-loader<10,typescript<6react/react-dom<17 (the generator/test fixtures pin 16.13.0)Follow-up
Once this merges to
dev, the existing ungrouped/@plotly/*PRs (#4001, #3999, #3994, #3920, #3919, #3917) can be closed; Dependabot will re-open one grouped@plotlyPR on its next run.