2016-05-23 16:17:58 +02:00
==========================================
Wagtail 1.6 release notes - IN DEVELOPMENT
==========================================
.. contents ::
:local:
:depth: 1
What's new
==========
Minor features
~~~~~~~~~~~~~~
2016-04-28 02:15:05 +02:00
* Page slugs now allow unicode on Django >= 1.9 (Behzad Nategh)
2016-04-28 16:27:39 +02:00
* Image upload form in image chooser now performs client side validation so that the selected file is not lost in the submission (Jack Paine)
2016-06-08 12:36:27 +02:00
* oEmbed URL for audioBoom was updated (Janneke Janssen)
2016-06-08 15:53:01 +02:00
* Remember tree location in page chooser when switching between Internal / External / Email link (Matt Westcott)
2016-06-10 15:26:02 +02:00
* `` FieldRowPanel `` now creates equal-width columns automatically if `` col* `` classnames are not specified (Chris Rogers)
2016-06-13 20:11:48 +02:00
* Form builder now validates against multiple fields with the same name (Richard McMillan)
2016-04-19 18:01:22 +02:00
* The 'choices' field on the form builder no longer has a maximum length (Johannes Spielmann)
2016-04-28 16:27:39 +02:00
2016-05-23 16:17:58 +02:00
Bug fixes
~~~~~~~~~
2016-06-15 19:15:21 +02:00
* Email templates and document uploader now support custom `` STATICFILES_STORAGE `` (Jonny Scholes)
* Removed alignment options (deprecated in HTML and not rendered by Wagtail) from `` TableBlock `` context menu (Moritz Pfeiffer)
2016-06-15 13:30:47 +02:00
* Fixed incorrect CSS path on ModelAdmin's "choose a parent page" view
2016-06-16 12:48:45 +02:00
* Prevent empty redirect by overnormalisation
2016-06-08 14:24:18 +02:00
2016-05-23 16:17:58 +02:00
Upgrade considerations
======================
2016-04-19 18:01:22 +02:00
Form builder `` FormField `` models require a migration
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The `` choices `` field on the `` wagtailforms.models.AbstractFormField `` model has been changed from a `` CharField `` to a `` TextField `` , to allow it to be of unlimited length. If you are using the `` wagtailforms `` module in your project, you will need to run `` python manage.py makemigrations `` and `` python manage.py migrate `` after upgrading, in order to apply this change to your form page models.