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

chore(deps): Bump the all group with 18 updates #319

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 1, 2024

Bumps the all group with 18 updates:

Package From To
Meziantou.Analyzer 2.0.122 2.0.145
Roslynator.Analyzers 4.7.0 4.11.0
SonarAnalyzer.CSharp 9.16.0.82469 9.20.0.85982
FluentAssertions.Analyzers 0.27.0 0.31.0
Verify.Xunit 22.11.0 23.2.2
xunit.extensibility.core 2.6.4 2.7.0
xunit.extensibility.core 2.6.4 2.7.0
Verify.NUnit 22.11.0 23.2.2
NUnit 4.0.1 4.1.0
NUnit 4.0.1 4.1.0
Microsoft.IdentityModel.Tokens 7.0.3 7.4.0
Microsoft.AspNetCore.TestHost 6.0.25 8.0.2
System.Text.Json 8.0.0 8.0.2
System.IdentityModel.Tokens.Jwt 7.0.3 7.4.0
Microsoft.IdentityModel.Tokens 7.0.3 7.4.0
WireMock.Net 1.5.44 1.5.48
Microsoft.AspNetCore.Mvc.Testing 6.0.25 8.0.2
Microsoft.AspNetCore.TestHost 6.0.25 8.0.2
Bogus 35.2.0 35.4.0
BenchmarkDotNet 0.13.11 0.13.12
Microsoft.NET.Test.Sdk 17.8.0 17.9.0
csharpier 0.26.7 0.27.3

Updates Meziantou.Analyzer from 2.0.122 to 2.0.145

Release notes

Sourced from Meziantou.Analyzer's releases.

2.0.145

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/2.0.145

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@2.0.144...2.0.145

2.0.144

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/2.0.144

What's Changed

New Contributors

Full Changelog: meziantou/Meziantou.Analyzer@2.0.143...2.0.144

2.0.143

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/2.0.143

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@2.0.142...2.0.143

2.0.142

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/2.0.142

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@2.0.141...2.0.142

2.0.141

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/2.0.141

What's Changed

Full Changelog: meziantou/Meziantou.Analyzer@2.0.140...2.0.141

2.0.140

NuGet package: https://www.nuget.org/packages/Meziantou.Analyzer/2.0.140

... (truncated)

Commits
  • c0972b2 Add code fixer for MA0154
  • 78170a9 Improve performance of some rules
  • d947560 New rule MA0154: Use langword in XML comment
  • 34a70d7 Grammatical correction of some comments
  • fbabed5 MA0124: Improve configuration to support deny list
  • 97c11a9 Update all dependencies
  • 1fd56e8 Update all dependencies
  • a063cca Update renovate.json
  • 1708857 Disable MA0134 in Expression<T>
  • 8e82029 Disable MA0141/MA0142/MA0148/MA0149 in System.Linq.Expression
  • Additional commits viewable in compare view

Updates Roslynator.Analyzers from 4.7.0 to 4.11.0

Release notes

Sourced from Roslynator.Analyzers's releases.

v4.11.0

Added

  • Add analyzer "Use raw string literal" RCS1266 (PR)
  • Add analyzer "Convert 'string.Concat' to interpolated string" RCS1267 (PR)
  • Simplify LINQ query RCS1077 (PR)
    • items.Select(selector).Average() => items.Average(selector)
    • items.Select(selector).Sum() => items.Sum(selector)

Fixed

v4.10.0

Added

Changed

  • Update analyzer RCS1197 (PR)
    • Do not report interpolated string and string concatenation

Fixed

v4.9.0

Added

  • Add support for Unity (PR)
    • Unity uses Roslyn 3.8 and this version is now supported by Roslynator NuGet packages with analyzers (Roslynator.Analyzers etc.)

Fixed

... (truncated)

Changelog

Sourced from Roslynator.Analyzers's changelog.

[4.11.0] - 2024-02-19

Added

  • Add analyzer "Use raw string literal" RCS1266 (PR)
  • Add analyzer "Convert 'string.Concat' to interpolated string" RCS1267 (PR)
  • Simplify LINQ query RCS1077 (PR)
    • items.Select(selector).Average() => items.Average(selector)
    • items.Select(selector).Sum() => items.Sum(selector)
  • Add analyzer "Simplify numeric comparison" RCS1268 (PR by @​jakubreznak)

Fixed

[4.10.0] - 2024-01-24

Added

Changed

  • Update analyzer RCS1197 (PR)
    • Do not report interpolated string and string concatenation

Fixed

[4.9.0] - 2024-01-10

Added

  • Add support for Unity (PR)
    • Unity uses Roslyn 3.8 and this version is now supported by Roslynator NuGet packages with analyzers (Roslynator.Analyzers etc.)

... (truncated)

Commits

Updates SonarAnalyzer.CSharp from 9.16.0.82469 to 9.20.0.85982

Release notes

Sourced from SonarAnalyzer.CSharp's releases.

9.20

Hey everyone!

This release brings a vast number of improvements. The main focus lies on improving the capabilities of our Symbolic Execution engine, which results in much more accurate findings. The biggest visible impact is a significant reduction in false positives around loops for the rules S2583 and S2589.

And a big thank you to @​rcatley for their external contribution!

Bug Fixes

  • 8642 - [C#] Exception in SonarAnalyzer.Rules.CSharp.SymbolicExecutionRunner

False Positive

  • 8678 - [C#, VB.NET] Fix S2583 FP: Variable Updated in Catch Block
  • 8028 - [C#, VB.NET] Fix S2583 FP: Loop with manually incremented counter
  • 8449 - [C#, VB.NET] Fix S2589 FP: Change this condition so that it does not always evaluate to 'True'
  • 8495 - [C#, VB.NET] Fix S2583/S2589 FP: Return inside lock and using causes FP after the block
  • 8428 - [C#, VB.NET] Fix S2583/S2589 FP: For loop with Array.Length
  • 8483 - [C#, VB.NET] Fix S4158 FP: Should not report on HashSet.UnionWith for readonly fields.
  • 8739 - [C#] Fix S4049 FP: Do not raise on methods with generic parameters
  • 8638 - [C#] Fix S2386 & S3887 FP: should not be raised for FrozenDictionary and FrozenSet
  • 8611 - [C#] Fix S2372 FP: Add support for method invocations (@​rcatley)
  • 8567 - [C#] Fix S2325 FP: Primary Constructor Support

False Negative

  • 8486 - [C#] Fix S2589 FN: Tuple binary operations (comparison)

Improvements

  • 8010 - [C#, VB.NET] S2589: Improve message in the case of null propagating operator
  • 7866 - [C#, VB.NET] SE: Allow collection tracking even when S4158 is not active
  • 8499 - [C#] SE: Learn number constraints from relational pattern
  • 8651 - Update RSPEC before 9.20 release

9.19

Hello,

small release to enhance the deprecation warning before SonarQube v.10.4, explicitly notifying users analyzing with MSBuild 14 that it's no longer supported while maintaining the deprecation status for MSBuild 15. Furthermore, we've also introduced three improvements to our rules:

Improvements

  • 8609 - AnalysisWarningAnalyzerBase: targeted warnings for MSBuild14/15
  • 8559 - [C#, VB.NET] Fix S2178 Rule message: Mention extracting right operand if applicable
  • 6139 - [C#, VB.NET] Detect symbol references for @ keyword identifiers
  • 3753 - [C#, VB.NET] S1186: also inspect empty set and init and empty local functions

9.18

Hi everyone!

This release focuses on fixing false positives and on general improvements that will be included in the upcoming SonarQube 10.4.

False Positive

  • 7792 - [C#, VB.NET] Fix S1125 FP: Type check with System.Object
  • 7904 - [C#] Fix S1144 FP: Record method PrintMembers
  • 6326 - [C#] Fix S2437 FP: None of the operands is 0

... (truncated)

Commits
  • afd7543 Fix S2583/2589 FP: Return inside lock, using and finally causes FP after the ...
  • 4644b28 SE: Learn number constraints from relational pattern (#8773)
  • 3ad4377 Fix S2583/S2589 FP: try-finally in loop (#8755)
  • e3ef756 Update RSPEC before 9.20 release (#8775)
  • 9161bc0 Fix S2583/S2589 FP: try-catch in loop (#8753)
  • 5d6b781 SE Loops: Addition for same sign operands (#8760)
  • 32f2bdb Coding style: Remove compiler directives (#8757)
  • 4f18a86 Support Tuple Binary Operations in Symbolic Execution (#8718)
  • 6069617 S2589: Add FP Repro for #8570 (#8759)
  • ecf5aea SE: Move CollectionConstraint from S4158 to the engine (part 6) (#8733)
  • Additional commits viewable in compare view

Updates FluentAssertions.Analyzers from 0.27.0 to 0.31.0

Release notes

Sourced from FluentAssertions.Analyzers's releases.

0.31.0

What's Changed

Closed issues

Full Changelog: fluentassertions/fluentassertions.analyzers@v0.30.0...v0.31.0

0.30.0

What's Changed

Closed issues

Full Changelog: fluentassertions/fluentassertions.analyzers@v0.29.1...v0.30.0

0.29.1

What's Changed

Full Changelog: fluentassertions/fluentassertions.analyzers@v0.29.0...v0.29.1

0.29.0

What's Changed

Full Changelog: fluentassertions/fluentassertions.analyzers@v0.28.0...v0.29.0

... (truncated)

Commits

Updates Verify.Xunit from 22.11.0 to 23.2.2

Commits

Updates xunit.extensibility.core from 2.6.4 to 2.7.0

Commits
  • d806fa1 v2.7.0
  • 13bb60b #2872: Expand special handling for sets in Assert.Contains/DoesNotContain (v2)
  • 203b4d9 Update to use the common build system (#2883)
  • a4f585b Remove UTF-8 byte order marks
  • 8b2c7b2 Add v3 build submodule
  • 2413c57 Throw when user tries to run a non-async test with a timeout
  • 9ebc10c #2573: Opting out of AsyncTestSyncContext (v2)
  • b060404 xunit/xunit#2880: Update XML documentation for string-based Assert.Equal (v2)
  • 6bbf922 Add conditions to EquivalenceAssertsTests for XUNIT_IMMUTABLE_COLLECTIONS
  • cab6a3e #2871: Inner exception stack trace is missing from Assert.Collection failure ...
  • Additional commits viewable in compare view

Updates xunit.extensibility.core from 2.6.4 to 2.7.0

Commits
  • d806fa1 v2.7.0
  • 13bb60b #2872: Expand special handling for sets in Assert.Contains/DoesNotContain (v2)
  • 203b4d9 Update to use the common build system (#2883)
  • a4f585b Remove UTF-8 byte order marks
  • 8b2c7b2 Add v3 build submodule
  • 2413c57 Throw when user tries to run a non-async test with a timeout
  • 9ebc10c #2573: Opting out of AsyncTestSyncContext (v2)
  • b060404 xunit/xunit#2880: Update XML documentation for string-based Assert.Equal (v2)
  • 6bbf922 Add conditions to EquivalenceAssertsTests for XUNIT_IMMUTABLE_COLLECTIONS
  • cab6a3e #2871: Inner exception stack trace is missing from Assert.Collection failure ...
  • Additional commits viewable in compare view

Updates Verify.NUnit from 22.11.0 to 23.2.2

Commits

Updates NUnit from 4.0.1 to 4.1.0

Release notes

Sourced from NUnit's releases.

NUnit 4.1.0

See release notes

Commits

Updates NUnit from 4.0.1 to 4.1.0

Release notes

Sourced from NUnit's releases.

NUnit 4.1.0

See release notes

Commits

Updates Microsoft.IdentityModel.Tokens from 7.0.3 to 7.4.0

Release notes

Sourced from Microsoft.IdentityModel.Tokens's releases.

7.4.0

New Features:

  • Introduced an injection point for external metadata management and adjusted the issuer Last Known Good (LKG) to maintain the state within the issuer validator. See PR #2480.
  • Made an internal virtual method public, enabling users to provide signature providers. See PR #2497.

Performance Improvements:

  • Added a new JsonWebToken constructor that accepts Memory for improved performance, along with enhancements to existing constructors. More information can be found in issue #2487 and in PR #2458.

Fundamentals:

  • Resolved the issue of duplicated log messages in the source code and made IDX10506 log message more specific. For more details, refer to PR #2481.
  • Enhanced Json serialization by ensuring the complete object is always read. This improvement can be found in PR #2491.

Engineering Excellence:

  • Streamlined the build and release process by replacing the dependency on updateAssemblyInfo.ps1 with the Version property. Check out the details in PR #2494.
  • Excluded the packing of Benchmark and TestApp projects for a more efficient process. Details available in PR #2496.

7.4.0-preview1

Performance Improvements:

  • The existing JsonWebToken constructors now utilizes ReadOnlyMemory and Span to extract token segments, eliminating the need for string.split operations.
  • A new constructor has been introduced that accepts ReadOnlyMemory of an encoded token. See issue #2487.

Performance Assessment on .NET 8:

  • When using the preview version and opting for the constructor that accepts a string for the encoded token, the generation of a JWS yields a 3.95% decrease in memory usage, a 4.52% reduction in Gen0 and a 4.61% decrease in execution time compared to the latest release.
  • The performance of the constructor that accepts ReadOnlyMemory is comparable to the constructor accepting a string for the encoded token, both for JWS and JWE.

Preview branch: image

Dev (main) branch: image

View the benchmarks here.

7.3.1

Bug Fixes:

  • Replace propertyName with MetadataName constant. See issue #2471 for details.
  • Fix 6x to 7x regression where mixed cases OIDC json was not correctly process. See #2404 and #2402 for details.

Performance Improvements:

  • Update the benchmark configuration. See issue #2468.

Documentation:

  • Update comment for azp in JsonWebToken. See #2475 for details.
  • Link to breaking change announcement. See #2478.
  • Fix typo in log message. See #2479.

7.3.0

New Features

... (truncated)

Changelog

Sourced from Microsoft.IdentityModel.Tokens's changelog.

7.4.0

New Features:

  • Introduced an injection point for external metadata management and adjusted the issuer Last Known Good (LKG) to maintain the state within the issuer validator. See PR #2480.
  • Made an internal virtual method public, enabling users to provide signature providers. See PR #2497.

Performance Improvements:

  • Added a new JsonWebToken constructor that accepts Memory for improved performance, along with enhancements to existing constructors. More information can be found in issue #2487 and in PR #2458.

Fundamentals:

  • Resolved the issue of duplicated log messages in the source code and made IDX10506 log message more specific. For more details, refer to PR #2481.
  • Enhanced Json serialization by ensuring the complete object is always read. This improvement can be found in PR #2491.

Engineering Excellence:

  • Streamlined the build and release process by replacing the dependency on updateAssemblyInfo.ps1 with the Version property. Check out the details in PR #2494.
  • Excluded the packing of Benchmark and TestApp projects for a more efficient process. Details available in PR #2496.

7.3.1

Bug Fixes:

  • Replace propertyName with MetadataName constant. See issue #2471 for details.
  • Fix 6x to 7x regression where mixed cases OIDC json was not correctly process. See #2404 and #2402 for details.

Performance Improvements:

  • Update the benchmark configuration. See issue #2468.

Documentation:

  • Update comment for azp in JsonWebToken. See #2475 for details.
  • Link to breaking change announcement. See #2478.
  • Fix typo in log message. See #2479.

7.3.0

New Features:

Addition of the ClientCertificates property to the HttpRequestData class enables exposure of certificate collection involved in authenticating the client against the server and unlock support of new scenarios within the SDK. See PR #2462 for details.

Bug Fixes:

Fixed bug where x5c property is empty in JwtHeader after reading a JWT containing x5c in its header, issue #2447, see PR #2460 for details. Fixed bug where JwtPayload.Claim.Value was not culture invariant #2409. Fixed by PRs #2453 and #2461. Fixed bug where Guid values in JwtPayload caused an exception, issue #2439. Fixed by PR #2440.

Performance Improvements:

Remove linq from BaseConfigurationComparer, improvement #2464, for additional details see PR #2465.

Engineering Excellence:

New benchmark tests for AsymmetricAdapter signatures. For details see PR #2449.

7.2.0

Performance Improvements:

... (truncated)

Commits
  • fc61f2c Update ChangeLog for v7.4.0 (#2500)
  • 27edb04 Move virtual methods to public in Signature Provider (#2497)
  • d5dc77e Adds JsonWebToken Constructor that accepts Memory<char> (#2458)
  • ...

    Description has been truncated

Bumps the all group with 18 updates:

| Package | From | To |
| --- | --- | --- |
| [Meziantou.Analyzer](https://github.com/meziantou/Meziantou.Analyzer) | `2.0.122` | `2.0.145` |
| [Roslynator.Analyzers](https://github.com/dotnet/roslynator) | `4.7.0` | `4.11.0` |
| [SonarAnalyzer.CSharp](https://github.com/SonarSource/sonar-dotnet) | `9.16.0.82469` | `9.20.0.85982` |
| [FluentAssertions.Analyzers](https://github.com/fluentassertions/fluentassertions.analyzers) | `0.27.0` | `0.31.0` |
| [Verify.Xunit](https://github.com/VerifyTests/Verify) | `22.11.0` | `23.2.2` |
| [xunit.extensibility.core](https://github.com/xunit/xunit) | `2.6.4` | `2.7.0` |
| [xunit.extensibility.core](https://github.com/xunit/xunit) | `2.6.4` | `2.7.0` |
| [Verify.NUnit](https://github.com/VerifyTests/Verify) | `22.11.0` | `23.2.2` |
| [NUnit](https://github.com/nunit/nunit) | `4.0.1` | `4.1.0` |
| [NUnit](https://github.com/nunit/nunit) | `4.0.1` | `4.1.0` |
| [Microsoft.IdentityModel.Tokens](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet) | `7.0.3` | `7.4.0` |
| [Microsoft.AspNetCore.TestHost](https://github.com/dotnet/aspnetcore) | `6.0.25` | `8.0.2` |
| [System.Text.Json](https://github.com/dotnet/runtime) | `8.0.0` | `8.0.2` |
| [System.IdentityModel.Tokens.Jwt](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet) | `7.0.3` | `7.4.0` |
| [Microsoft.IdentityModel.Tokens](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet) | `7.0.3` | `7.4.0` |
| [WireMock.Net](https://github.com/WireMock-Net/WireMock.Net) | `1.5.44` | `1.5.48` |
| [Microsoft.AspNetCore.Mvc.Testing](https://github.com/dotnet/aspnetcore) | `6.0.25` | `8.0.2` |
| [Microsoft.AspNetCore.TestHost](https://github.com/dotnet/aspnetcore) | `6.0.25` | `8.0.2` |
| [Bogus](https://github.com/bchavez/Bogus) | `35.2.0` | `35.4.0` |
| [BenchmarkDotNet](https://github.com/dotnet/BenchmarkDotNet) | `0.13.11` | `0.13.12` |
| [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) | `17.8.0` | `17.9.0` |
| [csharpier](https://github.com/belav/csharpier) | `0.26.7` | `0.27.3` |


Updates `Meziantou.Analyzer` from 2.0.122 to 2.0.145
- [Release notes](https://github.com/meziantou/Meziantou.Analyzer/releases)
- [Commits](meziantou/Meziantou.Analyzer@2.0.122...2.0.145)

Updates `Roslynator.Analyzers` from 4.7.0 to 4.11.0
- [Release notes](https://github.com/dotnet/roslynator/releases)
- [Changelog](https://github.com/dotnet/roslynator/blob/main/ChangeLog.md)
- [Commits](dotnet/roslynator@v4.7.0...v4.11.0)

Updates `SonarAnalyzer.CSharp` from 9.16.0.82469 to 9.20.0.85982
- [Release notes](https://github.com/SonarSource/sonar-dotnet/releases)
- [Commits](SonarSource/sonar-dotnet@9.16.0.82469...9.20.0.85982)

Updates `FluentAssertions.Analyzers` from 0.27.0 to 0.31.0
- [Release notes](https://github.com/fluentassertions/fluentassertions.analyzers/releases)
- [Commits](fluentassertions/fluentassertions.analyzers@v0.27.0...v0.31.0)

Updates `Verify.Xunit` from 22.11.0 to 23.2.2
- [Release notes](https://github.com/VerifyTests/Verify/releases)
- [Commits](https://github.com/VerifyTests/Verify/commits)

Updates `xunit.extensibility.core` from 2.6.4 to 2.7.0
- [Commits](xunit/xunit@2.6.4...2.7.0)

Updates `xunit.extensibility.core` from 2.6.4 to 2.7.0
- [Commits](xunit/xunit@2.6.4...2.7.0)

Updates `Verify.NUnit` from 22.11.0 to 23.2.2
- [Release notes](https://github.com/VerifyTests/Verify/releases)
- [Commits](https://github.com/VerifyTests/Verify/commits)

Updates `NUnit` from 4.0.1 to 4.1.0
- [Release notes](https://github.com/nunit/nunit/releases)
- [Changelog](https://github.com/nunit/nunit/blob/master/CHANGES.md)
- [Commits](nunit/nunit@v4.0.1...4.1.0)

Updates `NUnit` from 4.0.1 to 4.1.0
- [Release notes](https://github.com/nunit/nunit/releases)
- [Changelog](https://github.com/nunit/nunit/blob/master/CHANGES.md)
- [Commits](nunit/nunit@v4.0.1...4.1.0)

Updates `Microsoft.IdentityModel.Tokens` from 7.0.3 to 7.4.0
- [Release notes](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/releases)
- [Changelog](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/blob/dev/CHANGELOG.md)
- [Commits](AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet@7.0.3...v7.4.0)

Updates `Microsoft.AspNetCore.TestHost` from 6.0.25 to 8.0.2
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.25...v8.0.2)

Updates `System.Text.Json` from 8.0.0 to 8.0.2
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.2)

Updates `System.IdentityModel.Tokens.Jwt` from 7.0.3 to 7.4.0
- [Release notes](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/releases)
- [Changelog](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/blob/dev/CHANGELOG.md)
- [Commits](AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet@7.0.3...v7.4.0)

Updates `Microsoft.IdentityModel.Tokens` from 7.0.3 to 7.4.0
- [Release notes](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/releases)
- [Changelog](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/blob/dev/CHANGELOG.md)
- [Commits](AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet@7.0.3...v7.4.0)

Updates `WireMock.Net` from 1.5.44 to 1.5.48
- [Release notes](https://github.com/WireMock-Net/WireMock.Net/releases)
- [Changelog](https://github.com/WireMock-Net/WireMock.Net/blob/master/CHANGELOG.md)
- [Commits](WireMock-Net/WireMock.Net@1.5.44...1.5.48)

Updates `Microsoft.AspNetCore.Mvc.Testing` from 6.0.25 to 8.0.2
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.25...v8.0.2)

Updates `Microsoft.AspNetCore.TestHost` from 6.0.25 to 8.0.2
- [Release notes](https://github.com/dotnet/aspnetcore/releases)
- [Changelog](https://github.com/dotnet/aspnetcore/blob/main/docs/ReleasePlanning.md)
- [Commits](dotnet/aspnetcore@v6.0.25...v8.0.2)

Updates `Bogus` from 35.2.0 to 35.4.0
- [Release notes](https://github.com/bchavez/Bogus/releases)
- [Changelog](https://github.com/bchavez/Bogus/blob/master/HISTORY.md)
- [Commits](bchavez/Bogus@v35.2.0...v35.4.0)

Updates `BenchmarkDotNet` from 0.13.11 to 0.13.12
- [Release notes](https://github.com/dotnet/BenchmarkDotNet/releases)
- [Commits](dotnet/BenchmarkDotNet@v0.13.11...v0.13.12)

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

Updates `csharpier` from 0.26.7 to 0.27.3
- [Release notes](https://github.com/belav/csharpier/releases)
- [Changelog](https://github.com/belav/csharpier/blob/main/CHANGELOG.md)
- [Commits](belav/csharpier@0.26.7...0.27.3)

---
updated-dependencies:
- dependency-name: Meziantou.Analyzer
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: Roslynator.Analyzers
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: SonarAnalyzer.CSharp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: FluentAssertions.Analyzers
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: Verify.Xunit
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: xunit.extensibility.core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: xunit.extensibility.core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: Verify.NUnit
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: NUnit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: NUnit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: Microsoft.IdentityModel.Tokens
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: Microsoft.AspNetCore.TestHost
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: System.Text.Json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: System.IdentityModel.Tokens.Jwt
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: Microsoft.IdentityModel.Tokens
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: WireMock.Net
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: Microsoft.AspNetCore.Mvc.Testing
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: Microsoft.AspNetCore.TestHost
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: Bogus
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: BenchmarkDotNet
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: csharpier
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from bmazzarol as a code owner March 1, 2024 03:26
@dependabot dependabot bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Mar 1, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 1, 2024

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

Copy link
Contributor Author

dependabot bot commented on behalf of github May 1, 2024

None of your dependencies match this group anymore, you may need to update your configuration file to remove it or change its rules.

@dependabot dependabot bot closed this May 1, 2024
@dependabot dependabot bot deleted the dependabot/nuget/all-9fe4758d0c branch May 1, 2024 03:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file .NET Pull requests that update .net code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants