2025-02-07 08:02:17 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-django-cors-headers: updated to 4.7.0
4.7.0 (2025-02-06)
* Support Django 5.2.
|
2024-11-11 08:29:31 by Thomas Klausner | Files touched by this commit (862) |
Log message:
py-*: remove unused tool dependency
py-setuptools includes the py-wheel functionality nowadays
|
2024-11-05 10:08:14 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-django-cors-headers: updated to 4.6.0
4.6.0 (2024-10-29)
* Drop Django 3.2 to 4.1 support.
|
2024-10-24 09:33:51 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-django-cors-headers: updated to 4.5.0
4.5.0 (2024-10-12)
* Drop Python 3.8 support.
* Support Python 3.13.
|
2024-07-13 10:49:42 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-django-cors-headers: updated to 4.4.0
4.4.0 (2024-06-19)
* Support Django 5.1.
|
2023-11-14 18:40:06 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-django-cors-headers: updated to 4.3.1
4.3.1 (2023-11-14)
------------------
* Fixed ASGI compatibility on Python 3.12.
|
2023-11-05 12:04:39 by Thomas Klausner | Files touched by this commit (1) |
Log message:
py-django-cors-headers: add missing tool dependency
|
2023-10-28 21:57:26 by Thomas Klausner | Files touched by this commit (516) |  |
Log message:
python/wheel.mk: simplify a lot, and switch to 'installer' for installation
This follows the recommended bootstrap method (flit_core, build, installer).
However, installer installs different files than pip, so update PLISTs
for all packages using wheel.mk and bump their PKGREVISIONs.
|
2023-10-16 15:07:00 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-django-cors-headers: updated to 4.3.0
4.3.0 (2023-10-11)
* Avoid adding the ``access-control-allow-credentials`` header to unallowed \
responses.
* Support Django 5.0.
|
2023-08-30 15:46:13 by Adam Ciarcinski | Files touched by this commit (3) |  |
Log message:
py-django-cors-headers: updated to 4.2.0
4.2.0 (2023-07-10)
------------------
* Drop Python 3.7 support.
4.1.0 (2023-06-14)
------------------
* Support Python 3.12.
4.0.0 (2023-05-12)
------------------
* Add ``CORS_ALLOW_PRIVATE_NETWORK`` setting, which enables support for the \
Local Network Access draft specification.
* Remove three headers from the default "accept list": \
``accept-encoding``, ``dnt``, and ``origin``.
These are `Forbidden header names \
<https://developer.mozilla.org/en-US/docs/Glossary/Forbidden_header_name>`__, \
which means requests JavaScript can never set them.
Consequently, allowing them via CORS has no effect.
* Drop the ``CORS_REPLACE_HTTPS_REFERER`` setting and ``CorsPostCsrfMiddleware``.
Since Django 1.9, the ``CSRF_TRUSTED_ORIGINS`` setting has been the preferred \
solution to making CSRF checks pass for CORS requests.
The removed setting and middleware only existed as a workaround for Django \
versions before 1.9.
* Add async support to the middleware, reducing overhead on async views.
|