Merge "Simplify HTMLTitleTextField::validate"
[lhc/web/wiklou.git] / resources / lib / jquery.cookie / CHANGELOG.md
1 1.3.1
2 -----
3 - Fixing issue where it was no longer possible to check for an arbitrary cookie,
4 while json is set to true, there was a SyntaxError thrown from JSON.parse.
5
6 1.3.0
7 -----
8 - Configuration options: `raw`, `json`. Replaces raw option, becomes config:
9
10 ```javascript
11 $.cookie.raw = true; // bypass encoding/decoding the cookie value
12 $.cookie.json = true; // automatically JSON stringify/parse value
13 ```
14
15 Thus the default options now cleanly contain cookie attributes only.
16
17 - Removing licensing under GPL Version 2, the plugin is now released under MIT License only
18 (keeping it simple and following the jQuery library itself here).
19
20 - Bugfix: Properly handle RFC 2068 quoted cookie values.
21
22 - Added component.json for bower.
23
24 - Added jQuery plugin package manifest.
25
26 - `$.cookie()` returns all available cookies.
27
28 1.2.0
29 -----
30 - Adding `$.removeCookie('foo')` for deleting a cookie, using `$.cookie('foo', null)` is now deprecated.
31
32 1.1
33 ---
34 - Adding default options.