Skip to content

Commit 44794e0

Browse files
committed
Update all
1 parent 5eeea9c commit 44794e0

File tree

12 files changed

+482
-161
lines changed

12 files changed

+482
-161
lines changed

backend/.pre-commit-config.yaml

Lines changed: 3 additions & 3 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,12 +16,12 @@ repos:
1616
- id: black
1717

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

2323
- repo: https://gitlab.com/pycqa/flake8
24-
rev: 3.8.4
24+
rev: 3.9.2
2525
hooks:
2626
- id: flake8
2727
args: ['--config=setup.cfg']

backend/compose/local/django/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.8-slim-buster
1+
FROM python:3.9-slim-buster
22

33
ENV PYTHONUNBUFFERED 1
44
ENV PYTHONDONTWRITEBYTECODE 1

backend/compose/local/docs/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.8-slim-buster
1+
FROM python:3.9-slim-buster
22

33
ENV PYTHONUNBUFFERED 1
44
ENV PYTHONDONTWRITEBYTECODE 1

backend/compose/production/django/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
FROM python:3.8-slim-buster
2+
FROM python:3.9-slim-buster
33

44
ENV PYTHONUNBUFFERED 1
55

backend/compose/production/postgres/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM postgres:12.3
1+
FROM postgres:12.7
22

33
COPY ./compose/production/postgres/maintenance /usr/local/bin/maintenance
44
RUN chmod +x /usr/local/bin/maintenance/*

backend/compose/production/traefik/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM traefik:v2.2.11
1+
FROM traefik:v2.4.8
22
RUN mkdir -p /etc/traefik/acme \
33
&& touch /etc/traefik/acme/acme.json \
44
&& chmod 600 /etc/traefik/acme/acme.json

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: 6 additions & 6 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.2.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.2.3 # 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.2 # 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
18-
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
18+
djangorestframework==3.12.4 # https://github.com/encode/django-rest-framework
19+
django-cors-headers==3.7.0 # https://github.com/adamchainz/django-cors-headers

backend/requirements/local.txt

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
11
-r base.txt
22

33
Werkzeug==1.0.1 # https://github.com/pallets/werkzeug
4-
ipdb==0.13.4 # https://github.com/gotcha/ipdb
4+
ipdb==0.13.7 # https://github.com/gotcha/ipdb
55
psycopg2==2.8.6 # https://github.com/psycopg/psycopg2
66

77
# Testing
88
# ------------------------------------------------------------------------------
9-
mypy==0.790 # https://github.com/python/mypy
10-
django-stubs==1.7.0 # https://github.com/typeddjango/django-stubs
11-
pytest==6.1.2 # https://github.com/pytest-dev/pytest
9+
mypy==0.812 # https://github.com/python/mypy
10+
django-stubs==1.8.0 # https://github.com/typeddjango/django-stubs
11+
pytest==6.2.4 # 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.5.4 # https://github.com/sphinx-doc/sphinx
1717
sphinx-autobuild==2020.9.1 # https://github.com/GaretJax/sphinx-autobuild
1818

1919
# Code quality
2020
# ------------------------------------------------------------------------------
21-
flake8==3.8.4 # https://github.com/PyCQA/flake8
21+
flake8==3.9.2 # 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.5 # 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.4 # https://github.com/PyCQA/pylint-django
26+
pre-commit==2.12.1 # 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

32-
django-debug-toolbar==3.2 # https://github.com/jazzband/django-debug-toolbar
33-
django-extensions==3.1.0 # https://github.com/django-extensions/django-extensions
32+
django-debug-toolbar==3.2.1 # https://github.com/jazzband/django-debug-toolbar
33+
django-extensions==3.1.3 # https://github.com/django-extensions/django-extensions
3434
django-coverage-plugin==1.8.0 # https://github.com/nedbat/django_coverage_plugin
35-
pytest-django==4.1.0 # https://github.com/pytest-dev/pytest-django
35+
pytest-django==4.3.0 # https://github.com/pytest-dev/pytest-django

backend/requirements/production.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
-r base.txt
44

5-
gunicorn==20.0.4 # https://github.com/benoitc/gunicorn
5+
gunicorn==20.1.0 # https://github.com/benoitc/gunicorn
66
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: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,27 +11,27 @@
1111
"dependencies": {
1212
"aos": "3.0.0-beta.6",
1313
"axios": "0.21.0",
14-
"bulma": "0.9.1",
15-
"core-js": "3.7.0",
14+
"bulma": "0.9.2",
15+
"core-js": "3.12.1",
1616
"moment": "2.29.1",
1717
"vue": "2.6.12",
18-
"vue-gtag": "^1.10.0",
18+
"vue-gtag": "1.16.1",
1919
"vue-router": "3.4.9",
2020
"vue-scrollto": "2.20.0"
2121
},
2222
"devDependencies": {
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.26.0",
2929
"eslint-config-prettier": "^6.15.0",
30-
"eslint-plugin-import": "^2.20.2",
31-
"eslint-plugin-prettier": "^3.1.4",
32-
"eslint-plugin-vue": "7.1.0",
30+
"eslint-plugin-import": "2.23.2",
31+
"eslint-plugin-prettier": "3.4.0",
32+
"eslint-plugin-vue": "7.9.0",
3333
"vue-template-compiler": "2.6.12",
34-
"webpack-bundle-tracker": "1.0.0-alpha.1"
34+
"webpack-bundle-tracker": "1.0.0"
3535
},
3636
"eslintConfig": {
3737
"root": true,

0 commit comments

Comments
 (0)