Changelog History
-
v1.4.1 Changes
April 27, 2014Note:
๐ This is the last version on this repository. To see all the versions, check the new repository.๐ For more information, see this comment.
-
v1.4.0 Changes
October 05, 2013๐ Support for AMD.
โ Removed deprecated method
$.cookie('name', null)
for deleting a cookie, use$.removeCookie('name')
.$.cookie('name')
now returnsundefined
in case such cookie does not exist (wasnull
). Because the return value is still falsy, testing for existence of a cookie likeif ( $.cookie('foo') )
keeps working without change.๐ฆ Renamed bower package definition (component.json -> bower.json) for usage with up-to-date bower.
๐ป Badly encoded cookies no longer throw exception upon reading but do return undefined (similar to how we handle JSON parse errors with json = true).
โ Added conversion function as optional last argument for reading, so that values can be changed to a different representation easily on the fly. Useful for parsing numbers for instance:
$.cookie('foo', '42'); $.cookie('foo', Number); // => 42
-
v1.3.1 Changes
January 25, 2013๐ Fixed issue where it was no longer possible to check for an arbitrary cookie, while json is set to true, there was a SyntaxError thrown from JSON.parse.
๐ Fixed issue where RFC 2068 decoded cookies were not properly read.
-
v1.3.0 Changes
January 24, 2013- ๐ง Configuration options:
raw
,json
. Replaces raw option, becomes config:
$.cookie.raw = true; // bypass encoding/decoding the cookie value $.cookie.json = true; // automatically JSON stringify/parse value
Thus the default options now cleanly contain cookie attributes only.
๐ Removing licensing under GPL Version 2, the plugin is now released under MIT License only (keeping it simple and following the jQuery library itself here).
๐ Bugfix: Properly handle RFC 2068 quoted cookie values.
โ Added component.json for bower.
โ Added jQuery plugin package manifest.
$.cookie()
returns all available cookies.
- ๐ง Configuration options:
-
v1.2.0 Changes
October 19, 2012- โ Adding
$.removeCookie('foo')
for deleting a cookie, using$.cookie('foo', null)
is now deprecated.
1.1
- โ Adding default options.
- โ Adding
-
v1.1
July 09, 2012 -
v1.0
July 09, 2012