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 nuget group with 8 updates #268

Merged
merged 1 commit into from
Dec 2, 2024

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the nuget group with 9 updates:

Package From To
CSharpier.MsBuild 0.29.2 0.30.2
Microsoft.Bcl.AsyncInterfaces 8.0.0 9.0.0
System.Threading.Tasks.Extensions 4.5.4 4.5.4
System.Management 8.0.0 9.0.0
System.Memory 4.5.5 4.6.0
FluentAssertions 6.12.1 7.0.0
Microsoft.NET.Test.Sdk 17.11.1 17.12.0
Xunit.SkippableFact 1.4.13 1.5.23
System.Threading.Tasks.Extensions 4.5.4 4.6.0

Updates CSharpier.MsBuild from 0.29.2 to 0.30.2

Release notes

Sourced from CSharpier.MsBuild's releases.

0.30.2

What's Changed

Collection expression inside a dictionary adds unexpected new line #1390

// input & expected output
Dictionary<string, string[]> dictionary = new()
{
    {
        "Key",
        [
            "SomeValue__________________________________________",
            "SomeValue__________________________________________",
        ]
    },
};
// 0.30.1
Dictionary<string, string[]> dictionary = new()
{
{
"Key",
    [
        &quot;SomeValue__________________________________________&quot;,
        &quot;SomeValue__________________________________________&quot;,
    ]
},

};

Failed syntax tree validation reported when trailing comma added before a trailing comment #1388

With the following code, CSharpier will add a trailing comma before the trailing comment.
CSharpier's syntax tree validation was incorrectly reporting this as a failure.

// input
var someObject = new SomeObject()
{
    Property1 = 1,
    Property2 = 2 // Trailing Comment
};
// output
var someObject = new SomeObject()
{
Property1 = 1,
Property2 = 2, // Trailing Comment
};

0.30.0

Breaking Changes

... (truncated)

Changelog

Sourced from CSharpier.MsBuild's changelog.

# 0.30.2

What's Changed

Collection expression inside a dictionary adds unexpected new line #1390

// input & expected output
Dictionary<string, string[]> dictionary = new()
{
    {
        "Key",
        [
            "SomeValue__________________________________________",
            "SomeValue__________________________________________",
        ]
    },
};
// 0.30.1
Dictionary<string, string[]> dictionary = new()
{
{
"Key",
    [
        &quot;SomeValue__________________________________________&quot;,
        &quot;SomeValue__________________________________________&quot;,
    ]
},

};

Failed syntax tree validation reported when trailing comma added before a trailing comment #1388

With the following code, CSharpier will add a trailing comma before the trailing comment.
CSharpier's syntax tree validation was incorrectly reporting this as a failure.

// input
var someObject = new SomeObject()
{
    Property1 = 1,
    Property2 = 2 // Trailing Comment
};
// output
var someObject = new SomeObject()
{
Property1 = 1,
Property2 = 2, // Trailing Comment
};

Full Changelog: belav/csharpier@0.30.1...0.30.2

0.30.1

... (truncated)

Commits

Updates Microsoft.Bcl.AsyncInterfaces from 8.0.0 to 9.0.0

Release notes

Sourced from Microsoft.Bcl.AsyncInterfaces's releases.

.NET 9.0.0

Release

What's Changed

... (truncated)

Commits

Updates System.Threading.Tasks.Extensions from 4.5.4 to 4.5.4

Updates System.Management from 8.0.0 to 9.0.0

Release notes

Sourced from System.Management's releases.

.NET 9.0.0

Release

What's Changed

... (truncated)

Commits

Updates System.Memory from 4.5.5 to 4.6.0

Commits

Updates FluentAssertions from 6.12.1 to 7.0.0

Release notes

Sourced from FluentAssertions's releases.

7.0.0

What's Changed

Breaking Changes

Fixes

Documentation

Others

New Contributors

Full Changelog: fluentassertions/fluentassertions@6.12.2...7.0.0

7.0.0-alpha.6

What's Changed

Breaking Changes

Fixes

Documentation

Others

... (truncated)

Commits
  • e0f4504 Added release note about raising dependencies
  • 5cdaa07 Downgrade ConfigurationManager from 6.0.1 to 6.0.0
  • ba3884e Update FluentAssertions package dependencies (#2673)
  • 4647b6f Missed two more references to master (#2849)
  • 483484d Changed references to the master branch to main (#2848)
  • 4ddd79f Fix minor syntax error in objectgraphs.md
  • 359d851 Fix building benchmarks project
  • b489c53 Fix support for write-only properties in BeEquivalentTo (#2836)
  • 5fa83e2 Drop support for .NET Core 2.1, 3.0 and NSpec (#2835)
  • 93efe19 Bump all relevant dependencies (#2834)
  • Additional commits viewable in compare view

Updates Microsoft.NET.Test.Sdk from 17.11.1 to 17.12.0

Release notes

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

v17.12.0

What's Changed

Internal and infrastructure fixes:

Full Changelog: microsoft/vstest@v17.11.1...v17.12.0

Commits

Updates Xunit.SkippableFact from 1.4.13 to 1.5.23

Release notes

Sourced from Xunit.SkippableFact's releases.

v1.5.23

What's Changed

New Contributors

Full Changelog: AArnott/Xunit.SkippableFact@v1.4.13...v1.5.22

Commits
  • 47a3a8b Ship from tags
  • 0ae9b5b Fix ship job in build workflow
  • b8abc1d Merge pull request #49 from AArnott/docfx
  • 7ab0c10 Build up the docfx site and create a package README
  • 2965bfa Merge pull request #48 from 0xced/SupportedOSPlatform
  • 0dd9ae7 Touch-ups on README
  • 2295987 Add support for the [UnsupportedOSPlatform] attribute
  • 00b459f Add support for platform versions
  • 34c92ae Add skipping tests based on the [SupportedOSPlatform] attribute
  • 8bc417a Another docfx fix
  • Additional commits viewable in compare view

Updates System.Threading.Tasks.Extensions from 4.5.4 to 4.6.0

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 <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name> 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 <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the nuget group with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [CSharpier.MsBuild](https://github.com/belav/csharpier) | `0.29.2` | `0.30.2` |
| [Microsoft.Bcl.AsyncInterfaces](https://github.com/dotnet/runtime) | `8.0.0` | `9.0.0` |
| System.Threading.Tasks.Extensions | `4.5.4` | `4.5.4` |
| [System.Management](https://github.com/dotnet/runtime) | `8.0.0` | `9.0.0` |
| [System.Memory](https://github.com/dotnet/maintenance-packages) | `4.5.5` | `4.6.0` |
| [FluentAssertions](https://github.com/fluentassertions/fluentassertions) | `6.12.1` | `7.0.0` |
| [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) | `17.11.1` | `17.12.0` |
| [Xunit.SkippableFact](https://github.com/AArnott/Xunit.SkippableFact) | `1.4.13` | `1.5.23` |
| System.Threading.Tasks.Extensions | `4.5.4` | `4.6.0` |


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

Updates `Microsoft.Bcl.AsyncInterfaces` from 8.0.0 to 9.0.0
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v9.0.0)

Updates `System.Threading.Tasks.Extensions` from 4.5.4 to 4.5.4

Updates `System.Management` from 8.0.0 to 9.0.0
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v9.0.0)

Updates `System.Memory` from 4.5.5 to 4.6.0
- [Release notes](https://github.com/dotnet/maintenance-packages/releases)
- [Commits](https://github.com/dotnet/maintenance-packages/commits)

Updates `FluentAssertions` from 6.12.1 to 7.0.0
- [Release notes](https://github.com/fluentassertions/fluentassertions/releases)
- [Changelog](https://github.com/fluentassertions/fluentassertions/blob/develop/AcceptApiChanges.ps1)
- [Commits](fluentassertions/fluentassertions@6.12.1...7.0.0)

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

Updates `Xunit.SkippableFact` from 1.4.13 to 1.5.23
- [Release notes](https://github.com/AArnott/Xunit.SkippableFact/releases)
- [Commits](AArnott/Xunit.SkippableFact@v1.4.13...v1.5.23)

Updates `System.Threading.Tasks.Extensions` from 4.5.4 to 4.6.0

---
updated-dependencies:
- dependency-name: CSharpier.MsBuild
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Microsoft.Bcl.AsyncInterfaces
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget
- dependency-name: System.Threading.Tasks.Extensions
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: System.Management
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget
- dependency-name: System.Memory
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: FluentAssertions
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Xunit.SkippableFact
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: System.Threading.Tasks.Extensions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
...

Signed-off-by: dependabot[bot] <[email protected]>
@Tyrrrz Tyrrrz merged commit e3b87e1 into master Dec 2, 2024
6 of 7 checks passed
@Tyrrrz Tyrrrz deleted the dependabot/nuget/nuget-0c485fbd0d branch December 2, 2024 13:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant