diff --git a/docs/releases/1.7.txt b/docs/releases/1.7.txt index 4177b464d6..120ec4c18a 100644 --- a/docs/releases/1.7.txt +++ b/docs/releases/1.7.txt @@ -239,10 +239,16 @@ Management Commands Models ^^^^^^ +* The :meth:`QuerySet.update_or_create() + ` method was added. + * The new :attr:`~django.db.models.Options.default_permissions` model ``Meta`` option allows you to customize (or disable) creation of the default add, change, and delete permissions. +* :attr:`~django.db.models.Options.app_label` is no longer required for models + that are defined in a ``models`` package within an app. + * Explicit :class:`~django.db.models.OneToOneField` for :ref:`multi-table-inheritance` are now discovered in abstract classes. @@ -252,12 +258,6 @@ Signals * The ``enter`` argument was added to the :data:`~django.test.signals.setting_changed` signal. -* The :meth:`QuerySet.update_or_create() - ` method was added. - -* :attr:`~django.db.models.Options.app_label` is no longer required for models - that are defined in a ``models`` package within an app. - Templates ^^^^^^^^^