All Versions
11
Latest Version
Avg Release Cycle
140 days
Latest Release
1821 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v12.0.3 Changes
November 09, 2019- ๐ New feature - Added support for nullable reference types
- ๐ New feature - Added KebabCaseNamingStrategy
- ๐ Change - Package now uses embedded package icon
- ๐ Fix - Fixed bug when merging JToken with itself
- ๐ Fix - Fixed performance of calling ICustomTypeDescriptor.GetProperties
- ๐ Fix - Fixed serializing Enumerable.Empty and empty arrays on .NET Core 3.0
- ๐ Fix - Fixed deserializing some collection types with constructor
- ๐ Fix - Fixed deserializing IImmutableSet to ImmutableHashSet instead of ImmutableSortedSet
- ๐ Fix - Fixed deserializing IImmutableDictionary to ImmutableDictionary instead of ImmutableSortedDictionary
- ๐ Fix - Fixed deserializing into constructors with more than 256 parameters
- ๐ Fix - Fixed hang when deserializing JTokenReader with preceding comment
- ๐ Fix - Fixed JSONPath scanning with nested indexer
- ๐ Fix - Fixed deserializing incomplete JSON object to JObject
- ๐ Fix - Fixed using StringEnumConverter with naming strategy and specified values
-
v12.0.2 Changes
April 22, 2019- ๐ New feature - Added MissingMemberHandling to JsonObjectAttribute and JsonObjectContract
- ๐ New feature - Added constructor to JTokenReader to specify initial path
- ๐ New feature - Added JsonProperty.IsRequiredSpecified
- ๐ New feature - Added JsonContract.InternalConverter
- ๐ Change - Moved embedded debug symbols in NuGet package to a symbol package on NuGet.org
- ๐ Fix - Fixed deserializing nullable struct collections
- ๐ Fix - Fixed memory link when serializing enums to named values
- ๐ Fix - Fixed error when setting JsonLoadSettings.DuplicatePropertyNameHandling to Replace
-
v12.0.1 Changes
November 27, 2018- ๐ New feature - Added NuGet package signing
- ๐ New feature - Added Authenticode assembly signing
- ๐ New feature - Added SourceLink support
- ๐ New feature - Added constructors to StringEnumConverter for setting AllowIntegerValue
- ๐ New feature - Added JsonNameTable and JsonTextReader.PropertyNameTable
- ๐ New feature - Added line information to JsonSerializationException
- ๐ New feature - Added JObject.Property overload with a StringComparison
- ๐ New feature - Added JsonMergeSettings.PropertyNameComparison
- ๐ New feature - Added support for multiple Date constructors with JavaScriptDateTimeConverter
- ๐ New feature - Added support for strict equals and strict not equals in JSON Path queries
- ๐ New feature - Added EncodeSpecialCharacters setting to XmlNodeConverter
- ๐ New feature - Added trace message for serializing to non-writable properties
- ๐ New feature - Added support for NamingStrategy to StringEnumConverter
- ๐ New feature - Added JsonLoadSettings.DuplicatePropertyNameHandling setting
- ๐ Change - JTokenReader now uses JsonReader.DateTimeZoneHandling setting for date values
- ๐ Change - Excluded TargetSite when serializing Exceptions without SerializableAttribute
- ๐ Change - Changed StringEnumConverter.ctor(bool camelCaseText) to obsolete
- ๐ Change - Changed StringEnumConverter.CamelCaseText to obsolete
- ๐ Fix - Fixed incorrect overflow when reading decimal values from JSON
- ๐ Fix - Fixed error message when trying to deserialize an abstract serializable type
- ๐ Fix - Fixed parsing decimals from a string with an exponent
- ๐ Fix - Fixed losing DateTime.Kind when deserializing ISO date strings
- ๐ Fix - Fixed calling constructors with ref and in parameters
- ๐ Fix - Fixed rare race condition in name table when serializing
- ๐ Fix - Fixed unhelpful exception message when unable to convert JSON value to DateTime
- ๐ Fix - Fixed error when deserializing empty array in DataTable
- ๐ Fix - Fixed deserializing empty string to empty byte array
- ๐ Fix - Fixed blank extension data values with required properties and deserializing with constructor
- ๐ Fix - Fixed ignored values being set in extension data when deserializing
- ๐ Fix - Fixed comparing equal integer and floating point values in JSON Path
- ๐ Fix - Fixed BsonReader when reading multiple content
- ๐ Fix - Fixed setting extension data with existing key
- ๐ Fix - Fixed including array attribute in XML with namespaces when converting JSON to XML
- ๐ Fix - Fixed error when serializing ref struct properties by excluding them from serialization
-
v11.0.2 Changes
March 24, 2018- ๐ Change - Revert DataContractAttribute to not force JSON object serialization (use JsonObjectAttribute instead)
- ๐ Fix - Fixed JPropertyDesciptor.GetValue and SetValue to not throw for non-JObject argument
- ๐ Fix - Fixed JObject ICustomTypeDescriptor.GetProperty to return the current instance
- ๐ Fix - Fixed serializing FileInfo/DirectoryInfo with a JsonConverter in .NET Standard
- ๐ Fix - Fixed serializing F# enums
- ๐ Fix - Fixed serializing types with multiple members of the same name
-
v11.0.1 Changes
February 17, 2018- ๐ New feature - Added netstandard2.0 build
- ๐ New feature - Added generic JsonConverter
- ๐ New feature - Added UnixDateConverter for converting Unix timestaps
- ๐ New feature - Added support for regex operator in JSON Paths
- ๐ New feature - Added JsonObjectAttribute.ItemNullValueHandling
- ๐ New feature - Added JsonObjectContract.ItemNullValueHandling
- ๐ New feature - Improved performance when resolving serialization contracts by using ConcurrentDictionary
- ๐ New feature - Improved performance of JToken.Path with a faster reverse
- ๐ New feature - Improved performance of parsing Int32 JSON integer values
- ๐ New feature - Improved performance of parsing and writing enum names
- ๐ New feature - Added IgnoreIsSpecifiedMembers to DefaultContractResolver
- ๐ New feature - Added IgnoreShouldSerializeMembers to DefaultContractResolver
- ๐ New feature - Added support for reading multiple comma delimited values with JsonReader.SupportMultipleContent
- ๐ New feature - Improved error message when an object is reused with PreserveReferencesHandling
- ๐ New feature - Added IConvertible support to netstandard1.3
- ๐ New feature - Added INotifyPropertyChanging support to netstandard1.3
- ๐ New feature - Optimized internal buffering when writing very large strings
- ๐ New feature - JObject.ContainsKey is now public
- ๐ New feature - Improved the error message when serialized ByRef properties
- ๐ New feature - Improved the error message when serializing FileInfo/DictionaryInfo without ISerializable
- ๐ New feature - Improved the error message when failing conversion in JsonReader.ReadAsInt32 and JsonReader.ReadAsDecimal
- ๐ New feature - Improved the error message when deserializing badly formatted regex strings
- ๐ Change - Types that implement ISerializable but don't have [SerializableAttribute] are not serialized using ISerializable
- ๐ Change - Changed JsonProperty.MemberConverter to obsolete
- ๐ Change - Changed camel casing logic for all caps words to not leave last character capitalized
- ๐ Change - Changed enum serialization in dictionary keys to use EnumMemberAttribute
- ๐ Fix - Fixed converting default datetime in JSON to XML on netstandard1.3
- ๐ Fix - Fixed deserializing ObservableCollection in .NET Core 2.0
- ๐ Fix - Fixed incorrectly allowing static IsSpecified properties
- ๐ Fix - Fixed not preserving trailing zeros when deserializing decimals
- ๐ Fix - Fixed JValue.CompareTo with number and string values
- ๐ Fix - Fixed not erroring when reading undefined for nullable long
- ๐ Fix - Fixed serializing immutable collections when .NET 4.0 or previous Newtonsoft.Json assembly is GACed
- ๐ Fix - Fixed writing null values by XmlNodeConverter and RegexConverter
- ๐ Fix - Fixed deserializing with a TraceWriter when the reader is not at the start
- ๐ Fix - Fixed TraceJsonWriter.WriteValue(object) writing value twice
- ๐ Fix - Fixed deserializing with constructor and readonly collection property
- ๐ Fix - Fixed error when writing unknown null value as JSON
- ๐ Fix - Fixed merging null string values
- ๐ Fix - Fixed missing CancellationToken usages in JsonTextWriter.WriteAsync
- ๐ Fix - Fixed error with JsonSerializer.Populate and comments in JSON array
- ๐ Fix - Fixed error handling when deserializing certain dictionary and lists
- ๐ Fix - Fixed serializing collection that is nullable
- ๐ Fix - Fixed JsonTextReader sync read in async method
- ๐ Fix - Fixed JsonConverter not called when target type is list and token is a string
- ๐ Fix - Fixed serializing a property that is defined in multiple interfaces
- ๐ Fix - Fixed error when deserializing null value into ConcurrentDictionary
- ๐ Fix - Fixed escaping special characters in generated JSON Paths
- ๐ Fix - Fixed reading escaped special characters in JSON Paths
- ๐ Fix - Fixed using extension data with dictionary that explicitly implements Add method
- ๐ Fix - Fixed parsing enum name to exact casing value before falling back to case-insensitive value
- ๐ Fix - Fixed DataContractAttribute not forcing object serialization of classes
- ๐ Fix - Fixed bug when deserializing into existing non-IList collection
- ๐ Fix - Fixed bug when deserializing into existing non-IDictionary collection
- ๐ Fix - Fixed JsonReader.ReadAsInt32 with BigInteger values
-
v10.0.3 Changes
June 18, 2017- ๐ New feature - Added support for deserializing XmlElement, XmlNode, XObject, XNode and XContainer with XmlNodeConverter
- ๐ Change - MinClientVersion 2.12 added to NuGet package to restrict to compatible clients
- ๐ Fix - Fixed JsonSerializer.Binder to not throw an error when binder instance is compatible
- ๐ Fix - Fixed stack overflow when deserializing incomplete JSON to XML
- ๐ Fix - Fixed JSON Path recursive descent queries
- ๐ Fix - Fixed serializing ConcurrentDictionary in .NET Core 2.0
- ๐ Fix - Fixed serializing ConcurrentStack/Queue/Bag
- ๐ Fix - Fixed MemoryTraceWriter thread safety
- ๐ Fix - Fixed JSON Path root filter sometimes not correctly returning root token
- ๐ Fix - Fixed properties with JsonIgnore not being ignored with ItemRequired
- ๐ Fix - Fixed JToken.Load not reading past comment when CommentHandling is Ignore
- ๐ Fix - Fixed JsonReader.ReadAsDecimal with a JValue containing a BigInteger value
- ๐ Fix - Fixed converting JSON values to XML attributes to ignore current culture
- ๐ Fix - Fixed converting JSON byte array data to XML
- ๐ Fix - Fixed reading some types from KeyValuePairConverter incorrectly
- ๐ Fix - Fixed comparing high precision decimal JValues
- ๐ Fix - Fixed JsonWriter.WriteToken(JsonReader) not erroring on incomplete token
- ๐ Fix - Fixed not preventing negative integers with StringEnumConverters.AllowIntegerValues
-
v10.0.2 Changes
April 02, 2017- ๐ Change - .NET 4 portable class library target added back to NuGet package
- ๐ Change - Changed NuGet dependencies to use NETStandard.Library 1.6.1
- ๐ Change - Changed double parsing back to double.TryParse to avoid small floating point precision errors
- ๐ Fix - Fixed binary serialization of JsonException and friends
- ๐ Fix - Fixed JsonLoadSettings.LineInfoHandling not being used correctly when loading JTokens
- ๐ Fix - Fixed serializing IListSource implementations
- ๐ Fix - Fixed handling errors when reading metadata properties during deserialization
-
v10.0.1 Changes
March 20, 2017- ๐ New feature - Added async read support to JsonReader
- ๐ New feature - Added async write support to JsonWriter
- ๐ New feature - Added async support for loading JObject and JArray
- ๐ New feature - Added non-allocating parsing of double and decimal values
- ๐ New feature - Added support for TypeConverters to netstandard1.0+
- ๐ New feature - Added support for BigInteger to netstandard1.3+
- ๐ New feature - Added support for ISerializable to netstandard1.3+
- ๐ New feature - Added support for XmlDocument to netstandard1.3+
- ๐ New feature - Added support for SerializableAttribute and NonSerializedAttribute to netstandard1.3+
- ๐ New feature - Added ISerializationBinder
- ๐ New feature - Added SerializationBinder properties to JsonSerializer and JsonSerializerSettings
- ๐ New feature - Added TypeNameAssemblyFormatHandling
- ๐ New feature - Added TypeNameAssemblyFormatHandling properties to JsonSerializer and JsonSerializerSettings
- ๐ New feature - Added support for root object selector in JSONPath filters
- ๐ New feature - Added support for multiple names in JSONPath scan filter
- ๐ New feature - Added support for any combination of paths and values in JSONPath filter expressions
- ๐ New feature - Added support for extension data names to NamingStrategy
- ๐ New feature - Added ProcessExtensionDataNames flag to NamingStrategy
- ๐ New feature - Added JsonWriter.AutoCompleteOnClose to control whether JSON is auto-completed on JsonWriter.Close
- ๐ New feature - Added JsonReaderException constructor with path, line number, line position
- ๐ New feature - Added JsonWriterException constructor with path
- ๐ New feature - Added JsonReader.SetToken method overload with option not to update position array index
- ๐ New feature - Added support for automatically calling single constructor on immutable structs
- ๐ Change - Removed .NET 4 portable class library target from NuGet package
- ๐ Change - Removed obsolete JsonConverter.GetSchema method
- ๐ Change - Removed obsolete constructor from DefaultContractResolver
- ๐ Change - Removed obsolete async methods from JsonConvert
- ๐ Change - Removed obsolete OnDeserialized, OnDeserializing, OnSerialized, OnSerializing, OnError from JsonContract
- ๐ Change - Removed obsolete JsonDictionaryContract.PropertyNameResolver
- ๐ Change - Removed obsolete ConstructorParameters, OverrideConstructor, ParametrizedConstructor from JsonObjectContract
- ๐ Change - Obsoleted TypeNameAssemblyFormat properties on JsonSerializer and JsonSerializerSettings
- ๐ Change - Obsoleted SerializationBinder
- ๐ Change - Obsoleted Binder properties on JsonSerializer and JsonSerializerSettings
- ๐ Change - Obsoleted FormatterAssemblyStyle in non-full .NET targets
- ๐ Change - Obsoleted Newtonsoft.Json.Bson (moved to new NuGet package)
- ๐ Change - Improved constructor parameter binding on .NET Core and portable builds
- ๐ Change - Improved error when attempting to convert root JSON object property to an XML attribute
- ๐ Change - Changed exception thrown when parsing invalid Unicode escape sequence to JsonReaderException
- ๐ Change - Changed StringEnumConverter.AllowIntegerValues to also reject reading integer strings
- ๐ Change - Changed StringEnumConverter.AllowIntegerValues to also reject writing enum values with no name
- ๐ Fix - Fixed JsonTextReader.ReadAsXXX methods not erroring on missing commas between values
- ๐ Fix - Fixed error when serializing F# lists with F# 4.1+
- ๐ Fix - Fixed StringEnumConverter reading specified enum names that contain a comma
- ๐ Fix - Fixed using a TraceWriter with nullable bytes
- ๐ Fix - Fixed deserializing null Regex values
- ๐ Fix - Fixed deserializing DataTable with error handling
- ๐ Fix - Fixed DynamicReflectionDelegateFactory creating typed value type constructors
- ๐ Fix - Fixed deserializing with type naming and complex nested generic types
- ๐ Fix - Fixed error when converting certain JSON to XML on .NET Core
- ๐ Fix - Fixed error handling skipping reading the next object value
- ๐ Fix - Fixed date XML precision when converting certain JSON to XML on portable builds
- ๐ Fix - Fixed not serializing readonly properties as references if they have corresponding creator parameters
- ๐ Fix - Fixed type name being written with nullable structs and TypeNameHandling.Auto
- ๐ Fix - Fixed deserializing a duplicate dictionary key from a parameterized constructor
- ๐ Fix - Fixed not erroring when deserializing incomplete JSON with a parameterized constructor
- ๐ Fix - Fixed incorrectly parsing scan filter when name is quoted
- ๐ Fix - Fixed return type for SByte and SByteNullable in JToken.ToObject
- ๐ Fix - Fixed deserializing generic only IList types with a constructor override
- ๐ Fix - Fixed null reference error with ReadAsBytes and an empty JSON object
- ๐ Fix - Fixed StringEnumConverter when EnumMember defines members that differ only by case
- ๐ Fix - Fixed serializing protected override properties
- ๐ Fix - Fixed merging null with complex type and MergeNullValueHandling.Ignore
- ๐ Fix - Fixed roundtripping double.MaxValue and float.MaxValue as dictionary keys
- ๐ Fix - Fixed JsonValidatingReader not closing underlying reader
- ๐ Fix - Fixed writing duplicate nulls to trace with TraceJsonWriter.WriteValue for object, Uri, byte[]
- ๐ Fix - Fixed BsonWriter.WriteValue erroring for null Uri or byte[]
- ๐ Fix - Fixed not calling nullable WriteValue overloads in TraceJsonWriter
- ๐ Fix - Fixed serializer not throwing an error when there is a comment followed by additional content when CheckAdditionalContent is true
- ๐ Fix - Fixed JObject/JArray Parse not throwing an error when there is a comment followed by additional content
- ๐ Fix - Fixed deserializing non-string values in some XML nodes
- ๐ Fix - Fixed converting XML to JSON when json:Array and xmlns:json attributes are used directly on the array's element
- ๐ Fix - Fixed error when attempting to populate values into read-only collection after creating object from non-default constructor
-
v9.0.1 Changes
June 27, 2016- ๐ New feature - Added support for .NET Core with netstandard1.0
- ๐ New feature - Added NamingStrategy, CamelCaseNamingStrategy, SnakeCaseNamingStrategy
- ๐ New feature - Added naming strategy properties to JsonObjectAttribute and JsonPropertyAttribute
- ๐ New feature - Updated build to use .NET CLI tools
- ๐ New feature - Improved performance of many operations on large JArrays
- ๐ Fix - Fixed converting XElements without a namespace attribute to JSON
- ๐ Fix - Fixed various bugs in JSONPath equals and not equals comparisions
- ๐ Fix - Fixed JsonTextReader.ReadAsString incorrectly erroring when reading some numbers
- ๐ Fix - Fixed JTokenWriter sometimes losing types when writing JTokens
- ๐ Fix - Fixed JTokenWriter sometimes losing types with JValue.WriteTo
- ๐ Fix - Fixed incorrect check when looking for non-default constructors on collections
- ๐ Fix - Fixed JsonReader.ReadAsDouble with a JValue BigInteger
- ๐ Fix - Fixed converting dollar JSON properties to XML
- ๐ Fix - Fixed dynamic property getter type information
- ๐ Fix - Fixed JsonTextReader reading NaN, Infinity, -Infinity with ReadAsDouble and ReadAsString
-
v8.0.3 Changes
March 14, 2016- ๐ New feature - Added MergeNullValueHandling
- ๐ New feature - Added constructor to StringEnumConverter for setting camelcase from attribute
- ๐ Fix - Fixed JsonTextWriter not getting buffer from buffer pool
- ๐ Fix - Fixed iterating over extension data multiple times
- ๐ Fix - Fixed JSONPath queries combining wildcard with property search
- ๐ Fix - Fixed serializing ISet with the .NET 4 portable assembly
- ๐ Fix - Fixed converting some property names to camel case
- ๐ Fix - Fixed F# serialization in partial trust issue