2010-02-18 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.Json / System.Json / ChangeLog
1 2010-02-18  Atsushi Enomoto  <atsushi@ximian.com>
2
3         * JsonReader.cs : line endings after a value should not result in
4           a parse error.
5         * JsonObject.cs : duplicate object key "SHOULD" not be used, but
6           they are not rejected. So, make it a bit sloppy.
7
8 2010-01-27  Atsushi Enomoto  <atsushi@ximian.com>
9
10         * JsonReader.cs : oops, added previous change to wrong position.
11
12 2010-01-27  Atsushi Enomoto  <atsushi@ximian.com>
13
14         * JsonReader.cs : It seems it can either return int, long or decimal
15           depending on the value. Users cannot really predict what type of
16           the primitive value can be returned and casts to specific types
17           very likely fail. doh.
18
19 2010-01-27  Atsushi Enomoto  <atsushi@ximian.com>
20
21         * JsonReader.cs : use decimal instead of int to parse decimal part
22           of numeric value. It can parse bigger value than int now (like
23           tweet id).
24
25 2009-10-05  Atsushi Enomoto  <atsushi@ximian.com>
26
27         * JsonReader.cs : \uXXXX parser was totally wrong, giving wrong #.
28
29 2009-09-22  Atsushi Enomoto  <atsushi@ximian.com>
30
31         * JsonValue.cs, JsonReader.cs, JsonPrimitive.cs :
32           Handle "null" values, as string, so far (haven't tried what .NET
33           actually does).
34           Fix array ToString() that missed commas (while Save() worked fine -
35           it has different serialization logic).
36
37 2009-01-15  Atsushi Enomoto  <atsushi@ximian.com>
38
39         * JsonReader.cs : consume ',' between items in an array.
40
41 2008-09-15  Atsushi Enomoto  <atsushi@ximian.com>
42
43         * JsonObject.cs, JsonValue.cs : SL2b2 updates.
44
45 2008-08-28  Atsushi Enomoto  <atsushi@ximian.com>
46
47         * JsonReader.cs : a ReadChar() is missing in number parsing.
48
49 2008-06-10  Atsushi Enomoto  <atsushi@ximian.com>
50
51         * JsonArray.cs, JsonObject.cs, JsonPrimitive.cs, JsonReader.cs,
52           JsonType.cs, JsonValue.cs, MergedEnumerator.cs : initial checkin.
53