ChangeLog 4.8 KB

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