File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ Release Notes
3
3
4
4
v3.0.2
5
5
------
6
- * Add `json_cursor ` to handle django no longer automatically parsing json fields
6
+ * Add `json_cursor ` context to handle Django3.1.1+ no longer automatically parsing json fields
7
+ * Adjusted query functionality also to handle jsonb columns correctly
7
8
8
9
v3.0.1
9
10
------
Original file line number Diff line number Diff line change @@ -642,7 +642,7 @@ def get_cursor(self):
642
642
:returns: A database cursor
643
643
"""
644
644
645
- # From Django 3.1 forward, json columns in raw select statements return a string of json instead of a
645
+ # From Django 3.1.1 forward, json columns in raw select statements return a string of json instead of a
646
646
# json type such as a dict or list. But we can tell psycopg2 to put the
647
647
# json.loads() call back in place. Technically we would only need this addition for cursors being used
648
648
# for a SELECT, but it should not cause any issues for other operations.
You can’t perform that action at this time.
0 commit comments