Move release note for #1236 from 1.0 to 0.8.7

pull/1161/merge
Matt Westcott 2015-04-27 14:22:01 +01:00
rodzic 7a66367517
commit f7b2cfbb4e
3 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -44,7 +44,6 @@ Changelog
* Added "Add child page" button to admin userbar (Eric Drechsel)
* Renamed the `construct_wagtail_edit_bird` hook to `construct_wagtail_userbar`
* 'static' template tags are now used throughout the admin templates, in place of STATIC_URL
* Fix: Prevent logout on changing password when SessionAuthenticationMiddleware is in use
0.8.7 (xx.xx.2015)
@ -54,6 +53,7 @@ Changelog
* Fix: Due to the above issue, embeds/images in a rich text field would sometimes be saved into the database in their editor representation
* Fix: RoutablePage now prevents subpage_urls from being defined as a property, which would cause a memory leak
* Fix: Added validation to prevent pages being created with only whitespace characters in their title fields (Frank Wiles)
* Fix: Prevent logout on changing password when SessionAuthenticationMiddleware is in use
0.8.6 (10.03.2015)

Wyświetl plik

@ -17,3 +17,4 @@ Bug fixes
* Due to the above issue, embeds/images in a rich text field would sometimes be saved into the database in their editor representation
* RoutablePage now prevents ``subpage_urls`` from being defined as a property, which would cause a memory leak
* Added validation to prevent pages being created with only whitespace characters in their title fields
* Users are no longer logged out on changing password when SessionAuthenticationMiddleware (added in Django 1.7) is in use

Wyświetl plik

@ -111,7 +111,6 @@ Bug fixes
* The ``document_served`` signal now correctly passes the Document class as ``sender`` and the document as ``instance``
* Image edit page no longer throws ``OSError`` when the original image is missing
* Users are no longer logged out on changing password when SessionAuthenticationMiddleware is in use
Upgrade considerations