Skip to content

Commit

Permalink
Update all
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot committed May 22, 2021
1 parent 5eeea9c commit bc9e015
Show file tree
Hide file tree
Showing 12 changed files with 483 additions and 161 deletions.
6 changes: 3 additions & 3 deletions backend/.pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ fail_fast: true

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.3.0
rev: v3.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand All @@ -16,12 +16,12 @@ repos:
- id: black

- repo: https://github.com/timothycrosley/isort
rev: 5.6.4
rev: 5.8.0
hooks:
- id: isort

- repo: https://gitlab.com/pycqa/flake8
rev: 3.8.4
rev: 3.9.2
hooks:
- id: flake8
args: ['--config=setup.cfg']
Expand Down
2 changes: 1 addition & 1 deletion backend/compose/local/django/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.8-slim-buster
FROM python:3.9-slim-buster

ENV PYTHONUNBUFFERED 1
ENV PYTHONDONTWRITEBYTECODE 1
Expand Down
2 changes: 1 addition & 1 deletion backend/compose/local/docs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.8-slim-buster
FROM python:3.9-slim-buster

ENV PYTHONUNBUFFERED 1
ENV PYTHONDONTWRITEBYTECODE 1
Expand Down
2 changes: 1 addition & 1 deletion backend/compose/production/django/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

FROM python:3.8-slim-buster
FROM python:3.9-slim-buster

ENV PYTHONUNBUFFERED 1

Expand Down
2 changes: 1 addition & 1 deletion backend/compose/production/postgres/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM postgres:12.3
FROM postgres:12.7

COPY ./compose/production/postgres/maintenance /usr/local/bin/maintenance
RUN chmod +x /usr/local/bin/maintenance/*
Expand Down
2 changes: 1 addition & 1 deletion backend/compose/production/traefik/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM traefik:v2.2.11
FROM traefik:v2.4.8
RUN mkdir -p /etc/traefik/acme \
&& touch /etc/traefik/acme/acme.json \
&& chmod 600 /etc/traefik/acme/acme.json
Expand Down
2 changes: 1 addition & 1 deletion backend/personal_website/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@

<!-- Bootstrap JS and its dependencies-->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<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>
<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>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>

<!-- Your stuff: Third-party javascript libraries go here -->
Expand Down
12 changes: 6 additions & 6 deletions backend/requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
pytz==2020.4 # https://github.com/stub42/pytz
pytz==2020.5 # https://github.com/stub42/pytz
python-slugify==4.0.1 # https://github.com/un33k/python-slugify
Pillow==8.0.1 # https://github.com/python-pillow/Pillow
Pillow==8.2.0 # https://github.com/python-pillow/Pillow
argon2-cffi==20.1.0 # https://github.com/hynek/argon2_cffi
whitenoise==5.2.0 # https://github.com/evansd/whitenoise
redis==3.5.3 # https://github.com/andymccurdy/redis-py
hiredis==1.1.0 # https://github.com/redis/hiredis-py

# Django
# ------------------------------------------------------------------------------
django==3.0.11 # pyup: < 3.1 # https://www.djangoproject.com/
django==3.2.3 # pyup: < 3.1 # https://www.djangoproject.com/
django-environ==0.4.5 # https://github.com/joke2k/django-environ
django-model-utils==4.1.1 # https://github.com/jazzband/django-model-utils
django-allauth==0.44.0 # https://github.com/pennersr/django-allauth
django-crispy-forms==1.10.0 # https://github.com/django-crispy-forms/django-crispy-forms
django-crispy-forms==1.11.2 # https://github.com/django-crispy-forms/django-crispy-forms
django-redis==4.12.1 # https://github.com/jazzband/django-redis
# Django REST Framework
djangorestframework==3.12.2 # https://github.com/encode/django-rest-framework
django-cors-headers==3.5.0 # https://github.com/adamchainz/django-cors-headers
djangorestframework==3.12.4 # https://github.com/encode/django-rest-framework
django-cors-headers==3.7.0 # https://github.com/adamchainz/django-cors-headers
26 changes: 13 additions & 13 deletions backend/requirements/local.txt
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
-r base.txt

Werkzeug==1.0.1 # https://github.com/pallets/werkzeug
ipdb==0.13.4 # https://github.com/gotcha/ipdb
ipdb==0.13.7 # https://github.com/gotcha/ipdb
psycopg2==2.8.6 # https://github.com/psycopg/psycopg2

# Testing
# ------------------------------------------------------------------------------
mypy==0.790 # https://github.com/python/mypy
django-stubs==1.7.0 # https://github.com/typeddjango/django-stubs
pytest==6.1.2 # https://github.com/pytest-dev/pytest
mypy==0.812 # https://github.com/python/mypy
django-stubs==1.8.0 # https://github.com/typeddjango/django-stubs
pytest==6.2.4 # https://github.com/pytest-dev/pytest
pytest-sugar==0.9.4 # https://github.com/Frozenball/pytest-sugar

# Documentation
# ------------------------------------------------------------------------------
sphinx==3.3.1 # https://github.com/sphinx-doc/sphinx
sphinx==3.5.4 # https://github.com/sphinx-doc/sphinx
sphinx-autobuild==2020.9.1 # https://github.com/GaretJax/sphinx-autobuild

# Code quality
# ------------------------------------------------------------------------------
flake8==3.8.4 # https://github.com/PyCQA/flake8
flake8==3.9.2 # https://github.com/PyCQA/flake8
flake8-isort==4.0.0 # https://github.com/gforcada/flake8-isort
coverage==5.3 # https://github.com/nedbat/coveragepy
coverage==5.5 # https://github.com/nedbat/coveragepy
black==20.8b1 # https://github.com/ambv/black
pylint-django==2.3.0 # https://github.com/PyCQA/pylint-django
pre-commit==2.9.2 # https://github.com/pre-commit/pre-commit
pylint-django==2.4.4 # https://github.com/PyCQA/pylint-django
pre-commit==2.13.0 # https://github.com/pre-commit/pre-commit

# Django
# ------------------------------------------------------------------------------
factory-boy==3.1.0 # https://github.com/FactoryBoy/factory_boy
factory-boy==3.2.0 # https://github.com/FactoryBoy/factory_boy

django-debug-toolbar==3.2 # https://github.com/jazzband/django-debug-toolbar
django-extensions==3.1.0 # https://github.com/django-extensions/django-extensions
django-debug-toolbar==3.2.1 # https://github.com/jazzband/django-debug-toolbar
django-extensions==3.1.3 # https://github.com/django-extensions/django-extensions
django-coverage-plugin==1.8.0 # https://github.com/nedbat/django_coverage_plugin
pytest-django==4.1.0 # https://github.com/pytest-dev/pytest-django
pytest-django==4.3.0 # https://github.com/pytest-dev/pytest-django
4 changes: 2 additions & 2 deletions backend/requirements/production.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

-r base.txt

gunicorn==20.0.4 # https://github.com/benoitc/gunicorn
gunicorn==20.1.0 # https://github.com/benoitc/gunicorn
psycopg2==2.8.6 # https://github.com/psycopg/psycopg2

# Django
# ------------------------------------------------------------------------------
django-anymail==8.1 # https://github.com/anymail/django-anymail
django-anymail==8.3 # https://github.com/anymail/django-anymail
18 changes: 9 additions & 9 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,27 @@
"dependencies": {
"aos": "3.0.0-beta.6",
"axios": "0.21.0",
"bulma": "0.9.1",
"core-js": "3.7.0",
"bulma": "0.9.2",
"core-js": "3.12.1",
"moment": "2.29.1",
"vue": "2.6.12",
"vue-gtag": "^1.10.0",
"vue-gtag": "1.16.1",
"vue-router": "3.4.9",
"vue-scrollto": "2.20.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "4.5.8",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-service": "4.5.8",
"@vue/eslint-config-airbnb": "^5.0.2",
"@vue/eslint-config-airbnb": "5.3.0",
"babel-eslint": "^10.1.0",
"eslint": "7.12.1",
"eslint": "7.27.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "7.1.0",
"eslint-plugin-import": "2.23.3",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-vue": "7.9.0",
"vue-template-compiler": "2.6.12",
"webpack-bundle-tracker": "1.0.0-alpha.1"
"webpack-bundle-tracker": "1.0.0"
},
"eslintConfig": {
"root": true,
Expand Down

0 comments on commit bc9e015

Please sign in to comment.