Skip to content

Commit

Permalink
Update all
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Jul 26, 2023
1 parent 8b6a989 commit 399567f
Show file tree
Hide file tree
Showing 12 changed files with 1,029 additions and 520 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

services:
postgres:
image: postgres:11.6
image: postgres:11.16
env:
POSTGRES_PASSWORD: postgres
ports:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ jobs:
# Getting only staged files can be tricky in case a new PR is opened
# since the action is run on a branch in detached head state
- name: Install and Run Pre-commit
uses: pre-commit/action@v2.0.2
uses: pre-commit/action@v2.0.3
2 changes: 1 addition & 1 deletion backend/docker/local/django/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9-slim-buster
FROM python:3.11-slim-buster

ENV PYTHONUNBUFFERED 1
ENV PYTHONDONTWRITEBYTECODE 1
Expand Down
2 changes: 1 addition & 1 deletion backend/docker/production/django/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9-slim-buster
FROM python:3.11-slim-buster

ENV PYTHONUNBUFFERED 1

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

COPY ./docker/production/postgres/maintenance /usr/local/bin/maintenance
RUN chmod +x /usr/local/bin/maintenance/*
Expand Down
16 changes: 8 additions & 8 deletions backend/requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
# Core
# ------------------------------------------------------------------------------
pytz==2022.7.1 # https://github.com/stub42/pytz
django==4.1.9 # https://www.djangoproject.com/
django-environ==0.9.0 # https://github.com/joke2k/django-environ
django==4.2.3 # https://www.djangoproject.com/
django-environ==0.10.0 # https://github.com/joke2k/django-environ
gunicorn==20.1.0 # https://github.com/benoitc/gunicorn
newrelic==8.7.0 # https://pypi.org/project/newrelic/
newrelic==8.8.1 # https://pypi.org/project/newrelic/
argon2-cffi==21.3 # https://github.com/hynek/argon2_cffi
requests==2.31.0 # https://github.com/psf/requests
whitenoise==6.4.0 # https://github.com/evansd/whitenoise
whitenoise==6.5.0 # https://github.com/evansd/whitenoise

# Database
# ------------------------------------------------------------------------------
psycopg2-binary==2.9.5 # https://github.com/psycopg/psycopg2
psycopg2-binary==2.9.6 # https://github.com/psycopg/psycopg2

# REST API
# ------------------------------------------------------------------------------
djangorestframework==3.14.0 # https://github.com/encode/django-rest-framework
Markdown==3.4.1 # https://pypi.org/project/Markdown/
Markdown==3.4.4 # https://pypi.org/project/Markdown/
django-filter==22.1 # https://github.com/carltongibson/django-filter
django-cors-headers==3.14.0 # https://github.com/adamchainz/django-cors-headers
django-allauth==0.54.0 # https://github.com/pennersr/django-allauth
dj-rest-auth==2.2.8 # https://github.com/jazzband/dj-rest-auth
djangorestframework-simplejwt==5.2.2 # https://github.com/SimpleJWT/django-rest-framework-simplejwt/
drf-yasg==1.21.5 # https://github.com/axnsan12/drf-yasg
drf-yasg==1.21.7 # https://github.com/axnsan12/drf-yasg

# Code quality
# ------------------------------------------------------------------------------
pre-commit==3.1.1 # https://github.com/pre-commit/pre-commit
pre-commit==3.3.3 # https://github.com/pre-commit/pre-commit

# Model Tools
# ------------------------------------------------------------------------------
Expand Down
20 changes: 10 additions & 10 deletions backend/requirements/local.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@
# ------------------------------------------------------------------------------
flake8==6.0.0 # https://github.com/PyCQA/flake8
flake8-isort==6.0.0 # https://github.com/gforcada/flake8-isort
black==23.1.0 # https://github.com/ambv/black
mypy==1.0.1 # https://github.com/python/mypy
black==23.7.0 # https://github.com/ambv/black
mypy==1.4.1 # https://github.com/python/mypy

# Testing
# ------------------------------------------------------------------------------
django-stubs==1.15.0 # https://github.com/typeddjango/django-stubs
pytest==7.2.1 # https://github.com/pytest-dev/pytest
pytest-cov==4.0.0 # https://github.com/pytest-dev/pytest-cov
django-stubs==1.16.0 # https://github.com/typeddjango/django-stubs
pytest==7.4.0 # https://github.com/pytest-dev/pytest
pytest-cov==4.1.0 # https://github.com/pytest-dev/pytest-cov
pytest-django==4.5.2 # https://github.com/pytest-dev/pytest-django
pytest-sugar==0.9.6 # https://github.com/Frozenball/pytest-sugar
pytest-sugar==0.9.7 # https://github.com/Frozenball/pytest-sugar
pytest-watch==4.2.0 # https://github.com/joeyespo/pytest-watch
factory-boy==3.2.1 # https://github.com/FactoryBoy/factory_boy
factory-boy==3.3.0 # https://github.com/FactoryBoy/factory_boy

# Developer Tools
# ------------------------------------------------------------------------------
ipdb==0.13.11 # https://github.com/gotcha/ipdb
ipython==8.11.0 # https://github.com/ipython/ipython
django-extensions==3.2.1 # https://github.com/django-extensions/django-extensions
ipdb==0.13.13 # https://github.com/gotcha/ipdb
ipython==8.14.0 # https://github.com/ipython/ipython
django-extensions==3.2.3 # https://github.com/django-extensions/django-extensions
2 changes: 1 addition & 1 deletion docs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9-slim-buster
FROM python:3.11-slim-buster

ENV PYTHONUNBUFFERED 1
ENV PYTHONDONTWRITEBYTECODE 1
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
mkdocs==1.4.2 # https://www.mkdocs.org/
mkdocs==1.5.0 # https://www.mkdocs.org/
mdx_truly_sane_lists==1.3 # https://github.com/radude/mdx_truly_sane_lists
44 changes: 22 additions & 22 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,59 +59,59 @@
}
},
"dependencies": {
"@ant-design/icons": "5.0.1",
"@ant-design/icons": "5.1.4",
"@babel/plugin-syntax-flow": "7.16.7",
"@babel/plugin-transform-react-jsx": "7.17.3",
"@react-keycloak/web": "3.4.0",
"antd": "4.15.1",
"antd": "4.24.12",
"autoprefixer": "10.4.14",
"axios": "0.26.1",
"dotenv": "8.2.0",
"axios": "0.27.2",
"dotenv": "8.6.0",
"env-cmd": "10.1.0",
"humps": "2.0.1",
"keycloak-js": "17.0.1",
"moment": "2.29.4",
"prop-types": "15.8.1",
"query-string": "7.0.0",
"query-string": "7.1.3",
"react": "18.2.0",
"react-async": "10.0.1",
"react-dom": "18.2.0",
"react-hotjar": "2.2.1",
"react-joyride": "2.5.3",
"react-joyride": "2.5.5",
"react-markdown": "^8.0.7",
"react-router-dom": "^6.9.0",
"react-scripts": "5.0.1",
"typescript": "4.6.3",
"typescript": "4.9.5",
"uuid": "8.3.2"
},
"devDependencies": {
"@babel/core": "7.17.9",
"@testing-library/dom": "8.13.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "11.2.6",
"@testing-library/user-event": "13.1.2",
"@types/humps": "2.0.2",
"@testing-library/dom": "8.20.1",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "11.2.7",
"@testing-library/user-event": "13.5.0",
"@types/humps": "2.0.3",
"@types/jest": "28.1.8",
"@types/node": "14.14.37",
"@types/node": "14.18.54",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.3",
"@types/react-router-dom": "5.3.3",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.30.7",
"@typescript-eslint/parser": "5.30.7",
"dayjs": "1.11.7",
"eslint": "8.12.0",
"dayjs": "1.11.9",
"eslint": "8.45.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.33.0",
"eslint-plugin-react-hooks": "4.6.0",
"msw": "0.28.1",
"postcss": "8.4.21",
"prettier": "2.2.1",
"msw": "0.49.3",
"postcss": "8.4.27",
"prettier": "2.8.8",
"setimmediate": "1.0.5"
}
}
Loading

0 comments on commit 399567f

Please sign in to comment.