|
525
|
1 |
Cookie Change History |
|
|
2 |
===================== |
|
|
3 |
|
|
|
4 |
3.10.3 |
|
|
5 |
------ |
|
|
6 |
|
|
|
7 |
* No changes. |
|
|
8 |
|
|
|
9 |
3.10.2 |
|
|
10 |
------ |
|
|
11 |
|
|
|
12 |
* No changes. |
|
|
13 |
|
|
|
14 |
3.10.1 |
|
|
15 |
------ |
|
|
16 |
|
|
|
17 |
* No changes. |
|
|
18 |
|
|
|
19 |
3.10.0 |
|
|
20 |
------ |
|
|
21 |
|
|
|
22 |
* No changes. |
|
|
23 |
|
|
|
24 |
3.9.1 |
|
|
25 |
----- |
|
|
26 |
|
|
|
27 |
* No changes. |
|
|
28 |
|
|
|
29 |
3.9.0 |
|
|
30 |
----- |
|
|
31 |
|
|
|
32 |
* No changes. |
|
|
33 |
|
|
|
34 |
3.8.1 |
|
|
35 |
----- |
|
|
36 |
|
|
|
37 |
* No changes. |
|
|
38 |
|
|
|
39 |
3.8.0 |
|
|
40 |
----- |
|
|
41 |
|
|
|
42 |
* Pull Req: 248 - Make order of cookie loading with the same name configurable |
|
|
43 |
|
|
|
44 |
3.7.3 |
|
|
45 |
----- |
|
|
46 |
|
|
|
47 |
* No changes. |
|
|
48 |
|
|
|
49 |
3.7.2 |
|
|
50 |
----- |
|
|
51 |
|
|
|
52 |
* No changes. |
|
|
53 |
|
|
|
54 |
3.7.1 |
|
|
55 |
----- |
|
|
56 |
|
|
|
57 |
* No changes. |
|
|
58 |
|
|
|
59 |
3.7.0 |
|
|
60 |
----- |
|
|
61 |
|
|
|
62 |
* No changes. |
|
|
63 |
|
|
|
64 |
3.6.0 |
|
|
65 |
----- |
|
|
66 |
|
|
|
67 |
* No changes. |
|
|
68 |
|
|
|
69 |
3.5.1 |
|
|
70 |
----- |
|
|
71 |
|
|
|
72 |
* No changes. |
|
|
73 |
|
|
|
74 |
3.5.0 |
|
|
75 |
----- |
|
|
76 |
|
|
|
77 |
* No changes. |
|
|
78 |
|
|
|
79 |
3.4.1 |
|
|
80 |
----- |
|
|
81 |
|
|
|
82 |
* No changes. |
|
|
83 |
|
|
|
84 |
3.4.0 |
|
|
85 |
----- |
|
|
86 |
|
|
|
87 |
* No changes. |
|
|
88 |
|
|
|
89 |
|
|
|
90 |
3.3.0 |
|
|
91 |
----- |
|
|
92 |
|
|
|
93 |
* No changes. |
|
|
94 |
|
|
|
95 |
|
|
|
96 |
3.2.0 |
|
|
97 |
----- |
|
|
98 |
|
|
|
99 |
* Introduced a private method for setting the document to use in tests. |
|
|
100 |
* Updated tests to run without setting cookies to `document.cookie`. |
|
|
101 |
|
|
|
102 |
|
|
|
103 |
3.1.1 |
|
|
104 |
----- |
|
|
105 |
|
|
|
106 |
* No changes. |
|
|
107 |
|
|
|
108 |
|
|
|
109 |
3.1.0 |
|
|
110 |
----- |
|
|
111 |
|
|
|
112 |
* No changes. |
|
|
113 |
|
|
|
114 |
|
|
|
115 |
3.0.0 |
|
|
116 |
----- |
|
|
117 |
|
|
|
118 |
* No changes. |
|
|
119 |
|
|
|
120 |
|
|
|
121 |
3.0.0b1 |
|
|
122 |
------- |
|
|
123 |
|
|
|
124 |
* Synchronized with the 2.x version of cookie: |
|
|
125 |
* Changes formatting of date from `toGMTString()` to `toUTCString()` (trac# |
|
|
126 |
2527892). |
|
|
127 |
* Updated `remove()` so that it no longer modifies the options object that |
|
|
128 |
is passed in (trac# 2527838). |
|
|
129 |
* Changed behavior for Boolean cookies (those that don't contain an equals |
|
|
130 |
sign). Previously, calling `Cookie.get()` on a Boolean cookie would return |
|
|
131 |
the name of the cookie. Now, it returns an empty string. This is necessary |
|
|
132 |
because IE doesn't store an equals sign when the cookie value is empty |
|
|
133 |
("info=" becomes just "info"). |
|
|
134 |
* Added `Cookie.exists()` to allow for easier Boolean cookie detection. |
|
|
135 |
* Removed check for cookie value before parsing. Previously, parsing checked |
|
|
136 |
for `name=value`, now it parses anything that is passed in. |
|
|
137 |
* Removing the last subcookie with `removeSub()` now removes the cookie if the |
|
|
138 |
`removeIfEmpty` option is set to `true`. (trac# 2527954) |
|
|
139 |
* Added option to disable url encoding/decoding by passing `options.raw` to |
|
|
140 |
`set()` and `get()`. (trac# 2527953). |
|
|
141 |
* Changed `get()` to take an options object with `raw` and `converter` |
|
|
142 |
properties. If a function is passed instead of an object then it is used |
|
|
143 |
as the converter for backward compatibility (trac# 2527953). |
|
|
144 |
|
|
|
145 |
|
|
|
146 |
3.0.0pr2 |
|
|
147 |
-------- |
|
|
148 |
|
|
|
149 |
* Synchronized with latest 2.x version of cookie. |
|
|
150 |
|
|
|
151 |
|
|
|
152 |
3.0.0pr1 |
|
|
153 |
-------- |
|
|
154 |
|
|
|
155 |
* Initial release. |