ChangeLog 4.4 KB

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