Releases: dflydev/dflydev-fig-cookies
Releases · dflydev/dflydev-fig-cookies
v3.2.0
What's Changed
- Updates CI to run on PHP 8.3 through 8.5-dev by @gsteel in #63
- Adds support for CHIPS partitioned cookies by @battis in #62
Partitioned cookies can be created by callingwithPartitionedon the cookie instance, for example:For further information, see MDN DocsSetCookie::create('someCookie')->withPartitioned();
New Contributors
Full Changelog: v3.1.0...v3.2.0
v3.1.0
What's Changed
- CI Fixes by @franzliedke in #46
-
Deprecate cookie expiry facades
The methodsFigResponseCookies::expire()andSetCookie::createExpired()have been deprecated. In order to expire a cookie, create aSetCookieinstance with properties that match the existing cookie and callexpire, passing the newSetCookieinstance toFigResponseCookies::set().
by @franzliedke in #45 -
Documentation Fix
Fix minor grammatical error in the README by @settermjd in #49 -
Allow psr/http-message ^2
Expands composer constraint forpsr/http-messageto^1 || ^2
by @gsteel in #60
New Contributors
- @settermjd made their first contribution in #49
- @gsteel made their first contribution in #60
Full Changelog: v3.0.0...v3.1.0
Version 3.0.0
Updated to support PHP 8.
Version 2.0.3
Fix potential issue with malformed cookies causing catastrophic errors instead of simply returning a cookie with no value. #42
Version 2.0.2
v2.0.2 Merge pull request #40 from weierophinney/security/do-not-decode-cook…