forked from aaubry/YamlDotNet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
40 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Release 8.0.0 | ||
|
||
## New features and improvements | ||
|
||
- Change the default value handling behavior. Fixes #427 | ||
This is a **breaking change** to the default behaviour of the serializer, which will now **always emit null and default values**. | ||
It is possible to configure this behaviour by using the `ConfigureDefaultValuesHandling` method on `SerializerBuilder`. | ||
|
||
[More details are available in the documentation.](https://github.com/aaubry/YamlDotNet/wiki/Serialization.Serializer#configuredefaultvalueshandlingdefaultvalueshandling) | ||
|
||
- Add default implementations for the following non-generic collections to `DefaultObjectFactory`: | ||
- IEnumerable | ||
- ICollection | ||
- IList | ||
- IDictionary | ||
|
||
- Remove obsolete and unused `SerializationOptions` enum. Fixes #438 | ||
- Throw descriptive exceptions when using the "linq" methods of `YamlNode`. Relates to #437 | ||
|
||
## Bug fixes | ||
|
||
- Never emit document end indicator on stream end. Fixes #436 | ||
- Fix exception when deserializing an interface. Fixes #439 |