ChangeLog 4.0 KB

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