- Added Django 4.1/4.2 support
- Dropped Python 2.7 support.
- Dropped Django 1.3-1.7 support.
- Confirmed Django 4.0 support.
- Reformatted the code with black and isort
- Migated to GitHub actions
- Fixed Django 3.0 compatibility by removing
django.utils.six
dependency.
- Fixed breaking templates when using the cached template loader; content was shown multiple times.
- fixed support for parsing nodes from a custom template engine.
- Improve error messages for invalid template block names.
- Added Django 1.9 support
- Added Django 1.8 support
- Added Django 1.7 support
- Added Python 3 support
- Support variable extends with defaults in templates, e.g.
{% extends FOO|default:'base.html' %}
.
- Fix Django 1.4 support
- First release, based on the code of django-cms.