Release notes for #3748

pull/3753/head
Thibaud Colas 2017-08-08 21:41:37 +03:00
rodzic 5cdf93e9ce
commit 85286699d2
2 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -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)

Wyświetl plik

@ -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.