Skip to content

Commit

Permalink
Update all
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot committed Jan 22, 2021
1 parent 5eeea9c commit ccc211c
Show file tree
Hide file tree
Showing 6 changed files with 135 additions and 114 deletions.
4 changes: 2 additions & 2 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,7 +16,7 @@ repos:
- id: black

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

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
8 changes: 4 additions & 4 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.1.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.1.5 # 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-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
django-cors-headers==3.6.0 # https://github.com/adamchainz/django-cors-headers
12 changes: 6 additions & 6 deletions backend/requirements/local.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,26 @@ psycopg2==2.8.6 # https://github.com/psycopg/psycopg2
# ------------------------------------------------------------------------------
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
pytest==6.2.1 # 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.4.3 # 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-isort==4.0.0 # https://github.com/gforcada/flake8-isort
coverage==5.3 # https://github.com/nedbat/coveragepy
coverage==5.3.1 # 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.2 # https://github.com/PyCQA/pylint-django
pre-commit==2.9.3 # 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
Expand Down
12 changes: 6 additions & 6 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
},
"dependencies": {
"aos": "3.0.0-beta.6",
"axios": "0.21.0",
"axios": "0.21.1",
"bulma": "0.9.1",
"core-js": "3.7.0",
"core-js": "3.8.3",
"moment": "2.29.1",
"vue": "2.6.12",
"vue-gtag": "^1.10.0",
Expand All @@ -23,13 +23,13 @@
"@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.18.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-prettier": "3.3.1",
"eslint-plugin-vue": "7.5.0",
"vue-template-compiler": "2.6.12",
"webpack-bundle-tracker": "1.0.0-alpha.1"
},
Expand Down

0 comments on commit ccc211c

Please sign in to comment.