-
-
Notifications
You must be signed in to change notification settings - Fork 269
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
Upgrade to Django 4.2 #3341
Merged
Merged
Upgrade to Django 4.2 #3341
Conversation
This file contains 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
Minnozz
force-pushed
the
django-4.2
branch
6 times, most recently
from
April 1, 2024 21:12
6726b1e
to
a3430c9
Compare
Rebased on #3350 to allow defining |
Minnozz
force-pushed
the
django-4.2
branch
2 times, most recently
from
April 24, 2024 14:28
a6159b3
to
68b1994
Compare
Accessing many-to-many relations before saving is no longer allowed. Reorder all operations consistently: 1. Validations 2. Modify own fields 3. Perform save by calling super().save() 4. Modify related objects and clear caches Especially clearing caches should be done after actually saving, otherwise the old data can be re-added immediately by another request before the new data is written.
The problem that boto3 closes files has been worked around in django-storages.
@bookwyrm-social/code-review This PR is ready for review |
dato
approved these changes
May 22, 2024
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.
Great work!!
minor contributions to django 4.2 upgrade
Co-authored-by: Adeodato Simó <73768+dato@users.noreply.github.com>
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.
USE_L10N
settingpytz
tozoneinfo
CSRF_TRUSTED_ORIGINS
are neededsave()
methods due to changes in releations for unsaved model instancesSTORAGES
settingheaders
kwarg for test HTTP clientupdate_fields
in overriddensave()
when extra fields are modified may now be requiredCICharField
with custom case-insensitive collationrequirements.txt
and change to>=
(for security fixes)Other points of note: