Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/Newtonsoft.Json.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/Src
AgeCommit message (Collapse)Author
2011-10-01-DocumentationJamesNK
-Fixed potential casting error when writing JSON using a JsonReader
2011-10-01-Improve TypeNameHandling.Auto to skip adding an unneeded type name for ↵JamesNK
collection interfaces
2011-10-01-Changed the assembly file names to all be Newtonsoft.Json.dll to fix NuGet ↵JamesNK
referencing
2011-10-01-Changed JToken.Children to return an empty iterator rather than erroringJamesNK
2011-10-01-DocumentationJamesNK
-Fixed JObject loading JSON with comments -Fixed error when using a Specified property with no setter -Fixed transient constructor error on Windows Phone 7 -Fixed deserializing null values into nullable generic dictionaries
2011-08-05-Added ToObject to JToken for deserializing LINQ to JSON objects to a .NET ↵JamesNK
object -Added support for Guid, TimeSpan and Uri to LINQ to JSON
2011-08-03-Added support for deserializing IDictionary propertiesJamesNK
2011-08-03-Fixed DataTable and DataColumn names not being modified by ↵JamesNK
CamelCasePropertyNamesContractResolver
2011-08-03-Added support for reading byte arrays from JSON integer arraysJamesNK
2011-08-02-Added Culture to JsonTextReader to use when converting values from JSON textJamesNK
2011-08-02-Added Order to JsonPropertyAttribute to override the order of serialized JSONJamesNK
2011-08-02-Fixed deserializing to IEnumerable<T> propertiesJamesNK
2011-08-02-Added support for setting readonly fields when marked up with ↵JamesNK
JsonPropertyAttribute
2011-08-01-Changed $id and $ref properties to allow nullJamesNK
2011-08-01-Added Populate and IgnoreAndPopulate options to DefaultValueHandling for ↵JamesNK
automatically populating default values during deserialization
2011-08-01-Added support for missing JSON errors to error handlingJamesNK
2011-07-28-Added support for BindToName on SerializationBinderJamesNK
2011-07-04-Added serialization constructors to all ExceptionsJamesNK
-Added support for serialization event attributes on base classes -Changed WriteEndObject, WriteEndArray, WriteEndConstructor on JsonWriter to be virtual
2011-07-04-Added support for deserializing to readonly collections and dictionaries on ↵JamesNK
classes with non-default constructors
2011-06-25-Changed Newtonsoft.Json.Net20.dll to use LinqBridge source code rather than ↵JamesNK
ilmerge to fix error
2011-06-01-Change reading schema references to ignore additional content after the ↵JamesNK
$ref property
2011-05-28-Added Count to JContainerJamesNK
-Minor fixes and improvements
2011-05-28-Rewrote LINQ to JSON internals to use lists and dictionaries rather than a ↵JamesNK
linked list -Moved JPropertyDescriptor to Newtonsoft.Json.Linq namespace
2011-05-21-Fixed serializing objects with DataContract and DataMember attributes on ↵JamesNK
base classes -JsonObject and JsonProperty attributes can now be placed on an interface and used when serializing implementing objects
2011-05-21-Fixed BsonWriter failing silently when writing values outside of an Object ↵JamesNK
or Array -Fixed serializer attempting to use dynamic code generation in partial trust
2011-05-07-Added Serializable attribute to exceptionsJamesNK
-Fixed deserializing null values into DataTables -Fixed error when deserializing readonly IEnumerable<T> array properties -Fixed not including type name for byte[] values
2011-05-02-Herp derpJamesNK
2011-05-02-Fixed converting emtpy XML elements with an array attribute not writing ↵JamesNK
other attributes
2011-05-02-Improved support for deserializing objects using non-default constructorsJamesNK
-JsonConverterAttribute now allowed on constructor parameters -JsonPropertyAttribute now allowed on constructor parameters
2011-04-22-DemoJamesNK
-Changed build script to support NuGet profiles
2011-04-22-Fixed objects created with paramatized constructors to not set properties ↵JamesNK
that aren't in JSON
2011-04-10-Updated build process to embed the build number as assembly versionJamesNK
2011-04-10-Fixed DefaultValueHandling including a property when the default value is ↵JamesNK
the same value but a different type
2011-04-10-Added add/subtract/multiply/divide to dynamic JValueJamesNK
2011-03-26-Fixed comments in JSON sometimes causing errors when deserializingJamesNK
2011-03-26-Added EnumMemberAttribute support to StringEnumConverterJamesNK
2011-03-26-Fixed error when reflecting over type that has multiple index properties ↵JamesNK
inherited -Added ExpandoObjectConverter that deserializes to primitive values rather than LINQ to JSON objects for ExpandObjects
2011-03-22-Changed BsonReader/BsonWriter to close the underlying stream by default ↵JamesNK
when closed -Added CloseInput/CloseOutput to JsonReader/JsonWriter to control whether the underlying stream is closed. Default to true
2011-03-22-Fixed error when reusing JsonSerializer with preserve references enabledJamesNK
2011-03-21-CamelCasePropertyNamesContractResolver now updates dictionary and dynamic ↵JamesNK
property names
2011-02-24-Added additional ToString overloads to JValueJamesNK
-Fixed poor error message when dynamic type cannot be created during deserialization -Fixed error when setting a null value on a dynamic type during deserialization -Fixed JsonTextReader.ReadAsDecimal not attempting to convert string values to decimal
2011-02-24-Fixed duplicate type name within an assembly errorJamesNK
2011-01-28-Fixed deserializing a DataTable propertyJamesNK
2011-01-17-Added Equals, NotEquals, GreaterThan, GreaterThanEquals, LesserThan, ↵JamesNK
LesserThanEquals support to dynamic JValue -Added IComparable to JValue
2011-01-15-Added JsonConstructorAttribute to explicitly define which constructor to ↵JamesNK
use during deserialization -Added IFormattable to JValue -Changed JValue ToString to call ToString on the internal value -Fixed code emit error when deserializing interfaces in certain situations
2011-01-08-Updated nuspec file for 4.0JamesNK
-Added Load and Parse helper methods to JToken -Fixed performance issues when deserializing with partial type names -Fixed deserializing certain decimal values on classes with non-default constructors
2011-01-04-Disable Code Analysis in .NET 3.5 release buildJamesNK
2011-01-04-Fix dynamic serializing in SilverlightJamesNK
2011-01-03-Upgraded Silverlight project to Silverlight 4JamesNK
-Included .NET 4 features in Silverlight project
2011-01-02-Fixed signed buildJamesNK
-Updated package readme files