diff --git a/CHANGELOG.txt b/CHANGELOG.txt index f59a494ff..4f2f0b39a 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -20,6 +20,7 @@ Changelog * Fix: Prevent the page editor footer content from collapsing into two lines unnecessarily (Jack Paine) * Fix: StructBlock values no longer render HTML templates as their `str` representation, to prevent infinite loops in debugging / logging tools (Matt Westcott) * Fix: Removed deprecated jQuery ``load`` call from TableBlock initialisation (Jack Paine) + * Fix: Position of options in mobile nav-menu (Jack Paine) 1.11.1 (07.07.2017) diff --git a/docs/releases/1.12.rst b/docs/releases/1.12.rst index 093191cfa..9cf31eec7 100644 --- a/docs/releases/1.12.rst +++ b/docs/releases/1.12.rst @@ -40,11 +40,12 @@ Bug fixes * Prevent the page editor footer content from collapsing into two lines unnecessarily (Jack Paine) * StructBlock values no longer render HTML templates as their ``str`` representation, to prevent infinite loops in debugging / logging tools (Matt Westcott) * Removed deprecated jQuery ``load`` call from TableBlock initialisation (Jack Paine) + * Position of options in mobile nav-menu (Jack Paine) Upgrade considerations ====================== -StreamField now defaults to ``blank=False`` +StreamField now defaults to ``blank=False`` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ StreamField now respects the ``blank`` field setting; when this is false, at least one block must be supplied for the field to pass validation. To match the behaviour of other model fields, ``blank`` defaults to ``False``; if you wish to allow a StreamField to be left empty, you must now add ``blank=True`` to the field.