All Versions
20
Latest Version
Avg Release Cycle
103 days
Latest Release
3062 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v1.2.3 Changes
November 06, 2016- ๐ Fixed null object reference error when both the global
this
andwindow
objects are undefined (e.g., when using webpack).
- ๐ Fixed null object reference error when both the global
-
v1.2.2 Changes
September 10, 2015- ๐ Fixed errors caused when accessing a properly encoded cookie while another cookie had a malformed key/value.
-
v1.2.1 Changes
February 16, 2015- ๐ Fixed bower.json and package.json
main
pointing to "src" instead of "dist" now that an unminified version lives in "dist"
- ๐ Fixed bower.json and package.json
-
v1.2.0 Changes
February 10, 2015Infinity
may now be used with the "expires" option to set a persistent cookie.- Included unminified version of the library in "dist"
-
v1.1.0 Changes
November 07, 2014- โ Added the ability to require Cookies.js in CommonJS/Node environments that do not natively have a
window
object, by exporting a factory method that takes an instance of awindow
.
- โ Added the ability to require Cookies.js in CommonJS/Node environments that do not natively have a
-
v1.0.1 Changes
November 07, 2014- ๐ Fixed being unable to retrieve cookie values for keys that were named the same as a built-in
Object
property.
- ๐ Fixed being unable to retrieve cookie values for keys that were named the same as a built-in
-
v1.0.0 Changes
October 26, 2014- Put Cookies.js into the public domain.
- 0๏ธโฃ Explicitly defaulted the
secure
option tofalse
.
๐ The code API has been stable for a number of releases now and is considered production-ready, so entering major version 1 has been long overdue. Although the code has not had any backwards-incompatible changes since version 0.4.0, the licensing has been removed and the project has been put into the public domain. As a result, this seems as good a time as any to move the project into major version 1.
-
v0.4.0 Changes
April 28, 2014- ๐ Replaced deprecated
toGMTString
withtoUTCString
(Thanks @Zorbash!) - โ Added a proper bower.json file (Thanks @jstayton!)
- ๐ Fixed bug where
Cookies.enabled
was always returning true in IE7 and IE8 (Thanks @brianlow!) - โก๏ธ Updated cookies.d.ts for Typescript 1.0 (Thanks @flashandy!)
- ๐ Fixed unnecessarily encoding characters in cookie keys that are allowed by RFC6265, and
๐ fixed not encoding a couple characters in cookies keys that are not allowed by RFC6265.
(Issue #18) - ๐ Moved the change log to its own file.
- ๐ Replaced deprecated
-
v0.3.1 Changes
April 27, 2014- ๐ Fixed a runtime error that prevented the library from loading when cookies were disabled in the client browser.
- ๐ Fixed a bug in IE that would cause the library to improperly read cookies with a value of
""
.
-
v0.3.0 Changes
April 27, 2014- โ Rewrote the library from the ground up, using test driven development. The public API remains unchanged.
- Restructured project directories.