jhiben / workout-records-api-dotnet

MIT License
1 stars 0 forks source link

Bump the non-breaking-change-deps group with 6 updates #44

Closed dependabot[bot] closed 7 months ago

dependabot[bot] commented 7 months ago

Bumps the non-breaking-change-deps group with 6 updates:

Package From To
FluentAssertions.Analyzers 0.27.0 0.31.0
Microsoft.NET.Test.Sdk 17.8.0 17.9.0
xunit 2.6.3 2.7.0
xunit.runner.visualstudio 2.5.5 2.5.7
coverlet.collector 6.0.0 6.0.2
csharpier 0.26.5 0.28.0

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: https://github.com/fluentassertions/fluentassertions.analyzers/compare/v0.30.0...v0.31.0

0.30.0

What's Changed

Closed issues

Full Changelog: https://github.com/fluentassertions/fluentassertions.analyzers/compare/v0.29.1...v0.30.0

0.29.1

What's Changed

Full Changelog: https://github.com/fluentassertions/fluentassertions.analyzers/compare/v0.29.0...v0.29.1

0.29.0

What's Changed

Full Changelog: https://github.com/fluentassertions/fluentassertions.analyzers/compare/v0.28.0...v0.29.0

... (truncated)

Commits


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

Release notes

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

v17.9.0

What's Changed

New Contributors

Full Changelog: https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0

v17.9.0-release-23619-01

What's Changed

Full Changelog: https://github.com/microsoft/vstest/compare/v17.9.0-preview-23577-04...v17.9.0-release-23619-01

v17.9.0-preview-23577-04

What's Changed

Full Changelog: https://github.com/microsoft/vstest/compare/v17.9.0-preview-23531-01...v17.9.0-preview-23577-04

v17.9.0-preview-23531-01

What's Changed

Full Changelog: https://github.com/microsoft/vstest/compare/v17.9.0-preview-23503-02...v17.9.0-preview-23531-01

v17.9.0-preview-23503-02

What's Changed

Full Changelog: https://github.com/microsoft/vstest/compare/v17.8.0-release-23468-02...v17.9.0-preview-23503-02

Commits


Updates xunit from 2.6.3 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.runner.visualstudio from 2.5.5 to 2.5.7

Commits


Updates coverlet.collector from 6.0.0 to 6.0.2

Release notes

Sourced from coverlet.collector's releases.

v6.0.2

Fixed

  • Threshold-stat triggers error #1634
  • Fixed coverlet collector 6.0.1 requires dotnet sdk 8 #1625
  • Type initializer errors after updating from 6.0.0 to 6.0.1 #1629
  • Exception when multiple exclude-by-attribute filters specified #1624

Improvements

  • More concise options to specify multiple parameters in coverlet.console #1624

Diff between 6.0.1 and 6.0.2

v6.0.1

Fixed

  • Uncovered lines in .NET 8 for inheriting records #1555
  • Fix record constructors not covered when SkipAutoProps is true #1561
  • Fix .NET 7 Method Group branch coverage issue #1447
  • Fix ExcludeFromCodeCoverage does not exclude method in a partial class #1548
  • Fix ExcludeFromCodeCoverage does not exclude F# task #1547
  • Fix issues where ExcludeFromCodeCoverage ignored #1431
  • Fix issues with ExcludeFromCodeCoverage attribute #1484
  • Fix broken links in documentation #1514
  • Fix problem with coverage for .net5 WPF application #1221 by https://github.com/lg2de
  • Fix unable to instrument module for Microsoft.AspNetCore.Mvc.Razor #1459 by https://github.com/lg2de

Improvements

Diff between 6.0.0 and 6.0.1

Commits


Updates csharpier from 0.26.5 to 0.28.0

Release notes

Sourced from csharpier's releases.

0.28.0

What's Changed

Fix dedented method call if there is a long chain #1154

In some cases of method chains, the first invocation would end up dedented.

// 0.27.3
o.Property.CallMethod(
    someParameter_____________________________,
    someParameter_____________________________
)
    .CallMethod()
    .CallMethod();

// 0.28.0 o.Property.CallMethod( someParameter_____________________________, someParameter_____________________________ ) .CallMethod() .CallMethod();

Extra newline in switch case statement with curly braces [#1192](belav/csharpier#1192

If a case statement started with a block it would get an extra new line

// 0.27.3
switch (someValue)
{
    case 0:
    {
        // dedented because the only statement is a block
        break;
    }
case 1:

    {
        // indented because there are two statements, a block then a break
    }
    break;

}

// 0.28.0 // 0.27.3 switch (someValue) { case 0: { // dedented because the only statement is a block break; </tr></table>

... (truncated)

Changelog

Sourced from csharpier's changelog.

# 0.28.0

What's Changed

Fix dedented method call if there is a long chain #1154

In some cases of method chains, the first invocation would end up dedented.

// 0.27.3
o.Property.CallMethod(
    someParameter_____________________________,
    someParameter_____________________________
)
    .CallMethod()
    .CallMethod();

// 0.28.0 o.Property.CallMethod( someParameter_____________________________, someParameter_____________________________ ) .CallMethod() .CallMethod();

Extra newline in switch case statement with curly braces [#1192](belav/csharpier#1192

If a case statement started with a block it would get an extra new line

// 0.27.3
switch (someValue)
{
    case 0:
    {
        // dedented because the only statement is a block
        break;
    }
case 1:

    {
        // indented because there are two statements, a block then a break
    }
    break;

}

// 0.28.0 // 0.27.3 switch (someValue) { case 0: { // dedented because the only statement is a block break; </tr></table>

... (truncated)

Commits
  • d754703 Release 0.28.0 (#1223)
  • 5013141 Fixing some issues with editorconfig parsing with globs (#1221)
  • 548b320 Fixing dedented invocation on some method chains (#1222)
  • 1ee22ea Returning errors from csharpier cli. Make sure we don't hang the old stdout v...
  • e95599a Fixing bug with range ignore + regions (#1216)
  • 8fe2310 Better support for format on save (#1217)
  • b96899e Include the "IncludeGenerated" option in the SDK (#1218)
  • 2173bdc this too
  • 88f8193 fixing test that didn't pass on windows by improving error to return path you...
  • 94d238b Update Configuration.md (#1211)
  • Additional commits viewable in compare view


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 - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
dependabot[bot] commented 7 months ago

Superseded by #45.