- Handle
None
as an input value of template tags (Thanks pegler)
- Introduced testing against Python 3.8
- Drop support for Django <1.11
- Test coverage at 100%
- Fix for
BleachField
set to allowblank
ornull
. (Thanks denisroldan)
- Fix for
BleachField
receiving aNone
value. (Thanks MrkGrgsn)
- 100% coverage achieved
- Changelog updated with
0.5.0
changes. (Thanks dyve)
- Added support for bleach's
allowed_protocols
kwarg. (Thanks blag) - Bleach dependency is now
>=1.5.0
- Option to pass allowed tags to the
bleach
template filter added by Rafał Selewońko. - Moved project to Github.
- Added support for django>=1.9
- Ensure that the
model_instance
field gets updated with the clean value
- The
BleachField
model field now does its own sanitisation, and does not specify a default form field or widget. Developers are expected to provide their own widget as needed.
- Make the package python3 compatible.
- Add
bleach_linkify
template filter from whitehat2k13
- Add missing
templatetags
package, by usingfind_packages()
- Correct templatetag name:
bleach.py
->bleach_tags.py
- Fix south migration bug
- add south_triple_field for south integration
- clean up files to meet pep8 compliance
- Initial release