From 431b13b3b6bf10f4290cdb52fce559e53af8ae15 Mon Sep 17 00:00:00 2001 From: Josh Schneier Date: Fri, 29 Sep 2023 01:27:52 -0400 Subject: [PATCH] Release version 1.14.1 (#1314) --- CHANGELOG.rst | 24 ++++++++++++++++++++++++ storages/__init__.py | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 91053dba..c43fef6b 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,30 @@ django-storages CHANGELOG ========================= +1.14.1 (2023-09-29) +******************* + +Azure +----- + +- Do not require both ``AccountName`` and ``AccountKey`` in ``connection_string`` (`#1312`_) + +S3 +-- + +- Work around boto3 closing the uploaded file (`#1303`_) +- Fix crash when cleaning up during aborted connection of ``S3File.write`` (`#1304`_) +- Raise ``FileNotFoundError`` when attempting to read the ``size`` of a non-existent file (`#1309`_) +- Move auth & CloudFront signer validation to init (`#1302`_) +- Raise ``ImproperlyConfigured`` if no ``bucket_name`` is set (`#1313`_) + +.. _#1303: https://github.com/jschneier/django-storages/pull/1303 +.. _#1304: https://github.com/jschneier/django-storages/pull/1304 +.. _#1309: https://github.com/jschneier/django-storages/pull/1309 +.. _#1302: https://github.com/jschneier/django-storages/pull/1302 +.. _#1313: https://github.com/jschneier/django-storages/pull/1313 +.. _#1312: https://github.com/jschneier/django-storages/pull/1312 + 1.14 (2023-09-04) ******************* diff --git a/storages/__init__.py b/storages/__init__.py index 8194a6a9..4454c8d4 100644 --- a/storages/__init__.py +++ b/storages/__init__.py @@ -1 +1 @@ -__version__ = "1.14" +__version__ = "1.14.1"