Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 11, 2025

Updated YamlDotNet from 13.1.0 to 16.3.0.

Release notes

Sourced from YamlDotNet's releases.

16.3.0

What's Changed

New Contributors

Full Changelog: aaubry/YamlDotNet@v16.2.1...v16.3.0

16.2.1

What's Changed

Full Changelog: aaubry/YamlDotNet@v16.2.0...v16.2.1

16.2.0

What's Changed

New Contributors

Full Changelog: aaubry/YamlDotNet@v16.1.3...v16.2.0

16.1.3

What's Changed

Full Changelog: aaubry/YamlDotNet@v16.1.2...v16.1.3

16.1.2

What's Changed

Full Changelog: aaubry/YamlDotNet@v16.1.1...v16.1.2

16.1.1

What's Changed

New Contributors

Full Changelog: aaubry/YamlDotNet@v16.1.0...v16.1.1

16.1.0

What's Changed

New Contributors

Full Changelog: aaubry/YamlDotNet@v16.0.0...v16.1.0

16.0.0

  • Merge pull request #​938 from MetaFight/array-cycles
    ArrayNodeDeserializer can now deserialize circular references.

  • Merge pull request #​935 from MrLuje/fsharp-collection
    feat: properly handle FSharp List deserialization

  • Merge pull request #​927 from lahma/optimize-scalar-load
    Optimize YamlScalarNode.Load and YamlMappingNode.Load

  • Merge pull request #​941 from EdwardCooke/ec-nullability
    Fix bugs and add features


Breaking change notes

  • The ITypeConverter object is now passed to many methods and is expected when some are called. You can get the typeconverter by calling BuildTypeConverter on the serializerbuilder and deserializerbuilder. This typeconverter should be treated as a singleton and injected into the constructor of your class.

  • The IPropertyDescriptor is now passed into a lot of methods. It can be safely disregarded if you don't need it. It contains information about the property containing the object being deserialized.

  • The delegates ObjectSerializer and ObjectDeserializer are also being passed around. They can be disregarded if you don't need them.

  • To revert to the old date/time formats for JsonCompatable remove the DateTime8601Converter and add the DateTimeConverter with the doubleQuotes constructor parameter set to true. Example:

    new SerializerBuilder()
        .WithoutTypeConverter<YamlDotNet.Serialization.Converters.DateTime8601Converter>()
        .WithTypeConverter(new YamlDotNet.Serialization.Converters.DateTimeConverter(doubleQuotes: true))
    .Build();
  • on Mark, Cursor, SimpleKey the position property data types changed from int to long

15.3.0

  • Merge pull request #​910 from lahma/symbols
    Include symbols and deterministic build

  • Merge pull request #​930 from MrLuje/fsharp-option
    Add FSharpOption support

15.1.6

  • Merge pull request #​808 from tomer-amir/fix-hash-code-infinite-recursion
    Fix infinite recursion of the hash code function of YamlMappingNode

  • Merge pull request #​924 from kasperk81/frameworknames
    use correct framework

15.1.4

  • Merge pull request #​903 from lahma/license-expression
    Switch to using PackageLicenseExpression

  • Merge pull request #​904 from airbreather/fix-656
    Add a regression test for #​656

15.1.2

  • Merge pull request #​912 from EdwardCooke/ec-732
    Fixed #​732, quote strings starting with whitespace characters

15.1.1

  • Merge pull request #​902 from EdwardCooke/ec-901
    Fixed #​901 - private constructor and tag issue

15.1.0

  • Update the NuGet API key

  • Merge pull request #​897 from EdwardCooke/ec-net80-enumsasnumbers
    Enables #​773
    Adds naming conventions for convert enums to/from scalars
    Adds .NET8 binaries
    Adds support for custom formatting of enums, easy to expose enums as integers or whatever else.
    Quotes necessary enum strings (Null for example)
    Breaking: For those that get impacted pass in NullNamingConvention.Instance to the EnumNamingConvetion arguments on the constructor
    Breaking: Removed many of the redundant constructors for the classes, pass in the old default values to the new constructors

  • Merge pull request #​898 from EdwardCooke/ec-removeoldframeworks
    Breaking: Removes old frameworks, .net35, .net45

  • Merge pull request #​895 from stijnherreman/issue-677
    Make the type converters available to custom pre-processing phase visitors.

  • Merge pull request #​899 from EdwardCooke/ec-includenet80
    Added .net8 libraries to appveyor

  • Merge pull request #​887 from dougbu/dougbu/blank.lines.886
    Handle blank lines in Yaml.Text()

13.7.1

  • Merge pull request #​859 from EdwardCooke/ec-858-static-typeresolver-enums
    Special case on statictyperesolver for enums

13.7.0

  • Merge pull request #​856 from prochnowc/code-generation-object
    Added support for serialization and deserialization of 'object' to static code generation

  • Merge pull request #​839 from stijnherreman/dateonly-timeonly
    Implement DateOnly and TimeOnly converters.

13.5.2

  • Merge pull request #​855 from prochnowc/support-collections-with-arrays
    Fix code generation for Dictionary and List which use Array values

13.5.1

  • Merge pull request #​853 from prochnowc/static-external-model
    Fix multiple use of YamlSerializableAttribute

13.5.0

  • Merge pull request #​852 from prochnowc/static-external-model
    Add support for including types defined in another assembly in static code generation

13.4.0

  • Merge pull request #​824 from 64J0/64J0-patch-1
    F# samples

  • Merge pull request #​843 from EdwardCooke/ec-785-callbacks
    Added on onserialized/onserializing and ondeserialized/ondeserializing

13.3.1

  • Merge pull request #​834 from EdwardCooke/ec-810-nullyamlstreamscalars
    Support null values in YamlScalarNode for YamlStream

  • Merge pull request #​835 from EdwardCooke/ec-817-keynotappliedtoquotedscalars
    Set IsKey on quoted scalar keys

  • Merge pull request #​836 from EdwardCooke/ec-815-datetimeoffset
    Added a DateTimeOffsetConverter with a sample on usage

  • Merge pull request #​837 from EdwardCooke/ec-792-testsinnonenglish
    Fix tests running in cultures using different cultures

  • Merge pull request #​841 from EdwardCooke/ec-838-utfcharsets
    Escaped UTF-16/32 with UTF-8 surrogates

13.2.0

  • Merge pull request #​821 from rudolfolah/deserialize-generic-objects-error-message-and-sample
    Deserialize generic objects sample

  • Merge pull request #​825 from rbnswartz/rs/optimization-for-scanner
    Use a span to reduce string allocations

  • Merge pull request #​782 from hemnstill/mergingparser_with_aliases_try2
    MergingParser deserializer can now handle nested NodeSequence with aliases (try2)

  • Merge pull request #​778 from rutger-dijkstra/fix-block-level-quoted-strings
    Quoted scalars are flow scalars only if flowLevel > 0

  • Merge pull request #​832 from FyiurAmron/add_missing_methods_and_reorder
    Add missing methods to (de)serializer interfaces and implementations

  • Merge pull request #​827 from tymokvo/add-force-scalar-style
    Add default scalar style

13.1.1

  • Merge pull request #​814 from YihaoOct/yihao/fix-comments
    Fix Emitter to handle comments between a mapping key and a mapping/sequence value

Commits viewable in compare view.

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

---
updated-dependencies:
- dependency-name: YamlDotNet
  dependency-version: 16.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 11, 2025

Labels

The following labels could not be found: dependencies, nuget. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants