summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSimon Charette <charette.s@gmail.com>2014-07-04 12:48:13 -0400
committerAndrew Godwin <andrew@aeracode.org>2014-07-05 16:38:34 -0700
commit2f0cc4f5fbdddbecbd9c2093baf851fd92dbe205 (patch)
tree67c10a0b29c25de19467f79c99f7942ce2074172 /docs
parent1f889800d6c3c2989c0f8c12c631967e8e3ce428 (diff)
[1.7.x] Fixed #22943 -- Correctly serialize compiled regexes.
Thanks to antialiasis at gmail dot com for the patch.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.7.txt7
1 files changed, 0 insertions, 7 deletions
diff --git a/docs/releases/1.7.txt b/docs/releases/1.7.txt
index 11270b3a27..9490996dba 100644
--- a/docs/releases/1.7.txt
+++ b/docs/releases/1.7.txt
@@ -1390,13 +1390,6 @@ Miscellaneous
a relation from the related object back to the content type for filtering,
ordering and other query operations.
-* When a model field's :attr:`~django.db.models.Field.validators` contains
- a :class:`~django.core.validators.RegexValidator`, the regular expression
- must now be passed as a regular expression string. You can no longer use a
- pre-compiled regular expression in this case, as it is not serializable.
- The :attr:`~django.core.validators.RegexValidator.flags` attribute was added
- to :class:`~django.core.validators.RegexValidator` to simplify this change.
-
* When running tests on PostgreSQL, the :setting:`USER` will need read access
to the built-in ``postgres`` database. This is in lieu of the previous
behavior of connecting to the actual non-test database.