Version bump to 2.1.11

Updated README.
master
Brandon Taylor 2019-01-17 13:34:33 -05:00
parent ff4dc3184f
commit de393db7c4
3 changed files with 6 additions and 8 deletions

View File

@ -606,8 +606,8 @@ ordering on top of that just seemed a little much in my opinion.
### Status ### Status
django-admin-sortable is currently used in production. django-admin-sortable is currently used in production.
### What's new in 2.1.10? ### What's new in 2.1.11?
- Updated admin templates to use the `CSRF_HEADER_NAME` from [settings](https://docs.djangoproject.com/en/2.1/ref/settings/#csrf-header-name) instead of using a hard-coded value. - Fixed missing `csrfmiddlewaretoken` in Ajax POST data. This affects Django 2.1.4 and higher.
### Future ### Future
- Better template support for foreign keys that are self referential. If someone would like to take on rendering recursive sortables, that would be super. - Better template support for foreign keys that are self referential. If someone would like to take on rendering recursive sortables, that would be super.

View File

@ -745,12 +745,10 @@ Status
django-admin-sortable is currently used in production. django-admin-sortable is currently used in production.
Whats new in 2.1.10? Whats new in 2.1.11?
~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~
- Updated admin templates to use the ``CSRF_HEADER_NAME`` from - Fixed missing `csrfmiddlewaretoken` in Ajax POST data. This affects Django 2.1.4 and higher.
`settings <https://docs.djangoproject.com/en/2.1/ref/settings/#csrf-header-name>`__
instead of using a hard-coded value.
Future Future
~~~~~~ ~~~~~~

View File

@ -1,4 +1,4 @@
VERSION = (2, 1, 10) VERSION = (2, 1, 11)
DEV_N = None DEV_N = None