forked from saxix/django-adminactions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
130 lines (96 loc) · 3.41 KB
/
CHANGES
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
Release 1.0 (dev)
=================
* minor refactoring
* official support for django 1.4 to 1.9
* official support for python 2.7, 3.3, 3.5
* merge :ghissue:`77` - add initial form values for CSV export
* merge :ghissue:`76` - reuse xls style while iterating over cells
* merge :ghissue:`75` - allow streaming export to CSV response
* merge :ghissue:`73` - Fixing merge on DateTimeField with null=True
* support settings.ADMINACTIONS_CSV_OPTIONS_DEFAULT
* support streaming CSV file response
* new `upper` and `lower` modifiers available for EmailField in mass update.
Release 0.8.5
=============
* repackage due broken version in 0.8.4
Release 0.8.4
=============
* fixes :ghissue:`70` get_models return incorrect models in django 1.7+
* closes :ghissue:`71`
Release 0.8.3
=============
* bugfix: support both post_syncdb and post_migrate
Release 0.8.2
=============
* fixes #64: Export not working when actions enabled on top & bottom
* document #62: default of csv is not csv (thanks @oppianmatt)
Release 0.8.1
=============
* Use collections.OrderedDict instead for Django1.7 or higher. (thanks @rvoicilas)
Release 0.8
===========
* python 3.3, 3.4 compatibility
* add spanish translation (thanks @xangmuve)
Release 0.7
===========
* fixes issue in mass_update due wrong indentaion
* fixed :ghissue:`49`
* removed options to enable/disable transactions during mass_update.
* fixed :ghissue:`60`
Release 0.6
===========
* fixed :ghissue:`55`
* fixed :ghissue:`51`
* added selenium tests
* pulled out tests from main package and use of py.test
* removed demoproject (use `make demo` instead)
Release 0.5
===========
* fix mass_update bug that caused all records in a table to be updated (thanks @jht001)
* Added timezone support to csv and xls export
Release 0.4
===========
* fixed :ghissue:`33`
* fixed :ghissue:`20`
Release 0.3
===========
* fixed :ghissue:`26`
* add feature to :ref:`use callable as columns <export_with_callable>`
* add feature to :ref:`export dictionaries <export_with_dictionaries>`
* new action :ref:`export_as_xls`
* added custom headers to :ref:`export_as_csv`
* new permission :ref:`adminactions_massupdate`
* new permission :ref:`adminactions_merge`
Release 0.2
===========
* improved :ref:`export_as_csv`
* Django 1.6 compatibility
* Added `modeladmin` in providing_args of signals: :ref:`adminaction_requested`, :ref:`adminaction_start`, :ref:`adminaction_end`
Release 0.1
===========
* new api module
* pull out core export_csv functionalites as `_export_as_csv() <api.html#adminactions.export._export_as_csv>`_ to be used by custom code
* New exported filename callback for easy customize the filename ( see :ref:`filename_callbacks`)
* New registration shortcut `add_to_site() <api.html#adminactions.actions.add_to_site>`_
* New action: :ref:`merge`
* Fixed :ghissue:`9`
* Added :ref:`permissions`
* New signals: :ref:`adminaction_requested`, :ref:`adminaction_start`, :ref:`adminaction_end`
Release 0.0.4
=============
* NEW added ``add_foreign_keys`` parameter to :ref:`export_as_fixture` and :ref:`export_delete_tree`
* NEW :ref:`export_delete_tree`
* renamed export_as_json as export_as_fixtures
- added foreign_keys dumps
- multiple serializer
* NEW: :ref:`transform_operations`
* NEW: url to preview date format in `export_as_csv`
Release 0.0.3
=============
* added demo project
Release 0.0.2
=============
* name changed from django-actions to django-adminactions
Release 0.0.1
=============
* first relase