From 9fde3638e967425531635777ce3d441208ed06d9 Mon Sep 17 00:00:00 2001 From: Josh Schneier Date: Sat, 4 May 2024 14:49:47 -0400 Subject: [PATCH] Release version 1.14.3 (#1395) --- CHANGELOG.rst | 41 +++++++++++++++++++++++++++++++++++++++++ README.rst | 1 - storages/__init__.py | 2 +- 3 files changed, 42 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 35d9b6fe..15a2d2ce 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,47 @@ django-storages CHANGELOG ========================= +1.14.3 (2024-05-04) +******************* + +General +------- + +- Add support for Django 5.0 and Python 3.12 (`#1331`_) + +S3 +-- + +- Fix disabling CloudFront signing with class variables (`#1334`_) +- Fix ``AWS_S3_*`` environment variables lookup (`#1336`_) +- Add ``client_config/AWS_S3_CLIENT_CONFIG`` to configure advanced ``botocore`` settings (`#1386`_) + +Google Cloud +------------ + +- Fix re-gzipping already gzipped files (`#1366`_) + +SFTP +---- + +- Add ``SFTP_BASE_URL`` setting (`#1368`_) +- Fix saving files when ``SFTP_STORAGE_ROOT`` is set (`#1372`_) + +FTP +--- + +- Add support for FTP TLS via ``ftps`` URLs (`#1320`_) +- Add support for passwords with urlchars (`#1329`_) + +.. _#1386: https://github.com/jschneier/django-storages/pull/1386 +.. _#1372: https://github.com/jschneier/django-storages/pull/1372 +.. _#1334: https://github.com/jschneier/django-storages/pull/1334 +.. _#1336: https://github.com/jschneier/django-storages/pull/1336 +.. _#1366: https://github.com/jschneier/django-storages/pull/1366 +.. _#1368: https://github.com/jschneier/django-storages/pull/1368 +.. _#1320: https://github.com/jschneier/django-storages/pull/1320 +.. _#1329: https://github.com/jschneier/django-storages/pull/1329 + 1.14.2 (2023-10-08) ******************* diff --git a/README.rst b/README.rst index 2cd10b1a..140388f6 100644 --- a/README.rst +++ b/README.rst @@ -71,7 +71,6 @@ Contributing #. Bug me until I can merge your pull request. Please don't update the library version in CHANGELOG.rst or ``storages/__init__.py``, the maintainer will do that on release. -If you're the first to update the CHANGELOG in this release cycle, just put the version as ``XXXX-XX-XX``. History ======= diff --git a/storages/__init__.py b/storages/__init__.py index a19f6e1d..f38fc51b 100644 --- a/storages/__init__.py +++ b/storages/__init__.py @@ -1 +1 @@ -__version__ = "1.14.2" +__version__ = "1.14.3"