Skip to content

Commit 2850ced

Browse files
committed
Update all
1 parent 5eeea9c commit 2850ced

File tree

7 files changed

+143
-122
lines changed

7 files changed

+143
-122
lines changed

backend/.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ fail_fast: true
44

55
repos:
66
- repo: https://github.com/pre-commit/pre-commit-hooks
7-
rev: v3.3.0
7+
rev: v3.4.0
88
hooks:
99
- id: trailing-whitespace
1010
- id: end-of-file-fixer
@@ -16,7 +16,7 @@ repos:
1616
- id: black
1717

1818
- repo: https://github.com/timothycrosley/isort
19-
rev: 5.6.4
19+
rev: 5.7.0
2020
hooks:
2121
- id: isort
2222

backend/personal_website/templates/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797

9898
<!-- Bootstrap JS and its dependencies-->
9999
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
100-
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
100+
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.1/umd/popper.min.js" integrity="sha512-ubuT8Z88WxezgSqf3RLuNi5lmjstiJcyezx34yIU2gAHonIi27Na7atqzUZCOoY4CExaoFumzOsFQ2Ch+I/HCw==" crossorigin="anonymous"></script>
101101
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
102102

103103
<!-- Your stuff: Third-party javascript libraries go here -->

backend/requirements/base.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
pytz==2020.4 # https://github.com/stub42/pytz
1+
pytz==2020.5 # https://github.com/stub42/pytz
22
python-slugify==4.0.1 # https://github.com/un33k/python-slugify
3-
Pillow==8.0.1 # https://github.com/python-pillow/Pillow
3+
Pillow==8.1.0 # https://github.com/python-pillow/Pillow
44
argon2-cffi==20.1.0 # https://github.com/hynek/argon2_cffi
55
whitenoise==5.2.0 # https://github.com/evansd/whitenoise
66
redis==3.5.3 # https://github.com/andymccurdy/redis-py
77
hiredis==1.1.0 # https://github.com/redis/hiredis-py
88

99
# Django
1010
# ------------------------------------------------------------------------------
11-
django==3.0.11 # pyup: < 3.1 # https://www.djangoproject.com/
11+
django==3.1.6 # pyup: < 3.1 # https://www.djangoproject.com/
1212
django-environ==0.4.5 # https://github.com/joke2k/django-environ
1313
django-model-utils==4.1.1 # https://github.com/jazzband/django-model-utils
1414
django-allauth==0.44.0 # https://github.com/pennersr/django-allauth
15-
django-crispy-forms==1.10.0 # https://github.com/django-crispy-forms/django-crispy-forms
15+
django-crispy-forms==1.11.0 # https://github.com/django-crispy-forms/django-crispy-forms
1616
django-redis==4.12.1 # https://github.com/jazzband/django-redis
1717
# Django REST Framework
1818
djangorestframework==3.12.2 # https://github.com/encode/django-rest-framework
19-
django-cors-headers==3.5.0 # https://github.com/adamchainz/django-cors-headers
19+
django-cors-headers==3.7.0 # https://github.com/adamchainz/django-cors-headers

backend/requirements/local.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,28 +6,28 @@ psycopg2==2.8.6 # https://github.com/psycopg/psycopg2
66

77
# Testing
88
# ------------------------------------------------------------------------------
9-
mypy==0.790 # https://github.com/python/mypy
9+
mypy==0.800 # https://github.com/python/mypy
1010
django-stubs==1.7.0 # https://github.com/typeddjango/django-stubs
11-
pytest==6.1.2 # https://github.com/pytest-dev/pytest
11+
pytest==6.2.2 # https://github.com/pytest-dev/pytest
1212
pytest-sugar==0.9.4 # https://github.com/Frozenball/pytest-sugar
1313

1414
# Documentation
1515
# ------------------------------------------------------------------------------
16-
sphinx==3.3.1 # https://github.com/sphinx-doc/sphinx
16+
sphinx==3.4.3 # https://github.com/sphinx-doc/sphinx
1717
sphinx-autobuild==2020.9.1 # https://github.com/GaretJax/sphinx-autobuild
1818

1919
# Code quality
2020
# ------------------------------------------------------------------------------
2121
flake8==3.8.4 # https://github.com/PyCQA/flake8
2222
flake8-isort==4.0.0 # https://github.com/gforcada/flake8-isort
23-
coverage==5.3 # https://github.com/nedbat/coveragepy
23+
coverage==5.4 # https://github.com/nedbat/coveragepy
2424
black==20.8b1 # https://github.com/ambv/black
25-
pylint-django==2.3.0 # https://github.com/PyCQA/pylint-django
26-
pre-commit==2.9.2 # https://github.com/pre-commit/pre-commit
25+
pylint-django==2.4.2 # https://github.com/PyCQA/pylint-django
26+
pre-commit==2.10.0 # https://github.com/pre-commit/pre-commit
2727

2828
# Django
2929
# ------------------------------------------------------------------------------
30-
factory-boy==3.1.0 # https://github.com/FactoryBoy/factory_boy
30+
factory-boy==3.2.0 # https://github.com/FactoryBoy/factory_boy
3131

3232
django-debug-toolbar==3.2 # https://github.com/jazzband/django-debug-toolbar
3333
django-extensions==3.1.0 # https://github.com/django-extensions/django-extensions

backend/requirements/production.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ psycopg2==2.8.6 # https://github.com/psycopg/psycopg2
77

88
# Django
99
# ------------------------------------------------------------------------------
10-
django-anymail==8.1 # https://github.com/anymail/django-anymail
10+
django-anymail==8.2 # https://github.com/anymail/django-anymail

frontend/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
},
1111
"dependencies": {
1212
"aos": "3.0.0-beta.6",
13-
"axios": "0.21.0",
14-
"bulma": "0.9.1",
15-
"core-js": "3.7.0",
13+
"axios": "0.21.1",
14+
"bulma": "0.9.2",
15+
"core-js": "3.8.3",
1616
"moment": "2.29.1",
1717
"vue": "2.6.12",
1818
"vue-gtag": "^1.10.0",
@@ -23,13 +23,13 @@
2323
"@vue/cli-plugin-babel": "4.5.8",
2424
"@vue/cli-plugin-eslint": "~4.5.0",
2525
"@vue/cli-service": "4.5.8",
26-
"@vue/eslint-config-airbnb": "^5.0.2",
26+
"@vue/eslint-config-airbnb": "5.3.0",
2727
"babel-eslint": "^10.1.0",
28-
"eslint": "7.12.1",
28+
"eslint": "7.19.0",
2929
"eslint-config-prettier": "^6.15.0",
3030
"eslint-plugin-import": "^2.20.2",
31-
"eslint-plugin-prettier": "^3.1.4",
32-
"eslint-plugin-vue": "7.1.0",
31+
"eslint-plugin-prettier": "3.3.1",
32+
"eslint-plugin-vue": "7.5.0",
3333
"vue-template-compiler": "2.6.12",
3434
"webpack-bundle-tracker": "1.0.0-alpha.1"
3535
},

0 commit comments

Comments
 (0)