ChangeLog 5.1 KB

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