1
0
mirror of https://github.com/django/django.git synced 2025-02-08 08:26:13 +00:00
django/docs/releases/2.2.15.txt
Mariusz Felisiak 240cbb63bf
Fixed #31790 -- Fixed setting SameSite and Secure cookies flags in HttpResponse.delete_cookie().
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.
2020-07-16 08:16:58 +02:00

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`).