move release note item for #942 from 1.0 to 0.8.7

pull/1161/head
Matt Westcott 2015-04-23 16:54:41 +01:00
rodzic 587349b83d
commit 35a8802fac
3 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -23,7 +23,6 @@ Changelog
* Password reset view names namespaced to wagtailadmin
* Removed the need to add permission check on admin views (now automated)
* Added cache-control headers to all admin views
* Added validation to prevent pages being crated with only whitespace characters in their title fields (Frank Wiles)
* Page model fields without a FieldPanel are no longer displayed in the form
* No longer need to specify the base model on InlinePanel definitions
* The project template Vagrantfile now listens on port 8000
@ -53,6 +52,7 @@ Changelog
* Fix: The contents of <div> elements in the rich text editor were not being whitelisted
* 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 crated with only whitespace characters in their title fields (Frank Wiles)
0.8.6 (10.03.2015)

Wyświetl plik

@ -16,3 +16,4 @@ Bug fixes
* The contents of ``<div>`` elements in the rich text editor were not being whitelisted
* 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

Wyświetl plik

@ -41,7 +41,6 @@ Minor changes
Core
----
* Added validation to prevent pages being created with only whitespace characters in their title fields
* The Page model now records the date/time that a page was first published, as the field ``first_published_at``
* Increased the maximum length of a page slug from 50 to 255 characters
* Added hooks ``register_rich_text_embed_handler`` and ``register_rich_text_link_handler`` for customising link / embed handling within rich text fields