File tree 2 files changed +20
-1
lines changed
2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change
1
+ Version 20.9.0 (2020-9-27)
2
+ --------------------------
3
+
4
+ * SECURITY: Added a ``MaxValueValidator `` to the form field for
5
+ ``NumberFilter ``. This prevents a potential DoS attack if numbers with very
6
+ large exponents were subsequently converted to integers.
7
+
8
+ The default limit value for the validator is ``1e50 ``.
9
+
10
+ The new ``NumberFilter.get_max_validator() `` allows customising the used
11
+ validator, and may return ``None `` to disable the validation entirely.
12
+
13
+ * Added testing against Django 3.1 and Python 3.9.
14
+
15
+ In addition tests against Django main development branch are now required to
16
+ pass.
17
+
18
+ * Adopted `CalVer <https://calver.org/ >`_ versioning.
19
+
1
20
Version 2.3.0 (2020-6-5)
2
21
------------------------
3
22
Original file line number Diff line number Diff line change 10
10
from . import rest_framework
11
11
del pkgutil
12
12
13
- __version__ = '2.3 .0'
13
+ __version__ = '20.9 .0'
14
14
15
15
16
16
def parse_version (version ):
You can’t perform that action at this time.
0 commit comments