Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 13, 2025

Updated AwesomeAssertions from 9.1.0 to 9.2.0.

Release notes

Sourced from AwesomeAssertions's releases.

9.2.0

What's Changed

New features

Improvements

Fixes

Documentation

Dependencies

Others

Commits viewable in compare view.

Updated DotNet.ReproducibleBuilds from 1.2.25 to 1.2.39.

Release notes

Sourced from DotNet.ReproducibleBuilds's releases.

1.2.39

Additions

Removals

Changed

Tidying up

New Contributors

Full Changelog: dotnet/reproducible-builds@v1.2.25...v1.2.39

Commits viewable in compare view.

Updated Microsoft.NET.ILLink.Tasks from 9.0.8 to 9.0.9.

Release notes

Sourced from Microsoft.NET.ILLink.Tasks's releases.

9.0.9

Release

What's Changed

Full Changelog: dotnet/runtime@v9.0.8...v9.0.9

Commits viewable in compare view.

Updated Microsoft.NET.Test.Sdk from 17.14.1 to 18.0.0.

Release notes

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

18.0.0

What's Changed

Internal fixes and updates

Commits viewable in compare view.

Updated Microsoft.OpenApi.Readers from 1.6.25 to 1.6.28.

Release notes

Sourced from Microsoft.OpenApi.Readers's releases.

1.6.28

1.6.28 (2025-10-06)

Bug Fixes

  • Improve server creation and URL handling logic to maintain port (a15c50e)
  • missing deserialization for header content property in 3.0 (7c65a49)
  • missing deserialization for header content property in 3.0 (e256d29)

1.6.27

1.6.27 (2025-10-02)

Bug Fixes

  • typo in encoding allow reserved deserialization (6eeca52)
  • typo in encoding allow reserved deserialization (3fadb7d)

1.6.26

1.6.26 (2025-09-19)

Bug Fixes

  • OpenApiEncoding explode default value when using form style (09b5a28)

Commits viewable in compare view.

Updated MSTest.TestAdapter from 3.10.3 to 4.0.0.

Release notes

Sourced from MSTest.TestAdapter's releases.

4.0.0

What is new?

Assert.That

MSTest v4 adds a new type of assertion, that allows you to write any expression, and it will inspect the result to give you more information on failure. Providing a very flexible way to assert complicated expressions. Here a simple example:

[TestClass]
public sealed class Test1
{
    [TestMethod]
    public void TestMethod1()
    {
        var animal = "Tiger";
        var zoo = new Zoo();
        Assert.That(() => zoo.GetAnimal() == animal);
    }
}

public class Zoo
{
    public string GetAnimal()
    {
        return "Giraffe";
    }
}
Assert.That(() => zoo.GetAnimal() == animal) failed.
Details:
    animal = "Tiger"     
    zoo.GetAnimal() = "Giraffe"

CallerArgumentExpression

CallerArgumentExpression is consumed by all assertions, to make them aware of the expressions used in the assertion. In the example below, we now know what both the expected and actual values are. But also what value they come from, giving us opportunity to provide better error messages:

[TestClass]
public sealed class Test1
{
    [TestMethod]
    public void TestMethod1()
    {
        string animal = null;
        Assert.AreEqual("Giraffe", animal);
    }
}
 ... (truncated)

## 4.0.0-preview.25372.6

This is a prerelease of MSTest v4. Docs on migration from v3 to v4 are in progress. We are working towards addressing the items tracked in #​1285 and #​5762

## 4.0.0-preview.25358.7

This is a prerelease of MSTest v4. Docs on migration from v3 to v4 are in progress. We are working towards addressing the items tracked in https://github.com/microsoft/testfx/issues/1285 and https://github.com/microsoft/testfx/issues/5762

## 3.11.0

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.11.0)

## 3.10.5

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.5)


## 3.10.4

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.4)


Commits viewable in [compare view](https://github.com/microsoft/testfx/compare/v3.10.3...v4.0.0).
</details>

Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 3.10.3 to 4.0.0.

<details>
<summary>Release notes</summary>

_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._

## 4.0.0

## What is new?

### Assert.That 

MSTest v4 adds a new type of assertion, that allows you to write any expression, and it will inspect the result to give you more information on failure. Providing a very flexible way to assert complicated expressions. Here a simple example:

```csharp
[TestClass]
public sealed class Test1
{
    [TestMethod]
    public void TestMethod1()
    {
        var animal = "Tiger";
        var zoo = new Zoo();
        Assert.That(() => zoo.GetAnimal() == animal);
    }
}

public class Zoo
{
    public string GetAnimal()
    {
        return "Giraffe";
    }
}
Assert.That(() => zoo.GetAnimal() == animal) failed.
Details:
    animal = "Tiger"     
    zoo.GetAnimal() = "Giraffe"

CallerArgumentExpression

CallerArgumentExpression is consumed by all assertions, to make them aware of the expressions used in the assertion. In the example below, we now know what both the expected and actual values are. But also what value they come from, giving us opportunity to provide better error messages:

[TestClass]
public sealed class Test1
{
    [TestMethod]
    public void TestMethod1()
    {
        string animal = null;
        Assert.AreEqual("Giraffe", animal);
    }
}
 ... (truncated)

## 4.0.0-preview.25372.6

This is a prerelease of MSTest v4. Docs on migration from v3 to v4 are in progress. We are working towards addressing the items tracked in #​1285 and #​5762

## 4.0.0-preview.25358.7

This is a prerelease of MSTest v4. Docs on migration from v3 to v4 are in progress. We are working towards addressing the items tracked in https://github.com/microsoft/testfx/issues/1285 and https://github.com/microsoft/testfx/issues/5762

## 3.11.0

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.11.0)

## 3.10.5

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.5)


## 3.10.4

See the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.4)


Commits viewable in [compare view](https://github.com/microsoft/testfx/compare/v3.10.3...v4.0.0).
</details>

Updated [System.Text.Json](https://github.com/dotnet/runtime) from 9.0.8 to 9.0.9.

<details>
<summary>Release notes</summary>

_Sourced from [System.Text.Json's releases](https://github.com/dotnet/runtime/releases)._

## 9.0.9

[Release](https://github.com/dotnet/runtime/releases/tag/v9.0.9)

## What's Changed
* [automated] Merge branch 'release/9.0' => 'release/9.0-staging' by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/117671
* [release/9.0-staging] [Test Only] Fix BuildChainCustomTrustStore test by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/117761
* [release/9.0-staging] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117742
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117872
* [release/9.0-staging] Update dependencies from dotnet/sdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117873
* Revert "[release/9.0-staging] Update dependencies from dotnet/sdk" by @​lewing in https://github.com/dotnet/runtime/pull/118001
* [release/9.0-staging] Update dependencies from dotnet/cecil by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117910
* [release/9.0-staging] Update dependencies from dotnet/icu by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117962
* [release/9.0-staging] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118080
* [release/9.0-staging] Update dependencies from dotnet/xharness by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/118114
* [release/9.0-staging] Fix broken debugger/debuggee startup handshake protocol on macOS26. by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118212
* [release/9.0-staging] [NRBF] Allow the users to decode System.Nullable<UserStruct> by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118328
* [release/9.0-staging] [Test Only] Disable/modify some TimeZoneInfoTests on Android by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118455
* Update branding to 9.0.9 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/118349
* Merging internal commits for release/9.0 by @​vseanreesermsft in https://github.com/dotnet/runtime/pull/118451
* [release/9.0-staging] Revert "Remove custom allocator." by @​github-actions[bot] in https://github.com/dotnet/runtime/pull/118279
* [release/9.0] Merge release/9.0-staging changes by @​krwq in https://github.com/dotnet/runtime/pull/118764
* [release/9.0] Update dependencies from dotnet/emsdk by @​dotnet-maestro[bot] in https://github.com/dotnet/runtime/pull/117879


**Full Changelog**: https://github.com/dotnet/runtime/compare/v9.0.8...v9.0.9

Commits viewable in [compare view](https://github.com/dotnet/runtime/compare/v9.0.8...v9.0.9).
</details>

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-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions


</details>

Bumps AwesomeAssertions from 9.1.0 to 9.2.0
Bumps DotNet.ReproducibleBuilds from 1.2.25 to 1.2.39
Bumps Microsoft.NET.ILLink.Tasks from 9.0.8 to 9.0.9
Bumps Microsoft.NET.Test.Sdk from 17.14.1 to 18.0.0
Bumps Microsoft.OpenApi.Readers from 1.6.25 to 1.6.28
Bumps MSTest.TestAdapter from 3.10.3 to 4.0.0
Bumps MSTest.TestFramework from 3.10.3 to 4.0.0
Bumps System.Text.Json from 9.0.8 to 9.0.9

---
updated-dependencies:
- dependency-name: AwesomeAssertions
  dependency-version: 9.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: DotNet.ReproducibleBuilds
  dependency-version: 1.2.39
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: Microsoft.NET.ILLink.Tasks
  dependency-version: 9.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: Microsoft.OpenApi.Readers
  dependency-version: 1.6.28
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: MSTest.TestAdapter
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: MSTest.TestFramework
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: System.Text.Json
  dependency-version: 9.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: System.Text.Json
  dependency-version: 9.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
...

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 Oct 13, 2025
@github-actions github-actions bot enabled auto-merge (squash) October 13, 2025 14:40
Copy link

coderabbitai bot commented Oct 13, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions github-actions bot merged commit b176606 into main Oct 13, 2025
4 checks passed
@github-actions github-actions bot deleted the dependabot/nuget/src/helpers/FixOpenApiSpec/all-06569726db branch October 13, 2025 14:46
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