summaryrefslogtreecommitdiff
path: root/docs/releases/2.1.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/releases/2.1.txt')
-rw-r--r--docs/releases/2.1.txt28
1 files changed, 15 insertions, 13 deletions
diff --git a/docs/releases/2.1.txt b/docs/releases/2.1.txt
index 4c05e5ae3b..d615d1432a 100644
--- a/docs/releases/2.1.txt
+++ b/docs/releases/2.1.txt
@@ -76,10 +76,11 @@ Minor features
per model <admin-templates-overridden-per-app-or-model>` (besides overridden
globally).
-* The admin change list and change form object tools can now be :ref:`overridden
- per app, per model, or globally <admin-templates-overridden-per-app-or-model>`
- with ``change_list_object_tools.html`` and
- ``change_form_object_tools.html`` templates.
+* The admin change list and change form object tools can now be
+ :ref:`overridden per app, per model, or globally
+ <admin-templates-overridden-per-app-or-model>` with
+ ``change_list_object_tools.html`` and ``change_form_object_tools.html``
+ templates.
* :meth:`.InlineModelAdmin.has_add_permission` is now passed the parent object
as the second positional argument, ``obj``.
@@ -148,8 +149,8 @@ Management Commands
* The :class:`~django.core.management.BaseCommand` class now uses a custom help
formatter so that the standard options like ``--verbosity`` or ``--settings``
- appear last in the help output, giving a more prominent position to subclassed
- command's options.
+ appear last in the help output, giving a more prominent position to
+ subclassed command's options.
Migrations
~~~~~~~~~~
@@ -272,9 +273,9 @@ supports PostgreSQL 9.4 and higher.
Removed ``BCryptPasswordHasher`` from the default ``PASSWORD_HASHERS`` setting
------------------------------------------------------------------------------
-If you used bcrypt with Django 1.4 or 1.5 (before ``BCryptSHA256PasswordHasher``
-was added in Django 1.6), you might have some passwords that use the
-``BCryptPasswordHasher`` hasher.
+If you used bcrypt with Django 1.4 or 1.5 (before
+``BCryptSHA256PasswordHasher`` was added in Django 1.6), you might have some
+passwords that use the ``BCryptPasswordHasher`` hasher.
You can check if that's the case like this::
@@ -382,10 +383,11 @@ Miscellaneous
conflicts with the class given to model fields named "box".
* Since the admin's ``actions.html``, ``change_list_results.html``,
- ``date_hierarchy.html``, ``pagination.html``, ``prepopulated_fields_js.html``,
- ``search_form.html``, and ``submit_line.html`` templates can now be
- overridden per app or per model, you may need to rename existing templates
- with those names that were written for a different purpose.
+ ``date_hierarchy.html``, ``pagination.html``,
+ ``prepopulated_fields_js.html``, ``search_form.html``, and
+ ``submit_line.html`` templates can now be overridden per app or per model,
+ you may need to rename existing templates with those names that were written
+ for a different purpose.
* ``QuerySet.raw()`` now caches its results like regular querysets. Use
``iterator()`` if you don't want caching.