1
0
mirror of https://github.com/django/django.git synced 2025-03-24 00:00:45 +00:00
django/docs/releases/1.4.2.txt
Claude Paroz 92f7af3c36 [1.4.x] Fixed #18212 -- Standardized arguments of GenericIPAddressField
Unlike other model fields, the newly introduced (1.4)
GenericIPAddressField did not accept verbose_name and name as the
first positional arguments. This commit fixes it.
Thanks Dan McGee for the report and the patch.

Backport of 306d34873cff2 from master.
2012-09-01 18:39:51 +02:00

15 lines
447 B
Plaintext

==========================
Django 1.4.2 release notes
==========================
*TO BE RELEASED*
This is the second security release in the Django 1.4 series.
Backwards incompatible changes
==============================
* The newly introduced :class:`~django.db.models.GenericIPAddressField`
constructor arguments have been adapted to match those of all other model
fields. The first two keyword arguments are now verbose_name and name.