From 20ed83413297ac63507fe47d1d45654e2d940b4b Mon Sep 17 00:00:00 2001 From: Matt Westcott Date: Fri, 15 Oct 2021 14:32:32 +0100 Subject: [PATCH] Release note for typed table block #7470 --- CHANGELOG.txt | 1 + docs/releases/2.15.rst | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 8aaec3eb3f..82f273b496 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -7,6 +7,7 @@ Changelog * Implemented a new database search backend that supports the FTS features of the database in use (Developed by Aldán Creo. Mentored by Karl Hobley and Cynthia Kiser. Funded by Google Summer of Code) * Extended audit logging to all models and added a history view for snippets and ModelAdmin (Matt Westcott. Sponsored by The Motley Fool) * Allow granting collection management permissions over individual collections (Cynthia Kiser) + * Added `TypedTableBlock` block type for StreamField, for building tables with mixed data types (Matt Westcott, Coen van der Kamp, Scott Cranfill. Sponsored by YouGov) * Add the ability for the page chooser to convert external urls that match a page to internal links (Jacob Topp-Mugglestone. Sponsored by The Motley Fool) * Added "Extending Wagtail" section to documentation (Matt Westcott) * Introduced template components, a standard mechanism for renderable objects in the admin (Matt Westcott) diff --git a/docs/releases/2.15.rst b/docs/releases/2.15.rst index dc96588be0..1e355f88b4 100644 --- a/docs/releases/2.15.rst +++ b/docs/releases/2.15.rst @@ -36,6 +36,12 @@ Collection management permissions Permission for managing collections can now be assigned to individual subtrees of the collection hierarchy, allowing sub-teams within a site to control how their images and documents are organised. For more information, see :ref:`collection_management_permissions`. This feature was developed by Cynthia Kiser. +Typed table block +~~~~~~~~~~~~~~~~~ + +A new ``TypedTableBlock`` block type is available for StreamField, allowing authors to create tables where the cell values are any StreamField block type, including rich text. For more information, see :doc:`/reference/contrib/typed_table_block`. This feature was developed by Matt Westcott, Coen van der Kamp and Scott Cranfill, and sponsored by `YouGov `_. + + Other features ~~~~~~~~~~~~~~