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 7 updates #332

Merged
merged 1 commit into from
Sep 2, 2024

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the nuget group with 7 updates:

Package From To
CSharpier.MsBuild 0.28.2 0.29.1
Microsoft.NET.Test.Sdk 17.10.0 17.11.0
Avalonia 11.1.1 11.1.3
Avalonia.Desktop 11.1.1 11.1.3
Avalonia.Diagnostics 11.1.1 11.1.3
CommunityToolkit.Mvvm 8.2.2 8.3.0
DialogHost.Avalonia 0.7.9 0.8.1

Updates CSharpier.MsBuild from 0.28.2 to 0.29.1

Release notes

Sourced from CSharpier.MsBuild's releases.

0.29.1

What's Changed

Sorting of usings with underscore differs from Visual Studio #1327

CSharpier now sorts _ to the bottom of usings.

using SomeCompany.MWord;
using SomeCompany.ZWord;
using SomeCompany._Word;

Process cannot access the file "....net8.0\any\server.log" while running multiple extensions. #1324

CSharpier Server now uses a log file name based on the port that it is starting on to avoid concurrency issues trying to access the same log file

Full Changelog: belav/csharpier@0.29.0...0.29.1

0.29.0

Breaking Changes

The formatting command will now exit with an error code of 1 if one of the target files cannot be compiled #1131

Prior to 0.29.0 if csharpier encountered a file that could not be compiled it would treat it as a warning and exit with a code of 0.
As of 0.29.0 a file that cannot be compiled is now treated as an error and csharpier will exit with code 1

What's Changed

Enforce trailing commas in object and collection initializer #668

CSharpier will now add trailing commas automatically where appropriate. It will collapse to a single line and remove the trailing comma in cases where everything fits on one line.

// input
public enum SomeEnum
{
    Value1,
    Value2
}
string[] someArray = new string[]
{
someLongValue_____________________________________________,
someLongValue_____________________________________________
};
string[] someArray = new string[]
{
someValue,
someValue,
};
// 0.29.0
public enum SomeEnum
{
Value1,
Value2,
}
</tr></table>

... (truncated)

Changelog

Sourced from CSharpier.MsBuild's changelog.

# 0.29.1

What's Changed

Sorting of usings with underscore differs from Visual Studio #1327

CSharpier now sorts _ to the bottom of usings.

using SomeCompany.MWord;
using SomeCompany.ZWord;
using SomeCompany._Word;

Process cannot access the file "....net8.0\any\server.log" while running multiple extensions. #1324

CSharpier Server now uses a log file name based on the port that it is starting on to avoid concurrency issues trying to access the same log file

Full Changelog: belav/csharpier@0.29.0...0.29.1

0.29.0

Breaking Changes

The formatting command will now exit with an error code of 1 if one of the target files cannot be compiled #1131

Prior to 0.29.0 if csharpier encountered a file that could not be compiled it would treat it as a warning and exit with a code of 0.
As of 0.29.0 a file that cannot be compiled is now treated as an error and csharpier will exit with code 1

What's Changed

Enforce trailing commas in object and collection initializer #668

CSharpier will now add trailing commas automatically where appropriate. It will collapse to a single line and remove the trailing comma in cases where everything fits on one line.

// input
public enum SomeEnum
{
    Value1,
    Value2
}
string[] someArray = new string[]
{
someLongValue_____________________________________________,
someLongValue_____________________________________________
};
string[] someArray = new string[]
{
someValue,
someValue,
};
// 0.29.0
public enum SomeEnum
{
Value1,
Value2,
}
string[] someArray = new string[]
</tr></table>

... (truncated)

Commits
  • b87b4df Releasing 0.29.1 (#1331)
  • 10e0780 Support for multiple csharpier servers running at the same time, have them wr...
  • 2ed8622 Getting _ to sort to the top like it should (#1328)
  • 688aeb7 VS - Use dotnet tool list to find both local and global installs of csharpier...
  • 1cdcf0a fix width
  • c529570 prettier all the java
  • 88383e7 Using dotnet tool list for rider extension (#1325)
  • 2456512 Modify VSCode extension to use dotnet tool list + only warn to instal… (#1323)
  • 6cb3821 Format with 29 (#1322)
  • 0abbc1d fix typo
  • Additional commits viewable in compare view

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

Release notes

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

v17.11.0

What's Changed

New Contributors

Full Changelog: microsoft/vstest@v17.10.0...v17.11.0-release-24352-06

v17.11.0-release-24373-02

What's Changed

... (truncated)

Commits

Updates Avalonia from 11.1.1 to 11.1.3

Release notes

Sourced from Avalonia's releases.

11.1.3

What's Changed

Features

Fixes

Infrastructure

Full Changelog: AvaloniaUI/Avalonia@11.1.2...11.1.3

11.1.2

What's Changed

Features

... (truncated)

Commits
  • 45a2d36 Bump version
  • 3316e84 Fix macOS intgr tests bad merge
  • f90a868 Remove unncessary API suppressions
  • 457835f Adjust api diff once more
  • b971a37 add api to allow text input method to trigger common context menu actions (#1...
  • 7b33bdc Reset API validation baseline (#16470)
  • 6b0075d Trying to fix flaky window decorations tests. (#16597)
  • d6f030e Fix macOS intgr test after backports
  • 3e61cdf Added Compositor.CreateCompositionVisualSnapshot API (#16599)
  • cb06181 Always invalidate the visual explicitly when the TextLayout is invalidated (#...
  • Additional commits viewable in compare view

Updates Avalonia.Desktop from 11.1.1 to 11.1.3

Release notes

Sourced from Avalonia.Desktop's releases.

11.1.3

What's Changed

Features

Fixes

Infrastructure

Full Changelog: AvaloniaUI/Avalonia@11.1.2...11.1.3

11.1.2

What's Changed

Features

... (truncated)

Commits
  • 45a2d36 Bump version
  • 3316e84 Fix macOS intgr tests bad merge
  • f90a868 Remove unncessary API suppressions
  • 457835f Adjust api diff once more
  • b971a37 add api to allow text input method to trigger common context menu actions (#1...
  • 7b33bdc Reset API validation baseline (#16470)
  • 6b0075d Trying to fix flaky window decorations tests. (#16597)
  • d6f030e Fix macOS intgr test after backports
  • 3e61cdf Added Compositor.CreateCompositionVisualSnapshot API (#16599)
  • cb06181 Always invalidate the visual explicitly when the TextLayout is invalidated (#...
  • Additional commits viewable in compare view

Updates Avalonia from 11.1.1 to 11.1.3

Release notes

Sourced from Avalonia's releases.

11.1.3

What's Changed

Features

Fixes

Infrastructure

Full Changelog: AvaloniaUI/Avalonia@11.1.2...11.1.3

11.1.2

What's Changed

Features

... (truncated)

Commits
  • 45a2d36 Bump version
  • 3316e84 Fix macOS intgr tests bad merge
  • f90a868 Remove unncessary API suppressions
  • 457835f Adjust api diff once more
  • b971a37 add api to allow text input method to trigger common context menu actions (#1...
  • 7b33bdc Reset API validation baseline (#16470)
  • 6b0075d Trying to fix flaky window decorations tests. (#16597)
  • d6f030e Fix macOS intgr test after backports
  • 3e61cdf Added Compositor.CreateCompositionVisualSnapshot API (#16599)
  • cb06181 Always invalidate the visual explicitly when the TextLayout is invalidated (#...
  • Additional commits viewable in compare view

Updates Avalonia.Diagnostics from 11.1.1 to 11.1.3

Release notes

Sourced from Avalonia.Diagnostics's releases.

11.1.3

What's Changed

Features

Fixes

Infrastructure

Full Changelog: AvaloniaUI/Avalonia@11.1.2...11.1.3

11.1.2

What's Changed

Features

... (truncated)

Commits
  • 45a2d36 Bump version
  • 3316e84 Fix macOS intgr tests bad merge
  • f90a868 Remove unncessary API suppressions
  • 457835f Adjust api diff once more
  • b971a37 add api to allow text input method to trigger common context menu actions (#1...
  • 7b33bdc Reset API validation baseline (#16470)
  • 6b0075d Trying to fix flaky window decorations tests. (#16597)
  • d6f030e Fix macOS intgr test after backports
  • 3e61cdf Added Compositor.CreateCompositionVisualSnapshot API (#16599)
  • cb06181 Always invalidate the visual explicitly when the TextLayout is invalidated (#...
  • Additional commits viewable in compare view

Updates Avalonia from 11.1.1 to 11.1.3

Release notes

Sourced from Avalonia's releases.

11.1.3

What's Changed

Features

Fixes

Bumps the nuget group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [CSharpier.MsBuild](https://github.com/belav/csharpier) | `0.28.2` | `0.29.1` |
| [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) | `17.10.0` | `17.11.0` |
| [Avalonia](https://github.com/AvaloniaUI/Avalonia) | `11.1.1` | `11.1.3` |
| [Avalonia.Desktop](https://github.com/AvaloniaUI/Avalonia) | `11.1.1` | `11.1.3` |
| [Avalonia.Diagnostics](https://github.com/AvaloniaUI/Avalonia) | `11.1.1` | `11.1.3` |
| [CommunityToolkit.Mvvm](https://github.com/CommunityToolkit/dotnet) | `8.2.2` | `8.3.0` |
| [DialogHost.Avalonia](https://github.com/AvaloniaUtils/DialogHost.Avalonia) | `0.7.9` | `0.8.1` |


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

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

Updates `Avalonia` from 11.1.1 to 11.1.3
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.1.1...11.1.3)

Updates `Avalonia.Desktop` from 11.1.1 to 11.1.3
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.1.1...11.1.3)

Updates `Avalonia` from 11.1.1 to 11.1.3
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.1.1...11.1.3)

Updates `Avalonia.Diagnostics` from 11.1.1 to 11.1.3
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.1.1...11.1.3)

Updates `Avalonia` from 11.1.1 to 11.1.3
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.1.1...11.1.3)

Updates `CommunityToolkit.Mvvm` from 8.2.2 to 8.3.0
- [Release notes](https://github.com/CommunityToolkit/dotnet/releases)
- [Commits](CommunityToolkit/dotnet@v8.2.2...v8.3.0)

Updates `DialogHost.Avalonia` from 0.7.9 to 0.8.1
- [Release notes](https://github.com/AvaloniaUtils/DialogHost.Avalonia/releases)
- [Commits](AvaloniaUtils/DialogHost.Avalonia@v0.7.9...v0.8.1)

---
updated-dependencies:
- dependency-name: CSharpier.MsBuild
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Avalonia.Desktop
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Avalonia.Diagnostics
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: CommunityToolkit.Mvvm
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: DialogHost.Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
...

Signed-off-by: dependabot[bot] <[email protected]>
@Tyrrrz Tyrrrz merged commit 5f89ac8 into master Sep 2, 2024
8 checks passed
@Tyrrrz Tyrrrz deleted the dependabot/nuget/nuget-a7ef1b305b branch September 2, 2024 00:13
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