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
2012-02-10-Incremented version to 4.0.8JamesNK
-Added VersionConverter -Fixed converting XML to JSON with a default namespace -Changed Silverlight/Windows Phone assemblies to not be signed
2012-02-09-Fixed JsonReader.ReadAsDateTimeOffset error messageJamesNK
2012-02-09-Fixed not replacing ignored properties in JsonPropertyCollectionJamesNK
2012-02-06-Fixed empty string being changed to null on object propertiesJamesNK
2012-02-03-Fixed attributes on nullable structs not being usedJamesNK
-Fixed deserializing nullable enums -Fixed JsonConstructorAttribute incorrectly being allowed on properties -Added new NUnit
2012-01-24-Increment version to 4.0.7JamesNK
-Fixed circular reference error when serializing nullable structs -Fixed JsonReader.ReadAsXXX methods not converting string values
2012-01-23-Fixed testJamesNK
2012-01-23-Changed version number to 4.0.6JamesNK
2012-01-22-Fixed Windows Phone buildJamesNK
2012-01-22-Added ReadAsInt32 to JsonReaderJamesNK
-Improved performance by using an enum rather than a type check to test contract type
2012-01-19-Fixed BsonReader to use BinaryReader instead of base streamJamesNK
2012-01-19-Added line number information to deserialization errorsJamesNK
-Added BinaryReader/BinaryWriter constructor overloads to BsonReader/BsonWriter
2012-01-18-Code clean upJamesNK
-Various performance improvements
2012-01-17-Removed unused utility methodsJamesNK
-Fixed various code warnings
2012-01-16-Fixed serializing types with hidden propertiesJamesNK
2012-01-16-Fixed potential multi-threading serializing issueJamesNK
2012-01-16-Rewrote JsonTextReader to use internal buffer to improve performanceJamesNK
-Improved JsonSerializer to cache contract/converters where possible to improve performance -Improved JsonTextReader error message when additional JSON content found -Fixed internal exception thrown when deserializing Decimal/DateTimeOffset/Byte lists -Fixed various JsonTextReader bugs
2012-01-10-Fixed elusive Intellitrace runtime destabilization errorJamesNK
2012-01-08-Performance improvementsJamesNK
2011-11-19-Updated build numberJamesNK
-Example SerializationBinder test
2011-11-19-Missing fileJamesNK
2011-11-19-Fixed DataTableConverter including nulls with NullValueHandling.IgnoreJamesNK
2011-11-19-Fixed bad BSON when writing long strings of complex UTF8 charactersJamesNK
-Fixed error not being raised for additional content in JSON string for JArray.Parse and JObject.Parse
2011-11-18-Fixed flag enum items not being correctly camel casedJamesNK
-Fixed JsonValidatingReader not validating the first array item twice -Fixed JsonSchema not correctly validating integers as a subset of decimal -Changed JsonTextReader.Culture to be CultureInfo.InvariantCulture by default
2011-11-01-Fixed deserializing byte arrays with type name informationJamesNK
2011-11-01-Changed time zone conversions to use new TimeZoneInfo instead of TimeZoneJamesNK
2011-11-01-Fix occasional error when converting non-long integer properties to XMLJamesNK
-Fix boolean values sometimes being capitalized when converting to XML -Fix error when deserializing ConcurrentDictionary -Fix serializing some Uris -Change KeyValurPairConverter to not rely on the order of the key and value properties
2011-10-01-Clean up compiler warningsJamesNK
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