ChangeLog 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. 2009-10-23 Atsushi Enomoto <[email protected]>
  2. * DataContractJsonSerializer.cs
  3. TypeMap.cs
  4. JsonSerializationReader.cs : add experimental monotouch build.
  5. 2009-10-08 Atsushi Enomoto <[email protected]>
  6. * DataContractJsonSerializer.cs, JsonSerializationWriter.cs:
  7. alwaysEmitTypeInformation is false by default. It is for __type
  8. attribute, not for type attribute. __type name is always with ":#".
  9. * TypeMap.cs : sort members in default typemap (it is ordered).
  10. Uncomment EmitDefaultValue.
  11. * JsonWriter.cs : handle "null" string (it is somewhat messy).
  12. 2009-10-05 Atsushi Enomoto <[email protected]>
  13. * JsonReader.cs : copy string literal parser from System.Json.
  14. 2009-09-22 Atsushi Enomoto <[email protected]>
  15. * JsonSerializationWriter.cs : output "type" attribute on bool
  16. values too.
  17. * JsonSerializationReader.cs : type loading attempt was insufficient
  18. and hence often missed indicated types to deserialize.
  19. 2009-09-15 Atsushi Enomoto <[email protected]>
  20. * JsonWriter.cs : use Stream as its output directly and avoid
  21. extraneous preamble output. Fix interop with .NET.
  22. 2009-09-07 Atsushi Enomoto <[email protected]>
  23. * JsonReaderWriterFactory.cs : check null stream (fix test failure).
  24. 2009-03-13 Andreia Gaita <[email protected]>
  25. * JsonReader.cs: fix depth calculation
  26. 2009-03-12 Geoff Norton <[email protected]>
  27. * TypeMap.cs: Avoid checking the getter/setter information until after
  28. checking if we have the required attribute decorated.
  29. 2009-03-12 Andreia Gaita <[email protected]>
  30. * JsonReaderWriterFactory.cs: try to auto-detect encoding for streams
  31. without BOM
  32. 2009-03-02 Chris Toshok <[email protected]>
  33. * JsonReader.cs: 2.1 has HasValue.
  34. 2009-02-02 Atsushi Enomoto <[email protected]>
  35. * JsonReader.cs : show invalid input character in the error
  36. message.
  37. 2009-02-02 Atsushi Enomoto <[email protected]>
  38. * TypeMap.cs : in 2.1 do not use non-2.1 CreateInstance().
  39. 2009-02-02 Atsushi Enomoto <[email protected]>
  40. * TypeMap.cs : allow get-only collections. Note that they are not
  41. always deserializable (in .NET either).
  42. 2009-02-02 Atsushi Enomoto <[email protected]>
  43. * TypeMap.cs : DataContractJsonSerializer in RTM does not seem to
  44. reject contract-less types. So populate map for public members.
  45. * DataContractJsonSerializer.cs : close XmlWriter to flush stream
  46. (and it closes the stream by default).
  47. 2009-02-02 Andreia Gaita <[email protected]>
  48. * JsonSerializationReader.cs : Use 2.1 "approved" calls for Enum.Parse
  49. and Convert.ChangeType
  50. 2008-02-18 Atsushi Enomoto <[email protected]>
  51. * DataContractJsonSerializer.cs : IsStartObject() could raise
  52. an arbitrary exception, so wrap it inside try-catch too to enclose
  53. with SerializationException.
  54. * JsonSerializationReader.cs : support DBNull.
  55. 2008-01-30 Atsushi Enomoto <[email protected]>
  56. * DataContractJsonSerializer.cs : fixed .ctor(type, knonwTypes) that
  57. missed to delegate knownTypes correctly.
  58. * JsonSerializationReader.cs : consider KnownTypes correctly.
  59. Take "__type" fully into consideration, not just for arrays.
  60. 2008-01-30 Atsushi Enomoto <[email protected]>
  61. * JsonReader.cs : GetAttribute() was not still missing support for
  62. __type.
  63. 2008-01-30 Atsushi Enomoto <[email protected]>
  64. * JsonReader.cs : now __type is fully supported in every methods and
  65. properties in correct shape.
  66. 2008-01-30 Atsushi Enomoto <[email protected]>
  67. * JsonReader.cs : Do not consume "__type" (which is the first content
  68. of an object) as an element content. It must be handled as an
  69. attribute (it needs more changes).
  70. 2008-01-24 Atsushi Enomoto <[email protected]>
  71. * JsonSerializationReader.cs : when deserializing primitive strings,
  72. make use of "type" attribute (they are supposed to exist).
  73. Output source reader location if available.
  74. * JsonReader.cs : implement IXmlLineInfo.
  75. 2008-01-24 Atsushi Enomoto <[email protected]>
  76. * JsonSerializationReader.cs : new, for JSON deserialization support.
  77. * DataContractJsonSerializer.cs, TypeMap.cs :
  78. basic support for deserialization.
  79. 2008-01-24 Atsushi Enomoto <[email protected]>
  80. * DataContractJsonSerializer.cs,
  81. TypeMap.cs,
  82. JsonSerializationWriter.cs : split the first to those three files.
  83. 2008-01-24 Atsushi Enomoto <[email protected]>
  84. * DataContractJsonSerializer.cs : Uri and Guid are serialized as
  85. string. XmlQualifiedName is serialized as local:ns.
  86. 2008-01-22 Atsushi Enomoto <[email protected]>
  87. * JsonWriter.cs : allow __type attribute. It required couple of
  88. changes all around the class.
  89. * DataContractJsonSerializer.cs : implemented large part of
  90. serialization support (deserialization is not done yet).
  91. 2007-12-05 Atsushi Enomoto <[email protected]>
  92. * DataContractJsonSerializer.cs :
  93. moved from System.Runtime.Serialization and changed the namespace.
  94. * JsonReader.cs, JsonWriter.cs, JsonReaderWriterFactory.cs,
  95. IXmlJsonReaderInitializer.cs, IXmlJsonWriterInitializer.cs :
  96. moved from System.Xml and changed the namespace.