summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAndrew Godwin <andrew@aeracode.org>2014-07-05 16:37:10 -0700
committerAndrew Godwin <andrew@aeracode.org>2014-07-05 16:37:10 -0700
commitf751109cb240290cb946f8d4def0c7a5fb92569b (patch)
tree5f1da40c90d75356cc7ecde7e5a60fa0a40479f4 /docs
parent80a12f21e30149529d831029f3cebc5728092aad (diff)
parent35c2c3704185dfdf6498ccf625872fa28bd7ece1 (diff)
Merge pull request #2881 from charettes/ticket-22943-compiled-regex-deconstruction
Fixed #22943 -- Correctly serialize compiled regexes.
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 dc42d57e57..e000dfcc6b 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.