-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #844 from rdmorganiser/dependency-updates
build: update several dependencies
- Loading branch information
Showing
8 changed files
with
3,565 additions
and
2,625 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,82 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: pip | ||
directory: / | ||
schedule: | ||
interval: monthly | ||
open-pull-requests-limit: 10 | ||
target-branch: dependency-updates | ||
labels: | ||
- dependencies | ||
- python | ||
- type:maintenance | ||
ignore: | ||
- dependency-name: django-mptt # pinned, 0.15 requires Python >= 3.9 | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: monthly | ||
open-pull-requests-limit: 10 | ||
target-branch: dependency-updates | ||
labels: | ||
- dependencies | ||
- github_actions | ||
- type:maintenance | ||
- package-ecosystem: npm | ||
directory: / | ||
schedule: | ||
interval: monthly | ||
open-pull-requests-limit: 10 | ||
target-branch: dependency-updates | ||
labels: | ||
- dependencies | ||
- javascript | ||
- type:maintenance | ||
- package-ecosystem: pip | ||
directory: / | ||
schedule: | ||
interval: monthly | ||
open-pull-requests-limit: 10 | ||
target-branch: dependency-updates | ||
labels: | ||
- dependencies | ||
- python | ||
- type:maintenance | ||
ignore: | ||
- dependency-name: django-mptt # pinned, 0.15 requires Python >= 3.9 | ||
groups: | ||
# create a single pull request containing all updates for the optional dependencies | ||
optional: | ||
patterns: | ||
- coveralls | ||
- django-allauth | ||
- django-auth-ldap | ||
- gunicorn | ||
- mysqlclient | ||
- pre-commit | ||
- psycopg* | ||
- pytest* | ||
# create a single pull request containing all updates for django related dependencies | ||
django: | ||
patterns: | ||
- django* | ||
- drf* | ||
- package-ecosystem: github-actions | ||
directory: / | ||
schedule: | ||
interval: monthly | ||
open-pull-requests-limit: 10 | ||
target-branch: dependency-updates | ||
labels: | ||
- dependencies | ||
- github_actions | ||
- type:maintenance | ||
groups: | ||
# create a single pull request containing all updates for GitHub Actions | ||
github-actions: | ||
patterns: | ||
- '*' | ||
- package-ecosystem: npm | ||
directory: / | ||
schedule: | ||
interval: monthly | ||
open-pull-requests-limit: 10 | ||
target-branch: dependency-updates | ||
labels: | ||
- dependencies | ||
- javascript | ||
- type:maintenance | ||
ignore: | ||
- dependency-name: react-bootstrap # rdmo still uses bootstrap 3, which is not supported by react-bootstrap > 0.33.1 | ||
- dependency-name: "*" | ||
update-types: ["version-update:semver-patch"] # ignore patch versions for all JavaScript dependencies | ||
groups: | ||
react: | ||
patterns: | ||
- react* | ||
redux: | ||
patterns: | ||
- redux* | ||
babel: | ||
patterns: | ||
- '@babel*' | ||
- babel* | ||
webpack: | ||
patterns: | ||
- webpack* | ||
- copy-webpack-plugin | ||
eslint: | ||
patterns: | ||
- eslint* | ||
prod-dependencies: | ||
dependency-type: production | ||
dev-dependencies: | ||
dependency-type: development |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,3 +35,5 @@ dist | |
.on-save.json | ||
|
||
rdmo/management/static | ||
|
||
screenshots |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ repos: | |
hooks: | ||
- id: check-hooks-apply | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.4.0 | ||
rev: v4.5.0 | ||
hooks: | ||
- id: check-ast | ||
- id: check-json | ||
|
@@ -21,17 +21,17 @@ repos: | |
- id: trailing-whitespace | ||
exclude: \.dot$ | ||
- id: debug-statements | ||
- repo: https://github.com/charliermarsh/ruff-pre-commit | ||
rev: v0.0.291 | ||
- repo: https://github.com/astral-sh/ruff-pre-commit | ||
rev: v0.1.6 | ||
hooks: | ||
- id: ruff | ||
args: [--fix, --exit-non-zero-on-fix] | ||
- repo: https://github.com/pre-commit/mirrors-eslint | ||
rev: v8.50.0 | ||
rev: v8.54.0 | ||
hooks: | ||
- id: eslint | ||
args: [--fix, --color] | ||
additional_dependencies: | ||
- eslint@8.41.0 | ||
- eslint-plugin-react@7.32.2 | ||
- eslint@8.54.0 | ||
- eslint-plugin-react@7.33.2 | ||
- [email protected] |
Oops, something went wrong.