forked from pool/python-whitenoise
Accepting request 956876 from devel:languages:python
- Update to 6.0.0:
- Drop support for Python 3.5 and 3.6.
- Add support for Python 3.9 and 3.10.
- Drop support for Django 1.11, 2.0, and 2.1.
- Add support for Django 4.0.
- Import new MIME types from Nginx, changes:
- .avif files are now served with the image/avif MIME type.
- Open Document files with extensions .odg, .odp,
.ods, and .odt are now served with their respective
application/vnd.oasis.opendocument.* MIME types.
- The whitenoise.__version__ attribute has been removed. Use
importlib.metadata.version() to check the version of
Whitenoise if you need to.
- Requests using the Range header can no longer read beyond the
end of the requested range.
- Treat empty and "*" values for Accept-Encoding as if the
client doesn’t support any encoding.
- Gracefully handle unparsable If-Modified-Since headers
(thanks @danielegozzi).
- Add mimetype for Markdown (.md) files
- Various documentation improvements
- Add support for relative STATIC_URLs in settings, as allowed
in Django 3.1.
- Add mimetype for .mjs (JavaScript module) files and use
recommended text/javascript mimetype for .js files.
- Various documentation improvements (thanks @lukeburden).
- Add a manifest_strict setting to prevent Django throwing
errors when missing files are referenced.
- Fix packaging to indicate only Python 3.5+ compatibiity (thanks @mdalp).
OBS-URL: https://build.opensuse.org/request/show/956876
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-whitenoise?expand=0&rev=6
This commit is contained in:
@@ -1,3 +1,36 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 22 17:49:24 UTC 2022 - Matej Cepl <mcepl@suse.com>
|
||||
|
||||
- Update to 6.0.0:
|
||||
- Drop support for Python 3.5 and 3.6.
|
||||
- Add support for Python 3.9 and 3.10.
|
||||
- Drop support for Django 1.11, 2.0, and 2.1.
|
||||
- Add support for Django 4.0.
|
||||
- Import new MIME types from Nginx, changes:
|
||||
- .avif files are now served with the image/avif MIME type.
|
||||
- Open Document files with extensions .odg, .odp,
|
||||
.ods, and .odt are now served with their respective
|
||||
application/vnd.oasis.opendocument.* MIME types.
|
||||
- The whitenoise.__version__ attribute has been removed. Use
|
||||
importlib.metadata.version() to check the version of
|
||||
Whitenoise if you need to.
|
||||
- Requests using the Range header can no longer read beyond the
|
||||
end of the requested range.
|
||||
- Treat empty and "*" values for Accept-Encoding as if the
|
||||
client doesn’t support any encoding.
|
||||
- Gracefully handle unparsable If-Modified-Since headers
|
||||
(thanks @danielegozzi).
|
||||
- Add mimetype for Markdown (.md) files
|
||||
- Various documentation improvements
|
||||
- Add support for relative STATIC_URLs in settings, as allowed
|
||||
in Django 3.1.
|
||||
- Add mimetype for .mjs (JavaScript module) files and use
|
||||
recommended text/javascript mimetype for .js files.
|
||||
- Various documentation improvements (thanks @lukeburden).
|
||||
- Add a manifest_strict setting to prevent Django throwing
|
||||
errors when missing files are referenced.
|
||||
- Fix packaging to indicate only Python 3.5+ compatibiity (thanks @mdalp).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 21 12:51:45 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-whitenoise
|
||||
#
|
||||
# Copyright (c) 2020 SUSE LLC
|
||||
# Copyright (c) 2022 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -19,13 +19,13 @@
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
%define skip_python2 1
|
||||
Name: python-whitenoise
|
||||
Version: 5.1.0
|
||||
Version: 6.0.0
|
||||
Release: 0
|
||||
Summary: Static file serving for WSGI applications
|
||||
License: MIT
|
||||
Group: Development/Languages/Python
|
||||
URL: https://github.com/evansd/whitenoise
|
||||
Source: https://github.com/evansd/whitenoise/archive/v%{version}.tar.gz#/whitenoise-%{version}.tar.gz
|
||||
Source: https://github.com/evansd/whitenoise/archive/%{version}.tar.gz#/whitenoise-%{version}.tar.gz
|
||||
BuildRequires: %{python_module Brotli >= 1.0.0}
|
||||
BuildRequires: %{python_module Django >= 2.0}
|
||||
BuildRequires: %{python_module pytest-django}
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bbc9800558e8e6a8f0aef2b0a2340d7492bcc3c8c90aa7ffd9c8b9a7c2b0a519
|
||||
size 52523
|
||||
3
whitenoise-6.0.0.tar.gz
Normal file
3
whitenoise-6.0.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d4cb698075b1f387490e38c65e7502f5f0a70eaa7123169654684b457653cf53
|
||||
size 57032
|
||||
Reference in New Issue
Block a user