Fixed a few release notes typos.
This commit is contained in:
parent
4cf82e5bcf
commit
38036e16c8
|
@ -453,7 +453,7 @@ to the item above about changes in the test runners:
|
||||||
The ``django.contrib.gis.tests.GeoDjangoTestSuiteRunner`` test runner has been
|
The ``django.contrib.gis.tests.GeoDjangoTestSuiteRunner`` test runner has been
|
||||||
removed and the standalone GeoDjango tests execution setup it implemented isn't
|
removed and the standalone GeoDjango tests execution setup it implemented isn't
|
||||||
supported anymore. To run the GeoDjango tests simply use the new
|
supported anymore. To run the GeoDjango tests simply use the new
|
||||||
``DicoverRunner`` and specify the ``django.contrib.gis`` app.
|
``DiscoverRunner`` and specify the ``django.contrib.gis`` app.
|
||||||
|
|
||||||
Custom User models in tests
|
Custom User models in tests
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
|
@ -459,7 +459,7 @@ Cache
|
||||||
* Defining the :setting:`TIMEOUT <CACHES-TIMEOUT>` argument of the
|
* Defining the :setting:`TIMEOUT <CACHES-TIMEOUT>` argument of the
|
||||||
:setting:`CACHES` setting as ``None`` will set the cache keys as
|
:setting:`CACHES` setting as ``None`` will set the cache keys as
|
||||||
"non-expiring" by default. Previously, it was only possible to pass
|
"non-expiring" by default. Previously, it was only possible to pass
|
||||||
``timeout=None` to the cache backend's ``set()`` method.
|
``timeout=None`` to the cache backend's ``set()`` method.
|
||||||
|
|
||||||
Cross Site Request Forgery
|
Cross Site Request Forgery
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
@ -579,7 +579,7 @@ Internationalization
|
||||||
is still read from in 1.7. Sessions will be migrated to the new key
|
is still read from in 1.7. Sessions will be migrated to the new key
|
||||||
as they are written.
|
as they are written.
|
||||||
|
|
||||||
* The :ttag:`blocktrans` now supports a ``trimmed`` option. This
|
* The :ttag:`blocktrans` tag now supports a ``trimmed`` option. This
|
||||||
option will remove newline characters from the beginning and the end of the
|
option will remove newline characters from the beginning and the end of the
|
||||||
content of the ``{% blocktrans %}`` tag, replace any whitespace at the
|
content of the ``{% blocktrans %}`` tag, replace any whitespace at the
|
||||||
beginning and end of a line and merge all lines into one using a space
|
beginning and end of a line and merge all lines into one using a space
|
||||||
|
@ -738,8 +738,8 @@ Templates
|
||||||
internal structure of each ``Context``'s stack doesn't matter as long as their
|
internal structure of each ``Context``'s stack doesn't matter as long as their
|
||||||
flattened version is identical).
|
flattened version is identical).
|
||||||
|
|
||||||
* The :ttag:`widthratio` template tag now accepts an "as" parameter to capture
|
* The :ttag:`widthratio` template tag now accepts an ``"as"`` parameter to
|
||||||
the result in a variable.
|
capture the result in a variable.
|
||||||
|
|
||||||
* The :ttag:`include` template tag will now also accept anything with a
|
* The :ttag:`include` template tag will now also accept anything with a
|
||||||
``render()`` method (such as a ``Template``) as an argument. String
|
``render()`` method (such as a ``Template``) as an argument. String
|
||||||
|
@ -1138,7 +1138,7 @@ Miscellaneous
|
||||||
two ``Model`` instances without primary key values won't be considered
|
two ``Model`` instances without primary key values won't be considered
|
||||||
equal (unless they are the same instance).
|
equal (unless they are the same instance).
|
||||||
|
|
||||||
* The :meth:`django.db.models.Model.__hash__` will now raise ``TypeError``
|
* The :meth:`django.db.models.Model.__hash__` method will now raise ``TypeError``
|
||||||
when called on an instance without a primary key value. This is done to
|
when called on an instance without a primary key value. This is done to
|
||||||
avoid mutable ``__hash__`` values in containers.
|
avoid mutable ``__hash__`` values in containers.
|
||||||
|
|
||||||
|
@ -1381,7 +1381,7 @@ to ``utils.py`` in an effort to unify all util and utils references:
|
||||||
|
|
||||||
``ModelAdmin.get_formsets`` has been deprecated in favor of the new
|
``ModelAdmin.get_formsets`` has been deprecated in favor of the new
|
||||||
:meth:`~django.contrib.admin.ModelAdmin.get_formsets_with_inlines`, in order to
|
:meth:`~django.contrib.admin.ModelAdmin.get_formsets_with_inlines`, in order to
|
||||||
better handle the case of selecting showing inlines on a ``ModelAdmin``.
|
better handle the case of selectively showing inlines on a ``ModelAdmin``.
|
||||||
|
|
||||||
``IPAddressField``
|
``IPAddressField``
|
||||||
~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~
|
||||||
|
@ -1537,6 +1537,6 @@ will be removed in Django 1.8.
|
||||||
|
|
||||||
Reorganization of database test settings
|
Reorganization of database test settings
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
All database settings with a `TEST_` prefix have been deprecated in favor of
|
All database settings with a ``TEST_`` prefix have been deprecated in favor of
|
||||||
entries in a :setting:`TEST <DATABASE-TEST>` dictionary in the database
|
entries in a :setting:`TEST <DATABASE-TEST>` dictionary in the database
|
||||||
settings. The old settings will be supported until Django 1.9.
|
settings. The old settings will be supported until Django 1.9.
|
||||||
|
|
Loading…
Reference in New Issue