Major Update.
We updated Django to version 5.0. This update brings new features and improvements to the project.
Some settings were updated to use the new storages configuration. Now we have:
# Default STORAGES from Django documentation
# See:
# https://docs.djangoproject.com/en/5.0/ref/settings/#std-setting-STORAGES
STORAGES = {
"default": {"BACKEND": "django.core.files.storage.FileSystemStorage"},
"staticfiles": {"BACKEND": "django.contrib.staticfiles.storage.StaticFilesStorage"},
}
We updated Django REST Framework to version 3.15.2. It solves some issues with the collect static command.
Django==5.0 boto3==1.35.28 django-simple-history==3.7.0 djangorestframework==3.15.2 model-bakery==1.19.5