-
Notifications
You must be signed in to change notification settings - Fork 1
/
CHANGELOG
135 lines (87 loc) · 2.3 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
django-etc changelog
====================
Unreleased
----------
! Dropped QA for Py 3.6. Added QA for Django 4.1.
v1.4.0 [2022-10-06]
-------------------
+ Introduced 'CustomModelPage.admin_cls' for declarative customization.
+ Introduced 'CustomModelPage.bound_response' to allow custom responses (see #6).
v1.3.1 [2021-12-18]
-------------------
* Django 4.0 compatibility improved.
v1.3.0 [2020-12-29]
-------------------
! Drop support for Django<2.0.
! Drop support for Python 3.5.
+ Added 'etc.admin.CustomModelPage' helper.
v1.2.0 [2019-12-07]
-------------------
+ Add Django 3.0 compatibility. Effectively deprecates Py2 support.
v1.1.0
------
! Dropped QA for Django 1.7.
! Dropped QA for Python 2.
+ Added 'ChoicesEnumMixin' to support Py3 Enum based choices for models.
v1.0.0
------
! Dropped QA for Python 3.4.
* No functional changes. Celebrating 1.0.0.
v0.11.1
-------
* Fixed 'render_' thread safety issue.
v0.11.0
-------
+ Added advanced 'include_' template tag.
+ Django 2.0 and 2.1 basic compatibility.
* Dropped support for Python<3.4 and Django<1.7.
v0.10.0
-------
+ 'model_field' template tags now work with field names from template variables
v0.9.2
------
* Package distribution fix.
v0.9.1
------
* Fixed import_app_module() handling of app config paths.
v0.9.0
------
+ Added import_app_module() function.
+ Added import_project_modules() function.
v0.8.0
------
+ Implemented `{% site_url %}` template tag.
+ `get_site_url()` now accpets Request object.
v0.7.2
------
* `gravatar_get_img` now returns a safe string.
* Improved Django 1.9 support.
v0.7.1
------
* Improved Django 1.8 support.
v0.7.0
------
+ Implemented `get_site_url` function.
* Fixed possible attribute error in `model_field_verbose_name` and `model_field_help_text`.
v0.6.1
------
+ `model_field_verbose_name` and `model_field_help_text` now work with sets of homogeneous objects (e.g. QuerySet or Page).
v0.6.0
------
+ Implemented `model_field_verbose_name` and `model_field_help_text` template tags.
v0.5.0
------
+ Implemented choices_list() and get_choices().
v0.4.0
------
+ Implemented get_model_class_from_string().
v0.3.0
------
+ Implemented set_form_widgets_attrs().
* Suppressed Django 1.7 warning.
v0.2.0
------
+ Implemented get_model_class_from_settings().
v0.1.0
------
+ Basic functionality.