- Fixed 'header does not match what was computed' error (etianen). - Compatibility with riak-cs (flo-dhalluin). - Fixed documentation typos (mgalgs).
0.12.0
------
- Changed default for `AWS_S3_MAX_AGE_SECONDS_STATIC` to 1 hour (see https://github.com/etianen/django-s3-storage/issues/62) (etianen, marfire). - Added `AWS_S3_MAX_AGE_SECONDS_CACHED_STATIC` setting (etianen, marfire).
0.11.3
------
- Added ``AWS_S3_SIGNATURE_VERSION`` setting. - Changed the default signature version for S3 to v4. According to the `AWS documentation <http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region>`_ all S3 regions support v4 (but not all support v2). - Raising ``S3Error`` instead of ``OSError`` if S3 storage throws an error. ``S3Error`` inherits from both ``OSError`` and ``IOError``. - Better checking for directory existance (kencochrane, etianen). - Added ``AWS_S3_FILE_OVERWRITE `` setting (Edke).
0.11.2
------
- Bugfix: Fixed ``listdir()`` at bucket root returning an empty list (aaugustin). - Added ``get_modified_time`` support (jschneier). - Testing against Django 1.11 (matthiask).
0.11.1
------
- Raising ``OSError`` instead of ``IOError`` if S3 storage throws an error. On Python 3 it makes no difference, but on Python 2 it's what collectstatic expects. - Fixed issue with ``s3_sync_meta`` where a race condition or key name normalization could cause an ``OSError`` to be raised. - Fixed `modified_time()` on non-UTC machines.
0.11.0
------
- *Breaking:* All S3 keys are normalized to use unix-style path separators, and resolve relative paths.