~ubuntu-branches/ubuntu/saucy/whoopsie-daisy/saucy

« back to all changes in this revision

Viewing changes to backend/stats/static/js/yui/releasenotes/HISTORY.cookie.md

  • Committer: Package Import Robot
  • Author(s): Evan Dandrea
  • Date: 2012-04-18 13:04:36 UTC
  • Revision ID: package-import@ubuntu.com-20120418130436-vmt93p8fds516lws
Tags: 0.1.32
Fix failing tests on powerpc and ARM.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Cookie Change History
 
2
=====================
 
3
 
 
4
3.5.0
 
5
-----
 
6
 
 
7
  * No changes.
 
8
 
 
9
3.4.1
 
10
-----
 
11
 
 
12
  * No changes.
 
13
 
 
14
3.4.0
 
15
-----
 
16
 
 
17
  * No changes.
 
18
 
 
19
 
 
20
3.3.0
 
21
-----
 
22
 
 
23
  * No changes.
 
24
 
 
25
 
 
26
3.2.0
 
27
-----
 
28
 
 
29
  * Introduced a private method for setting the document to use in tests.
 
30
  * Updated tests to run without setting cookies to `document.cookie`.
 
31
 
 
32
 
 
33
3.1.1
 
34
-----
 
35
 
 
36
  * No changes.
 
37
 
 
38
 
 
39
3.1.0
 
40
-----
 
41
 
 
42
  * No changes.
 
43
 
 
44
 
 
45
3.0.0
 
46
-----
 
47
 
 
48
  * No changes.
 
49
 
 
50
 
 
51
3.0.0b1
 
52
-------
 
53
 
 
54
  * Synchronized with the 2.x version of cookie:
 
55
    * Changes formatting of date from `toGMTString()` to `toUTCString()` (trac#
 
56
      2527892). 
 
57
    * Updated `remove()` so that it no longer modifies the options object that
 
58
      is passed in (trac# 2527838).
 
59
    * Changed behavior for Boolean cookies (those that don't contain an equals
 
60
      sign). Previously, calling `Cookie.get()` on a Boolean cookie would return
 
61
      the name of the cookie. Now, it returns an empty string. This is necessary
 
62
      because IE doesn't store an equals sign when the cookie value is empty
 
63
      ("info=" becomes just "info").
 
64
    * Added `Cookie.exists()` to allow for easier Boolean cookie detection.
 
65
    * Removed check for cookie value before parsing. Previously, parsing checked
 
66
      for `name=value`, now it parses anything that is passed in.
 
67
    * Removing the last subcookie with `removeSub()` now removes the cookie if the
 
68
      `removeIfEmpty` option is set to `true`. (trac# 2527954)
 
69
    * Added option to disable url encoding/decoding by passing `options.raw` to
 
70
      `set()` and `get()`. (trac# 2527953).
 
71
    * Changed `get()` to take an options object with `raw` and `converter`
 
72
      properties. If a function is passed instead of an object then it is used
 
73
      as the converter for backward compatibility (trac# 2527953).  
 
74
 
 
75
 
 
76
3.0.0pr2
 
77
--------
 
78
 
 
79
  * Synchronized with latest 2.x version of cookie.
 
80
 
 
81
 
 
82
3.0.0pr1
 
83
--------
 
84
 
 
85
  * Initial release.