File tree Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ Development
6
6
===========
7
7
- (Fill this out as you fix issues and develop your features).
8
8
9
+ Changes in 0.13.0
10
+ =================
11
+ - POTENTIAL BREAKING CHANGE: Added Unicode support to the `EmailField `, see
12
+ docs/upgrade.rst for details.
13
+
9
14
Changes in 0.12.0
10
15
=================
11
16
- POTENTIAL BREAKING CHANGE: Fixed limit/skip/hint/batch_size chaining #1476
Original file line number Diff line number Diff line change @@ -6,6 +6,17 @@ Development
6
6
***********
7
7
(Fill this out whenever you introduce breaking changes to MongoEngine)
8
8
9
+ 0.13.0
10
+ ******
11
+ This release adds Unicode support to the `EmailField ` and changes its
12
+ structure significantly. Previously, email addresses containing Unicode
13
+ characters didn't work at all. Starting with v0.13.0, domains with Unicode
14
+ characters are supported out of the box, meaning some emails that previously
15
+ didn't pass validation now do. Make sure the rest of your application can
16
+ accept such email addresses. Additionally, if you subclassed the `EmailField `
17
+ in your application and overrode `EmailField.EMAIL_REGEX `, you will have to
18
+ adjust your code to override `EmailField.USER_REGEX `, `EmailField.DOMAIN_REGEX `,
19
+ and potentially `EmailField.UTF8_USER_REGEX `.
9
20
10
21
0.12.0
11
22
******
Original file line number Diff line number Diff line change 23
23
list (signals .__all__ ) + list (errors .__all__ ))
24
24
25
25
26
- VERSION = (0 , 12 , 0 )
26
+ VERSION = (0 , 13 , 0 )
27
27
28
28
29
29
def get_version ():
You can’t perform that action at this time.
0 commit comments