forked from brosner/django-notification
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CHANGELOG
37 lines (29 loc) · 1.28 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
BI = backward incompatible change
0.2.alpha
---------
This version of django-notification was heavily adapted to be simpler and
is completely backward incmpatible.
Main changes include :
* Removing rss feed supoort
* Adding the website backend
* Reformolated functions to observe objects
* Removed special template syntax (now using picklefiled to store objects
directly to the notification's context)
* Removed assync notification delivery ( TODO this with celery efficiently)
0.2.0
-----
* BI: renamed Notice.user to Notice.recipient
* BI: renamed {{ user }} context variable in notification templates to
{{ recipient }}
* BI: added nullable Notice.sender and modified send_now and queue to take
an optional sender
* added received and sent methods taking a User instance to Notice.objects
* New default behavior: single notice view now marks unseen notices as seen
* no longer optionally depend on mailer; use django.core.mail.send_mail and
we now encourge use of Django 1.2+ for mailer support
* notifications are not sent to inactive users
* users which do not exist when sending notification are now ignored
* BI: split settings part of notices view to its own view notice_settings
0.1.5
-----
* added support for DEFAULT_HTTP_PROTOCOL allowing https absolute URLs