{"id":5095,"name":"MSTest.TestFramework","ecosystem":"nuget","repository_url":null,"issues_count":1907,"created_at":"2025-06-06T17:08:27.898Z","updated_at":"2025-06-06T17:08:27.898Z","purl":"pkg:nuget/MSTest.TestFramework","unique_repositories_count":435,"unique_repositories_count_past_30_days":14,"recent_issues":[{"uuid":"4576975209","node_id":"PR_kwDOB37xYM7iEiNz","number":8,"state":"closed","title":"Bump MSTest.TestFramework from 3.6.1 to 4.2.3","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":"2026-06-03T05:16:05.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-03T04:52:20.000Z","updated_at":"2026-06-03T05:16:15.000Z","time_to_close":1425,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"3.6.1","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 3.6.1 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\n## 4.2.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​422)\n\n## 4.2.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​421)\n\n## 4.1.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.1.0)\n\n## 4.0.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.0.2)\n\n## 4.0.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.0.1)\n\n## 4.0.0\n\n## What is new?\n\n### Assert.That \n\nMSTest 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:\n\n```csharp\n[TestClass]\npublic sealed class Test1\n{\n    [TestMethod]\n    public void TestMethod1()\n    {\n        var animal = \"Tiger\";\n        var zoo = new Zoo();\n        Assert.That(() =\u003e zoo.GetAnimal() == animal);\n    }\n}\n\npublic class Zoo\n{\n    public string GetAnimal()\n    {\n        return \"Giraffe\";\n    }\n}\n```\n\n```\nAssert.That(() =\u003e zoo.GetAnimal() == animal) failed.\nDetails:\n    animal = \"Tiger\"     \n    zoo.GetAnimal() = \"Giraffe\"\n```\n\n### CallerArgumentExpression\n\nCallerArgumentExpression 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:\n\n```csharp\n[TestClass]\npublic sealed class Test1\n{\n    [TestMethod]\n    public void TestMethod1()\n    {\n        string animal = null;\n        Assert.AreEqual(\"Giraffe\", animal);\n    }\n}\n ... (truncated)\n\n## 4.0.0-preview.25372.6\n\nThis 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\n\n## 4.0.0-preview.25358.7\n\nThis 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\n\n## 3.11.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.11.1)\n\n## 3.11.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.11.0)\n\n## 3.10.5\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.5)\n\n\n## 3.10.4\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.4)\n\n\n## 3.10.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.3)\n\n\n## 3.10.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.2)\n\n\n## 3.10.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.1)\n\n\n## 3.10.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.0)\n\n\n## 3.9.3\n\n## What's Changed\n\n* Simpler fix for dotnet test when using retry by @​Youssef1313 in #​5732. Note that this PR targets rel/3.9 branch. For 3.10, we did a different fix: https://github.com/microsoft/testfx/pull/5717\n\nSee the MSTest changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.9.3\nSee the Microsoft.Testing.Platform changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog-Platform.md#​1.7.3\n\n**Full Changelog**: https://github.com/microsoft/testfx/compare/v3.9.2...v3.9.3\n\n## 3.9.2\n\n## What's Changed\n\n* Fix MSTEST0042 (duplicate data row) false positive with Zero/NegativeZero by @​Youssef1313 in #​5684\n* Allow framework authors to use TestCase.FullyQualifiedName as the TestNodeUid by @​Youssef1313 in #​5658\n* Ensure TestMethodAttribute.Execute is run on the correct execution context by @​Youssef1313 in #​5688\n* Avoid loading System.Threading.Tasks.Extensions when not needed by @​Youssef1313 in #​5694\n* Fix UseAsync property in TestMethodAttribute derived classes to use type checks by @​Youssef1313 and @​Copilot in #​5708\n* Fix UnitTestRunner leaking some test class instances by @​Youssef1313 in #​5715\n\nSee the MSTest changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.9.2\nSee the Microsoft.Testing.Platform changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog-Platform.md#​1.7.2\n\n**Full Changelog**: https://github.com/microsoft/testfx/compare/v3.9.1...v3.9.2\n\n## 3.9.1\n\n## What's Changed\n* Make ConditionBaseAttribute.Mode public by @​youssef-backport-bot in https://github.com/microsoft/testfx/pull/5597\n* Add missing overload for Assert.Throws by @​youssef-backport-bot in https://github.com/microsoft/testfx/pull/5620\n* Fix System.MissingMethodException for KeyValuePair Deconstruction by @​youssef-backport-bot in https://github.com/microsoft/testfx/pull/5635\n* Run the whole ExecuteInternal logic under the right execution context by @​youssef-backport-bot in https://github.com/microsoft/testfx/pull/5646\n* VSTestBridge: Handle TestPropertyAttributes.Trait instead of special casing specific properties by @​youssef-backport-bot in https://github.com/microsoft/testfx/pull/5648\n\nSee the MSTest changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.9.1\nSee the Microsoft.Testing.Platform changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog-Platform.md#​1.7.1\n\n**Full Changelog**: https://github.com/microsoft/testfx/compare/v3.9.0...v3.9.1\n\n## 3.9.0\n\nIn this release we focused a lot on providing fixes for MSTest and Microsoft.Testing.Platform. The most notable new features and fixes are:\n\n## MSTest\n\n* Allow async test methods for UITestMethod on UWP and WinUI by @​Youssef1313 in https://github.com/microsoft/testfx/pull/5297\n* Add analyzer for duplicate data row by @​Youssef1313 in https://github.com/microsoft/testfx/pull/5144\n* Fix ClassCleanup not called when the first test in class is ignored by @​Youssef1313 in https://github.com/microsoft/testfx/pull/5070\n* Fix writing warnings outside of appdomain by @​nohwnd in https://github.com/microsoft/testfx/pull/5371\n\n## Microsoft.Testing.Platform\n\n* Add (alpha) Azure DevOps extension to report errors by @​nohwnd in https://github.com/microsoft/testfx/pull/5260\n* Kill testhost if writing hang dump fails by @​Youssef1313 in https://github.com/microsoft/testfx/pull/5538\n\nWe've also improved the `dotnet test` experience in dotnet SDK, especially around Retry plugin experience, and started dogfooding the experience in our own repository. Please check out how to enable the new `dotnet test` experience for Microsoft.Testing.Platform in net10 by [following this link](https://learn.microsoft.com/en-us/dotnet/core/testing/unit-testing-with-dotnet-test#microsofttestingplatform-mtp-mode-of-dotnet-test), and help us dogfood it.\n\n## New Contributors\n* @​stan-sz made their first contribution in https://github.com/microsoft/testfx/pull/5214\n* @​YoshiRulz made their first contribution in https://github.com/microsoft/testfx/pull/5281\n* @​bjornhellander made their first contribution in https://github.com/microsoft/testfx/pull/5300\n\n\n\nSee the MSTest changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.9.0\nSee the Microsoft.Testing.Platform changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog-Platform.md#​1.7.0\n\n**Full Changelog**: https://github.com/microsoft/testfx/compare/v3.8.3...v3.9.0\n\n## 3.9.0-preview.25167.10\n\n\n\n## 3.8.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.8.3)\n\n\n## 3.8.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.8.2)\n\n\n## 3.8.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.8.1)\n\n\n## 3.8.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.8.0)\n\n## Announcements\n\n- This release adds new Assert APIs related to throwing exceptions, collections, and strings. Refer to the changelog for more information.\n- This release adds support for generic test methods.\n- This release adds few new analyzers.\n- We added [`MSTestAnalysisMode`](https://learn.microsoft.com/en-us/dotnet/core/testing/mstest-analyzers/overview#mstestanalysismode). We encourage you to set this property to at least `Recommended`.\n- This release adds `RetryAttribute`\n- [Microsoft.Testing.Extensions.TrxReport](https://www.nuget.org/packages/Microsoft.Testing.Extensions.TrxReport) and [Microsoft.Testing.Extensions.CodeCoverage](https://www.nuget.org/packages/Microsoft.Testing.Extensions.CodeCoverage) are now a dependency of MSTest metapackage\n\n## 3.7.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.7.3)\n\n## 3.7.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.7.2)\n\n## 3.7.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.7.1)\n\n## 3.7.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.7.0)\n\n## Announcements\n\n[MSTest.Analyzers](https://www.nuget.org/packages/MSTest.Analyzers) is now a transitive dependency of [MSTest.TestFramework](https://www.nuget.org/packages/MSTest.TestFramework) and thus no longer needs to be manually installed.\n\nNote: The only rules enabled by default as warnings, which could potentially cause build errors when updating MSTest, have been carefully selected and thoroughly validated. These rules specifically address real runtime issues related to the usage of MSTest, ensuring that no purely stylistic or low-impact analyzers are enforced by default.\n\n## 3.6.4\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.6.4)\n\n## 3.6.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.6.3)\n\n## 3.6.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.6.2)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v3.6.1...v4.2.3).\n\u003c/details\u003e","html_url":"https://github.com/ordahari/DesignPatterns/pull/8","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/ordahari%2FDesignPatterns/issues/8","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/8/packages"},{"uuid":"4559765229","node_id":"PR_kwDOCqTBc87hMUBy","number":429,"state":"closed","title":"Bump MSTest.TestAdapter and MSTest.TestFramework","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":"2026-06-01T02:22:20.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-01T01:51:30.000Z","updated_at":"2026-06-01T02:22:22.000Z","time_to_close":1850,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestAdapter","repository_url":"https://github.com/microsoft/testfx"},{"name":"MSTest.TestFramework","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestAdapter](https://github.com/microsoft/testfx) from 4.1.0 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestAdapter's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\n## 4.2.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​422)\n\n## 4.2.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​421)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.1.0...v4.2.3).\n\u003c/details\u003e\n\nUpdated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/bervProject/ODataExample/pull/429","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/bervProject%2FODataExample/issues/429","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/429/packages"},{"uuid":"4510698938","node_id":"PR_kwDOOfTa1M7evLdd","number":271,"state":"open","title":"deps: Bump MSTest.TestFramework from 4.0.2 to 4.2.3","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-24T06:18:30.000Z","updated_at":"2026-05-24T06:19:27.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"deps: Bump","packages":[{"name":"MSTest.TestFramework","old_version":"4.0.2","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.0.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\n## 4.2.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​422)\n\n## 4.2.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​421)\n\n## 4.1.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.1.0)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.0.2...v4.2.3).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=4.0.2\u0026new-version=4.2.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e\n\n\u003c!-- Reviewable:start --\u003e\n- - -\nThis change is [\u003cimg src=\"https://reviewable.io/review_button.svg\" height=\"34\" align=\"absmiddle\" alt=\"Reviewable\"/\u003e](https://reviewable.io/reviews/PlagueHO/libris-maleficarum/271)\n\u003c!-- Reviewable:end --\u003e\n","html_url":"https://github.com/PlagueHO/Libris-Maleficarum/pull/271","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/PlagueHO%2FLibris-Maleficarum/issues/271","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/271/packages"},{"uuid":"4490404985","node_id":"PR_kwDOD0Xvk87duYgc","number":2901,"state":"closed","title":"Bump MSTest.TestFramework from 4.2.1 to 4.2.3","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-20T22:47:40.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-20T22:47:15.000Z","updated_at":"2026-05-20T22:47:41.000Z","time_to_close":25,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"4.2.1","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.1 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\n## 4.2.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​422)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.1...v4.2.3).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=4.2.1\u0026new-version=4.2.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/IEvangelist/samples/pull/2901","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/IEvangelist%2Fsamples/issues/2901","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/2901/packages"},{"uuid":"4490400586","node_id":"PR_kwDOD0Xvk87duXls","number":2897,"state":"closed","title":"Bump MSTest.TestFramework from 4.2.2 to 4.2.3","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-20T22:46:22.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-20T22:46:17.000Z","updated_at":"2026-05-20T22:46:30.000Z","time_to_close":5,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"4.2.2","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=4.2.2\u0026new-version=4.2.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/IEvangelist/samples/pull/2897","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/IEvangelist%2Fsamples/issues/2897","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/2897/packages"},{"uuid":"4487174771","node_id":"PR_kwDOFbVu5M7dj_NE","number":5074,"state":"open","title":"Bump MSTest.TestFramework from 3.9.3 to 4.2.3","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-20T14:08:41.000Z","updated_at":"2026-05-20T14:08:47.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"3.9.3","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 3.9.3 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\n## 4.2.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​422)\n\n## 4.2.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​421)\n\n## 4.1.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.1.0)\n\n## 4.0.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.0.2)\n\n## 4.0.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.0.1)\n\n## 4.0.0\n\n## What is new?\n\n### Assert.That \n\nMSTest 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:\n\n```csharp\n[TestClass]\npublic sealed class Test1\n{\n    [TestMethod]\n    public void TestMethod1()\n    {\n        var animal = \"Tiger\";\n        var zoo = new Zoo();\n        Assert.That(() =\u003e zoo.GetAnimal() == animal);\n    }\n}\n\npublic class Zoo\n{\n    public string GetAnimal()\n    {\n        return \"Giraffe\";\n    }\n}\n```\n\n```\nAssert.That(() =\u003e zoo.GetAnimal() == animal) failed.\nDetails:\n    animal = \"Tiger\"     \n    zoo.GetAnimal() = \"Giraffe\"\n```\n\n### CallerArgumentExpression\n\nCallerArgumentExpression 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:\n\n```csharp\n[TestClass]\npublic sealed class Test1\n{\n    [TestMethod]\n    public void TestMethod1()\n    {\n        string animal = null;\n        Assert.AreEqual(\"Giraffe\", animal);\n    }\n}\n ... (truncated)\n\n## 4.0.0-preview.25372.6\n\nThis 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\n\n## 4.0.0-preview.25358.7\n\nThis 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\n\n## 3.11.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.11.1)\n\n## 3.11.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.11.0)\n\n## 3.10.5\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.5)\n\n\n## 3.10.4\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.4)\n\n\n## 3.10.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.3)\n\n\n## 3.10.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.2)\n\n\n## 3.10.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.1)\n\n\n## 3.10.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.0)\n\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v3.9.3...v4.2.3).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=3.9.3\u0026new-version=4.2.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/mikeyhodl/docs-1/pull/5074","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikeyhodl%2Fdocs-1/issues/5074","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/5074/packages"},{"uuid":"4487154192","node_id":"PR_kwDOFbVu5M7dj64v","number":5072,"state":"closed","title":"Bump MSTest.TestFramework from 3.9.3 to 4.2.3","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":"2026-05-20T14:08:47.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-20T14:06:10.000Z","updated_at":"2026-05-20T14:08:50.000Z","time_to_close":157,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"3.9.3","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 3.9.3 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\n## 4.2.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​422)\n\n## 4.2.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​421)\n\n## 4.1.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.1.0)\n\n## 4.0.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.0.2)\n\n## 4.0.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.0.1)\n\n## 4.0.0\n\n## What is new?\n\n### Assert.That \n\nMSTest 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:\n\n```csharp\n[TestClass]\npublic sealed class Test1\n{\n    [TestMethod]\n    public void TestMethod1()\n    {\n        var animal = \"Tiger\";\n        var zoo = new Zoo();\n        Assert.That(() =\u003e zoo.GetAnimal() == animal);\n    }\n}\n\npublic class Zoo\n{\n    public string GetAnimal()\n    {\n        return \"Giraffe\";\n    }\n}\n```\n\n```\nAssert.That(() =\u003e zoo.GetAnimal() == animal) failed.\nDetails:\n    animal = \"Tiger\"     \n    zoo.GetAnimal() = \"Giraffe\"\n```\n\n### CallerArgumentExpression\n\nCallerArgumentExpression 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:\n\n```csharp\n[TestClass]\npublic sealed class Test1\n{\n    [TestMethod]\n    public void TestMethod1()\n    {\n        string animal = null;\n        Assert.AreEqual(\"Giraffe\", animal);\n    }\n}\n ... (truncated)\n\n## 4.0.0-preview.25372.6\n\nThis 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\n\n## 4.0.0-preview.25358.7\n\nThis 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\n\n## 3.11.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.11.1)\n\n## 3.11.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.11.0)\n\n## 3.10.5\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.5)\n\n\n## 3.10.4\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.4)\n\n\n## 3.10.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.3)\n\n\n## 3.10.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.2)\n\n\n## 3.10.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.1)\n\n\n## 3.10.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.0)\n\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v3.9.3...v4.2.3).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=3.9.3\u0026new-version=4.2.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/mikeyhodl/docs-1/pull/5072","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikeyhodl%2Fdocs-1/issues/5072","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/5072/packages"},{"uuid":"4474217362","node_id":"PR_kwDOLF_UCM7c6CWb","number":539,"state":"closed","title":"Bump MSTest.TestFramework from 4.2.2 to 4.2.3","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-19T05:23:05.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-19T03:42:45.000Z","updated_at":"2026-05-19T05:23:07.000Z","time_to_close":6020,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"4.2.2","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/ErikEJ/SqlServer.Rules/pull/539","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/ErikEJ%2FSqlServer.Rules/issues/539","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/539/packages"},{"uuid":"4462079847","node_id":"PR_kwDOHz9fFs7cT1Mw","number":175,"state":"closed","title":"Bump MSTest.TestFramework from 4.2.2 to 4.2.3","user":"dependabot[bot]","labels":["dependencies",".NET","auto-merge"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-17T03:03:24.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-17T02:56:46.000Z","updated_at":"2026-05-17T03:03:26.000Z","time_to_close":398,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"4.2.2","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=4.2.2\u0026new-version=4.2.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/Azure/bicep-shared-tools/pull/175","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/Azure%2Fbicep-shared-tools/issues/175","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/175/packages"},{"uuid":"4452515198","node_id":"PR_kwDOCws_Os7b1-O3","number":2088,"state":"closed","title":"Bump MSTest.TestAdapter and MSTest.TestFramework","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":4,"pull_request":true,"closed_at":"2026-05-23T06:50:52.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-15T08:39:19.000Z","updated_at":"2026-05-23T06:50:54.000Z","time_to_close":684693,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestAdapter","repository_url":"https://github.com/microsoft/testfx"},{"name":"MSTest.TestFramework","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestAdapter](https://github.com/microsoft/testfx) from 4.2.1 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestAdapter's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\n## 4.2.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​422)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.1...v4.2.3).\n\u003c/details\u003e\n\nUpdated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.1 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\n## 4.2.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​422)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.1...v4.2.3).\n\u003c/details\u003e","html_url":"https://github.com/microsoft/axe-pipelines-samples/pull/2088","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faxe-pipelines-samples/issues/2088","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/2088/packages"},{"uuid":"4451519060","node_id":"PR_kwDOHjLQ0M7by0K6","number":201,"state":"closed","title":"Bump MSTest.TestFramework from 4.2.2 to 4.2.3","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-15T05:40:46.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-15T05:30:56.000Z","updated_at":"2026-05-15T05:40:47.000Z","time_to_close":590,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"4.2.2","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=4.2.2\u0026new-version=4.2.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/joharasmus/SharpMathLib/pull/201","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/joharasmus%2FSharpMathLib/issues/201","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/201/packages"},{"uuid":"4450501321","node_id":"PR_kwDOJAAfXs7bvmFM","number":1202,"state":"closed","title":"Bump MSTest.TestAdapter and MSTest.TestFramework","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-16T11:17:31.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-15T01:24:48.000Z","updated_at":"2026-05-16T11:17:33.000Z","time_to_close":121963,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestAdapter","repository_url":"https://github.com/microsoft/testfx"},{"name":"MSTest.TestFramework","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestAdapter](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestAdapter's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\nUpdated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/joesdu/EasilyNET/pull/1202","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/joesdu%2FEasilyNET/issues/1202","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1202/packages"},{"uuid":"4450359242","node_id":"PR_kwDOAB1Qgs7bvKFM","number":558,"state":"closed","title":"Bump MSTest.TestFramework from 3.11.1 to 4.2.3","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-15T04:59:23.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-15T00:48:30.000Z","updated_at":"2026-05-15T04:59:29.000Z","time_to_close":15053,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"3.11.1","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 3.11.1 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\n## 4.2.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​422)\n\n## 4.2.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​421)\n\n## 4.1.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.1.0)\n\n## 4.0.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.0.2)\n\n## 4.0.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.0.1)\n\n## 4.0.0\n\n## What is new?\n\n### Assert.That \n\nMSTest 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:\n\n```csharp\n[TestClass]\npublic sealed class Test1\n{\n    [TestMethod]\n    public void TestMethod1()\n    {\n        var animal = \"Tiger\";\n        var zoo = new Zoo();\n        Assert.That(() =\u003e zoo.GetAnimal() == animal);\n    }\n}\n\npublic class Zoo\n{\n    public string GetAnimal()\n    {\n        return \"Giraffe\";\n    }\n}\n```\n\n```\nAssert.That(() =\u003e zoo.GetAnimal() == animal) failed.\nDetails:\n    animal = \"Tiger\"     \n    zoo.GetAnimal() = \"Giraffe\"\n```\n\n### CallerArgumentExpression\n\nCallerArgumentExpression 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:\n\n```csharp\n[TestClass]\npublic sealed class Test1\n{\n    [TestMethod]\n    public void TestMethod1()\n    {\n        string animal = null;\n        Assert.AreEqual(\"Giraffe\", animal);\n    }\n}\n ... (truncated)\n\n## 4.0.0-preview.25372.6\n\nThis 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\n\n## 4.0.0-preview.25358.7\n\nThis 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\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v3.11.1...v4.2.3).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=3.11.1\u0026new-version=4.2.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/jwt-dotnet/jwt/pull/558","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwt-dotnet%2Fjwt/issues/558","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/558/packages"},{"uuid":"4450210133","node_id":"PR_kwDOBgl5aM7busKx","number":145,"state":"closed","title":"Bump MSTest.TestAdapter and MSTest.TestFramework","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":["hsaito"],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-15T03:33:54.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-15T00:04:16.000Z","updated_at":"2026-05-15T03:33:55.000Z","time_to_close":12578,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestAdapter","repository_url":"https://github.com/microsoft/testfx"},{"name":"MSTest.TestFramework","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestAdapter](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestAdapter's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\nUpdated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/hsaito/MyNumber.NET/pull/145","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/hsaito%2FMyNumber.NET/issues/145","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/145/packages"},{"uuid":"4449980288","node_id":"PR_kwDOCOqa3c7bt9EJ","number":1490,"state":"open","title":"build: Bump MSTest.TestAdapter and MSTest.TestFramework","user":"dependabot[bot]","labels":["dependencies"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-14T23:07:02.000Z","updated_at":"2026-05-14T23:08:27.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build","packages":[{"name":"Bump MSTest.TestAdapter"},{"name":"MSTest.TestFramework","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestAdapter](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestAdapter's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\nUpdated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/talha0113/microsoft-account-profile-information/pull/1490","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/talha0113%2Fmicrosoft-account-profile-information/issues/1490","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1490/packages"},{"uuid":"4447865681","node_id":"PR_kwDOCgGO7s7bnKSS","number":234,"state":"closed","title":"bump: Bump MSTest.TestFramework from 4.2.2 to 4.2.3","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":"2026-05-14T17:21:28.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-14T17:17:39.000Z","updated_at":"2026-05-14T17:21:31.000Z","time_to_close":229,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"bump: Bump","packages":[{"name":"MSTest.TestFramework","old_version":"4.2.2","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=4.2.2\u0026new-version=4.2.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/Xyaneon/Xyaneon.Games.Cards/pull/234","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/Xyaneon%2FXyaneon.Games.Cards/issues/234","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/234/packages"},{"uuid":"4447503355","node_id":"PR_kwDODTDavM7bmBWr","number":389,"state":"closed","title":"Bump MSTest.TestFramework from 4.2.2 to 4.2.3","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":"2026-06-13T15:03:16.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-14T16:24:14.000Z","updated_at":"2026-06-13T15:03:19.000Z","time_to_close":2587142,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"4.2.2","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=4.2.2\u0026new-version=4.2.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/Analogy-LogViewer/Analogy.LogViewer.IISLogsProvider/pull/389","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/Analogy-LogViewer%2FAnalogy.LogViewer.IISLogsProvider/issues/389","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/389/packages"},{"uuid":"4388000980","node_id":"PR_kwDOAB1Qgs7Yl9eQ","number":547,"state":"closed","title":"Bump MSTest.TestFramework from 3.11.1 to 4.2.2","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-06T01:04:10.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-06T00:53:25.000Z","updated_at":"2026-05-06T01:04:19.000Z","time_to_close":645,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"3.11.1","new_version":"4.2.2","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 3.11.1 to 4.2.2.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​421)\n\n## 4.1.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.1.0)\n\n## 4.0.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.0.2)\n\n## 4.0.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.0.1)\n\n## 4.0.0\n\n## What is new?\n\n### Assert.That \n\nMSTest 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:\n\n```csharp\n[TestClass]\npublic sealed class Test1\n{\n    [TestMethod]\n    public void TestMethod1()\n    {\n        var animal = \"Tiger\";\n        var zoo = new Zoo();\n        Assert.That(() =\u003e zoo.GetAnimal() == animal);\n    }\n}\n\npublic class Zoo\n{\n    public string GetAnimal()\n    {\n        return \"Giraffe\";\n    }\n}\n```\n\n```\nAssert.That(() =\u003e zoo.GetAnimal() == animal) failed.\nDetails:\n    animal = \"Tiger\"     \n    zoo.GetAnimal() = \"Giraffe\"\n```\n\n### CallerArgumentExpression\n\nCallerArgumentExpression 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:\n\n```csharp\n[TestClass]\npublic sealed class Test1\n{\n    [TestMethod]\n    public void TestMethod1()\n    {\n        string animal = null;\n        Assert.AreEqual(\"Giraffe\", animal);\n    }\n}\n ... (truncated)\n\n## 4.0.0-preview.25372.6\n\nThis 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\n\n## 4.0.0-preview.25358.7\n\nThis 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\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/commits).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=3.11.1\u0026new-version=4.2.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/jwt-dotnet/jwt/pull/547","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwt-dotnet%2Fjwt/issues/547","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/547/packages"},{"uuid":"4379840244","node_id":"PR_kwDOL4CMTs7YLTWA","number":356,"state":"open","title":"Bump MSTest.TestFramework from 4.2.1 to 4.2.2","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-04T21:37:25.000Z","updated_at":"2026-05-04T21:41:55.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"4.2.1","new_version":"4.2.2","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.1 to 4.2.2.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\nNo release notes found for this version range.\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/commits).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=4.2.1\u0026new-version=4.2.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/sir-gon/algorithm-exercises-csharp/pull/356","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/sir-gon%2Falgorithm-exercises-csharp/issues/356","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/356/packages"},{"uuid":"4374788693","node_id":"PR_kwDOEbPFFM7X6k5f","number":52,"state":"closed","title":"chore: Bump MSTest.TestAdapter and MSTest.TestFramework","user":"dependabot[bot]","labels":["dependencies","nuget"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-18T10:46:54.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-04T07:38:19.000Z","updated_at":"2026-05-18T10:46:56.000Z","time_to_close":1220915,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore","packages":[{"name":"Bump MSTest.TestAdapter"},{"name":"MSTest.TestFramework","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestAdapter](https://github.com/microsoft/testfx) from 4.2.1 to 4.2.2.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestAdapter's releases](https://github.com/microsoft/testfx/releases)._\n\nNo release notes found for this version range.\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/commits).\n\u003c/details\u003e\n\nUpdated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.1 to 4.2.2.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\nNo release notes found for this version range.\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/commits).\n\u003c/details\u003e\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/tschroedter/Selkie.DefCon/pull/52","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/tschroedter%2FSelkie.DefCon/issues/52","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/52/packages"}],"issue_packages":[{"old_version":"3.6.1","new_version":"4.2.3","update_type":"major","path":null,"pr_created_at":"2026-06-03T04:52:20.000Z","version_change":"3.6.1 → 4.2.3","issue":{"uuid":"4576975209","node_id":"PR_kwDOB37xYM7iEiNz","number":8,"state":"closed","title":"Bump MSTest.TestFramework from 3.6.1 to 4.2.3","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":"2026-06-03T05:16:05.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-03T04:52:20.000Z","updated_at":"2026-06-03T05:16:15.000Z","time_to_close":1425,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"3.6.1","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 3.6.1 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\n## 4.2.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​422)\n\n## 4.2.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​421)\n\n## 4.1.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.1.0)\n\n## 4.0.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.0.2)\n\n## 4.0.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.0.1)\n\n## 4.0.0\n\n## What is new?\n\n### Assert.That \n\nMSTest 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:\n\n```csharp\n[TestClass]\npublic sealed class Test1\n{\n    [TestMethod]\n    public void TestMethod1()\n    {\n        var animal = \"Tiger\";\n        var zoo = new Zoo();\n        Assert.That(() =\u003e zoo.GetAnimal() == animal);\n    }\n}\n\npublic class Zoo\n{\n    public string GetAnimal()\n    {\n        return \"Giraffe\";\n    }\n}\n```\n\n```\nAssert.That(() =\u003e zoo.GetAnimal() == animal) failed.\nDetails:\n    animal = \"Tiger\"     \n    zoo.GetAnimal() = \"Giraffe\"\n```\n\n### CallerArgumentExpression\n\nCallerArgumentExpression 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:\n\n```csharp\n[TestClass]\npublic sealed class Test1\n{\n    [TestMethod]\n    public void TestMethod1()\n    {\n        string animal = null;\n        Assert.AreEqual(\"Giraffe\", animal);\n    }\n}\n ... (truncated)\n\n## 4.0.0-preview.25372.6\n\nThis 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\n\n## 4.0.0-preview.25358.7\n\nThis 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\n\n## 3.11.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.11.1)\n\n## 3.11.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.11.0)\n\n## 3.10.5\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.5)\n\n\n## 3.10.4\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.4)\n\n\n## 3.10.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.3)\n\n\n## 3.10.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.2)\n\n\n## 3.10.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.1)\n\n\n## 3.10.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.0)\n\n\n## 3.9.3\n\n## What's Changed\n\n* Simpler fix for dotnet test when using retry by @​Youssef1313 in #​5732. Note that this PR targets rel/3.9 branch. For 3.10, we did a different fix: https://github.com/microsoft/testfx/pull/5717\n\nSee the MSTest changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.9.3\nSee the Microsoft.Testing.Platform changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog-Platform.md#​1.7.3\n\n**Full Changelog**: https://github.com/microsoft/testfx/compare/v3.9.2...v3.9.3\n\n## 3.9.2\n\n## What's Changed\n\n* Fix MSTEST0042 (duplicate data row) false positive with Zero/NegativeZero by @​Youssef1313 in #​5684\n* Allow framework authors to use TestCase.FullyQualifiedName as the TestNodeUid by @​Youssef1313 in #​5658\n* Ensure TestMethodAttribute.Execute is run on the correct execution context by @​Youssef1313 in #​5688\n* Avoid loading System.Threading.Tasks.Extensions when not needed by @​Youssef1313 in #​5694\n* Fix UseAsync property in TestMethodAttribute derived classes to use type checks by @​Youssef1313 and @​Copilot in #​5708\n* Fix UnitTestRunner leaking some test class instances by @​Youssef1313 in #​5715\n\nSee the MSTest changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.9.2\nSee the Microsoft.Testing.Platform changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog-Platform.md#​1.7.2\n\n**Full Changelog**: https://github.com/microsoft/testfx/compare/v3.9.1...v3.9.2\n\n## 3.9.1\n\n## What's Changed\n* Make ConditionBaseAttribute.Mode public by @​youssef-backport-bot in https://github.com/microsoft/testfx/pull/5597\n* Add missing overload for Assert.Throws by @​youssef-backport-bot in https://github.com/microsoft/testfx/pull/5620\n* Fix System.MissingMethodException for KeyValuePair Deconstruction by @​youssef-backport-bot in https://github.com/microsoft/testfx/pull/5635\n* Run the whole ExecuteInternal logic under the right execution context by @​youssef-backport-bot in https://github.com/microsoft/testfx/pull/5646\n* VSTestBridge: Handle TestPropertyAttributes.Trait instead of special casing specific properties by @​youssef-backport-bot in https://github.com/microsoft/testfx/pull/5648\n\nSee the MSTest changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.9.1\nSee the Microsoft.Testing.Platform changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog-Platform.md#​1.7.1\n\n**Full Changelog**: https://github.com/microsoft/testfx/compare/v3.9.0...v3.9.1\n\n## 3.9.0\n\nIn this release we focused a lot on providing fixes for MSTest and Microsoft.Testing.Platform. The most notable new features and fixes are:\n\n## MSTest\n\n* Allow async test methods for UITestMethod on UWP and WinUI by @​Youssef1313 in https://github.com/microsoft/testfx/pull/5297\n* Add analyzer for duplicate data row by @​Youssef1313 in https://github.com/microsoft/testfx/pull/5144\n* Fix ClassCleanup not called when the first test in class is ignored by @​Youssef1313 in https://github.com/microsoft/testfx/pull/5070\n* Fix writing warnings outside of appdomain by @​nohwnd in https://github.com/microsoft/testfx/pull/5371\n\n## Microsoft.Testing.Platform\n\n* Add (alpha) Azure DevOps extension to report errors by @​nohwnd in https://github.com/microsoft/testfx/pull/5260\n* Kill testhost if writing hang dump fails by @​Youssef1313 in https://github.com/microsoft/testfx/pull/5538\n\nWe've also improved the `dotnet test` experience in dotnet SDK, especially around Retry plugin experience, and started dogfooding the experience in our own repository. Please check out how to enable the new `dotnet test` experience for Microsoft.Testing.Platform in net10 by [following this link](https://learn.microsoft.com/en-us/dotnet/core/testing/unit-testing-with-dotnet-test#microsofttestingplatform-mtp-mode-of-dotnet-test), and help us dogfood it.\n\n## New Contributors\n* @​stan-sz made their first contribution in https://github.com/microsoft/testfx/pull/5214\n* @​YoshiRulz made their first contribution in https://github.com/microsoft/testfx/pull/5281\n* @​bjornhellander made their first contribution in https://github.com/microsoft/testfx/pull/5300\n\n\n\nSee the MSTest changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.9.0\nSee the Microsoft.Testing.Platform changelog here: https://github.com/microsoft/testfx/blob/main/docs/Changelog-Platform.md#​1.7.0\n\n**Full Changelog**: https://github.com/microsoft/testfx/compare/v3.8.3...v3.9.0\n\n## 3.9.0-preview.25167.10\n\n\n\n## 3.8.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.8.3)\n\n\n## 3.8.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.8.2)\n\n\n## 3.8.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.8.1)\n\n\n## 3.8.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.8.0)\n\n## Announcements\n\n- This release adds new Assert APIs related to throwing exceptions, collections, and strings. Refer to the changelog for more information.\n- This release adds support for generic test methods.\n- This release adds few new analyzers.\n- We added [`MSTestAnalysisMode`](https://learn.microsoft.com/en-us/dotnet/core/testing/mstest-analyzers/overview#mstestanalysismode). We encourage you to set this property to at least `Recommended`.\n- This release adds `RetryAttribute`\n- [Microsoft.Testing.Extensions.TrxReport](https://www.nuget.org/packages/Microsoft.Testing.Extensions.TrxReport) and [Microsoft.Testing.Extensions.CodeCoverage](https://www.nuget.org/packages/Microsoft.Testing.Extensions.CodeCoverage) are now a dependency of MSTest metapackage\n\n## 3.7.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.7.3)\n\n## 3.7.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.7.2)\n\n## 3.7.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.7.1)\n\n## 3.7.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.7.0)\n\n## Announcements\n\n[MSTest.Analyzers](https://www.nuget.org/packages/MSTest.Analyzers) is now a transitive dependency of [MSTest.TestFramework](https://www.nuget.org/packages/MSTest.TestFramework) and thus no longer needs to be manually installed.\n\nNote: The only rules enabled by default as warnings, which could potentially cause build errors when updating MSTest, have been carefully selected and thoroughly validated. These rules specifically address real runtime issues related to the usage of MSTest, ensuring that no purely stylistic or low-impact analyzers are enforced by default.\n\n## 3.6.4\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.6.4)\n\n## 3.6.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.6.3)\n\n## 3.6.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.6.2)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v3.6.1...v4.2.3).\n\u003c/details\u003e","html_url":"https://github.com/ordahari/DesignPatterns/pull/8","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/ordahari%2FDesignPatterns/issues/8","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/8/packages"}},{"old_version":null,"new_version":null,"update_type":null,"path":null,"pr_created_at":"2026-06-01T01:51:30.000Z","version_change":null,"issue":{"uuid":"4559765229","node_id":"PR_kwDOCqTBc87hMUBy","number":429,"state":"closed","title":"Bump MSTest.TestAdapter and MSTest.TestFramework","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":"2026-06-01T02:22:20.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-01T01:51:30.000Z","updated_at":"2026-06-01T02:22:22.000Z","time_to_close":1850,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestAdapter","repository_url":"https://github.com/microsoft/testfx"},{"name":"MSTest.TestFramework","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestAdapter](https://github.com/microsoft/testfx) from 4.1.0 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestAdapter's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\n## 4.2.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​422)\n\n## 4.2.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​421)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.1.0...v4.2.3).\n\u003c/details\u003e\n\nUpdated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/bervProject/ODataExample/pull/429","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/bervProject%2FODataExample/issues/429","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/429/packages"}},{"old_version":"4.0.2","new_version":"4.2.3","update_type":"minor","path":null,"pr_created_at":"2026-05-24T06:18:30.000Z","version_change":"4.0.2 → 4.2.3","issue":{"uuid":"4510698938","node_id":"PR_kwDOOfTa1M7evLdd","number":271,"state":"open","title":"deps: Bump MSTest.TestFramework from 4.0.2 to 4.2.3","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-24T06:18:30.000Z","updated_at":"2026-05-24T06:19:27.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"deps: Bump","packages":[{"name":"MSTest.TestFramework","old_version":"4.0.2","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.0.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\n## 4.2.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​422)\n\n## 4.2.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​421)\n\n## 4.1.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.1.0)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.0.2...v4.2.3).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=4.0.2\u0026new-version=4.2.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e\n\n\u003c!-- Reviewable:start --\u003e\n- - -\nThis change is [\u003cimg src=\"https://reviewable.io/review_button.svg\" height=\"34\" align=\"absmiddle\" alt=\"Reviewable\"/\u003e](https://reviewable.io/reviews/PlagueHO/libris-maleficarum/271)\n\u003c!-- Reviewable:end --\u003e\n","html_url":"https://github.com/PlagueHO/Libris-Maleficarum/pull/271","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/PlagueHO%2FLibris-Maleficarum/issues/271","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/271/packages"}},{"old_version":"4.2.1","new_version":"4.2.3","update_type":"patch","path":null,"pr_created_at":"2026-05-20T22:47:15.000Z","version_change":"4.2.1 → 4.2.3","issue":{"uuid":"4490404985","node_id":"PR_kwDOD0Xvk87duYgc","number":2901,"state":"closed","title":"Bump MSTest.TestFramework from 4.2.1 to 4.2.3","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-20T22:47:40.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-20T22:47:15.000Z","updated_at":"2026-05-20T22:47:41.000Z","time_to_close":25,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"4.2.1","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.1 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\n## 4.2.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​422)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.1...v4.2.3).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=4.2.1\u0026new-version=4.2.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/IEvangelist/samples/pull/2901","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/IEvangelist%2Fsamples/issues/2901","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/2901/packages"}},{"old_version":"4.2.2","new_version":"4.2.3","update_type":"patch","path":null,"pr_created_at":"2026-05-20T22:46:17.000Z","version_change":"4.2.2 → 4.2.3","issue":{"uuid":"4490400586","node_id":"PR_kwDOD0Xvk87duXls","number":2897,"state":"closed","title":"Bump MSTest.TestFramework from 4.2.2 to 4.2.3","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-20T22:46:22.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-20T22:46:17.000Z","updated_at":"2026-05-20T22:46:30.000Z","time_to_close":5,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"4.2.2","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=4.2.2\u0026new-version=4.2.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/IEvangelist/samples/pull/2897","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/IEvangelist%2Fsamples/issues/2897","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/2897/packages"}},{"old_version":"3.9.3","new_version":"4.2.3","update_type":"major","path":null,"pr_created_at":"2026-05-20T14:08:41.000Z","version_change":"3.9.3 → 4.2.3","issue":{"uuid":"4487174771","node_id":"PR_kwDOFbVu5M7dj_NE","number":5074,"state":"open","title":"Bump MSTest.TestFramework from 3.9.3 to 4.2.3","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-20T14:08:41.000Z","updated_at":"2026-05-20T14:08:47.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"3.9.3","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 3.9.3 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\n## 4.2.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​422)\n\n## 4.2.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​421)\n\n## 4.1.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.1.0)\n\n## 4.0.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.0.2)\n\n## 4.0.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.0.1)\n\n## 4.0.0\n\n## What is new?\n\n### Assert.That \n\nMSTest 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:\n\n```csharp\n[TestClass]\npublic sealed class Test1\n{\n    [TestMethod]\n    public void TestMethod1()\n    {\n        var animal = \"Tiger\";\n        var zoo = new Zoo();\n        Assert.That(() =\u003e zoo.GetAnimal() == animal);\n    }\n}\n\npublic class Zoo\n{\n    public string GetAnimal()\n    {\n        return \"Giraffe\";\n    }\n}\n```\n\n```\nAssert.That(() =\u003e zoo.GetAnimal() == animal) failed.\nDetails:\n    animal = \"Tiger\"     \n    zoo.GetAnimal() = \"Giraffe\"\n```\n\n### CallerArgumentExpression\n\nCallerArgumentExpression 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:\n\n```csharp\n[TestClass]\npublic sealed class Test1\n{\n    [TestMethod]\n    public void TestMethod1()\n    {\n        string animal = null;\n        Assert.AreEqual(\"Giraffe\", animal);\n    }\n}\n ... (truncated)\n\n## 4.0.0-preview.25372.6\n\nThis 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\n\n## 4.0.0-preview.25358.7\n\nThis 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\n\n## 3.11.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.11.1)\n\n## 3.11.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.11.0)\n\n## 3.10.5\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.5)\n\n\n## 3.10.4\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.4)\n\n\n## 3.10.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.3)\n\n\n## 3.10.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.2)\n\n\n## 3.10.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.1)\n\n\n## 3.10.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.0)\n\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v3.9.3...v4.2.3).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=3.9.3\u0026new-version=4.2.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/mikeyhodl/docs-1/pull/5074","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikeyhodl%2Fdocs-1/issues/5074","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/5074/packages"}},{"old_version":"3.9.3","new_version":"4.2.3","update_type":"major","path":null,"pr_created_at":"2026-05-20T14:06:10.000Z","version_change":"3.9.3 → 4.2.3","issue":{"uuid":"4487154192","node_id":"PR_kwDOFbVu5M7dj64v","number":5072,"state":"closed","title":"Bump MSTest.TestFramework from 3.9.3 to 4.2.3","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":"2026-05-20T14:08:47.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-20T14:06:10.000Z","updated_at":"2026-05-20T14:08:50.000Z","time_to_close":157,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"3.9.3","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 3.9.3 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\n## 4.2.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​422)\n\n## 4.2.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​421)\n\n## 4.1.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.1.0)\n\n## 4.0.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.0.2)\n\n## 4.0.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.0.1)\n\n## 4.0.0\n\n## What is new?\n\n### Assert.That \n\nMSTest 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:\n\n```csharp\n[TestClass]\npublic sealed class Test1\n{\n    [TestMethod]\n    public void TestMethod1()\n    {\n        var animal = \"Tiger\";\n        var zoo = new Zoo();\n        Assert.That(() =\u003e zoo.GetAnimal() == animal);\n    }\n}\n\npublic class Zoo\n{\n    public string GetAnimal()\n    {\n        return \"Giraffe\";\n    }\n}\n```\n\n```\nAssert.That(() =\u003e zoo.GetAnimal() == animal) failed.\nDetails:\n    animal = \"Tiger\"     \n    zoo.GetAnimal() = \"Giraffe\"\n```\n\n### CallerArgumentExpression\n\nCallerArgumentExpression 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:\n\n```csharp\n[TestClass]\npublic sealed class Test1\n{\n    [TestMethod]\n    public void TestMethod1()\n    {\n        string animal = null;\n        Assert.AreEqual(\"Giraffe\", animal);\n    }\n}\n ... (truncated)\n\n## 4.0.0-preview.25372.6\n\nThis 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\n\n## 4.0.0-preview.25358.7\n\nThis 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\n\n## 3.11.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.11.1)\n\n## 3.11.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.11.0)\n\n## 3.10.5\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.5)\n\n\n## 3.10.4\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.4)\n\n\n## 3.10.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.3)\n\n\n## 3.10.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.2)\n\n\n## 3.10.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.1)\n\n\n## 3.10.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​3.10.0)\n\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v3.9.3...v4.2.3).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=3.9.3\u0026new-version=4.2.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/mikeyhodl/docs-1/pull/5072","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikeyhodl%2Fdocs-1/issues/5072","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/5072/packages"}},{"old_version":"4.2.2","new_version":"4.2.3","update_type":"patch","path":null,"pr_created_at":"2026-05-19T03:42:45.000Z","version_change":"4.2.2 → 4.2.3","issue":{"uuid":"4474217362","node_id":"PR_kwDOLF_UCM7c6CWb","number":539,"state":"closed","title":"Bump MSTest.TestFramework from 4.2.2 to 4.2.3","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-19T05:23:05.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-19T03:42:45.000Z","updated_at":"2026-05-19T05:23:07.000Z","time_to_close":6020,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"4.2.2","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/ErikEJ/SqlServer.Rules/pull/539","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/ErikEJ%2FSqlServer.Rules/issues/539","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/539/packages"}},{"old_version":"4.2.2","new_version":"4.2.3","update_type":"patch","path":null,"pr_created_at":"2026-05-17T02:56:46.000Z","version_change":"4.2.2 → 4.2.3","issue":{"uuid":"4462079847","node_id":"PR_kwDOHz9fFs7cT1Mw","number":175,"state":"closed","title":"Bump MSTest.TestFramework from 4.2.2 to 4.2.3","user":"dependabot[bot]","labels":["dependencies",".NET","auto-merge"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-17T03:03:24.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-17T02:56:46.000Z","updated_at":"2026-05-17T03:03:26.000Z","time_to_close":398,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"4.2.2","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=4.2.2\u0026new-version=4.2.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/Azure/bicep-shared-tools/pull/175","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/Azure%2Fbicep-shared-tools/issues/175","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/175/packages"}},{"old_version":null,"new_version":null,"update_type":null,"path":null,"pr_created_at":"2026-05-15T08:39:19.000Z","version_change":null,"issue":{"uuid":"4452515198","node_id":"PR_kwDOCws_Os7b1-O3","number":2088,"state":"closed","title":"Bump MSTest.TestAdapter and MSTest.TestFramework","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":4,"pull_request":true,"closed_at":"2026-05-23T06:50:52.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-15T08:39:19.000Z","updated_at":"2026-05-23T06:50:54.000Z","time_to_close":684693,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestAdapter","repository_url":"https://github.com/microsoft/testfx"},{"name":"MSTest.TestFramework","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestAdapter](https://github.com/microsoft/testfx) from 4.2.1 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestAdapter's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\n## 4.2.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​422)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.1...v4.2.3).\n\u003c/details\u003e\n\nUpdated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.1 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\n## 4.2.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​422)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.1...v4.2.3).\n\u003c/details\u003e","html_url":"https://github.com/microsoft/axe-pipelines-samples/pull/2088","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Faxe-pipelines-samples/issues/2088","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/2088/packages"}},{"old_version":"4.2.2","new_version":"4.2.3","update_type":"patch","path":null,"pr_created_at":"2026-05-15T05:30:56.000Z","version_change":"4.2.2 → 4.2.3","issue":{"uuid":"4451519060","node_id":"PR_kwDOHjLQ0M7by0K6","number":201,"state":"closed","title":"Bump MSTest.TestFramework from 4.2.2 to 4.2.3","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-15T05:40:46.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-15T05:30:56.000Z","updated_at":"2026-05-15T05:40:47.000Z","time_to_close":590,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"4.2.2","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=4.2.2\u0026new-version=4.2.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/joharasmus/SharpMathLib/pull/201","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/joharasmus%2FSharpMathLib/issues/201","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/201/packages"}},{"old_version":null,"new_version":null,"update_type":null,"path":null,"pr_created_at":"2026-05-15T01:24:48.000Z","version_change":null,"issue":{"uuid":"4450501321","node_id":"PR_kwDOJAAfXs7bvmFM","number":1202,"state":"closed","title":"Bump MSTest.TestAdapter and MSTest.TestFramework","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-16T11:17:31.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-15T01:24:48.000Z","updated_at":"2026-05-16T11:17:33.000Z","time_to_close":121963,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestAdapter","repository_url":"https://github.com/microsoft/testfx"},{"name":"MSTest.TestFramework","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestAdapter](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestAdapter's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\nUpdated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/joesdu/EasilyNET/pull/1202","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/joesdu%2FEasilyNET/issues/1202","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1202/packages"}},{"old_version":"3.11.1","new_version":"4.2.3","update_type":"major","path":null,"pr_created_at":"2026-05-15T00:48:30.000Z","version_change":"3.11.1 → 4.2.3","issue":{"uuid":"4450359242","node_id":"PR_kwDOAB1Qgs7bvKFM","number":558,"state":"closed","title":"Bump MSTest.TestFramework from 3.11.1 to 4.2.3","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-15T04:59:23.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-15T00:48:30.000Z","updated_at":"2026-05-15T04:59:29.000Z","time_to_close":15053,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"3.11.1","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 3.11.1 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\n## 4.2.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​422)\n\n## 4.2.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​421)\n\n## 4.1.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.1.0)\n\n## 4.0.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.0.2)\n\n## 4.0.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.0.1)\n\n## 4.0.0\n\n## What is new?\n\n### Assert.That \n\nMSTest 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:\n\n```csharp\n[TestClass]\npublic sealed class Test1\n{\n    [TestMethod]\n    public void TestMethod1()\n    {\n        var animal = \"Tiger\";\n        var zoo = new Zoo();\n        Assert.That(() =\u003e zoo.GetAnimal() == animal);\n    }\n}\n\npublic class Zoo\n{\n    public string GetAnimal()\n    {\n        return \"Giraffe\";\n    }\n}\n```\n\n```\nAssert.That(() =\u003e zoo.GetAnimal() == animal) failed.\nDetails:\n    animal = \"Tiger\"     \n    zoo.GetAnimal() = \"Giraffe\"\n```\n\n### CallerArgumentExpression\n\nCallerArgumentExpression 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:\n\n```csharp\n[TestClass]\npublic sealed class Test1\n{\n    [TestMethod]\n    public void TestMethod1()\n    {\n        string animal = null;\n        Assert.AreEqual(\"Giraffe\", animal);\n    }\n}\n ... (truncated)\n\n## 4.0.0-preview.25372.6\n\nThis 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\n\n## 4.0.0-preview.25358.7\n\nThis 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\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v3.11.1...v4.2.3).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=3.11.1\u0026new-version=4.2.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/jwt-dotnet/jwt/pull/558","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwt-dotnet%2Fjwt/issues/558","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/558/packages"}},{"old_version":null,"new_version":null,"update_type":null,"path":null,"pr_created_at":"2026-05-15T00:04:16.000Z","version_change":null,"issue":{"uuid":"4450210133","node_id":"PR_kwDOBgl5aM7busKx","number":145,"state":"closed","title":"Bump MSTest.TestAdapter and MSTest.TestFramework","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":["hsaito"],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-15T03:33:54.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-15T00:04:16.000Z","updated_at":"2026-05-15T03:33:55.000Z","time_to_close":12578,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestAdapter","repository_url":"https://github.com/microsoft/testfx"},{"name":"MSTest.TestFramework","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestAdapter](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestAdapter's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\nUpdated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/hsaito/MyNumber.NET/pull/145","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/hsaito%2FMyNumber.NET/issues/145","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/145/packages"}},{"old_version":null,"new_version":null,"update_type":null,"path":null,"pr_created_at":"2026-05-14T23:07:02.000Z","version_change":null,"issue":{"uuid":"4449980288","node_id":"PR_kwDOCOqa3c7bt9EJ","number":1490,"state":"open","title":"build: Bump MSTest.TestAdapter and MSTest.TestFramework","user":"dependabot[bot]","labels":["dependencies"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-14T23:07:02.000Z","updated_at":"2026-05-14T23:08:27.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build","packages":[{"name":"Bump MSTest.TestAdapter"},{"name":"MSTest.TestFramework","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestAdapter](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestAdapter's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\nUpdated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/talha0113/microsoft-account-profile-information/pull/1490","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/talha0113%2Fmicrosoft-account-profile-information/issues/1490","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1490/packages"}},{"old_version":"4.2.2","new_version":"4.2.3","update_type":"patch","path":null,"pr_created_at":"2026-05-14T17:17:39.000Z","version_change":"4.2.2 → 4.2.3","issue":{"uuid":"4447865681","node_id":"PR_kwDOCgGO7s7bnKSS","number":234,"state":"closed","title":"bump: Bump MSTest.TestFramework from 4.2.2 to 4.2.3","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":"2026-05-14T17:21:28.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-14T17:17:39.000Z","updated_at":"2026-05-14T17:21:31.000Z","time_to_close":229,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"bump: Bump","packages":[{"name":"MSTest.TestFramework","old_version":"4.2.2","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=4.2.2\u0026new-version=4.2.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/Xyaneon/Xyaneon.Games.Cards/pull/234","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/Xyaneon%2FXyaneon.Games.Cards/issues/234","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/234/packages"}},{"old_version":"4.2.2","new_version":"4.2.3","update_type":"patch","path":null,"pr_created_at":"2026-05-14T16:24:14.000Z","version_change":"4.2.2 → 4.2.3","issue":{"uuid":"4447503355","node_id":"PR_kwDODTDavM7bmBWr","number":389,"state":"closed","title":"Bump MSTest.TestFramework from 4.2.2 to 4.2.3","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":"2026-06-13T15:03:16.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-14T16:24:14.000Z","updated_at":"2026-06-13T15:03:19.000Z","time_to_close":2587142,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"4.2.2","new_version":"4.2.3","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.2 to 4.2.3.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.3\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​423)\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/compare/v4.2.2...v4.2.3).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=4.2.2\u0026new-version=4.2.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/Analogy-LogViewer/Analogy.LogViewer.IISLogsProvider/pull/389","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/Analogy-LogViewer%2FAnalogy.LogViewer.IISLogsProvider/issues/389","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/389/packages"}},{"old_version":"3.11.1","new_version":"4.2.2","update_type":"major","path":null,"pr_created_at":"2026-05-06T00:53:25.000Z","version_change":"3.11.1 → 4.2.2","issue":{"uuid":"4388000980","node_id":"PR_kwDOAB1Qgs7Yl9eQ","number":547,"state":"closed","title":"Bump MSTest.TestFramework from 3.11.1 to 4.2.2","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-06T01:04:10.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-06T00:53:25.000Z","updated_at":"2026-05-06T01:04:19.000Z","time_to_close":645,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"3.11.1","new_version":"4.2.2","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 3.11.1 to 4.2.2.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\n## 4.2.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​421)\n\n## 4.1.0\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.1.0)\n\n## 4.0.2\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.0.2)\n\n## 4.0.1\n\nSee the release notes [here](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md#​4.0.1)\n\n## 4.0.0\n\n## What is new?\n\n### Assert.That \n\nMSTest 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:\n\n```csharp\n[TestClass]\npublic sealed class Test1\n{\n    [TestMethod]\n    public void TestMethod1()\n    {\n        var animal = \"Tiger\";\n        var zoo = new Zoo();\n        Assert.That(() =\u003e zoo.GetAnimal() == animal);\n    }\n}\n\npublic class Zoo\n{\n    public string GetAnimal()\n    {\n        return \"Giraffe\";\n    }\n}\n```\n\n```\nAssert.That(() =\u003e zoo.GetAnimal() == animal) failed.\nDetails:\n    animal = \"Tiger\"     \n    zoo.GetAnimal() = \"Giraffe\"\n```\n\n### CallerArgumentExpression\n\nCallerArgumentExpression 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:\n\n```csharp\n[TestClass]\npublic sealed class Test1\n{\n    [TestMethod]\n    public void TestMethod1()\n    {\n        string animal = null;\n        Assert.AreEqual(\"Giraffe\", animal);\n    }\n}\n ... (truncated)\n\n## 4.0.0-preview.25372.6\n\nThis 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\n\n## 4.0.0-preview.25358.7\n\nThis 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\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/commits).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=3.11.1\u0026new-version=4.2.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/jwt-dotnet/jwt/pull/547","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwt-dotnet%2Fjwt/issues/547","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/547/packages"}},{"old_version":"4.2.1","new_version":"4.2.2","update_type":"patch","path":null,"pr_created_at":"2026-05-04T21:37:25.000Z","version_change":"4.2.1 → 4.2.2","issue":{"uuid":"4379840244","node_id":"PR_kwDOL4CMTs7YLTWA","number":356,"state":"open","title":"Bump MSTest.TestFramework from 4.2.1 to 4.2.2","user":"dependabot[bot]","labels":["dependencies",".NET"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-04T21:37:25.000Z","updated_at":"2026-05-04T21:41:55.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"MSTest.TestFramework","old_version":"4.2.1","new_version":"4.2.2","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.1 to 4.2.2.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\nNo release notes found for this version range.\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/commits).\n\u003c/details\u003e\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=MSTest.TestFramework\u0026package-manager=nuget\u0026previous-version=4.2.1\u0026new-version=4.2.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/sir-gon/algorithm-exercises-csharp/pull/356","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/sir-gon%2Falgorithm-exercises-csharp/issues/356","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/356/packages"}},{"old_version":null,"new_version":null,"update_type":null,"path":null,"pr_created_at":"2026-05-04T07:38:19.000Z","version_change":null,"issue":{"uuid":"4374788693","node_id":"PR_kwDOEbPFFM7X6k5f","number":52,"state":"closed","title":"chore: Bump MSTest.TestAdapter and MSTest.TestFramework","user":"dependabot[bot]","labels":["dependencies","nuget"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-18T10:46:54.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-04T07:38:19.000Z","updated_at":"2026-05-18T10:46:56.000Z","time_to_close":1220915,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore","packages":[{"name":"Bump MSTest.TestAdapter"},{"name":"MSTest.TestFramework","repository_url":"https://github.com/microsoft/testfx"}],"path":null,"ecosystem":"nuget"},"body":"Updated [MSTest.TestAdapter](https://github.com/microsoft/testfx) from 4.2.1 to 4.2.2.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestAdapter's releases](https://github.com/microsoft/testfx/releases)._\n\nNo release notes found for this version range.\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/commits).\n\u003c/details\u003e\n\nUpdated [MSTest.TestFramework](https://github.com/microsoft/testfx) from 4.2.1 to 4.2.2.\n\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\n_Sourced from [MSTest.TestFramework's releases](https://github.com/microsoft/testfx/releases)._\n\nNo release notes found for this version range.\n\nCommits viewable in [compare view](https://github.com/microsoft/testfx/commits).\n\u003c/details\u003e\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@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)\n- `@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)\n- `@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)\n\n\n\u003c/details\u003e","html_url":"https://github.com/tschroedter/Selkie.DefCon/pull/52","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/tschroedter%2FSelkie.DefCon/issues/52","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/52/packages"}}]}