-
Notifications
You must be signed in to change notification settings - Fork 8
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
Update wagtail 6.3 #1161
Update wagtail 6.3 #1161
Conversation
Also, update django-taggit, django-modelcluster and create migrations
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.
I think this overall update is great. There's one small change I would add:
The release notes for wagtail 6.0 mention the Copy view being enabled by default. I think it's worth adding copy_view_enabled = False
to ScanResultAdmin
to avoid having the (broken) "Copy" action show up on the scan result list, as shown below.

requirements.txt
Outdated
wagtail==5.2.6 \ | ||
--hash=sha256:133ec00787d83ab7fa06255641aa855e7fd75f07d04af473bd98fe782c736595 \ | ||
--hash=sha256:5497eecf8ffef7996e2ac348e90444deac71e54d3334eca27683c29da8754550 | ||
wagtail==6.3.1 \ |
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.
We might as well make this wagtail 6.3.2, which is now released.
print(directories) | ||
print(file_names) |
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.
Cleanup: print calls can be removed.
local_storage = FileSystemStorage(os.path.join(fixtures_dir, "media")) | ||
self._copy_files(local_storage, "") | ||
call_command("loaddata", fixture_file, verbosity=4) | ||
print(CustomImage.objects.all()) |
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.
Cleanup: print call can be removed.
@chigby addressed your comments. |
@SaptakS Did you see the mention of wagtail 6.3.2? |
Aah yes. Missed that. |
Description
Fixes #1158 .
Changes proposed in this pull request:
Type of change
Testing
How should the reviewer test this PR?
Check that everything works without anything being broken.