forked from jamesturk/django-markupfield
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
92 lines (73 loc) · 2.66 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
1.4.1 - 6 October 2016
======================
- compatibility tweaks for Django 1.9 and 1.10
1.4.0 - 17 December 2015
=========================
- bugfixes for Django 1.9
- drop support for deprecated Django versions
1.3.5 - 21 May 2015
===================
- properly handle null=True
1.3.4 - 29 April 2015
=====================
- Fix for an issue where __proxy__ objects interfere w/ widget rendering.
1.3.3 - 21 April 2015
=====================
- Add test for issue fixed in last release: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-0846
Further documented here: https://www.djangoproject.com/weblog/2015/apr/21/docutils-security-advisory/
1.3.2 - 16 April 2015
=====================
- Fix for an issue with ReST, thanks to Markus Holtermann
1.3.1 - 15 April 2015
=====================
- Fix translation support to be lazy, thanks to Michael Kutý
1.3.0 - 22 February 2015
========================
- Django 1.7 migration support, thanks to Frank Wiles
- dedicated option for titles in markup choice field thanks to Markus Holtermann
- fix for latest version of markdown library
1.2.1 - 10 July 2014
====================
- value_to_string check, fixing #16
- urllize & linebreak fix, fixing #18
- fix for __unicode__, fixing #9
1.2.0 - 22 July 2013
====================
- drop support for markup_choices being a dict entirely
- PEP8 compliance
- bugfix for default 'plain' markup type that escapes HTML
1.1.1 - 16 March 2013
=====================
- experimental Python 3 support with Django 1.5
- drop support for Django 1.3/Python 2.5
- markup_choices can no longer be a dict (deprecated pre-1.0)
1.1.0 - bad release, ignore
=============================
1.0.2 - 25 March 2011
=====================
- fix Django 1.3 DeprecationWarning
1.0.1 - 28 Feb 2011
===================
- added a fix for MarkupField to work with South >= 0.7
1.0.0 - 1 Feb 2011
==================
- added markup_choices option to MarkupField
- switch to tuple/list for setting markup_type, dict deprecated
- split markup detection into markupfield.markup
- escape_html option
0.3.1 - January 28 2010
=======================
- fix bug when adding a MarkupField to an abstract model (github issue #1)
0.3.0 - October 23 2009
=======================
- enable pygments support by default if it is installed
0.2.0 - August 3 2009
=====================
- fixed bug with using MarkupField widgets on postgres backend
- correctly check markup_type when doing pre_save
0.1.2 - July 7 2009
===================
- fixed bug with using MarkupField on postgres backend
0.1.0
=====
- initial working release