Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

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

Updated coverlet.collector from 6.0.2 to 6.0.4.

Updated Microsoft.NET.Test.Sdk from 17.9.0 to 17.13.0.

Release notes

Sourced from Microsoft.NET.Test.Sdk's releases.

17.13.0

What's Changed

New Contributors

Full Changelog: microsoft/vstest@v17.12.0...v17.13.0

17.12.0

What's Changed

Internal and infrastructure fixes:

Full Changelog: microsoft/vstest@v17.11.1...v17.12.0

17.11.1

What's Changed

Full Changelog: microsoft/vstest@v17.11.0...v17.11.1

17.11.0

What's Changed

New Contributors

Full Changelog: microsoft/vstest@v17.10.0...v17.11.0-release-24352-06

17.11.0-release-24373-02

What's Changed

Full Changelog: microsoft/vstest@v17.11.0-release-24352-06...v17.11.0-release-24373-02

17.11.0-release-24352-06

What's Changed

New Contributors

Full Changelog: microsoft/vstest@v17.10.0...v17.11.0-release-24352-06

17.10.0

What's Changed

And many infrastructure related changes and updates.

New Contributors

Full Changelog: microsoft/vstest@v17.9.0...v17.10.0

17.10.0-release-24177-07

What's Changed

New Contributors

And many infrastructure related changes to migrate our pipelines to common build system.

Full Changelog: microsoft/vstest@v17.10.0-preview-24080-01...v17.10.0-release-24177-07

17.10.0-preview-24080-01

What's Changed

New Contributors

Full Changelog: microsoft/vstest@v17.9.0-preview-23577-04...v17.10.0-preview-24080-01

Commits viewable in compare view.

Updated Moq from 4.20.70 to 4.20.72.

Release notes

Sourced from Moq's releases.

4.20.72

What's Changed

🔨 Other

Full Changelog: devlooped/moq@v4.20.71...v4.20.72

4.20.71

What's Changed

🔨 Other

New Contributors

Full Changelog: devlooped/moq@v4.20.70...v4.20.71

Commits viewable in compare view.

Updated NUnit from 3.14.0 to 4.3.2.

Release notes

Sourced from NUnit's releases.

4.3.2

This is a hotfix release.
See release notes for details.

4.3.1

This is a hotfix release.
See release notes for details.

4.3.0

See release notes

4.2.2

Hotfix for fixing regression bug #​4802

What's Changed

Full Changelog: nunit/nunit@4.2.1...4.2.2

4.2.1

Hotfix release for Issue #​4794 and #​4795, affecting .Net Framework.

4.2.0

See release notes

4.1.0

See release notes

4.0.1

Patch release to fix windows targets

See release notes
and
See migration guide

4.0.0

See release notes
and
See migration guide

4.0.0-beta.1

See release notes
and information

Commits viewable in compare view.

Updated NUnit3TestAdapter from 4.5.0 to 5.0.0.

Release notes

Sourced from NUnit3TestAdapter's releases.

5.0.0

See release notes

4.6.0

See release notes

Commits viewable in compare view.

Updated System.CommandLine from 2.0.0-beta4.22272.1 to 2.0.0-beta6.25358.103.

Release notes

Sourced from System.CommandLine's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated System.CommandLine.NamingConventionBinder from 2.0.0-beta4.22272.1 to 2.0.0-beta5.25306.1.

Release notes

Sourced from System.CommandLine.NamingConventionBinder's releases.

2.0.0-beta5.25306.1

Announcing System.CommandLine 2.0.0-beta5 and our path to a stable release (#​2576)

What's Changed

Commits viewable in compare view.

Updated YamlDotNet from 15.1.2 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

Commits viewable in compare view.

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)

Bumps coverlet.collector from 6.0.2 to 6.0.4
Bumps Microsoft.NET.Test.Sdk from 17.9.0 to 17.13.0
Bumps Moq from 4.20.70 to 4.20.72
Bumps NUnit from 3.14.0 to 4.3.2
Bumps NUnit3TestAdapter from 4.5.0 to 5.0.0
Bumps System.CommandLine from 2.0.0-beta4.22272.1 to 2.0.0-beta6.25358.103
Bumps System.CommandLine.NamingConventionBinder from 2.0.0-beta4.22272.1 to 2.0.0-beta5.25306.1
Bumps YamlDotNet from 15.1.2 to 16.3.0

---
updated-dependencies:
- dependency-name: coverlet.collector
  dependency-version: 6.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 17.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Moq
  dependency-version: 4.20.72
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: NUnit
  dependency-version: 4.3.2
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: NUnit3TestAdapter
  dependency-version: 5.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: System.CommandLine
  dependency-version: 2.0.0-beta6.25358.103
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: System.CommandLine.NamingConventionBinder
  dependency-version: 2.0.0-beta5.25306.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
- 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 dependabot bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels Aug 5, 2025
@dependabot dependabot bot requested a review from a team as a code owner August 5, 2025 08:54
Copy link

github-actions bot commented Aug 5, 2025

Unit Test Results

0 tests   - 42   0 ✅  - 42   0s ⏱️ ±0s
0 suites  -  1   0 💤 ± 0 
0 files    -  1   0 ❌ ± 0 

Results for commit 05c27c7. ± Comparison against base commit 6f7dffe.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
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