~bcsaller/juju-gui/update-reductions

« back to all changes in this revision

Viewing changes to lib/yui/releasenotes/HISTORY.json.md

  • Committer: kapil.foss at gmail
  • Date: 2012-07-13 18:45:59 UTC
  • Revision ID: kapil.foss@gmail.com-20120713184559-2xl7be17egsrz0c9
reshape

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
JSON Utility Change History
2
 
===========================
3
 
 
4
 
3.5.1
5
 
-----
6
 
 
7
 
  * No changes.
8
 
 
9
 
3.5.0
10
 
-----
11
 
 
12
 
  * No changes.
13
 
 
14
 
3.4.1
15
 
-----
16
 
 
17
 
  * No changes.
18
 
 
19
 
3.4.0
20
 
-----
21
 
 
22
 
  * Remove indirect `eval()`. [Ticket #2530295]
23
 
 
24
 
3.3.0
25
 
-----
26
 
 
27
 
  * No changes.
28
 
 
29
 
3.2.0
30
 
-----
31
 
 
32
 
  * Convert parse input to a string before processing.
33
 
 
34
 
  * `eval()` now referenced indirectly to allow for better compression.
35
 
 
36
 
  * `dateToString` deprecated; use a `replacer`. A Date function extension is
37
 
    in the works.
38
 
 
39
 
3.1.1
40
 
-----
41
 
 
42
 
  * No changes.
43
 
 
44
 
3.1.0
45
 
-----
46
 
 
47
 
  * useNative___ disabled for browsers with *very* broken native APIs
48
 
    (FF3.1beta1-3).
49
 
 
50
 
  * Assumption of `window` removed to support browser-less environment.
51
 
 
52
 
3.0.0
53
 
-----
54
 
 
55
 
  * Leverages native `JSON.stringify` if available.
56
 
 
57
 
  * Added `Y.JSON.useNativeParse` and `useNativeStringify` properties that can
58
 
    be set to `false` to use the JavaScript implementations. Use these if your
59
 
    use case triggers an edge-case bug in one of the native implementations.
60
 
    Hopefully these will be unnecessary in a few minor versions of the A-grade
61
 
    browsers.
62
 
 
63
 
  * Added support for `toJSON()` methods on objects being stringified.
64
 
 
65
 
  * Moved Date stringification before replacer to be in accordance with ES5.
66
 
 
67
 
3.0.0beta1
68
 
----------
69
 
 
70
 
  * Leverages native `JSON.parse` if available.
71
 
 
72
 
  * Stringify API change. Third argument changed from depth control to indent
73
 
    (Per the ECMA 5 spec).
74
 
 
75
 
  * Stringify now throws an `Error` if the object has cyclical references
76
 
    (Per the ECMA 5 spec).
77
 
 
78
 
  * Restructured `stringify()` to leverage `Y.Lang.type`.
79
 
 
80
 
3.0.0pr2
81
 
--------
82
 
 
83
 
  * No changes.
84
 
 
85
 
3.0.0pr1
86
 
--------
87
 
 
88
 
  * Initial release.