2014-10-23 01:38:57 +08:00
|
|
|
==========================
|
|
|
|
Django 1.7.2 release notes
|
|
|
|
==========================
|
|
|
|
|
|
|
|
*Under development*
|
|
|
|
|
|
|
|
Django 1.7.2 fixes several bugs in 1.7.1.
|
|
|
|
|
2014-11-05 09:38:38 +08:00
|
|
|
Additionally, Django's vendored version of six, :mod:`django.utils.six`, has
|
|
|
|
been upgraded to the latest release (1.8.0).
|
|
|
|
|
2014-10-23 01:38:57 +08:00
|
|
|
Bugfixes
|
|
|
|
========
|
|
|
|
|
2014-10-22 21:59:00 +08:00
|
|
|
* Fixed migration's renaming of auto-created many-to-many tables when changing
|
|
|
|
:attr:`Meta.db_table <django.db.models.Options.db_table>` (:ticket:`23630`).
|
2014-10-24 00:24:34 +08:00
|
|
|
|
|
|
|
* Fixed a migration crash when adding an explicit ``id`` field to a model on
|
|
|
|
SQLite (:ticket:`23702`).
|
2014-10-25 03:29:59 +08:00
|
|
|
|
2014-10-27 19:01:12 +08:00
|
|
|
* Added a warning for duplicate models when a module is reloaded. Previously a
|
|
|
|
``RuntimeError`` was raised every time two models clashed in the app registry.
|
|
|
|
(:ticket:`23621`).
|
|
|
|
|
2014-10-25 03:29:59 +08:00
|
|
|
* Prevented :djadmin:`flush` from loading initial data for migrated apps
|
|
|
|
(:ticket:`23699`).
|
2014-10-27 16:35:01 +08:00
|
|
|
|
|
|
|
* Fixed a :djadmin:`makemessages` regression in 1.7.1 when
|
|
|
|
:setting:`STATIC_ROOT` has the default ``None`` value (:ticket:`23717`).
|
2014-10-28 20:10:45 +08:00
|
|
|
|
2014-10-29 20:37:54 +08:00
|
|
|
* Added GeoDjango compatibility with mysqlclient database driver.
|
|
|
|
|
2014-10-28 20:10:45 +08:00
|
|
|
* Fixed MySQL 5.6+ crash with ``GeometryField``\s in migrations
|
|
|
|
(:ticket:`23719`).
|
2014-10-28 07:28:37 +08:00
|
|
|
|
|
|
|
* Fixed a migration crash when removing a field that is referenced in
|
|
|
|
``AlterIndexTogether`` or ``AlterUniqueTogether`` (:ticket:`23614`).
|
2014-10-29 08:40:02 +08:00
|
|
|
|
|
|
|
* Updated the first day of the week in the Ukrainian locale to Monday.
|
2014-10-31 01:52:42 +08:00
|
|
|
|
|
|
|
* Added support for transactional spatial metadata initialization on
|
|
|
|
SpatiaLite 4.1+ (:ticket:`23152`).
|
2014-10-31 21:08:24 +08:00
|
|
|
|
|
|
|
* Fixed a migration crash that prevented changing a nullable field with a
|
|
|
|
default to non-nullable with the same default (:ticket:`23738`).
|
2014-10-31 21:04:46 +08:00
|
|
|
|
|
|
|
* Fixed a migrations crash when adding ``GeometryField``\s with ``blank=True``
|
|
|
|
on PostGIS (:ticket:`23731`).
|
2014-10-09 03:12:42 +08:00
|
|
|
|
|
|
|
* Allowed usage of ``DateTimeField()`` as ``Transform.output_field``
|
|
|
|
(:ticket:`23420`).
|
2014-11-06 19:29:43 +08:00
|
|
|
|
|
|
|
* Fixed a migration serializing bug involving ``float("nan")`` and
|
2014-11-05 10:57:47 +08:00
|
|
|
``float("inf")`` (:ticket:`23770`).
|
2014-11-13 04:18:11 +08:00
|
|
|
|
|
|
|
* Fixed a regression where custom form fields having a ``queryset`` attribute
|
|
|
|
but no ``limit_choices_to`` could not be used in a
|
|
|
|
:class:`~django.forms.ModelForm` (:ticket:`23795`).
|
2014-11-05 10:57:47 +08:00
|
|
|
|
|
|
|
* Fixed a custom field type validation error with MySQL backend when
|
|
|
|
``db_type`` returned ``None`` (:ticket:`23761`).
|
2014-11-18 02:04:38 +08:00
|
|
|
|
|
|
|
* Fixed a migration crash when a field is renamed that is part of an
|
|
|
|
``index_together`` (:ticket:`23859`).
|
2014-11-17 01:42:23 +08:00
|
|
|
|
|
|
|
* Fixed :djadmin:`squashmigrations` to respect the ``--no-optimize`` parameter
|
|
|
|
(:ticket:`23799`).
|
2014-11-18 20:25:03 +08:00
|
|
|
|
|
|
|
* Made :class:`~django.db.migrations.operations.RenameModel` reversible
|
|
|
|
(:ticket:`22248`)
|
2014-11-18 01:13:47 +08:00
|
|
|
|
|
|
|
* Avoided unnecessary rollbacks of migrations from other apps when migrating
|
|
|
|
backwards (:ticket:`23410`).
|
2014-10-07 21:07:46 +08:00
|
|
|
|
|
|
|
* Fixed a rare query error when using deeply nested subqueries
|
|
|
|
(:ticket:`23605`).
|
2014-11-15 22:43:06 +08:00
|
|
|
|
|
|
|
* Fixed a crash in migrations when deleting a field that is part of a
|
|
|
|
``index/unique_together`` constraint (:ticket:`23794`).
|
2014-11-21 22:26:46 +08:00
|
|
|
|
|
|
|
* Fixed ``django.core.files.File.__repr__()`` when the file's ``name`` contains
|
|
|
|
Unicode characters (:ticket:`23888`).
|
2014-11-23 22:08:34 +08:00
|
|
|
|
|
|
|
* Added missing context to the admin's ``delete_selected`` view that prevented
|
|
|
|
custom site header, etc. from appearing (:ticket:`23898`).
|
2014-11-16 23:42:09 +08:00
|
|
|
|
|
|
|
* Fixed a regression with dynamically generated inlines and allowed field
|
|
|
|
references in the admin (:ticket:`23754`).
|
2014-11-26 16:22:04 +08:00
|
|
|
|
|
|
|
* Fixed an infinite loop bug for certain cyclic migration dependencies, and made
|
|
|
|
the error message for cyclic dependencies much more helpful.
|