forked from zsiciarz/django-envelope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES
70 lines (54 loc) · 1.72 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
0.7.0
- added {% render_contact_form %} template tag
- Django 1.6 compatibility
- settled on 3.3 as the minimum supported Python 3 version
- moved to Travis CI as the continuous integration solution
0.6.1
- fixed NameError in example project
0.6.0
- Python 3 compatibility!
0.5.1
- fixed template loading in tests
0.5.0
- contact form class is more customizable
- the Reply-To header in the message is set to whatever the submitted email was
- added after_send signal
- django-honeypot is now just an optional dependency
- example_project is no longer incorrectly distributed with the application
0.4.1
- security bugfix regarding initial form values
0.4.0
- removed the function-based view
- removed ContactForm.send() method
- application signals (before_send)
- updated documentation
- reworked settings
- Continous Integration server, thanks to ShiningPanda
0.3.2
- omit the brackets if the user doesn't have a full name
- honeypot is mentioned in the usage docs
0.3.1
- configurable recipients
- better logging hierarchy
- the code is more PEP-8 compliant
0.3.0
- introduced a class-based envelope.views.ContactView (requires Django >= 1.3)
- deprecated the function-based view envelope.views.contact
- improved test coverage
- more and better documentation (also hosted on Read The Docs)
0.2.1
- French translation added
0.2.0
- deprecated the ContactForm.send() method, use save() instead for more
consistency with Django coding style
- localization support
0.1.4
- added a more descriptive README file
0.1.3
- added the redirect_to optional argument to view function
0.1.2
- added the extra_context argument to view function
0.1.1
- improved setup script, added dependencies
0.1.0
- initial version