mirror of
https://github.com/django/django.git
synced 2024-12-23 09:36:06 +00:00
240cbb63bf
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
425 B
Plaintext
18 lines
425 B
Plaintext
==========================
|
|
Django 3.0.9 release notes
|
|
==========================
|
|
|
|
*Expected August 3, 2020*
|
|
|
|
Django 3.0.9 fixes several bugs in 3.0.8.
|
|
|
|
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`).
|