ChangeLog 4.3 KB

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