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 12 updates #1329

Merged
merged 1 commit into from
Jan 1, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 1, 2025

Bumps the nuget group with 13 updates:

Package From To
AngleSharp 1.1.2 1.2.0
coverlet.collector 6.0.2 6.0.3
CSharpier.MsBuild 0.30.2 0.30.4
FluentAssertions 6.12.2 7.0.0
xunit.runner.visualstudio 2.8.2 3.0.0
RazorBlade 0.6.0 0.7.0
YoutubeExplode 6.4.4 6.5.0
Avalonia 11.2.2 11.2.3
Avalonia.Desktop 11.2.2 11.2.3
Avalonia.Diagnostics 11.2.2 11.2.3
CommunityToolkit.Mvvm 8.3.2 8.4.0
Avalonia 11.2.2 11.1.0
Material.Avalonia 3.8.0 3.9.1

Updates AngleSharp from 1.1.2 to 1.2.0

Release notes

Sourced from AngleSharp's releases.

1.2.0

Released on Tuesday, December 31 2024.

1.2.0-beta.449

Released on Sunday, April 14 2024.

1.2.0-beta.448

Released on Sunday, April 14 2024.

1.2.0-beta.410

Released on tbd.

1.2.0-beta.408

Released on tbd.

Changelog

Sourced from AngleSharp's changelog.

1.2.0

Released on Tuesday, December 31 2024.

Commits
  • 8d12af1 Merge pull request #1214 from AngleSharp/devel
  • c089bfc Updated changelog
  • 38fed33 Merge pull request #1211 from rhuebner76/issue-1210-isstepmismatch-validation
  • c3a2606 Merge pull request #1213 from noobow34/fix-1212
  • d6f022c Add test for #1212
  • 661db81 fix #1212
  • 2760825 Corrected step in test to include leading zero (0) and revised IsStepMismatch...
  • 811ef26 improved test cases
  • f8ebff5 Remove errant thought comment
  • 6efb1e3 Add Step Mismatch with (floating-point) number test cases for valid and inval...
  • Additional commits viewable in compare view

Updates coverlet.collector from 6.0.2 to 6.0.3

Release notes

Sourced from coverlet.collector's releases.

v6.0.3

Fixed

  • Fix RuntimeConfigurationReader to support self-contained builds #1705 by https://github.com/pfeigl
  • Fix inconsistent filenames with UseSourceLink after .NET 8 #1679
  • Fix hanging tests #989
  • Fix coverlet instrumentation becomes slow after installing dotnet sdk 8.0.200 #1620
  • Fix upgrading v6.0.1 to v6.0.2 increases instrumentation time #1649
  • Fix Unable to instrument module - NET 8 #1631
  • Fix slow modules filtering process #1646 by https://github.com/BlackGad
  • Fix incorrect coverage await using in generic method #1490

Improvements

  • Cache the regex used in InstrumentationHelper #1693
  • Enable dotnetTool integration tests for linux #660

Diff between 6.0.2 and 6.0.3

Commits

Updates CSharpier.MsBuild from 0.30.2 to 0.30.4

Release notes

Sourced from CSharpier.MsBuild's releases.

0.30.4

What's Changed

Formatting deletes unsafe modifier #1416

Formatting a using directive with an unsafe modifier resulted in the lose of the unsafe keyword

// input & expected output
using unsafe NvapiQueryInterface = delegate* unmanaged[Cdecl]<uint, nint>;
// 0.30.3
using NvapiQueryInterface = delegate* unmanaged[Cdecl]<uint, nint>;

CSharpier keeps adding a newline every time a file is formatted #1408

In some cases if a file ended with a comment, CSharpier would add a new extra blank line above the comment each time it formatted the file

// input & expected outpet
using System;
namespace MyCompany.MyNamespace;
// Comment block
// 0.30.3
using System;
namespace MyCompany.MyNamespace;
// Comment block

Full Changelog: belav/csharpier@0.30.3...0.30.4

0.30.3

What's Changed

CSharpier.MsBuild doesn't fail the github action anymore #1357

The changes for 1311 caused CSharpier.MsBuild to not report unformatted files as errors on linux.

Thanks go to @​PetSerAl for the fix

Changelog

Sourced from CSharpier.MsBuild's changelog.

# 0.30.4

What's Changed

Formatting deletes unsafe modifier #1416

Formatting a using directive with an unsafe modifier resulted in the lose of the unsafe keyword

// input & expected output
using unsafe NvapiQueryInterface = delegate* unmanaged[Cdecl]<uint, nint>;
// 0.30.3
using NvapiQueryInterface = delegate* unmanaged[Cdecl]<uint, nint>;

CSharpier keeps adding a newline every time a file is formatted #1408

In some cases if a file ended with a comment, CSharpier would add a new extra blank line above the comment each time it formatted the file

// input & expected outpet
using System;
namespace MyCompany.MyNamespace;
// Comment block
// 0.30.3
using System;
namespace MyCompany.MyNamespace;
// Comment block

Full Changelog: belav/csharpier@0.30.3...0.30.4

0.30.3

What's Changed

CSharpier.MsBuild doesn't fail the github action anymore #1357

The changes for 1311 caused CSharpier.MsBuild to not report unformatted files as errors on linux.

Thanks go to @​PetSerAl for the fix

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

Commits
  • 064d35f Releasing 0.30.4 (#1420)
  • cd618ac Fixing a bug introduced by one of the fixes (#1421)
  • 3b88bee Fixing issue with losing unsafe keyword on using statement (#1417)
  • e3b5efb Figuring out a way to prevent the extra line before a file ending comment (#1...
  • baa3138 Some refactoring that was in the csproj branch but didn't really belng there ...
  • bfedce4 Ignoring files in "" when reporting that csharpier needs to be insta… (#1412)
  • 6d285fe Avoid eagerly warming csharpier, doesn't seem to be a good way to delay that ...
  • 5cf6488 Fixing bug for VS2022 options page not working when no solution open. (#1410)
  • 3c6f9ce Adding an option to disable diagnostics for unformatted code. (#1404)
  • 0bec7d2 Releasing 0.30.3 (#1401)
  • Additional commits viewable in compare view

Updates FluentAssertions from 6.12.2 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 xunit.runner.visualstudio from 2.8.2 to 3.0.0

Commits
  • e341b93 v3.0.0
  • 56f71f3 Second location where PreEnumerateTheories needs to be turned off for #426
  • d94ab88 #426: Can't filter by traits on ITheoryDataRow
  • 9154f3f Latest dependencies
  • feff8e2 Stick to .NET SDK 8
  • 62ae086 Conditional verbosity when packing packages based on the .NET SDK version
  • a7f5dc0 Latest dependencies
  • d5676ac #422: Add XunitSkipReason property to VSTest test case
  • 3d3b241 Back-fill tests for VsDiscoverySink
  • e2d5be2 Enable nullable in test project
  • Additional commits viewable in compare view

Updates RazorBlade from 0.6.0 to 0.7.0

Release notes

Sourced from RazorBlade's releases.

v0.7.0

  • Added warning when using RazorBlade in an ASP.NET project (#14, #15)
  • Added PushWriter/PopWriter methods in RazorTemplate
  • Added support for templated delegates (#17)
  • Fixed Visual Studio removing newly added .cshtml files (#16)
Commits

Updates YoutubeExplode from 6.4.4 to 6.5.0

Release notes

Sourced from YoutubeExplode's releases.

6.5

What's Changed

Full Changelog: Tyrrrz/YoutubeExplode@6.4.4...6.5

Commits

Updates Avalonia from 11.2.2 to 11.2.3

Release notes

Sourced from Avalonia's releases.

11.2.3

Full Changelog: AvaloniaUI/Avalonia@11.2.2...11.2.3

Enhancements

Fixes

Commits
  • 151d97a Bump version
  • aa9ce85 [macOS] Prevent popups from stealing focus (#17794)
  • f29675d [MacOS] fix small memory leak. base.Dispose so that _nativeControlHost and _m...
  • 9ad2ad6 Auto free finished vulkan command buffers in gpu interop feature implementati...
  • 04231a4 Update pen tap settings (#17780)
  • 5cc111c Implemented XEmbed client support with GtkSharp usage example (#17446)
  • b977368 [GLX] Resize the platform render target to compositor-provided size (#17779)
  • 261a08a Fix KnownFolder for x86 Windows (#17705)
  • d934958 Made OneTime bindings update on DataContext changes (#17683)
  • 2e5fbc8 Ignore key modifiers on text editing if field is a password field. (#17695)
  • Additional commits viewable in compare view

Updates Avalonia from 11.2.2 to 11.2.3

Release notes

Sourced from Avalonia's releases.

11.2.3

Full Changelog: AvaloniaUI/Avalonia@11.2.2...11.2.3

Enhancements

Fixes

Commits
  • 151d97a Bump version
  • aa9ce85 [macOS] Prevent popups from stealing focus (#17794)
  • f29675d [MacOS] fix small memory leak. base.Dispose so that _nativeControlHost and _m...
  • 9ad2ad6 Auto free finished vulkan command buffers in gpu interop feature implementati...
  • 04231a4 Update pen tap settings (#17780)
  • 5cc111c Implemented XEmbed client support with GtkSharp usage example (#17446)
  • b977368 [GLX] Resize the platform render target to compositor-provided size (#17779)
  • 261a08a Fix KnownFolder for x86 Windows (#17705)
  • d934958 Made OneTime bindings update on DataContext changes (#17683)
  • 2e5fbc8 Ignore key modifiers on text editing if field is a password field. (#17695)
  • Additional commits viewable in compare view

Updates Avalonia.Desktop from 11.2.2 to 11.2.3

Release notes

Sourced from Avalonia.Desktop's releases.

11.2.3

Full Changelog: AvaloniaUI/Avalonia@11.2.2...11.2.3

Enhancements

Fixes

Commits
  • 151d97a Bump version
  • aa9ce85 [macOS] Prevent popups from stealing focus (#17794)
  • f29675d [MacOS] fix small memory leak. base.Dispose so that _nativeControlHost and _m...
  • 9ad2ad6 Auto free finished vulkan command buffers in gpu interop feature implementati...
  • 04231a4 Update pen tap settings (#17780)
  • 5cc111c Implemented XEmbed client support with GtkSharp usage example (#17446)
  • b977368 [GLX] Resize the platform render target to compositor-provided size (#17779)
  • 261a08a Fix KnownFolder for x86 Windows (#17705)
  • d934958 Made OneTime bindings update on DataContext changes (#17683)
  • 2e5fbc8 Ignore key modifiers on text editing if field is a password field. (#17695)
  • Additional commits viewable in compare view

Updates Avalonia from 11.2.2 to 11.2.3

Release notes

Sourced from Avalonia's releases.

11.2.3

Full Changelog: AvaloniaUI/Avalonia@11.2.2...11.2.3

Enhancements

Fixes

Bumps the nuget group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [AngleSharp](https://github.com/AngleSharp/AngleSharp) | `1.1.2` | `1.2.0` |
| [coverlet.collector](https://github.com/coverlet-coverage/coverlet) | `6.0.2` | `6.0.3` |
| [CSharpier.MsBuild](https://github.com/belav/csharpier) | `0.30.2` | `0.30.4` |
| [FluentAssertions](https://github.com/fluentassertions/fluentassertions) | `6.12.2` | `7.0.0` |
| [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) | `2.8.2` | `3.0.0` |
| [RazorBlade](https://github.com/ltrzesniewski/RazorBlade) | `0.6.0` | `0.7.0` |
| [YoutubeExplode](https://github.com/Tyrrrz/YoutubeExplode) | `6.4.4` | `6.5.0` |
| [Avalonia](https://github.com/AvaloniaUI/Avalonia) | `11.2.2` | `11.2.3` |
| [Avalonia.Desktop](https://github.com/AvaloniaUI/Avalonia) | `11.2.2` | `11.2.3` |
| [Avalonia.Diagnostics](https://github.com/AvaloniaUI/Avalonia) | `11.2.2` | `11.2.3` |
| [CommunityToolkit.Mvvm](https://github.com/CommunityToolkit/dotnet) | `8.3.2` | `8.4.0` |
| [Avalonia](https://github.com/AvaloniaUI/Avalonia) | `11.2.2` | `11.1.0` |
| [Material.Avalonia](https://github.com/AvaloniaCommunity/Material.Avalonia) | `3.8.0` | `3.9.1` |


Updates `AngleSharp` from 1.1.2 to 1.2.0
- [Release notes](https://github.com/AngleSharp/AngleSharp/releases)
- [Changelog](https://github.com/AngleSharp/AngleSharp/blob/devel/CHANGELOG.md)
- [Commits](AngleSharp/AngleSharp@1.1.2...1.2.0)

Updates `coverlet.collector` from 6.0.2 to 6.0.3
- [Release notes](https://github.com/coverlet-coverage/coverlet/releases)
- [Commits](coverlet-coverage/coverlet@v6.0.2...v6.0.3)

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

Updates `FluentAssertions` from 6.12.2 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.2...7.0.0)

Updates `xunit.runner.visualstudio` from 2.8.2 to 3.0.0
- [Release notes](https://github.com/xunit/visualstudio.xunit/releases)
- [Commits](xunit/visualstudio.xunit@2.8.2...3.0.0)

Updates `RazorBlade` from 0.6.0 to 0.7.0
- [Release notes](https://github.com/ltrzesniewski/RazorBlade/releases)
- [Commits](ltrzesniewski/RazorBlade@v0.6.0...v0.7.0)

Updates `YoutubeExplode` from 6.4.4 to 6.5.0
- [Release notes](https://github.com/Tyrrrz/YoutubeExplode/releases)
- [Commits](Tyrrrz/YoutubeExplode@6.4.4...6.5)

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

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

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

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

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

Updates `CommunityToolkit.Mvvm` from 8.3.2 to 8.4.0
- [Release notes](https://github.com/CommunityToolkit/dotnet/releases)
- [Commits](CommunityToolkit/dotnet@v8.3.2...v8.4.0)

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

Updates `Material.Avalonia` from 3.8.0 to 3.9.1
- [Release notes](https://github.com/AvaloniaCommunity/Material.Avalonia/releases)
- [Commits](AvaloniaCommunity/Material.Avalonia@v3.8.0...v3.9.1)

---
updated-dependencies:
- dependency-name: AngleSharp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: coverlet.collector
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: CSharpier.MsBuild
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: FluentAssertions
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget
- dependency-name: xunit.runner.visualstudio
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget
- dependency-name: RazorBlade
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: YoutubeExplode
  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
  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: CommunityToolkit.Mvvm
  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-minor
  dependency-group: nuget
- dependency-name: Material.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 45ff1da into master Jan 1, 2025
24 of 25 checks passed
@dependabot dependabot bot deleted the dependabot/nuget/nuget-061e00259b branch January 1, 2025 11: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