Skip to content

Bump the small-change group across 1 directory with 8 updates #122

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

Merged
merged 1 commit into from
May 24, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 24, 2024

Bumps the small-change group with 8 updates in the / directory:

Package From To
Microsoft.NET.Test.Sdk 17.9.0 17.10.0
MSTest.TestAdapter 3.3.1 3.4.0
MSTest.TestFramework 3.3.1 3.4.0
Swashbuckle.AspNetCore 6.6.1 6.6.2
Swashbuckle.AspNetCore.SwaggerGen 6.6.1 6.6.2
Swashbuckle.AspNetCore.SwaggerUI 6.6.1 6.6.2
Swashbuckle.AspNetCore.Annotations 6.6.1 6.6.2
Swashbuckle.AspNetCore.SwaggerGen 6.6.1 6.6.2
Swashbuckle.AspNetCore.Newtonsoft 6.6.1 6.6.2
Swashbuckle.AspNetCore.SwaggerGen 6.6.1 6.6.2

Updates Microsoft.NET.Test.Sdk from 17.9.0 to 17.10.0

Release notes

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

v17.10.0

What's Changed

And many infrastructure related changes and updates.

New Contributors

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

v17.10.0-release-24177-07

What's Changed

... (truncated)

Commits

Updates MSTest.TestAdapter from 3.3.1 to 3.4.0

Release notes

Sourced from MSTest.TestAdapter's releases.

v3.4.0

Here are the highlights of the current release, full change log is available below:

microsoft/testfx@v3.3.1...v.3.4.0

MSTest

New and improved analyzers

We've added more code analyzers to help you prevent mistakes, and to ensure a consistent code style of your tests.

One example of a new analyzer that was added in 3.4.0 is MSTEST0024: Do not store TestContext in static members. This analyzer has info severity by default, and will show a message, when you store TestContext in a static member in your class. This is not recommended, and you should be using a TestContext property instead:

image

The other analyzers added in this release:

If you've just learned about MSTest analyzers, please also check out the analyzers that were added in previous releases. They will help you ensure that your test classes and test methods are recognized by MSTest and are not accidentally ignored.

The analyzers are automatically installed with the MSTest NuGet meta-package. But can also be installed separately using the MSTest.Analyzers NuGet package.

More timeout options

Timeout can now be specified on all fixture methods, including ClassCleanup, AssemblyCleanup, TestCleanup and TestInitalize. In this case I want my [ClassCleanup] to time out after 1 second:

image

Alternatively timeouts can be specified through runsettings. For example like this:

<RunSettings>
  <MSTest>
    <ClassCleanupTimeout>1000</ClassCleanupTimeout>
  </MSTest>
</RunSettings>

Better errors on data mismatch

When you provide data that don't match your test method signature, the test will fail with an informative message, rather than just "Parameter count mismatch.".

... (truncated)

Changelog

Sourced from MSTest.TestAdapter's changelog.

[3.4.0] - 2023-05-23

See full log here

Added

Fixed

... (truncated)

Commits

Updates MSTest.TestFramework from 3.3.1 to 3.4.0

Release notes

Sourced from MSTest.TestFramework's releases.

v3.4.0

Here are the highlights of the current release, full change log is available below:

microsoft/testfx@v3.3.1...v.3.4.0

MSTest

New and improved analyzers

We've added more code analyzers to help you prevent mistakes, and to ensure a consistent code style of your tests.

One example of a new analyzer that was added in 3.4.0 is MSTEST0024: Do not store TestContext in static members. This analyzer has info severity by default, and will show a message, when you store TestContext in a static member in your class. This is not recommended, and you should be using a TestContext property instead:

image

The other analyzers added in this release:

If you've just learned about MSTest analyzers, please also check out the analyzers that were added in previous releases. They will help you ensure that your test classes and test methods are recognized by MSTest and are not accidentally ignored.

The analyzers are automatically installed with the MSTest NuGet meta-package. But can also be installed separately using the MSTest.Analyzers NuGet package.

More timeout options

Timeout can now be specified on all fixture methods, including ClassCleanup, AssemblyCleanup, TestCleanup and TestInitalize. In this case I want my [ClassCleanup] to time out after 1 second:

image

Alternatively timeouts can be specified through runsettings. For example like this:

<RunSettings>
  <MSTest>
    <ClassCleanupTimeout>1000</ClassCleanupTimeout>
  </MSTest>
</RunSettings>

Better errors on data mismatch

When you provide data that don't match your test method signature, the test will fail with an informative message, rather than just "Parameter count mismatch.".

... (truncated)

Changelog

Sourced from MSTest.TestFramework's changelog.

[3.4.0] - 2023-05-23

See full log here

Added

Fixed

... (truncated)

Commits

Updates Swashbuckle.AspNetCore from 6.6.1 to 6.6.2

Release notes

Sourced from Swashbuckle.AspNetCore's releases.

v6.6.2

What's Changed

New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v6.6.1...v6.6.2

Commits
  • fe87e6d Fix exceptions generating default values (#2895)
  • d5cd28e Fix interceptor JSON casing
  • 432c417 Do not run IHostedService implementations (#2880)
  • 26c78cb Disable parallel build (#2894)
  • ac588fe Fix serialization of AdditionalItems
  • 91c936b Fix IDE suggestions
  • a0f4bb4 Only restore packages when needed
  • ecce973 Bump swagger-ui-dist in /src/Swashbuckle.AspNetCore.SwaggerUI (#2903)
  • 76ec39d Fix schema generation for C# 9 positional record with no example (#2901)
  • 828b7df Replace br tags in XML comments with new lines (#2899)
  • Additional commits viewable in compare view

Updates Swashbuckle.AspNetCore.SwaggerGen from 6.6.1 to 6.6.2

Release notes

Sourced from Swashbuckle.AspNetCore.SwaggerGen's releases.

v6.6.2

What's Changed

New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v6.6.1...v6.6.2

Commits
  • fe87e6d Fix exceptions generating default values (#2895)
  • d5cd28e Fix interceptor JSON casing
  • 432c417 Do not run IHostedService implementations (#2880)
  • 26c78cb Disable parallel build (#2894)
  • ac588fe Fix serialization of AdditionalItems
  • 91c936b Fix IDE suggestions
  • a0f4bb4 Only restore packages when needed
  • ecce973 Bump swagger-ui-dist in /src/Swashbuckle.AspNetCore.SwaggerUI (#2903)
  • 76ec39d Fix schema generation for C# 9 positional record with no example (#2901)
  • 828b7df Replace br tags in XML comments with new lines (#2899)
  • Additional commits viewable in compare view

Updates Swashbuckle.AspNetCore.SwaggerUI from 6.6.1 to 6.6.2

Release notes

Sourced from Swashbuckle.AspNetCore.SwaggerUI's releases.

v6.6.2

What's Changed

New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v6.6.1...v6.6.2

Commits

Bumps the small-change group with 8 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) | `17.9.0` | `17.10.0` |
| [MSTest.TestAdapter](https://github.com/microsoft/testfx) | `3.3.1` | `3.4.0` |
| [MSTest.TestFramework](https://github.com/microsoft/testfx) | `3.3.1` | `3.4.0` |
| [Swashbuckle.AspNetCore](https://github.com/domaindrivendev/Swashbuckle.AspNetCore) | `6.6.1` | `6.6.2` |
| [Swashbuckle.AspNetCore.SwaggerGen](https://github.com/domaindrivendev/Swashbuckle.AspNetCore) | `6.6.1` | `6.6.2` |
| [Swashbuckle.AspNetCore.SwaggerUI](https://github.com/domaindrivendev/Swashbuckle.AspNetCore) | `6.6.1` | `6.6.2` |
| [Swashbuckle.AspNetCore.Annotations](https://github.com/domaindrivendev/Swashbuckle.AspNetCore) | `6.6.1` | `6.6.2` |
| [Swashbuckle.AspNetCore.SwaggerGen](https://github.com/domaindrivendev/Swashbuckle.AspNetCore) | `6.6.1` | `6.6.2` |
| [Swashbuckle.AspNetCore.Newtonsoft](https://github.com/domaindrivendev/Swashbuckle.AspNetCore) | `6.6.1` | `6.6.2` |
| [Swashbuckle.AspNetCore.SwaggerGen](https://github.com/domaindrivendev/Swashbuckle.AspNetCore) | `6.6.1` | `6.6.2` |



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

Updates `MSTest.TestAdapter` from 3.3.1 to 3.4.0
- [Release notes](https://github.com/microsoft/testfx/releases)
- [Changelog](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md)
- [Commits](microsoft/testfx@v3.3.1...v3.4.0)

Updates `MSTest.TestFramework` from 3.3.1 to 3.4.0
- [Release notes](https://github.com/microsoft/testfx/releases)
- [Changelog](https://github.com/microsoft/testfx/blob/main/docs/Changelog.md)
- [Commits](microsoft/testfx@v3.3.1...v3.4.0)

Updates `Swashbuckle.AspNetCore` from 6.6.1 to 6.6.2
- [Release notes](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases)
- [Commits](domaindrivendev/Swashbuckle.AspNetCore@v6.6.1...v6.6.2)

Updates `Swashbuckle.AspNetCore.SwaggerGen` from 6.6.1 to 6.6.2
- [Release notes](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases)
- [Commits](domaindrivendev/Swashbuckle.AspNetCore@v6.6.1...v6.6.2)

Updates `Swashbuckle.AspNetCore.SwaggerUI` from 6.6.1 to 6.6.2
- [Release notes](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases)
- [Commits](domaindrivendev/Swashbuckle.AspNetCore@v6.6.1...v6.6.2)

Updates `Swashbuckle.AspNetCore.Annotations` from 6.6.1 to 6.6.2
- [Release notes](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases)
- [Commits](domaindrivendev/Swashbuckle.AspNetCore@v6.6.1...v6.6.2)

Updates `Swashbuckle.AspNetCore.SwaggerGen` from 6.6.1 to 6.6.2
- [Release notes](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases)
- [Commits](domaindrivendev/Swashbuckle.AspNetCore@v6.6.1...v6.6.2)

Updates `Swashbuckle.AspNetCore.Newtonsoft` from 6.6.1 to 6.6.2
- [Release notes](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases)
- [Commits](domaindrivendev/Swashbuckle.AspNetCore@v6.6.1...v6.6.2)

Updates `Swashbuckle.AspNetCore.SwaggerGen` from 6.6.1 to 6.6.2
- [Release notes](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases)
- [Commits](domaindrivendev/Swashbuckle.AspNetCore@v6.6.1...v6.6.2)

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: small-change
- dependency-name: MSTest.TestAdapter
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: small-change
- dependency-name: MSTest.TestFramework
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: small-change
- dependency-name: Swashbuckle.AspNetCore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: small-change
- dependency-name: Swashbuckle.AspNetCore.SwaggerGen
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: small-change
- dependency-name: Swashbuckle.AspNetCore.SwaggerUI
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: small-change
- dependency-name: Swashbuckle.AspNetCore.Annotations
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: small-change
- dependency-name: Swashbuckle.AspNetCore.SwaggerGen
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: small-change
- dependency-name: Swashbuckle.AspNetCore.Newtonsoft
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: small-change
- dependency-name: Swashbuckle.AspNetCore.SwaggerGen
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: small-change
...

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 May 24, 2024
@dependabot dependabot bot requested review from JohannesFinsveen, likp and runejo May 24, 2024 00:18
@JohannesFinsveen JohannesFinsveen merged commit 38ce5fc into main May 24, 2024
5 checks passed
@dependabot dependabot bot deleted the dependabot/nuget/small-change-4f6fa9bb84 branch May 24, 2024 13:44
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