forked from Nomadblue/django-nomad-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
108 lines (73 loc) · 2.31 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
=========
CHANGELOG
=========
Version 1.4.8
=============
* Fix rendering of plaintext email subject and body by decoding
ampersand expressions.
Version 1.4.7
=============
* Add Django 1.9 compatibility, backwards compatible with 1.8.
Skipping a build version number due to wrong module version listed
on PyPi.
Version 1.4.5
=============
* Add cc recipients support to NotificationMixin.
Version 1.4.4
=============
* Add `TEST_NOTIFICATIONS_RECIPIENTS` setting for testing purposes, so all
emails will go to the specified recipients instead of the ones defined in the
notification.
=======
Version 1.4.3
=============
* Use `default_storage.open` method for attachments, because on production
environments usually media is stored on storages such as AWS S3.
Version 1.4.2
=============
* Add email attachment support to NotificationMixin. Its get_attachement_paths
method must be overriden to return the list of filepaths to the files to
attach to use the new functionality.
Version 1.4.2
=============
* Store email exceptions in Notification model
* New NOTI_FAIL_SILENTLY setting to fail silently at email sending.
Version 1.4.0
=============
* No need to define attributes for template paths in models subclassing
Notification, to discover the path the class first tries to
generate them joining an attribute defining the prefix name and a
pre-defined set of suffixes.
* Enabled a url/view to delete notifications, along with a default
template ready to be overriden with the rest.
Version 1.3.1
=============
* Added a new self.get_language() method that receives a
language code used to render templates translated.
Version 1.3.0
=============
* Added notification type field to be able to have web only,
email only or web & email notifications.
Version 1.2.0
=============
* Made Notification.user nullable, so we can create
non user-attached notifications.
Version 1.1.1
=============
* Fixed migrations, add django-model-utils dependency
Version 1.1.0
=============
* Add SITE_URL setting to stop using django.contrib.sites
Version 1.0.1
=============
* Fix package to make setup.py install templates
Version 1.0.0
=============
* Complete basic documentation
* Use django-model-utils
Version 0.2
===========
* Add urls, views and templates
Version 0.1
===========
* First release of package