Fix ChangeLog and @since comments

This commit is contained in:
Michael Snoyman 2016-08-10 15:18:41 +03:00
parent f6891b0373
commit cc6cc2939e
2 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,7 @@
## 1.4.23
* urlParamRenderOverride method for Yesod class [#1257](https://github.com/yesodweb/yesod/pull/1257)
* Add laxSameSiteSessions and strictSameSiteSessions [#1226](https://github.com/yesodweb/yesod/pull/1226)
## 1.4.22

View File

@ -394,7 +394,7 @@ sslOnlySessions = (fmap . fmap) secureSessionCookies
-- This option is liable to change in future versions of Yesod as the spec evolves.
-- View more information <https://datatracker.ietf.org/doc/draft-west-first-party-cookies/ here>.
--
-- Since 1.4.21
-- @since 1.4.23
laxSameSiteSessions :: IO (Maybe SessionBackend) -> IO (Maybe SessionBackend)
laxSameSiteSessions = sameSiteSession sameSiteLax
@ -405,7 +405,7 @@ laxSameSiteSessions = sameSiteSession sameSiteLax
-- This option is liable to change in future versions of Yesod as the spec evolves.
-- View more information <https://datatracker.ietf.org/doc/draft-west-first-party-cookies/ here>.
--
-- Since 1.4.21
-- @since 1.4.23
strictSameSiteSessions :: IO (Maybe SessionBackend) -> IO (Maybe SessionBackend)
strictSameSiteSessions = sameSiteSession sameSiteStrict