ChangeLog 3.7 KB

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