Skip to content

Commit

Permalink
Update all
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jan 10, 2024
1 parent 7896bf3 commit 2029233
Show file tree
Hide file tree
Showing 12 changed files with 1,279 additions and 342 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

services:
postgres:
image: postgres:12.6
image: postgres:12.17
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/[email protected].2
uses: pre-commit/[email protected].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 DATABASE_URL postgres://postgres:postgres@postgres:5432/postgres
ENV PYTHONUNBUFFERED 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.17

COPY ./docker/production/postgres/maintenance /usr/local/bin/maintenance
RUN chmod +x /usr/local/bin/maintenance/*
Expand Down
26 changes: 13 additions & 13 deletions backend/requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
# Core
# ------------------------------------------------------------------------------
pytz==2023.3 # https://github.com/stub42/pytz
django==4.2.7 # https://www.djangoproject.com/
django-environ==0.10.0 # https://github.com/joke2k/django-environ
pytz==2023.3.post1 # https://github.com/stub42/pytz
django==4.2.9 # https://www.djangoproject.com/
django-environ==0.11.2 # https://github.com/joke2k/django-environ
gunicorn==20.1.0 # https://github.com/benoitc/gunicorn
newrelic==8.8.1 # https://pypi.org/project/newrelic/
newrelic==8.11.0 # 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.6.0 # https://github.com/evansd/whitenoise

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

# REST API
# ------------------------------------------------------------------------------
django-globus-portal-framework==0.4.8
django-globus-portal-framework==0.4.9
djangorestframework==3.14.0 # https://github.com/encode/django-rest-framework
Markdown==3.4.1 # https://pypi.org/project/Markdown/
Markdown==3.5.1 # 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
django-allauth==0.60.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
djangorestframework-simplejwt==5.3.1 # https://github.com/SimpleJWT/django-rest-framework-simplejwt/
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.6.0 # https://github.com/pre-commit/pre-commit

# Model Tools
# ------------------------------------------------------------------------------
django-model-utils==4.3.1 # https://github.com/jazzband/django-model-utils
django_unique_upload==0.2.1 # https://github.com/agconti/django-unique-upload
globus-sdk==3.13.0
globus-sdk==3.34.0
18 changes: 9 additions & 9 deletions backend/requirements/local.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@

# Code quality
# ------------------------------------------------------------------------------
flake8==6.0.0 # https://github.com/PyCQA/flake8
flake8-isort==6.0.0 # https://github.com/gforcada/flake8-isort
black==23.7.0 # https://github.com/ambv/black
mypy==1.4.1 # https://github.com/python/mypy
flake8==6.1.0 # https://github.com/PyCQA/flake8
flake8-isort==6.1.1 # https://github.com/gforcada/flake8-isort
black==23.12.1 # https://github.com/ambv/black
mypy==1.8.0 # https://github.com/python/mypy
mypy-extensions==1.0.0 # https://pypi.org/project/mypy-extensions/

# Testing
# ------------------------------------------------------------------------------
django-stubs==4.2.3 # https://github.com/typeddjango/django-stubs
pytest==7.3.2 # https://github.com/pytest-dev/pytest
django-stubs==4.2.7 # https://github.com/typeddjango/django-stubs
pytest==7.4.4 # 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-django==4.7.0 # https://github.com/pytest-dev/pytest-django
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.13 # https://github.com/gotcha/ipdb
ipython==8.11.0 # https://github.com/ipython/ipython
ipython==8.20.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.3 # https://www.mkdocs.org/
mdx_truly_sane_lists==1.3 # https://github.com/radude/mdx_truly_sane_lists
48 changes: 24 additions & 24 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,62 +62,62 @@
}
},
"dependencies": {
"@ant-design/icons": "5.0.1",
"@ant-design/icons": "5.2.6",
"@babel/plugin-syntax-flow": "7.16.7",
"@babel/plugin-transform-react-jsx": "7.17.3",
"@react-keycloak/web": "3.4.0",
"antd": "4.24.12",
"autoprefixer": "10.4.14",
"antd": "4.24.15",
"autoprefixer": "10.4.16",
"axios": "0.26.1",
"dotenv": "8.2.0",
"dotenv": "8.6.0",
"env-cmd": "10.1.0",
"humps": "2.0.1",
"js-pkce": "1.2.1",
"js-pkce": "1.4.0",
"keycloak-js": "19.0.3",
"moment": "2.29.4",
"moment": "2.30.1",
"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.7.2",
"react-markdown": "8.0.7",
"react-router-dom": "^6.9.0",
"react-scripts": "5.0.1",
"recoil": "0.7.7",
"typescript": "4.6.3",
"typescript": "4.9.5",
"uuid": "8.3.2"
},
"devDependencies": {
"@babel/core": "7.17.9",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@testing-library/dom": "9.3.1",
"@testing-library/dom": "9.3.4",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/humps": "2.0.2",
"@testing-library/react": "14.1.2",
"@testing-library/user-event": "14.5.2",
"@types/humps": "2.0.6",
"@types/jest": "28.1.8",
"@types/node": "14.14.37",
"@types/node": "14.18.63",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.0",
"@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.45.0",
"dayjs": "1.11.10",
"eslint": "8.56.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.33.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"msw": "0.28.1",
"msw": "0.49.3",
"postcss": "8.4.21",
"prettier": "2.2.1",
"prettier": "2.8.8",
"setimmediate": "1.0.5"
}
}
Loading

0 comments on commit 2029233

Please sign in to comment.