Changelog and release note for API descendant_of filter

This commit is contained in:
Karl Hobley 2015-07-15 10:00:46 +01:00
parent d3b9779141
commit 449fdab7d8
2 changed files with 2 additions and 0 deletions

View file

@ -9,6 +9,7 @@ Changelog
* The `{% image %}` tag now supports filters on the image variable, e.g. `{% image primary_img|default:secondary_img width-500 %}`
* Moved the style guide menu item into the Settings sub-menu
* Search backends can now be specified by module (e.g. `wagtail.wagtailsearch.backends.elasticsearch`), rather than a specific class (`wagtail.wagtailsearch.backends.elasticsearch.ElasticSearch`)
* Added ``descendant_of`` filter to the API (Michael Fillier)
* Fix: Text areas in the non-default tab of the page editor now resize to the correct height

View file

@ -22,3 +22,4 @@ Minor features
* The ``{% image %}`` tag now supports filters on the image variable, e.g. ``{% image primary_img|default:secondary_img width-500 %}``
* Moved the style guide menu item into the Settings sub-menu
* Search backends can now be specified by module (e.g. ``wagtail.wagtailsearch.backends.elasticsearch``), rather than a specific class (``wagtail.wagtailsearch.backends.elasticsearch.ElasticSearch``)
* Added ``descendant_of`` filter to the API