Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the dev-dependencies group in /tests with 4 updates #20

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 11, 2023

Bumps the dev-dependencies group in /tests with 4 updates: Microsoft.NET.Test.Sdk, xunit, xunit.runner.visualstudio and coverlet.collector.

Updates Microsoft.NET.Test.Sdk from 17.5.0 to 17.6.3

Release notes

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

v17.6.3

Issues Fixed

Full Changelog: microsoft/vstest@v17.6.2...v17.6.3

Artifacts

  • TestPlatform vsix: 17.6.3
  • Microsoft.TestPlatform.ObjectModel : 17.6.3

v17.6.2

Fixes

This patch addresses the problems that were introduced in 17.6.0 that happen when running on AzDo with the default test.dll filter, which includes additional TestPlatform dlls into the run and fails it.

To mitigate this issue we solved the bug in 17.6.1, and added additional exclusions for known assemblies that are coming from TestPlatform and commonly used test adapters, to avoid trying to run tests from those assemblies.

Description and workarounds for this issue are available here: microsoft/vstest#4516

Full Changelog: microsoft/vstest@v17.6.1...v17.6.2

Artifacts TestPlatform vsix: 17.6.2 Microsoft.TestPlatform.ObjectModel : 17.6.2

v17.6.1

Issues Fixed

This is a tiny patch to fixup few latest issues,

  • Fix no-suitable provider found by @​nohwnd in microsoft/vstest#4474 which fixes #4467

    When .NET Portable or .NET Standard dlls are provided to the run, the run crashes with "No suitable test runtime provider was found", which is a regression introduced in 17.6.0.

  • Fix hangdump running into crashdump by @​nohwnd in microsoft/vstest#4480 which fixes #4378

    Running --blame-hang and --blame-crash at the same time, can result in --blame-hang cancelling --blame-crash, and killing the testhost in the process, resulting in no dumps being created. This fix waits for --blame-crash to finish dumping the process, and then it creates hang dump.

  • Update Nuget.Frameworks by @​nohwnd in microsoft/vstest#4500 which fixes #4409

... (truncated)

Changelog

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

Release Notes

17.6.1 and newer

Please see release notes directly in the release page: https://github.com/microsoft/vstest/releases

17.6.0

Issues Fixed

  • Add legacy feeds
  • [rel/17.6] Fix Newtonsoft versions in testhost.deps.json #4372
  • Revert "Revert "Fix signature verification" (#4333" #4345
  • Revert "Fix signature verification" #4333
  • Fix signature verification #4331
  • Pre-start testhosts #3666
  • Add dotnet vstest deprecation message #4297
  • Catch unhandled exception and avoid crash on test host exit #4291
  • Remove chutzpah #4249
  • Fix string conversion of Microsoft.TestPlatform.Extensions.TrxLogger.ObjectMode.TestOutcome #4243
  • Fix potential trx logger NRE #4240
  • handle object disposed exception #4221
  • Added support for checking testhost compatibility with test sessions #4199

See full log here

Artifacts

  • TestPlatform vsix: 17.6.0
  • Microsoft.TestPlatform.ObjectModel : 17.6.0

17.3.3

Issues Fixed

  • [rel/17.3] Update Newtonsoft.Json to 13.0.1 #4299

See full log here

Drops

  • TestPlatform vsix: 17.3.3
  • Microsoft.TestPlatform.ObjectModel : 17.3.3

17.2.1

Issues Fixed

  • [rel/17.2] Update Newtonsoft.Json to 13.0.1 #4310

See full log here

... (truncated)

Commits

Updates xunit from 2.4.2 to 2.5.0

Commits
  • 12ec6b8 Bump up to v2.5.1-pre
  • 92f31c4 v2.5.0
  • 188216b Ensure both failed tests and error cause error return codes (and cancel for s...
  • c973179 Latest analyzers
  • f93d52d Propagate StopOnFail from config file => execution options
  • 5e70f54 #2737: Restore XunitException constructor (breaking change) (v2)
  • 028866f Add PackageDownload for Microsoft.NETFramework.ReferenceAssemblies.net452 to ...
  • aeba1bb Remove UAP/UWP support
  • 5308021 #1857: Add overload to Assert.Contains for ConcurrentDictionary (v2)
  • 5fbaa0a Incorrect type restriction on obsoleted Assert.ThrowsAny<T> for Func<Task> an...
  • Additional commits viewable in compare view

Updates xunit.runner.visualstudio from 2.4.5 to 2.5.0

Commits
  • 5ebf84c v2.5.0
  • fd327b6 Ensure both failed tests and errors cancel for stopOnFail
  • 4e86b43 Latest dependencies
  • c29a760 #110: Visual Studio test explorer cannot filter skipped tests by message
  • 5e96160 #189: Support 'stopOnFail' configuration file setting
  • 671542c #331: DisableAppDomain switch is not fully respected for Discovery
  • 1aa409d Add net472 build of test.harness which turns off app domains (for performance...
  • ff89c51 Latest dependencies
  • f9d61b5 #317: Slow performance on discovery / running due to discovering TestReporters
  • 01ec27d Latest dependencies
  • Additional commits viewable in compare view

Updates coverlet.collector from 3.2.0 to 6.0.0

Release notes

Sourced from coverlet.collector's releases.

v6.0.0

Fixed -Could not write lines to file CoverletSourceRootsMapping - in use by another process coverlet-coverage/coverlet#1155
-Incorrect coverage for methods returning IAsyncEnumerable in generic classes coverlet-coverage/coverlet#1383
-Wrong branch coverage for async methods .NET Standard 1.x coverlet-coverage/coverlet#1376
-Empty path exception in visual basic projects coverlet-coverage/coverlet#775
-Align published nuget package version to github release version coverlet-coverage/coverlet#1413
-Sync nuget and github release versions coverlet-coverage/coverlet#1122

Improvements -Migration of the project to .NET 6.0 coverlet-coverage/coverlet#1473

Breaking changes New parameter ExcludeAssembliesWithoutSources to control automatic assembly exclusion coverlet-coverage/coverlet#1164. The parameter InstrumentModulesWithoutLocalSources has been removed. since it can be handled by setting ExcludeAssembliesWithoutSources to None. The default heuristics for determining whether to instrument an assembly has been changed. In previous versions any missing source file was taken as a signal that it was a third-party project that shouldn't be instrumented, with exceptions for some common file name patterns for source generators. Now only assemblies where no source files at all can be found are excluded from instrumentation, and the code for detecting source generator files have been removed. To get back to the behaviour that at least one missing file is sufficient to exclude an assembly, set ExcludeAssembliesWithoutSources to MissingAny, or use assembly exclusion filters for more fine-grained control.

Diff between 3.2.0 and 6.0.0

v5.8.0

Fixed

-Fix TypeLoadException when referencing Microsoft.Extensions.DependencyInjection v6.0.1 #1390
-Source Link for code generators fails #1322
-Await foreach has wrong branch coverage when method is generic #1210
-ExcludeFromCodeCoverage attribute on local functions ignores lambda expression #1302

Added

-Added InstrumentModulesWithoutLocalSources setting #1360 by @​TFTomSun

Diff between 3.1.2 and 3.2.0

v5.7.2

Fixed -Fix CoreLib's coverage measurement is broken #1286 -Fix UnloadModule injection 1291

Diff between 3.1.1 and 3.1.2

v5.7.1

Fixed -Fix wrong branch coverage with EnumeratorCancellation attribute #1275 -Fix negative coverage exceeding int.MaxValue #1266 -Fix summary output format for culture de-DE #1263 -Fix branch coverage issue for finally block with await #1233 -Fix threshold doesn't work when coverage empty #1205 -Fix branch coverage issue for il switch #1177 -Fix branch coverage with using statement and several awaits#1176 -Fix CopyCoverletDataCollectorFiles to avoid to override user dlls for dotnet publish scenario #1243

Improvements -Improve logging in case of exception inside static ctor of NetstandardAwareAssemblyResolver #1230 -When collecting open the hitfile with read access #1214 by https://github.com/JamesWTruher

... (truncated)

Commits

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


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually

Bumps the dev-dependencies group in /tests with 4 updates: [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest), [xunit](https://github.com/xunit/xunit), [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) and [coverlet.collector](https://github.com/coverlet-coverage/coverlet).


Updates `Microsoft.NET.Test.Sdk` from 17.5.0 to 17.6.3
- [Release notes](https://github.com/microsoft/vstest/releases)
- [Changelog](https://github.com/microsoft/vstest/blob/main/docs/releases.md)
- [Commits](microsoft/vstest@v17.5.0...v17.6.3)

Updates `xunit` from 2.4.2 to 2.5.0
- [Commits](xunit/xunit@2.4.2...2.5.0)

Updates `xunit.runner.visualstudio` from 2.4.5 to 2.5.0
- [Release notes](https://github.com/xunit/visualstudio.xunit/releases)
- [Commits](xunit/visualstudio.xunit@v2.4.5...2.5.0)

Updates `coverlet.collector` from 3.2.0 to 6.0.0
- [Release notes](https://github.com/coverlet-coverage/coverlet/releases)
- [Commits](coverlet-coverage/coverlet@v3.2.0...v6.0.0)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: xunit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: xunit.runner.visualstudio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: coverlet.collector
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Jul 11, 2023
@stscoundrel stscoundrel merged commit fee277f into main Jul 11, 2023
4 checks passed
@stscoundrel stscoundrel deleted the dependabot/nuget/tests/dev-dependencies-8e76df72fe branch July 11, 2023 18:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file .NET Pull requests that update .net code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant