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 11, 2024
1 parent 7896bf3 commit 639bbd4
Show file tree
Hide file tree
Showing 9 changed files with 827 additions and 679 deletions.
10 changes: 5 additions & 5 deletions .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:16.1
env:
POSTGRES_PASSWORD: postgres
ports:
Expand All @@ -45,15 +45,15 @@ jobs:
--health-retries 5
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.9

- name: Cache pip
uses: actions/cache@v2
uses: actions/cache@v3
with:
# This path is specific to Ubuntu
path: ~/.cache/pip
Expand All @@ -73,7 +73,7 @@ jobs:
pytest
- name: Upload Coverage Report
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
with:
file: "./backend/coverage.xml"
flags: backend
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Use Node.js 21.x
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: "21.x"

- name: Cache node modules
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
Expand All @@ -48,7 +48,7 @@ jobs:
yarn test:coverage
- name: Upload Coverage Report
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
with:
file: "./frontend/coverage/coverage-final.json"
flags: frontend
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Code Repository
uses: actions/checkout@v2
uses: actions/checkout@v4

# Required to run the local ESLint hook
- name: Use Node.js 21.x
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: "21.x"

- name: Cache node modules
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
Expand All @@ -36,12 +36,12 @@ jobs:
yarn install --frozen-lockfile
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.9

# Run all pre-commit hooks on all the files.
# 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@v3.0.0
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:16.1

COPY ./docker/production/postgres/maintenance /usr/local/bin/maintenance
RUN chmod +x /usr/local/bin/maintenance/*
Expand Down
14 changes: 7 additions & 7 deletions backend/requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Core
# ------------------------------------------------------------------------------
pytz==2023.3 # https://github.com/stub42/pytz
django==4.2.7 # https://www.djangoproject.com/
django==5.0.1 # 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.8.1 # https://pypi.org/project/newrelic/
argon2-cffi==21.3 # https://github.com/hynek/argon2_cffi
gunicorn==21.2.0 # https://github.com/benoitc/gunicorn
newrelic==9.4.0 # https://pypi.org/project/newrelic/
argon2-cffi==23.1.0 # https://github.com/hynek/argon2_cffi
requests==2.31.0 # https://github.com/psf/requests
whitenoise==6.4.0 # https://github.com/evansd/whitenoise

Expand All @@ -18,10 +18,10 @@ psycopg2-binary==2.9.6 # https://github.com/psycopg/psycopg2
django-globus-portal-framework==0.4.8
djangorestframework==3.14.0 # https://github.com/encode/django-rest-framework
Markdown==3.4.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-filter==23.5 # https://github.com/carltongibson/django-filter
django-cors-headers==4.3.1 # 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
dj-rest-auth==5.0.2 # 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

Expand Down
2 changes: 1 addition & 1 deletion backend/requirements/local.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Code quality
# ------------------------------------------------------------------------------
flake8==6.0.0 # https://github.com/PyCQA/flake8
flake8==7.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
Expand Down
28 changes: 14 additions & 14 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,58 +66,58 @@
"@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",
"antd": "5.12.8",
"autoprefixer": "10.4.14",
"axios": "0.26.1",
"dotenv": "8.2.0",
"dotenv": "16.3.1",
"env-cmd": "10.1.0",
"humps": "2.0.1",
"js-pkce": "1.2.1",
"keycloak-js": "19.0.3",
"keycloak-js": "23.0.4",
"moment": "2.29.4",
"prop-types": "15.8.1",
"query-string": "7.0.0",
"query-string": "8.1.0",
"react": "18.2.0",
"react-async": "10.0.1",
"react-dom": "18.2.0",
"react-hotjar": "2.2.1",
"react-hotjar": "6.2.0",
"react-joyride": "2.5.3",
"react-markdown": "8.0.7",
"react-router-dom": "^6.9.0",
"react-scripts": "5.0.1",
"recoil": "0.7.7",
"typescript": "4.6.3",
"uuid": "8.3.2"
"typescript": "5.3.3",
"uuid": "9.0.1"
},
"devDependencies": {
"@babel/core": "7.17.9",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@testing-library/dom": "9.3.1",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/jest-dom": "6.2.0",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/humps": "2.0.2",
"@types/jest": "28.1.8",
"@types/node": "14.14.37",
"@types/node": "20.11.0",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.0",
"@types/react-router-dom": "5.3.3",
"@types/uuid": "8.3.4",
"@types/uuid": "9.0.7",
"@typescript-eslint/eslint-plugin": "5.30.7",
"@typescript-eslint/parser": "5.30.7",
"dayjs": "1.11.7",
"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-prettier": "9.1.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.33.0",
"eslint-plugin-react-hooks": "4.6.0",
"msw": "0.28.1",
"msw": "2.0.13",
"postcss": "8.4.21",
"prettier": "2.2.1",
"prettier": "3.1.1",
"setimmediate": "1.0.5"
}
}
Loading

0 comments on commit 639bbd4

Please sign in to comment.