All Versions
20
Latest Version
Avg Release Cycle
103 days
Latest Release
3092 days ago
Changelog History
Page 2
Changelog History
Page 2
-
v0.2.1 Changes
- Properly escaped a
[
literal in the RFC6265 regular expression.
- Properly escaped a
-
v0.2.0 Changes
- Cookie values are no longer automatically JSON encoded/decoded. This featured was deemed out of the scope of the library. ๐ This change also removes the dependency on a JSON shim for older browsers.
-
v0.1.7 Changes
- ๐ Changed cookie value encoding to only encode the special characters defined in RFC6265
-
v0.1.6 Changes
- โ Added
'use strict';
directive. - โ Removed some extraneous code.
- โ Added
-
v0.1.5 Changes
- โ Added CommonJS module support.
- Setting an
undefined
value withCookies.set
now expires the cookie, mirroring theCookies.expire
alias syntax. - ๐ Simplified how the
document.cookie
string is parsed.
-
v0.1.4 Changes
- ๐ Fixed a bug where setting a cookie's
secure
value tofalse
caused theCookies.defaults.secure
value to be used instead.
- ๐ Fixed a bug where setting a cookie's
-
v0.1.3 Changes
- โ Added aliases for
Cookies.set
andCookies.expire
.
- โ Added aliases for
-
v0.1.2 Changes
- 0๏ธโฃ Set
Cookies.defaults.path
to'/'
. - ๐ Replaced
escape
andunescape
function calls withencodeURIComponent
anddecodeURIComponent
, because the former are deprecated. - Cookie keys are now URI encoded in addition to cookie values.
- 0๏ธโฃ Set
-
v0.1.1 Changes
- ๐ป Cross browser fixes.
-
v0.1.0 Changes
- ๐ Initial commit.