Skip to content

Commit 96b5a88

Browse files
committed
Release version 1.11
1 parent 70c6ed7 commit 96b5a88

File tree

2 files changed

+38
-1
lines changed

2 files changed

+38
-1
lines changed

CHANGELOG.rst

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,43 @@
11
django-storages CHANGELOG
22
=========================
33

4+
1.11 (2020-12-16)
5+
*****************
6+
7+
General
8+
-------
9+
10+
- Test against Python 3.9 (`#964`_)
11+
12+
S3
13+
--
14+
15+
- Fix ``ValueError: I/O operation on closed file`` when calling ``collectstatic`` (`#382`_, `#955`_)
16+
- Calculate ``S3Boto3StorageFile.buffer_size`` (via setting ``AWS_S3_FILE_BUFFER_SIZE``)
17+
at run-time rather than import-time. (`#930`_)
18+
- Fix writing ``bytearray`` content (`#958`_, `#965`_)
19+
20+
Google Cloud
21+
------------
22+
23+
- Add setting ``GS_QUERYSTRING_AUTH`` to avoid signing URLs. This is useful for buckets with a
24+
policy of Uniform public read (`#952`_)
25+
26+
Azure
27+
-----
28+
29+
- Add ``AZURE_OBJECT_PARAMETERS`` and overridable ``AzureStorage.get_object_parameters`` to customize
30+
``ContentSettings`` parameters for all keys and per-key respectively. (`#898`_)
31+
32+
.. _#382: https://github.com/jschneier/django-storages/issues/382
33+
.. _#955: https://github.com/jschneier/django-storages/pull/955
34+
.. _#930: https://github.com/jschneier/django-storages/pull/930
35+
.. _#952: https://github.com/jschneier/django-storages/pull/952
36+
.. _#898: https://github.com/jschneier/django-storages/pull/898
37+
.. _#964: https://github.com/jschneier/django-storages/pull/964
38+
.. _#958: https://github.com/jschneier/django-storages/issues/958
39+
.. _#965: https://github.com/jschneier/django-storages/pull/965
40+
441
1.10.1 (2020-09-13)
542
*******************
643

storages/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.10.1'
1+
__version__ = '1.11'

0 commit comments

Comments
 (0)