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 5 updates #67

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 5 updates:

Package From To
CSharpier.MsBuild 0.29.2 0.30.2
FluentAssertions 6.12.1 6.12.2
Microsoft.NET.Test.Sdk 17.11.1 17.12.0
Deorcify 1.0.2 1.1.0
Fody 6.8.2 6.9.1

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 FluentAssertions from 6.12.1 to 6.12.2

Release notes

Sourced from FluentAssertions's releases.

6.12.2

What's Changed

Others

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

Commits
  • c6cd85c Better support for default interface and explicitly implemented properties (#...
  • See full diff 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 Deorcify from 1.0.2 to 1.1.0

Release notes

Sourced from Deorcify's releases.

1.1

What's Changed

New Contributors

Full Changelog: Tyrrrz/Deorcify@1.0.2...1.1

Commits
  • 91663a7 Allow bypass using a file (#7)
  • 6f3d50e Bump CSharpier.MsBuild from 0.29.1 to 0.29.2 in the nuget group (#6)
  • a729f23 Bump CSharpier.MsBuild from 0.28.2 to 0.29.1 in the nuget group (#5)
  • 57d8df6 Bump CSharpier.MsBuild from 0.26.5 to 0.28.2 in the nuget group (#4)
  • 4d19738 Create dependabot.yml
  • 9dbfb4e Remove missing file references
  • 0b6c552 Remove changelog
  • 5f849b2 Update license
  • e678fd8 Update package release notes link
  • a1529e0 Fix typo
  • Additional commits viewable in compare view

Updates Fody from 6.8.2 to 6.9.1

Release notes

Sourced from Fody's releases.

6.9.1

What's Changed

Full Changelog: Fody/Fody@6.9.0...6.9.1

6.9.0

What's Changed

Full Changelog: Fody/Fody@6.8.2...6.9.0

Commits

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 5 updates:

| Package | From | To |
| --- | --- | --- |
| [CSharpier.MsBuild](https://github.com/belav/csharpier) | `0.29.2` | `0.30.2` |
| [FluentAssertions](https://github.com/fluentassertions/fluentassertions) | `6.12.1` | `6.12.2` |
| [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) | `17.11.1` | `17.12.0` |
| [Deorcify](https://github.com/Tyrrrz/Deorcify) | `1.0.2` | `1.1.0` |
| [Fody](https://github.com/Fody/Fody) | `6.8.2` | `6.9.1` |


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 `FluentAssertions` from 6.12.1 to 6.12.2
- [Release notes](https://github.com/fluentassertions/fluentassertions/releases)
- [Changelog](https://github.com/fluentassertions/fluentassertions/blob/develop/AcceptApiChanges.ps1)
- [Commits](fluentassertions/fluentassertions@6.12.1...6.12.2)

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 `Deorcify` from 1.0.2 to 1.1.0
- [Release notes](https://github.com/Tyrrrz/Deorcify/releases)
- [Commits](Tyrrrz/Deorcify@1.0.2...1.1)

Updates `Fody` from 6.8.2 to 6.9.1
- [Release notes](https://github.com/Fody/Fody/releases)
- [Commits](Fody/Fody@6.8.2...6.9.1)

---
updated-dependencies:
- dependency-name: CSharpier.MsBuild
  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-patch
  dependency-group: nuget
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Deorcify
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Fody
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the enhancement New feature or request label Dec 1, 2024
@Tyrrrz Tyrrrz merged commit 31d23ef into master Dec 2, 2024
2 of 5 checks passed
@Tyrrrz Tyrrrz deleted the dependabot/nuget/nuget-dd87db8657 branch December 2, 2024 13:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant