Skip to content

Commit 9e2a827

Browse files
committed
chore(django): bump version to 5.2.6
1 parent 12c2ee2 commit 9e2a827

5 files changed

Lines changed: 26 additions & 27 deletions

File tree

rootfs/Dockerfile.test

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ COPY dev_requirements.txt ${DRYCC_HOME_DIR}/dev_requirements.txt
88

99
ENV PGDATA="/opt/drycc/postgresql/data" \
1010
PYTHON_VERSION="3.13" \
11-
VALKEY_VERSION="8.1.0" \
12-
POSTGRES_VERSION="15.12" \
13-
GOSU_VERSION="1.17"
11+
VALKEY_VERSION="8.1.3" \
12+
POSTGRES_VERSION="17.6" \
13+
GOSU_VERSION="1.18"
1414

1515
RUN buildDeps='gcc rustc cargo libffi-dev musl-dev openssl'; \
1616
install-packages mercurial ca-certificates git inotify-tools $buildDeps \

rootfs/api/models/release.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import logging
22

3-
from datetime import datetime
4-
from django.utils import timezone
3+
from datetime import datetime, timezone
54
from django.conf import settings
65
from django.db import models
76
from django.db.models import Q

rootfs/api/tests/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ def fake_responses(request, context):
4646
class SilentDjangoTestSuiteRunner(DiscoverRunner):
4747
"""Prevents api log messages from cluttering the console during tests."""
4848

49-
def run_tests(self, test_labels, extra_tests=None, **kwargs):
49+
def run_tests(self, test_labels, **kwargs):
5050
"""Run tests with all but critical log messages disabled."""
5151
# hide any log messages less than critical
5252
logging.disable(logging.ERROR)
5353
return super(SilentDjangoTestSuiteRunner, self).run_tests(
54-
test_labels, extra_tests, **kwargs)
54+
test_labels, **kwargs)
5555

5656

5757
class DryccBaseTestCase(unittest.TestCase):

rootfs/dev_requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# test module
22
# test
33
# Run "make test-unit" for the % of code exercised during tests
4-
coverage==7.8.0
4+
coverage==7.10.6
55

66
# Run "make test-style" to check python syntax and style
7-
flake8==7.2.0
7+
flake8==7.3.0
88

99
# mock out python-requests, mostly k8s
1010
requests-mock==1.12.1
1111

1212
# tracebacks
13-
tblib==3.1.0
13+
tblib==3.1.0

rootfs/requirements.txt

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
# Drycc controller requirements
22
inotify==0.2.10
33
backoff==2.2.1
4-
django==4.2.22
5-
channels==4.2.2
6-
aiohttp==3.12.14
7-
django-cors-headers==4.7.0
8-
django-guardian==2.4.0
9-
djangorestframework==3.16.0
4+
django==5.2.6
5+
channels==4.3.1
6+
aiohttp==3.12.15
7+
django-cors-headers==4.8.0
8+
django-guardian==3.1.3
9+
djangorestframework==3.16.1
1010
docker==7.1.0
1111
gunicorn==23.0.0
12-
uvicorn[standard]==0.34.0
13-
asgiref==3.8.1
12+
uvicorn[standard]==0.35.0
13+
asgiref==3.9.1
1414
idna==3.10
15-
jsonschema==4.23.0
15+
jsonschema==4.25.1
1616
morph==0.1.5
17-
packaging==24.2
17+
packaging==25.0
1818
pyasn1==0.6.1
19-
psycopg[binary]==3.2.6
20-
pyOpenSSL==25.0.0
19+
psycopg[binary]==3.2.10
20+
pyOpenSSL==25.1.0
2121
ndg-httpsclient==0.5.1
2222
pytz==2025.2
23-
requests==2.32.4
23+
requests==2.32.5
2424
requests-toolbelt==1.0.0
25-
celery[redis]==5.5.0
25+
celery[redis]==5.5.3
2626
hiredis==3.2.1
27-
dj-database-url==2.3.0
28-
social-auth-app-django==5.4.3
29-
kubernetes==32.0.1
27+
dj-database-url==3.0.1
28+
social-auth-app-django==5.5.1
29+
kubernetes==33.1.0

0 commit comments

Comments
 (0)