diff --git a/CHANGES.rst b/CHANGES.rst index 0f530d2e..ecde6938 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,24 @@ Changelog ========= +Version 1.0.1 [2022-06-10] +-------------------------- + +Bugfixes +-------- + +- Fixed `hardcoded storage backend of the "FirmwareImage.file" field + `_. + ``FirmwareImage.file`` was configured to use ``PrivateFileSystemStorage``, + which made it impossible to use other private storage backends. + The `"OPENWISP_FIRMWARE_PRIVATE_STORAGE_INSTANCE" + `_ + setting is added to make the ``FirmwareImage.file`` storage configurable. +- Fixed `inconsistent URL keyword argument in "serve_private_file" + URL pattern `_. + This broke the reverse proxy feature of `django-private-storage + `_. + Version 1.0.0 [2022-05-05] -------------------------- diff --git a/openwisp_firmware_upgrader/__init__.py b/openwisp_firmware_upgrader/__init__.py index 4eeba62e..42c33972 100644 --- a/openwisp_firmware_upgrader/__init__.py +++ b/openwisp_firmware_upgrader/__init__.py @@ -1,4 +1,4 @@ -VERSION = (1, 0, 1, 'alpha') +VERSION = (1, 0, 1, 'final') __version__ = VERSION # alias