Skip to content

Bump SharpYaml from 2.1.4 to 3.7.1#19686

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/src/SharpYaml-3.7.1
Open

Bump SharpYaml from 2.1.4 to 3.7.1#19686
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/src/SharpYaml-3.7.1

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 18, 2026

Updated SharpYaml from 2.1.4 to 3.7.1.

Release notes

Sourced from SharpYaml's releases.

3.7.1

Changes

✨ New Features

  • Add inheritance test (ec342ea3)

🐛 Bug Fixes

  • Fix source-gen YAML null strings (056e1e2e)

Full Changelog: 3.7.0...3.7.1

Published with dotnet-releaser

3.7.0

Changes

🐛 Bug Fixes

  • Apply UnknownDerivedTypeHandling.Fail to tag-based polymorphism (PR #​133) by @​fdcastel
  • Suppress SHARPYAML002 when a converter handles the type (PR #​140) by @​fdcastel

🚀 Enhancements

  • Clarify tag-only YamlDerivedType does not set default derived type (PR #​134) by @​fdcastel
  • Add YamlSerializerContext.CreateOptions for per-call option overrides (PR #​138) by @​fdcastel

📚 Documentation

  • Expand converter documentation with registration methods and priority (PR #​137) by @​fdcastel

🧰 Misc

  • Support C# required keyword in source generation and reflection (PR #​139) by @​fdcastel

Full Changelog: 3.6.0...3.7.0

Published with dotnet-releaser

3.6.0

Changes

🚀 Enhancements

  • Add support for OrderedDictionary<TKey, TValue> (.NET 9+) (PR #​131) by @​fdcastel
  • feat: add runtime derived type registration for cross-project polymorphism (PR #​132) by @​fdcastel

🧰 Misc

  • Avoid materializing dictionaries when serializing (0d973b53)
  • Deduplicate dictionary converter helpers (ebe1f709)
  • Eliminate source generator build warnings (e1b7f244)
  • Implement cross-project polymorphism (07592b22)

Full Changelog: 3.5.0...3.6.0

Published with dotnet-releaser

3.5.0

Changes

✨ New Features

  • Add object creation handling support (66710dab)

Full Changelog: 3.4.0...3.5.0

Published with dotnet-releaser

3.4.0

Changes

✨ New Features

  • Add YAML max depth guard (1535fb06)

Full Changelog: 3.3.0...3.4.0

Published with dotnet-releaser

3.3.0

Changes

✨ New Features

  • Add unmapped-member handling migration support (681a2de6)

🐛 Bug Fixes

  • Fix schema-aware scalar resolution (1e6500b0)

🧰 Misc

  • Harden nullable generator regression tests (bc51718a)

Full Changelog: 3.2.0...3.3.0

Published with dotnet-releaser

3.2.0

Changes

✨ New Features

  • Add back link to Tomlyn (98f6bd64)

🐛 Bug Fixes

  • Fix YAML source-generation root attributes (32e33360)

🧰 Misc

  • Support constructor attributes across serializers (84911d51)

Full Changelog: 3.1.0...3.2.0

Published with dotnet-releaser

3.1.0

Changes

🚀 Enhancements

  • Preallocate dictionaries with expected capacity (PR #​125) by @​SimonCropp

🧰 Misc

  • Use TryGetValue to avoid double dictionary lookup (PR #​126) by @​SimonCropp
  • Use file scope namespace (21f6daca)
  • Docs: convert API references to xref (7a0b9eae)
  • Support default derived type without discriminator for polymorphic deserialization (8575ff6c)
  • Support UnknownDerivedTypeHandling on YamlPolymorphicAttribute (b34654c7)
  • Support integer discriminators and ensure Json/Yaml attribute parity for polymorphism (93c1b768)

Full Changelog: 3.0.0...3.1.0

Published with dotnet-releaser

3.0.0

Changes

✨ New Features

  • Add instructions (bb5669ef)
  • Add SharpYaml3 specification (719972bd)
  • Add v3 serializer API skeleton and docs (a4207490)
  • Add source generator baseline and JSON attribute support (b0d00f30)
  • Add lossless syntax tree API with spans and tests (dc9c8be6)
  • Add v3 golden-file serializer coverage (5fdb8d67)
  • Add NativeAOT smoke sample project (63eb9a97)
  • Add YAML converter API surface (e9920ba9)
  • Add polymorphism via discriminator and tags (4ff9f17c)
  • Add net10 benchmark suite vs YamlDotNet (f44b8b1e)
  • Add core YAML scalar and mapping serializer tests (3d5a4064)
  • Add parser/scanner error-path coverage tests (3c24a48d)
  • Add Emitter edge-case tests (4b2971f0)
  • Add comprehensive YAML 1.2 spec edge case tests (713efcbf)
  • Add YamlAttribute base class (5c12b356)
  • Add lifecycle callbacks for YAML serialization (2ea55f29)
  • Add YamlExtensionData support for overflow properties (15aae5c2)
  • Add YamlConverterAttribute for custom converters (289a4d8e)
  • Add svg logo (a3229804)
  • Add benchmark results (7d4373b7)
  • Add netstandard2.0 target (PolySharp + conditional System.Text.Json) (32f3d46b)
  • Add built-in DateTime/Guid/TimeSpan converters (0fe77904)
  • Add site.yml workflow (0996915a)
  • Add IBufferWriter serialization overloads (7cf50ce0)
  • Add collection and non-string dictionary support (reflection) (8dcf1951)
  • Add merge key (<<) support for Core/Extended (cef01b1b)
  • Add net8.0 target framework (4e4c41b9)

🐛 Bug Fixes

  • Fix YAML writer escaping for control chars (9361d1fe)
  • Fix warnings in YamlSerializerOptions (ab23407e)
  • Fix: accept YAML 1.2 %YAML directives (ef0c9138)
  • Fix: improve EventReader.Expect exception message (59b0f632)
  • Fix: allow ':' in flow plain scalars (56535768)
  • Fix: stream TextReader deserialization (9366fe84)
  • Fix: make InsertionQueue internal (4c758ce3)
  • Fix anchor handling for immutable collections (40cb7294)
  • Fix site readme.md (4dd6c7bc)
  • Fix icons (ec9e0390)
  • Fix package readme inclusion (da9f3c5d)

🚀 Enhancements

  • Refactor typeinfo IO protocol and optimize YAML writing (05ad66f3)
  • Refactor reader/writer base, options record, JsonNamingPolicy (5bac5355)
    ... (truncated)

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 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)
###### Microsoft Reviewers: [Open in CodeFlow](https://microsoft.github.io/open-pr/?codeflow=https://github.com//pull/19686)

---
updated-dependencies:
- dependency-name: SharpYaml
  dependency-version: 3.7.1
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels May 18, 2026
@microsoft-github-policy-service microsoft-github-policy-service Bot enabled auto-merge (squash) May 18, 2026 00:20
@microsoft-github-policy-service microsoft-github-policy-service Bot added the auto-merge Automatically merge this PR label May 18, 2026
Copy link
Copy Markdown
Contributor

@microsoft-github-policy-service microsoft-github-policy-service Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:shipit:

Copy link
Copy Markdown
Contributor

@microsoft-github-policy-service microsoft-github-policy-service Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:shipit:

Copy link
Copy Markdown
Contributor

@microsoft-github-policy-service microsoft-github-policy-service Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:shipit:

Copy link
Copy Markdown
Contributor

@microsoft-github-policy-service microsoft-github-policy-service Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

:shipit:

@github-actions
Copy link
Copy Markdown
Contributor

Test this change out locally with the following install scripts (Action run 26006982239)

VSCode
  • Mac/Linux
    bash <(curl -Ls https://aka.ms/bicep/nightly-vsix.sh) --run-id 26006982239
  • Windows
    iex "& { $(irm https://aka.ms/bicep/nightly-vsix.ps1) } -RunId 26006982239"
Azure CLI
  • Mac/Linux
    bash <(curl -Ls https://aka.ms/bicep/nightly-cli.sh) --run-id 26006982239
  • Windows
    iex "& { $(irm https://aka.ms/bicep/nightly-cli.ps1) } -RunId 26006982239"

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

Labels

auto-merge Automatically merge this PR dependencies Pull requests that update a dependency file .NET Pull requests that update .net code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants