1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #28148 -- Doc'd ImageField name validation concerns with the test client.

This commit is contained in:
Riccardo Magliocchetti
2017-05-06 19:14:15 +02:00
committed by Tim Graham
parent a7c6c705e8
commit bdf192c593
2 changed files with 15 additions and 1 deletions

View File

@@ -742,6 +742,12 @@ Miscellaneous
* The signature of private API ``Widget.build_attrs()`` changed from
``extra_attrs=None, **kwargs`` to ``base_attrs, extra_attrs=None``.
* File-like objects (e.g., :class:`~io.StringIO` and :class:`~io.BytesIO`)
uploaded to an :class:`~django.db.models.ImageField` using the test client
now require a ``name`` attribute with a value that passes the
:data:`~django.core.validators.validate_image_file_extension` validator.
See the note in :meth:`.Client.post`.
.. _deprecated-features-1.11:
Features deprecated in 1.11