-
-
Notifications
You must be signed in to change notification settings - Fork 950
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
30 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
Added kwarg samesite to :meth:`~falcon.Response.unset_cookie` to allow override of default ``Lax`` setting of `SameSite` on the unset cookie | ||
A new keyword argument, `samesite`, was added to | ||
:meth:`~falcon.Response.unset_cookie` that allows to override the default | ||
``Lax`` setting of `SameSite` on the unset cookie. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Added kwarg ``partitioned`` to :meth:`~falcon.Response.set_cookie` | ||
to opt a cookie into partitioned storage, with a separate cookie jar per | ||
top-level site. | ||
See also | ||
A new keyword argument, `partitioned`, was added to | ||
:meth:`~falcon.Response.set_cookie` to opt a cookie into partitioned storage, | ||
with a separate cookie jar per each top-level site. | ||
(See also | ||
`CHIPS <https://developer.mozilla.org/en-US/docs/Web/Privacy/Privacy_sandbox/Partitioned_cookies>`__ | ||
for a more detailed description of this experimental web technology. | ||
for a more detailed description of this experimental web technology.) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
The ``falcon.TimezoneGMT`` class was deprecated. Use the UTC timezone | ||
The :class:`falcon.TimezoneGMT` class was deprecated. Use the UTC timezone | ||
(:attr:`datetime.timezone.utc`) from the standard library instead. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
The :class:`~CORSMiddleware` now properly handles the missing ``Allow`` | ||
header case, by denying the preflight CORS request. | ||
The static resource has been updated to properly support CORS request, | ||
by allowing GET requests. | ||
The static file route has been updated to properly support CORS preflight, | ||
by allowing ``GET`` requests. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters