Skip to content

Bump coverlet.collector and 7 others - #61

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/SW.Bus.IntegrationTests/main/nuget-patch-ba1a1065e0
Open

Bump coverlet.collector and 7 others#61
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/SW.Bus.IntegrationTests/main/nuget-patch-ba1a1065e0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 17, 2026

Copy link
Copy Markdown

Updated coverlet.collector from 3.1.0 to 3.1.2.

Release notes

Sourced from coverlet.collector's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.AspNetCore.Authentication.JwtBearer from 8.0.0 to 8.0.30.

Release notes

Sourced from Microsoft.AspNetCore.Authentication.JwtBearer's releases.

8.0.30

Release

What's Changed

New Contributors

Full Changelog: dotnet/aspnetcore@v8.0.29...v8.0.30

8.0.29

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.28...v8.0.29

8.0.28

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.27...v8.0.28

8.0.27

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.26...v8.0.27

8.0.26

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.25...v8.0.26

8.0.25

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.24...v8.0.25

8.0.24

Release

8.0.23

Release

What's Changed

https://devblogs.microsoft.com/dotnet/dotnet-and-dotnet-framework-january-2026-servicing-updates/#release-changelogs

8.0.22

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.21...v8.0.22

8.0.21

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.20...v8.0.21

8.0.20

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.19...v8.0.20

8.0.18

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.17...v8.0.18

8.0.17

Bug Fixes

  • Forwarded Headers Middleware: Ignore X-Forwarded-Headers from Unknown Proxy (#​61623)
    The Forwarded Headers Middleware now ignores X-Forwarded-Headers sent from unknown proxies. This change improves security by ensuring that only trusted proxies can influence the forwarded headers, preventing potential spoofing or misrouting of requests.

Dependency Updates

  • Update dependencies from dotnet/arcade (#​61832)
    This update brings in the latest changes from the dotnet/arcade repository, ensuring that ASP.NET Core benefits from recent improvements, bug fixes, and security patches in the shared build infrastructure.

  • Bump src/submodules/googletest from 52204f7 to 04ee1b4 (#​61761)
    The GoogleTest submodule has been updated to a newer commit, providing the latest testing features, bug fixes, and performance improvements for the project's C++ test components.

Miscellaneous

  • Update branding to 8.0.17 (#​61830)
    The project version branding has been updated to reflect the new 8.0.17 release, ensuring consistency across build outputs and documentation.

  • Merging internal commits for release/8.0 (#​61924)
    This change merges various internal commits into the release/8.0 branch, incorporating minor fixes, documentation updates, and other non-user-facing improvements to keep the release branch up to date.


This summary is generated and may contain inaccuracies. For complete details, please review the linked pull requests.

Full Changelog: dotnet/aspnetcore@v8.0.16...v8.0.17

8.0.16

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.15...v8.0.16

8.0.15

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.14...v8.0.15

8.0.14

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.13...v8.0.14

8.0.13

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.12...v8.0.13

8.0.12

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.11...v8.0.12

8.0.11

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.10...v8.0.11

8.0.10

Release

8.0.8

Release

8.0.7

Release

8.0.6

Release

8.0.5

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v8.0.4...v8.0.5

8.0.4

Release

8.0.3

Release

8.0.2

Release

8.0.1

Release

Commits viewable in compare view.

Updated Microsoft.AspNetCore.TestHost from 5.0.11 to 5.0.17.

Release notes

Sourced from Microsoft.AspNetCore.TestHost's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated MSTest.TestAdapter from 2.2.7 to 2.2.10.

Release notes

Sourced from MSTest.TestAdapter's releases.

2.2.10

See release notes here.

2.2.10-preview-20220414-01

See release notes here.

2.2.9

Parallel output

🙇 Shout out to @​SimonCropp, for bringing this functionality to XUnit in his https://github.com/SimonCropp/XunitContext project. And being an inspiration for implementing this.

MSTest 2.2.9 captures all Console output and attaches it to the correct test, even if you are running tests in parallel. This output is captured from your test code as well as from the tested code. And it requires no special setup.

Before

In 2.2.8, test output is scattered among tests, in our example, one unlucky test gets all the output of other tests just mixed together:

image

After

With 2.2.9, each output is correctly attached to the test that produced it:

image
image

Also notice that we are also capturing debug, trace and error. And we are not awaiting the FastChild method, and the output is still assigned correctly. Souce code.

Limitations

Due to the way that class and assembly initialize, and cleanup are invoked, their output will end up in the first test that run (or last for cleanup). This is unfortunately not easily fixable.

See release notes here.

2.2.8

See release notes here.

Commits viewable in compare view.

Updated MSTest.TestAdapter from 3.2.0 to 3.2.2.

Release notes

Sourced from MSTest.TestAdapter's releases.

3.2.2

See the release notes here.

3.2.1

See the release notes here.

Commits viewable in compare view.

Updated MSTest.TestFramework from 2.2.7 to 2.2.10.

Release notes

Sourced from MSTest.TestFramework's releases.

2.2.10

See release notes here.

2.2.10-preview-20220414-01

See release notes here.

2.2.9

Parallel output

🙇 Shout out to @​SimonCropp, for bringing this functionality to XUnit in his https://github.com/SimonCropp/XunitContext project. And being an inspiration for implementing this.

MSTest 2.2.9 captures all Console output and attaches it to the correct test, even if you are running tests in parallel. This output is captured from your test code as well as from the tested code. And it requires no special setup.

Before

In 2.2.8, test output is scattered among tests, in our example, one unlucky test gets all the output of other tests just mixed together:

image

After

With 2.2.9, each output is correctly attached to the test that produced it:

image
image

Also notice that we are also capturing debug, trace and error. And we are not awaiting the FastChild method, and the output is still assigned correctly. Souce code.

Limitations

Due to the way that class and assembly initialize, and cleanup are invoked, their output will end up in the first test that run (or last for cleanup). This is unfortunately not easily fixable.

See release notes here.

2.2.8

See release notes here.

Commits viewable in compare view.

Updated MSTest.TestFramework from 3.2.0 to 3.2.2.

Release notes

Sourced from MSTest.TestFramework's releases.

3.2.2

See the release notes here.

3.2.1

See the release notes here.

Commits viewable in compare view.

Updated SimplyWorks.CqApi from 8.2.6 to 8.2.11.

Release notes

Sourced from SimplyWorks.CqApi's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated SimplyWorks.HttpExtensions from 8.1.1 to 8.1.8.

Release notes

Sourced from SimplyWorks.HttpExtensions's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated SimplyWorks.PrimitiveTypes from 8.1.3 to 8.1.9.

Release notes

Sourced from SimplyWorks.PrimitiveTypes's releases.

No release notes found for this version range.

Commits viewable in compare view.

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file nuget NuGet package updates labels Aug 17, 2026
Bumps coverlet.collector from 3.1.0 to 3.1.2
Bumps Microsoft.AspNetCore.Authentication.JwtBearer from 8.0.0 to 8.0.30
Bumps Microsoft.AspNetCore.TestHost from 5.0.11 to 5.0.17
Bumps MSTest.TestAdapter to 2.2.10, 3.2.2
Bumps MSTest.TestFramework to 2.2.10, 3.2.2
Bumps SimplyWorks.CqApi from 8.2.6 to 8.2.11
Bumps SimplyWorks.HttpExtensions from 8.1.1 to 8.1.8
Bumps SimplyWorks.PrimitiveTypes from 8.1.3 to 8.1.9

---
updated-dependencies:
- dependency-name: coverlet.collector
  dependency-version: 3.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-patch
- dependency-name: Microsoft.AspNetCore.Authentication.JwtBearer
  dependency-version: 8.0.30
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-patch
- dependency-name: Microsoft.AspNetCore.TestHost
  dependency-version: 5.0.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-patch
- dependency-name: MSTest.TestAdapter
  dependency-version: 2.2.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-patch
- dependency-name: MSTest.TestAdapter
  dependency-version: 3.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-patch
- dependency-name: MSTest.TestFramework
  dependency-version: 2.2.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-patch
- dependency-name: MSTest.TestFramework
  dependency-version: 3.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-patch
- dependency-name: SimplyWorks.CqApi
  dependency-version: 8.2.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-patch
- dependency-name: SimplyWorks.HttpExtensions
  dependency-version: 8.1.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-patch
- dependency-name: SimplyWorks.PrimitiveTypes
  dependency-version: 8.1.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title Bump the nuget-patch group with 8 updates Bump coverlet.collector and 7 others Aug 31, 2026
@dependabot
dependabot Bot force-pushed the dependabot/nuget/SW.Bus.IntegrationTests/main/nuget-patch-ba1a1065e0 branch from 181c788 to 435a5b4 Compare August 31, 2026 03:18
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 nuget NuGet package updates

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants