Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump @nivo/pie from 0.80.0 to 0.84.0 #6291

Merged
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
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,12 @@ updates:
- dependency-name: "@sentry/tracing"
versions:
- ">= 0"
- dependency-name: "@nivo/pie"
versions:
- ">= 0"
- dependency-name: "@nivo/tooltip"
versions:
- ">= 0"
# ignore all GitHub linguist patch updates
- dependency-name: "github-linguist"
update-types: ["version-update:semver-patch"]
Expand Down
3 changes: 2 additions & 1 deletion docs/Dependabot.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ The `react-dom` and `react` packages should, where possible, be kept at the same

Some of the packages we use have several companion packages that should be kept at the same version in order for them to work correctly. In order to optimise the number of upgrades we perform and to prevent wastage of CircleCI resource on redundant PRs, Dependabot has been configured to only upgrade one dependency in the group with the expectation being that the others should be updated using a script.

We currently have two groups of dependencies that need to be updated in this manner:
We currently have three groups of dependencies that need to be updated in this manner:
- Nivo (`dependabot:update-nivo`)
- Sentry (`dependabot:update-sentry`)
- Storybook (`dependabot:update-storybook`)
189 changes: 137 additions & 52 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@
"adr-graph": "adr generate graph",
"adr-toc": "adr generate toc",
"dependabot:update-storybook": "npm install --save-dev @storybook/addon-a11y@latest @storybook/addon-essentials@latest @storybook/addons@latest @storybook/react@latest @storybook/react-webpack5@latest storybook@latest",
"dependabot:update-sentry": "npm install @sentry/browser@latest @sentry/node@latest @sentry/react@latest @sentry/tracing@latest"
"dependabot:update-sentry": "npm install @sentry/browser@latest @sentry/node@latest @sentry/react@latest @sentry/tracing@latest",
"dependabot:update-nivo": "npm install @nivo/core@latest @nivo/pie@latest @nivo/tooltip@latest"
},
"nyc": {
"report-dir": "cypress-coverage",
Expand All @@ -67,9 +68,9 @@
},
"dependencies": {
"@govuk-react/constants": "^0.10.6",
"@nivo/core": "^0.80.0",
"@nivo/pie": "^0.80.0",
"@nivo/tooltip": "^0.80.0",
"@nivo/core": "^0.84.0",
"@nivo/pie": "^0.84.0",
"@nivo/tooltip": "^0.84.0",
"@redux-devtools/extension": "^3.3.0",
"@reduxjs/toolkit": "^1.9.7",
"@sentry/browser": "^7.86.0",
Expand Down