Skip to content

Commit

Permalink
Merge pull request #12311 from bbc/dependabot-ignore-react-router
Browse files Browse the repository at this point in the history
Ignore packages which require additional work due to breaking changes from dependabot updates
  • Loading branch information
karinathomasbbc authored Jan 20, 2025
2 parents 418a356 + 8764fe5 commit 5893c19
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,26 @@ updates:
- dependency-name: 'webpack'
update-types: ['version-update:semver-major']
- dependency-name: 'winston'
# https://jira.dev.bbc.co.uk/browse/NEWSWORLDSERVICE-2185: Latest version of eslint has breaking changes
- dependency-name: eslint
update-types: ['version-update:semver-major']
# Latest version of Emotion contains a memory leak that needs resolved: https://github.com/emotion-js/emotion/issues/3221
- dependency-name: '@typescript-eslint/eslint-plugin'
update-types: ['version-update:semver-major']
# https://jira.dev.bbc.co.uk/browse/NEWSWORLDSERVICE-2186: Latest version of Emotion contains a memory leak that needs resolved: https://github.com/emotion-js/emotion/issues/3221
- dependency-name: '@emotion/*'
# Opera Mini unsupported packages
- dependency-name: 'uuid' # https://github.com/bbc/simorgh/pull/11840
- dependency-name: '@types/uuid' # https://github.com/bbc/simorgh/pull/11840
# https://jira.dev.bbc.co.uk/browse/NEWSWORLDSERVICE-1478 react-router & react-router-dom
- dependency-name: 'react-router-dom'
- dependency-name: 'react-router'
# https://jira.dev.bbc.co.uk/browse/NEWSWORLDSERVICE-2099: Delete path-to-regexp dependency
- dependency-name: 'path-to-regexp'
# https://jira.dev.bbc.co.uk/browse/NEWSWORLDSERVICE-2187: Latest major version of react has breaking changes
- dependency-name: 'react'
update-types: ['version-update:semver-major']
- dependency-name: '@types/react'
update-types: ['version-update:semver-major']
labels:
- 'dependencies'
groups:
Expand Down

0 comments on commit 5893c19

Please sign in to comment.