forked from City-of-Helsinki/respa
-
Notifications
You must be signed in to change notification settings - Fork 3
TTVA-228 | Upgrade Django, Python & Node #195
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
japauliina
wants to merge
22
commits into
tre-varaamo-qa
Choose a base branch
from
TTVA-228-upgrade-django-python-node
base: tre-varaamo-qa
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Upgrade Django to 3.0 and update also other dependencies to the latest possible versions. Changes: - Replace deprecated ugettext_lazy with gettext_lazy - Replace django.utils.six with six Refs TTVA-232
Replace deprecated functions with the new ones: - force_text -> force_str - ugettext -> gettext - ungettext -> ngettext Refs TTVA-232
Upgrade Django to 3.1 and update also other dependencies to the latest possible versions. Changes: - New migration for AbstractUser.first_name max_length increased to 150 - Fix FieldDoesNotExist import as it was removed from django.db.models.fields Refs TTVA-232
Upgrade Django to 3.2 and update also other dependencies to the latest possible versions. Changes: - Get response headers from HttpResponse.headers as they are now stored there. - Add DEFAULT_AUTO_FIELD setting as suggested by Django 3.2. - Remove usage of QuerySet.distinct() after union() as it is not supported anymore. Refs TTVA-232
Change django.contrib.postgres.fields.JSONField to models.JSONField as it will be removed in Django 4.0. Refs TTVA-232
NullBooleanField is deprecated and will be removed in Django 4.0. Change to suggested BooleanField(null=True). Refs TTVA-232
Upgrade Django to 4.0 and update also other dependencies to the latest possible versions. USE_DEPRECATED_PYTZ is set to True for now. Django is migrating from pytz to zoneinfo and this setting will be removed in Django 5.0. Changes: - Migrations autodetector changes - Remove providing_args argument from django.dispatch.Signal - Replace removeddjango.conf.urls.url with django.urls.re_path - Add now required length argument to get_random_string Refs TTVA-232
Upgrade Django to 4.1 and update also other dependencies to the latest possible versions. Refs TTVA-232
Upgrade Django to 4.2 and update also other dependencies to the latest possible versions. Changes: - TranslationOptions's fields was named to all_fields - Fix error "Router with basename "resource" is already registered" by adding ResourceListViewSet directly to the urlpatterns. Refs TTVA-232
Refs TTVA-233
Django-ckeditor is bundled with CKEditor 4.22.1 which isn't supported anymore and has unfixed security issues. Remove django-ckeditor and switch to a TextField for now. Refs TTVA-235
Refs TTVA-234
Refs TTVA-234
Refs TTVA-234
Refs TTVA-234
Refs TTVA-234
Refs TTVA-234
Refs TTVA-234
Refs TTVA-234
31bb1b5
to
9702524
Compare
Refs TTVA-234
Refs TTVA-233
9702524
to
1651a67
Compare
jopesy
approved these changes
Mar 12, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Upgrade major tech stack versions:
Refs TTVA-228, TTVA-232, TTVA-233, TTVA-234, TTVA-235