django-downloadview/CHANGELOG

27 lines
700 B
Text
Raw Normal View History

Changelog
=========
2012-12-04 11:58:32 +00:00
1.1 (unreleased)
----------------
**Backward incompatible changes.**
- Using StreamingHttpResponse introduced with Django 1.5. Makes Django 1.5 a
requirement!
- Added ``django_downloadview.test.assert_download_response`` utility.
- Download views and response now use file wrappers. Most logic around file
attributes, formerly in views, moved to wrappers.
- Replaced DownloadView by PathDownloadView and StorageDownloadView. Use the
right one depending on the use case.
2012-12-04 11:58:32 +00:00
2012-12-04 11:57:48 +00:00
1.0 (2012-12-04)
----------------
- Introduced optimizations for Nginx X-Accel: a middleware and a decorator
- Introduced generic views: DownloadView and ObjectDownloadView
- Initialized project