-
Notifications
You must be signed in to change notification settings - Fork 38
/
CHANGELOG
116 lines (69 loc) · 1.77 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
Changelog
=========
v2.0.0
------
- Update Django versions to 2.1, 2.2, 3.0
v1.3.1
------
- Remove Sphinx-specific directives from README
v1.3.0
------
- Propagate exception details to signal (#43)
- Test against Django 2.1 and 2.2
v1.2.0
------
- Add JsonView CBV base class (#39)
v1.1.0
------
- Add `JSON_DEFAULT_CONTENT_TYPE` setting
- Update compatibility/test for Django 1.8, 1.10, 1.11.
- Fix issue #36 mutating settings.
v1.0.0
------
- Remove deprecated JSON_USE_DJANGO_SERIALIZER setting.
v0.5.1
------
- Drop unnecesary log message on module init.
- Drop compatibility for Django<1.8.
v0.5.0
------
- Deprecate JSON_USE_DJANGO_SERIALIZER in favor of new JSON_OPTIONS
setting.
- Improve exception handling and compatibility with mail_admins.
- Include traceback in response when settings.DEBUG is True.
- Improve Django 1.8 and Python 3 compatibility.
v0.4.3
------
- Add setting to make Django's serializer optional when using 3rd party
JSON modules.
v0.4.2
------
- Add support for datetime handling.
v0.4.1
------
- Fix trove classifiers for Python 3.
v0.4.0
------
- Supports new Djangos: 1.4.x, 1.5.x, 1.6.x, and 1.7bx.
- Accepts a content_type kwarg to change from default application/json.
- Pass HttpResponse objects through verbatim. (Previously choked.)
- Only send exception text when settings.DEBUG is True.
v0.3.0
------
- Python3 support
v0.2.2
------
- Can now specify a json module instead of always using standard
library.
v0.2.1
------
- Fix issue handling unicode in exceptions.
v0.2.0
------
- Propertly emit exception signal to play nicely with e.g. Raven.
- Can return custom headers along with response code.
- Follow more Django core conventions for logging.
- Testing infrasctructure clean up.
v0.1.1
------
- First release