Skip to content

Commit

Permalink
Release version 1.14.5 (#1487)
Browse files Browse the repository at this point in the history
  • Loading branch information
jschneier authored Feb 15, 2025
1 parent 5db357a commit 3c0fe9f
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
34 changes: 33 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
django-storages CHANGELOG
=========================

X.YY.Z (UNRELEASED)
1.14.5 (2025-02-15)
*******************

General
-------

- Revert ``exists()`` behavior to pre-1.14.4 semantics with additional hardening for Django versions < 4.2 to fix
CVE-2024-39330. This change matches the eventual behavior Django itself shipped with. (`#1484`_, `#1486`_)
- Add support for Django 5.1 (`#1444`_)

Azure
-----

Expand All @@ -12,7 +19,32 @@ Azure
- Add ``AZURE_CLIENT_OPTIONS`` settings to enable customization of all ``BlobServiceClient`` parameters
such as ``api_version`` and all ``retry*`` options. (`#1432`_)

Dropbox
-------

- As part of the above hardening fix a bug was uncovered whereby a ``root_path`` setting would be applied
multiple times during ``save()`` (`#1484`_)

FTP
---

- Fix incorrect ``exists()`` results due to an errant appended slash (`#1438`_)

Google Cloud
------------

- Switch checksum to ``crc32c`` to fix downloading when running in FIPS mode (`#1473`_)
- Fix double decompression when using ``gzip`` (`#1457`_)


.. _#1484: https://github.com/jschneier/django-storages/pull/1484
.. _#1486: https://github.com/jschneier/django-storages/pull/1486
.. _#1444: https://github.com/jschneier/django-storages/pull/1444
.. _#1432: https://github.com/jschneier/django-storages/pull/1432
.. _#1473: https://github.com/jschneier/django-storages/pull/1473
.. _#1457: https://github.com/jschneier/django-storages/pull/1457
.. _#1438: https://github.com/jschneier/django-storages/pull/1438


1.14.4 (2024-07-09)
*******************
Expand Down
2 changes: 1 addition & 1 deletion storages/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.14.4"
__version__ = "1.14.5"

0 comments on commit 3c0fe9f

Please sign in to comment.