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
AgeCommit message (Collapse)Author
2014-06-02Fixed compiler error.HEADmasterMike Krüger
Got this with master mono.
2013-03-14Sign the assembly with our own key.Bojan Rajkovic
We don't have the upstream key, and don't want a binary dep, but we need a strongname dep to fix some assembly loading issues.
2012-12-07Merge from upstream.Bojan Rajkovic
2012-11-08Revert "Make assembly strongly named so we can use it in MonoTouch.Tools."Michael Hutchinson
This reverts commit e4047e0218b46e787be03fbdb000ff18bbeeb958.
2012-11-07Make assembly strongly named so we can use it in MonoTouch.Tools.Dominique Louis
2012-11-01Fix up project file.Bojan Rajkovic
2012-07-19Don't target the Client Profile, it makes building this library from ↵Bojan Rajkovic
MonoDevelop impossible.
2012-03-20-Fixed Metro buildJames Newton-King
2012-03-20-Fixed full trust permission check in non .NET 4.0 buildsJames Newton-King
2012-03-19-DocumentationJames Newton-King
2012-03-19-More build fixesJames Newton-King
2012-03-19-Fixed Metro build targeting ARM for some reasonJames Newton-King
2012-03-19-Various Metro fixesJames Newton-King
2012-03-19-Fixed Metro buildJames Newton-King
2012-03-19-Updated version to 4.5.1James Newton-King
-Changed build script to include Metro build -Changed build script to set assembly version to major version only -Documentation
2012-03-18-Fixed Metro buildJames Newton-King
2012-03-18-Added IgnoreSerializableInterface to DefaultContractResolverJames Newton-King
-Changed serializing ISerializable types under partial trust to error to fix security issue -Fixed LinqBridge collision error in .NET 2.0 by moving types to a different namespace -Fixed JObject.Keys error when object has no items
2012-03-15-Fixed Metro buildJames Newton-King
2012-03-15-Added Newtonsoft.Json.Metro build (whew, what a pain!)James Newton-King
-Added .gitignore file
2012-03-10-Changed serializer to fallback to use a private default constructorJames Newton-King
-Changed error message when deserializing a JSON object/array onto the wrong kind of type to be more descriptive
2012-03-07-Improved performance issue fix for deeply nested LINQ to JSON objectsJames Newton-King
2012-03-07-Added async serialize/deserialize methods to JsonConvertJames Newton-King
-Fixed performance issue when deserializing deeply nested JSON to LINQ to JSON objects
2012-03-05-Xml documentationJames Newton-King
2012-03-04-Added DateFormatHandling to control whether dates are written in the MS ↵James Newton-King
format or ISO format, with ISO as the default -Added DateTimeZoneHandling to control reading and writing DateTime time zone details -Added reader/writer specific Formatting, DateFormatHandling and DateTimeZoneHandling to JsonSerializerSettings -Added feature of reader/writer specific settings to be set on JsonReader/JsonWriter when serializing -Added ReadAsDate to JsonReader -Added ReadAsString to JsonReader -Changed JsonTextReader to automatically read ISO strings as dates -Refactored ReadAsXXX methods and reduce code redundancy -Removed unused JsonDateTimeSerializationMode
2012-02-25-Added Path to JsonReaderException, JsonSchemaException and ValidationEventArgsJames Newton-King
-Fixed Path on JsonValidatingReader -Fixed path queries over constructors
2012-02-23-Added Path to JsonReader/JsonWriter/ErrorContext with the JSON path of the ↵James Newton-King
current position -Changed collection type on JsonArrayContract to public -Changed dictionary key type and dictionary value type on JsonDictionaryContract to public -Fixed error handling when failing to parse array content -Fixed error handling when there are missing required properties
2012-02-18-Fixed error when deserializing nullable types with no contentJames Newton-King
-Changed JsonReaders to set TokenType to JsonToken.None after finishing content -Changed the ReadAsXXX methods to return null instead of throwing an error when there is no content
2012-02-18-Fixed reading scientific notation numbers with no decimal pointJamesNK
-Changed the ReadAsXXX methods to return null at the end of an array instead of throwing an error
2012-02-12-Fixed build to not include nested directories in NuGet packageJamesNK
2012-02-12-Updated versions.txtJamesNK
2012-02-12-Modified build to compile both signed and unsigned Silverlight/Windows ↵JamesNK
Phone assemblies
2012-02-11-Fixed JsonValidatingReader.ReadAsBytes throwing exceptionJamesNK
-Minor NuGet spec updates
2012-02-11-Fixed unit test failing because of timezonesJamesNK
-Added IsValid overload that returns a list of error messages
2012-02-10-Fixed build fileJamesNK
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-02-03-Remove old NUnitJamesNK
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