0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-25 05:02:57 +01:00

Changelog for #3911.

This commit is contained in:
Bertrand Bordage 2018-01-03 11:32:22 +01:00
parent 317ea80a7e
commit 3097e5e610
2 changed files with 4 additions and 0 deletions

View File

@ -23,6 +23,7 @@ Changelog
* Added `render_landing_page` method to `AbstractForm` to be easily overridden and pass `form_submission` to landing page context (Stein Strindhaug)
* Added `heading` kwarg to `InlinePanel` to allow heading to be set independently of button label (Adrian Turjak)
* The value type returned from a `StructBlock` can now be customised (LB (Ben Johnston))
* Added `bgcolor` image operation (Karl Hobley)
* Fix: Do not remove stopwords when generating slugs from non-ASCII titles, to avoid issues with incorrect word boundaries (Sævar Öfjörð Magnússon)
* Fix: The PostgreSQL search backend now preserves ordering of the `QuerySet` when searching with `order_by_relevance=False` (Bertrand Bordage)
* Fix: Using `modeladmin_register` as a decorator no longer replaces the decorated class with `None` (Tim Heap)
@ -45,6 +46,7 @@ Changelog
* Fix: Prevented intermittent failures on Postgres search backend when a field is defined as both a `SearchField` and a `FilterField` (Matt Westcott)
* Fix: Alt text of images in rich text is no longer truncated on double-quote characters (Matt Westcott)
* Fix: Ampersands in embed URLs within rich text are no longer double-escaped (Matt Westcott)
* Fix: Using RGBA images no longer crashes with Pillow >= 4.2.0 (Karl Hobley)
1.13.1 (17.11.2017)

View File

@ -36,6 +36,7 @@ Other features
* Added ``render_landing_page`` method to ``AbstractForm`` to be easily overridden and pass ``form_submission`` to landing page context (Stein Strindhaug)
* Added ``heading`` kwarg to ``InlinePanel`` to allow heading to be set independently of button label (Adrian Turjak)
* The value type returned from a ``StructBlock`` can now be customised. See :ref:`custom_value_class_for_structblock` (LB (Ben Johnston))
* Added `bgcolor` image operation (Karl Hobley)
Bug fixes
~~~~~~~~~
@ -63,6 +64,7 @@ Bug fixes
* Prevented intermittent failures on Postgres search backend when a field is defined as both a ``SearchField`` and a ``FilterField`` (Matt Westcott)
* Alt text of images in rich text is no longer truncated on double-quote characters (Matt Westcott)
* Ampersands in embed URLs within rich text are no longer double-escaped (Matt Westcott)
* Using RGBA images no longer crashes with Pillow >= 4.2.0 (Karl Hobley)
Upgrade considerations