File tree Expand file tree Collapse file tree 2 files changed +8
-12
lines changed Expand file tree Collapse file tree 2 files changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -3,16 +3,21 @@ Changes
3
3
4
4
Unreleased
5
5
----------
6
+
7
+ 3.0.0 (2021-04-16)
8
+ ----------
6
9
- Removed support for Django versions prior to 2.2 (gh-652)
7
10
- Migrate from TravisCI to Github Actions (gh-739)
8
11
- Add Python 3.9 support (gh-745)
9
12
- Support ``ignore_conflicts `` in ``bulk_create_with_history `` (gh-733)
10
13
- Use ``asgiref `` when available instead of thread locals (gh-747)
11
14
- Sort imports with isort (gh-751)
12
15
- Queryset ``history.as_of `` speed improvements by calculating in the DB (gh-758)
13
- - Increase `black ` and `isort ` python version to 3.6
14
- - Remove Django 3.0 support
15
- - Add Django 3.2 support
16
+ - Increase `black ` and `isort ` python version to 3.6 (gh-817)
17
+ - Remove Django 3.0 support (gh-817)
18
+ - Add Django 3.2 support (gh-817)
19
+ - Improve French translations (gh-811)
20
+ - Remove support for changeReason (gh-819)
16
21
17
22
2.12.0 (2020-10-14)
18
23
-------------------
Original file line number Diff line number Diff line change @@ -164,13 +164,4 @@ def get_change_reason_from_object(obj):
164
164
if hasattr (obj , "_change_reason" ):
165
165
return getattr (obj , "_change_reason" )
166
166
167
- if hasattr (obj , "changeReason" ):
168
- warning_msg = (
169
- "Using the attr changeReason to populate history_change_reason is"
170
- " deprecated in 2.10.0 and will be removed in 3.0.0. Use "
171
- "_change_reason instead. "
172
- )
173
- warnings .warn (warning_msg , DeprecationWarning )
174
- return getattr (obj , "changeReason" )
175
-
176
167
return None
You can’t perform that action at this time.
0 commit comments