Changelog for wai-cryptocookie-0.2
Version 0.2
-
BREAKING CHANGE: The type of
set
changed so thatset cc Nothing
is nowdelete cc
(new function), andset cc (Just a)
is nowset cc a
. -
Added a function
keep
to keep the cookie as is on the client side, without sending anySet-Cookie
header on the reply. -
The
CryptoCookie
won't be decrypted and decoded untilget
is used. This makes requests that don't need to interact with theCryptoCookie
more efficient. -
Documentation improvements.
-
Test improvements.
Version 0.1
- Changed the type of
middleware
so that the previous lookup function is not used anymore. Instead, aCryptoCookie
is provided directly to anApplication
-construction function.
Version 0.0.1
- Initial version.