django-downloadview/CHANGELOG

32 lines
848 B
Text
Raw Normal View History

Changelog
=========
2012-12-04 11:58:32 +00:00
1.1 (unreleased)
----------------
2013-04-11 09:39:22 +00:00
Various improvements.
Contains **backward incompatible changes.**
- Added HTTPDownloadView to proxy to arbitrary URL.
- Added VirtualDownloadView to support files living in memory.
- 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