Wykres commitów

18824 Commity (stable/7.0.x)

Autor SHA1 Wiadomość Data
Matthew Westcott 35a7655bb5 Version bump to 7.0.3 2025-08-28 18:50:41 +01:00
Matthew Westcott 37065f9d3b Fill in release date for 7.0.3 2025-08-28 18:50:14 +01:00
Matthew Westcott b4bd0d285b remove redundant 'Fix' 2025-08-28 17:27:04 +01:00
Matthew Westcott 83a2441527 Add missing 7.0.3.md 2025-08-28 17:25:28 +01:00
Matthew Westcott a4969a8404 Release note for #13370 in 7.0.3 2025-08-28 17:23:24 +01:00
Sage Abdullah af66fb2818 Fix crash when previewing a form page with an empty field_type form field 2025-08-28 17:21:52 +01:00
Matthew Westcott 7f4a8653e5 Add missing release note for #13210 in 7.0.2 2025-07-24 13:54:35 +02:00
Sage Abdullah 22762d17a5 Bump minimum Willow version to v1.11.0
Use built-in AVIF support from Pillow and update assertions to be against Willow rather than the Pillow implementation
2025-07-24 13:30:06 +02:00
Matthew Westcott a872155991 Version bump to 7.0.2 2025-07-24 13:09:11 +02:00
Matthew Westcott a1393be3bb Fill in release date for 7.0.2 2025-07-24 13:06:53 +02:00
zerolab a12464760d Exclude `latest_revision` when creating a page alias #13210
- Fix alias of draft page for non-primary locale showing links to the incorrect edit form
- Fixes #13090
- Relates to #13100

# Conflicts:
#	CHANGELOG.txt
#	docs/releases/7.1.md
2025-07-15 05:41:57 +10:00
Matt Westcott 9f19fea518 Release note for #13069 in 7.0.2 2025-06-27 21:38:59 +01:00
Matt Westcott b811794f42 Release note for #13069 in 6.4.3 2025-06-27 21:37:59 +01:00
Matt Westcott e8863ba901 Release note for #13069 in 6.3.6 2025-06-27 21:37:19 +01:00
Vince Salvino 1bf5e3768b Remove ngram parser from autocomplete index on MySQL 2025-06-27 21:37:08 +01:00
Sage Abdullah ad219826a7 Fix error when restoring scroll position for cross-domain preview iframe (#13111)
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2025-06-20 07:45:46 +01:00
Thibaud Colas 587bca137c Add 7.0.2 release notes file and section 2025-06-20 07:45:39 +01:00
Matt Westcott 1de89677f4 Fill in release date for 7.0.1 2025-06-12 16:25:15 +01:00
Matt Westcott ca3f3b4e2b Remove Documentation heading from 6.4.2 release notes 2025-06-12 14:59:16 +01:00
Matt Westcott 3811d057a0 Fill in release date for 6.4.2 2025-06-12 14:50:19 +01:00
Matt Westcott 7da4431254 Fill in release date for 6.3.5 2025-06-12 14:49:38 +01:00
Matt Westcott a9c0da4e4b Fill in release date for 6.2.4 2025-06-12 14:49:38 +01:00
Matt Westcott b7fe13be2e Release note for #13161 in 7.0.x 2025-06-12 11:58:51 +01:00
Matt Westcott fa175994a3 Release note for #13161 in 6.4.x 2025-06-12 11:58:10 +01:00
Jake Howard a7b4e1db98 Sanitize request data when logging method not allowed 2025-06-12 11:58:04 +01:00
Matt Westcott aba2be479f Alternative tests for #13160 that don't depend on responses
requests/responses depends on #13102, which isn't in 7.0.x.
2025-06-12 11:29:38 +01:00
Matt Westcott b601d46378 Revert "Convert EmbedBlock tests to use responses instead of mocking get_embed"
This reverts commit e0c7082b17.
2025-06-12 11:24:34 +01:00
Matt Westcott 18ffad75ce Release note for #13160 in 7.0.1 2025-06-12 10:30:47 +01:00
Matt Westcott 12dc7a8777 Fix handling of empty values in EmbedBlock.normalize
Fixes #13135

Since #12849, saving a StreamField through the standard admin edit form will apply `normalize` to the blocks before calling `clean`. However, `EmbedBlock.normalize` did not properly account for blank values, returning an `EmbedValue` with a blank `url` attribute, which `clean` fails on. Fix this to return None for blank values.

Tests for `EmbedBlock.clean` have been updated to run inputs through `EmbedBlock.normalize`, replicating what happens in a real form.
2025-06-12 10:29:54 +01:00
Matt Westcott e0c7082b17 Convert EmbedBlock tests to use responses instead of mocking get_embed 2025-06-12 10:29:54 +01:00
Matt Westcott 6bbfa37bb0 Version bump to 7.0.1 2025-06-06 14:28:25 +01:00
Matt Westcott 53255d9ddb Release note for #13151 in 7.0.1 2025-06-06 14:28:11 +01:00
Matt Westcott 46f58cf56b Release note for #13151 in 6.4.2 2025-06-06 14:27:22 +01:00
Matt Westcott c4aca04fe2 Release note for #13151 in 6.3.5 2025-06-06 14:27:15 +01:00
Matt Westcott 456373cc11 Release note for #13151 in 6.2.4 2025-06-06 14:27:10 +01:00
Matt Westcott fc90dddf00 Fix broken migration when ListBlock is defined with a child_block kwarg (#13151)
Fixes #13137.

When a ListBlock is defined with
a child_block keyword argument, its deconstruct_with_lookup method inserts that child
block into the lookup to obtain an ID, and returns that ID as the child_block kwarg
in its result. However, an implementation bug meant that this was mutating the kwargs
dict stored in the block's _constructor_args attribute. As a result, subsequent calls
to deconstruct_with_lookup (which happen routinely during makemigrations) would
encounter the ID in child_block, leave it alone (because it isn't a block object as
expected), and return that ID in the result without adding it to the lookup, messing
up the ID sequence in the process.
2025-06-06 14:27:06 +01:00
smark-1 5a3095cf46 Document `Block.is_previewable` 2025-06-02 11:07:34 +01:00
Matt Westcott e7c98a82e2 Release note for #13143 in 7.0.x 2025-06-02 11:01:18 +01:00
Matt Westcott 9ee1917192 Release note for #13143 in 6.4.x 2025-06-02 11:00:31 +01:00
Matt Westcott 45e5129aad Release note for #13143 in 6.3.x 2025-06-02 11:00:23 +01:00
Sage Abdullah fbecd8647e Use latest mysqlclient for running tests on GitHub Actions 2025-06-02 11:00:09 +01:00
Sage Abdullah bfcf9801f5 Ensure MySQL test database is created with utf8mb4 charset and collation 2025-06-02 11:00:09 +01:00
Sage Abdullah 277c76ec80
Add 6.3.5 release notes to index 2025-05-23 10:56:10 +01:00
Sage Abdullah 8f8549f57f
Release note for #13134 in 6.3.5 2025-05-23 10:50:00 +01:00
Sage Abdullah 870aa43204
Release note for #13134 in 6.4.2 2025-05-23 10:49:54 +01:00
Sage Abdullah e2a4e6f5ce
Release note for #13134 in 7.0.1 2025-05-23 10:49:38 +01:00
Sage Abdullah 81bfd3845c
Use correct URL when redirecting back to the listing after filtering and deleting form submissions 2025-05-23 10:49:30 +01:00
Sébastien Corbin 40e14779f2
Fix parameters typing for register_filter_adapter_class() 2025-05-13 14:27:09 +01:00
Sage Abdullah d770f649e9
Release note for #13096 2025-05-13 14:27:01 +01:00
Alec Baron b2c9e8efe4
Update custom rendition docs 2025-05-13 14:26:09 +01:00