Skip to content

Commit 3c0fe9f

Browse files
authored
Release version 1.14.5 (#1487)
1 parent 5db357a commit 3c0fe9f

File tree

2 files changed

+34
-2
lines changed

2 files changed

+34
-2
lines changed

CHANGELOG.rst

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
django-storages CHANGELOG
22
=========================
33

4-
X.YY.Z (UNRELEASED)
4+
1.14.5 (2025-02-15)
55
*******************
66

7+
General
8+
-------
9+
10+
- Revert ``exists()`` behavior to pre-1.14.4 semantics with additional hardening for Django versions < 4.2 to fix
11+
CVE-2024-39330. This change matches the eventual behavior Django itself shipped with. (`#1484`_, `#1486`_)
12+
- Add support for Django 5.1 (`#1444`_)
13+
714
Azure
815
-----
916

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

22+
Dropbox
23+
-------
24+
25+
- As part of the above hardening fix a bug was uncovered whereby a ``root_path`` setting would be applied
26+
multiple times during ``save()`` (`#1484`_)
27+
28+
FTP
29+
---
30+
31+
- Fix incorrect ``exists()`` results due to an errant appended slash (`#1438`_)
32+
33+
Google Cloud
34+
------------
35+
36+
- Switch checksum to ``crc32c`` to fix downloading when running in FIPS mode (`#1473`_)
37+
- Fix double decompression when using ``gzip`` (`#1457`_)
38+
39+
40+
.. _#1484: https://github.com/jschneier/django-storages/pull/1484
41+
.. _#1486: https://github.com/jschneier/django-storages/pull/1486
42+
.. _#1444: https://github.com/jschneier/django-storages/pull/1444
1543
.. _#1432: https://github.com/jschneier/django-storages/pull/1432
44+
.. _#1473: https://github.com/jschneier/django-storages/pull/1473
45+
.. _#1457: https://github.com/jschneier/django-storages/pull/1457
46+
.. _#1438: https://github.com/jschneier/django-storages/pull/1438
47+
1648

1749
1.14.4 (2024-07-09)
1850
*******************

storages/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.14.4"
1+
__version__ = "1.14.5"

0 commit comments

Comments
 (0)