mirror of
https://github.com/django/django.git
synced 2025-02-08 08:26:13 +00:00
Cookies with the "SameSite" flag set to None and without the "secure" flag will be soon rejected by latest browser versions. This affects sessions and messages cookies.
18 lines
423 B
Plaintext
18 lines
423 B
Plaintext
===========================
|
|
Django 2.2.15 release notes
|
|
===========================
|
|
|
|
*Expected August 3, 2020*
|
|
|
|
Django 2.2.15 fixes a bug in 2.2.14.
|
|
|
|
Bugfixes
|
|
========
|
|
|
|
* Allowed setting the ``SameSite`` cookie flag in
|
|
:meth:`.HttpResponse.delete_cookie` (:ticket:`31790`).
|
|
|
|
* Fixed setting the ``Secure`` cookie flag in
|
|
:meth:`.HttpResponse.delete_cookie` for cookies that use ``samesite='none'``
|
|
(:ticket:`31790`).
|