Tyrrrz / DiscordChatExporter

Exports Discord chat logs to a file
MIT License
7.65k stars 699 forks source link

Bump the nuget group with 9 updates #1283

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Bumps the nuget group with 9 updates:

Package From To
CSharpier.MsBuild 0.28.2 0.29.1
Microsoft.NET.Test.Sdk 17.10.0 17.11.0
WebMarkupMin.Core 2.16.2 2.17.0
AsyncImageLoader.Avalonia 3.2.1 3.3.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: https://github.com/belav/csharpier/compare/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: https://github.com/belav/csharpier/compare/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: https://github.com/microsoft/vstest/compare/v17.10.0...v17.11.0-release-24352-06

v17.11.0-release-24373-02

What's Changed

... (truncated)

Commits


Updates WebMarkupMin.Core from 2.16.2 to 2.17.0

Release notes

Sourced from WebMarkupMin.Core's releases.

v2.17.0

Version: 2.17.0 Published: 8/6/2024 Change Set: 30ba3ee

  • In HTML and XHTML minification settings was added one new property - PreservableHtmlCommentList (default is empty)
  • In WebMarkupMin.NUglify added support for the NUglify version 1.21.9
  • In WebMarkupMin.AspNetCore6 added support for the ASP.NET Core 6.0.32
  • In WebMarkupMin.AspNetCore8 added support for the ASP.NET Core 8.0.7

NuGet Packages

Core
External JS and CSS minifiers
ASP.NET Extensions
Changelog

Sourced from WebMarkupMin.Core's changelog.

v2.17.0 - August 6, 2024

  • In HTML and XHTML minification settings was added one new property - PreservableHtmlCommentList (default is empty)
  • In WebMarkupMin.NUglify added support for the NUglify version 1.21.9
  • In WebMarkupMin.AspNetCore6 added support for the ASP.NET Core 6.0.32
  • In WebMarkupMin.AspNetCore8 added support for the ASP.NET Core 8.0.7
Commits
  • 30ba3ee Version 2.17.0
  • d8cee38 In WebMarkupMin.NUglify added support for the NUglify version 1.21.9
  • 11bee9e In WebMarkupMin.AspNetCore6 added support for the ASP.NET Core 6.0.32
  • d8ab963 In WebMarkupMin.AspNetCore8 added support for the ASP.NET Core 8.0.7
  • 1b7c753 Added a PACKAGE-DESCRIPTION.md files to NuGet packages
  • 78c7f93 In HTML and XHTML minification settings was added one new property - `Preserv...
  • See full diff in compare view


Updates AsyncImageLoader.Avalonia from 3.2.1 to 3.3.0

Release notes

Sourced from AsyncImageLoader.Avalonia's releases.

v3.3.0

What's Changed

New Contributors

Full Changelog: https://github.com/AvaloniaUtils/AsyncImageLoader.Avalonia/compare/v3.2.1...v3.3.0

Commits
  • 5836120 Exclude demo project from dotnet pack
  • 00edb42 Merge pull request #24 from AvaloniaUtils/addLogging
  • 274706f Add errors logging to loaders
  • f02aaab Migrate to common pipelines, bump dependencies in demo
  • See full diff 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: https://github.com/AvaloniaUI/Avalonia/compare/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: https://github.com/AvaloniaUI/Avalonia/compare/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: https://github.com/AvaloniaUI/Avalonia/compare/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