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

chore(deps): bump the major-updates group across 1 directory with 17 updates #37

Merged
merged 3 commits into from
Jan 3, 2025

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the major-updates group with 17 updates in the / directory:

Package From To
FSharp.Core 8.0.400 9.0.100
MSBuild.StructuredLogger 2.2.350 2.2.386
coverlet.collector 6.0.2 6.0.3
Microsoft.NET.Test.Sdk 17.11.1 17.12.0
xunit.runner.visualstudio 2.8.2 3.0.0
FSharp.Core 8.0.400 6.0.0
Argu 6.2.4 6.2.5
Avalonia 11.1.3 11.2.3
Avalonia.Headless.XUnit 11.1.3 11.2.3
Avalonia 11.1.3 11.2.3
Avalonia.Themes.Fluent 11.1.3 11.2.3
Avalonia 11.1.3 11.2.3
Avalonia.Controls.DataGrid 11.1.3 11.2.3
Avalonia 11.1.3 11.2.3
Avalonia.Desktop 11.1.3 11.2.3
Avalonia 11.1.3 11.2.3
Avalonia.Controls.DataGrid 11.1.3 11.2.3
Avalonia.Diagnostics 11.1.3 11.2.3
Avalonia 11.1.3 11.2.3
Avalonia.ReactiveUI 11.1.3 11.2.3
Microsoft.Extensions.DependencyInjection 8.0.0 9.0.0
Avalonia 11.1.3 11.2.3
Projektanker.Icons.Avalonia 9.4.0 9.6.0
Avalonia 11.1.3 11.2.3
Projektanker.Icons.Avalonia 9.4.0 9.6.0
Projektanker.Icons.Avalonia.FontAwesome 9.4.0 9.6.0
Avalonia 11.1.3 11.2.3
Projektanker.Icons.Avalonia 9.4.0 9.6.0
Projektanker.Icons.Avalonia.MaterialDesign 9.4.0 9.6.0

Updates FSharp.Core from 8.0.400 to 9.0.100

Release notes

Sourced from FSharp.Core's releases.

.NET 7.0.3

Release

.NET 6.0.11

Release

.NET 6.0.6

Release

.NET 6.0.5

Release

.NET 5.0.8

Release

Changelog

Sourced from FSharp.Core's changelog.

Copyright (c) Microsoft Corporation. All Rights Reserved. See License.txt in the project root for license information.

About the release notes

For the most recent release notes see: /docs/release-notes

This document contains historical release notes information. They are preserved in their original form.

Current release notes

These release notes track our current efforts to document changes to the F# project over time. They are split into the language, core library, compiler/tools, and compiler service.

FSharp Compiler Service (main)

  • In FSharpParsingOptions, rename ConditionalCompilationDefines --> ConditionalDefines
  • Some syntax tree nodes have changed, e.g. introduction of SyntaxTree trivia
  • Resolved expressions (FSharpExpr) now reveal debug points, you must match them explicitly using DebugPoint(dp, expr)
  • Some node types in FSharpExpr (e.g. Let, While, TryFinally, TryWith) reveal additional debug points
  • In FSharpExpr, FastIntegerForLoop has been renamed to IntegerForLoop
  • SynModuleDecl.DoExpr --> SynModuleDecl.Expr because it was not corresponding to a 'do expr' declaration. A 'do expr' declaration in a module will correspond to a SynModuleDecl.Expr enclosing a SynExpr.Do This constructor also loses the debug point as it was always None. The debug point is always implicit for this construct.
  • In FCS API, FSharpParsingOptions, CompilingFsLib --> CompilingFSharpCore
  • In FCS API, FSharpParsingOptions, ErrorSeverityOptions --> DiagnosticOptions
  • SynIdent was introduced in the Untyped Syntax Tree. This represent an Ident with potential additional information, stored as IdentTrivia).
  • LongIdentWithDots was renamed to SynLongIdent and also could contain IdentTrivia. Due to this change, infix operators are stored as SynExpr.LongIdent instead of SynExpr.Ident. a + b is parsed as SynLongIdent([op_Addition], [], [Some (OriginalNotation "+")]).
  • SynMeasure was extended with SynMeasure.Paren case.
  • Dynamic expressions (like x?y) are now represented as SynExpr.Dynamic in the Untyped Syntax Tree.
  • Members with get and/or set are now represented as SynMemberDefn.GetSetMember in the Untyped Syntax Tree.
  • DoesIdentifierNeedBackticks is removed, it should always be sufficient to call NormalizeIdentifierBackticks or else call something in PrettyNaming
  • AddBackticksToIdentifierIfNeeded is removed, it should always be sufficient to call NormalizeIdentifierBackticks
  • DeclarationListItem.Name --> DeclarationListItem.NameInList

F# 6.0 / Visual Studio 17.0

FSharp.Core 6.0.0

... (truncated)

Commits

Updates MSBuild.StructuredLogger from 2.2.350 to 2.2.386

Release notes

Sourced from MSBuild.StructuredLogger's releases.

v2.2.383

What's Changed

Full Changelog: KirillOsenkov/MSBuildStructuredLog@v2.2.379...v2.2.383

Published

Experimental secret search with $secret

What's Changed

  • Add secrets search and bump DotUtils.MsBuild.BinlogRedactor.SensitiveDataDetector version by @​YuliiaKovalova in KirillOsenkov/MSBuildStructuredLog#829
  • builds that don't have BuildStarted and BuildFinished are considered succeeded, not failed (e.g. for binlogs produced from just the evaluation)

Search for $secret to find potential secrets in the binlog.

Full Changelog: KirillOsenkov/MSBuildStructuredLog@v2.2.376...v2.2.379

2.2.376

No release notes provided.

v2.2.374

What's Changed

  • Add a main menu link to search syntax wiki by @​vikukush in KirillOsenkov/MSBuildStructuredLog#826
  • Fixes to TaskRunner (run and debug tasks)
  • Fix $copy to pick the right project to explain a single file copy
  • Recover file copy operations for skipped _CopyOutOfDateSourceItemsToOutputDirectory target (for incremental build scenarios where no copy has actually happened)
  • Fix a deadlock when an exception happens on a background thread

New Contributors

Full Changelog: KirillOsenkov/MSBuildStructuredLog@v2.2.356...v2.2.374

Support binlog format version 24

What's Changed

New Contributors

Full Changelog: KirillOsenkov/MSBuildStructuredLog@v2.2.350...v2.2.356

Published:

... (truncated)

Commits

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 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.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 FSharp.Core from 8.0.400 to 6.0.0

Release notes

Sourced from FSharp.Core's releases.

.NET 7.0.3

Release

.NET 6.0.11

Release

.NET 6.0.6

Release

.NET 6.0.5

Release

.NET 5.0.8

Release

Changelog

Sourced from FSharp.Core's changelog.

Copyright (c) Microsoft Corporation. All Rights Reserved. See License.txt in the project root for license information.

About the release notes

For the most recent release notes see: /docs/release-notes

This document contains historical release notes information. They are preserved in their original form.

Current release notes

These release notes track our current efforts to document changes to the F# project over time. They are split into the language, core library, compiler/tools, and compiler service.

FSharp Compiler Service (main)

  • In FSharpParsingOptions, rename ConditionalCompilationDefines --> ConditionalDefines
  • Some syntax tree nodes have changed, e.g. introduction of SyntaxTree trivia
  • Resolved expressions (FSharpExpr) now reveal debug points, you must match them explicitly using DebugPoint(dp, expr)
  • Some node types in FSharpExpr (e.g. Let, While, TryFinally, TryWith) reveal additional debug points
  • In FSharpExpr, FastIntegerForLoop has been renamed to IntegerForLoop
  • SynModuleDecl.DoExpr --> SynModuleDecl.Expr because it was not corresponding to a 'do expr' declaration. A 'do expr' declaration in a module will correspond to a SynModuleDecl.Expr enclosing a SynExpr.Do This constructor also loses the debug point as it was always None. The debug point is always implicit for this construct.
  • In FCS API, FSharpParsingOptions, CompilingFsLib --> CompilingFSharpCore
  • In FCS API, FSharpParsingOptions, ErrorSeverityOptions --> DiagnosticOptions
  • SynIdent was introduced in the Untyped Syntax Tree. This represent an Ident with potential additional information, stored as IdentTrivia).
  • LongIdentWithDots was renamed to SynLongIdent and also could contain IdentTrivia. Due to this change, infix operators are stored as SynExpr.LongIdent instead of SynExpr.Ident. a + b is parsed as SynLongIdent([op_Addition], [], [Some (OriginalNotation "+")]).
  • SynMeasure was extended with SynMeasure.Paren case.
  • Dynamic expressions (like x?y) are now represented as SynExpr.Dynamic in the Untyped Syntax Tree.
  • Members with get and/or set are now represented as SynMemberDefn.GetSetMember in the Untyped Syntax Tree.
  • DoesIdentifierNeedBackticks is removed, it should always be sufficient to call NormalizeIdentifierBackticks or else call something in PrettyNaming
  • AddBackticksToIdentifierIfNeeded is removed, it should always be sufficient to call NormalizeIdentifierBackticks
  • DeclarationListItem.Name --> DeclarationListItem.NameInList

F# 6.0 / Visual Studio 17.0

FSharp.Core 6.0.0

... (truncated)

Commits

Updates Argu from 6.2.4 to 6.2.5

Release notes

Sourced from Argu's releases.

6.2.5

Drop Package FSharp.Core dependency to 6.0.0 #264 target Unquote 7.0.1 now that it has reduced FSharp.Core dependencies #264

Changelog

Sourced from Argu's changelog.

6.2.5

Commits

Updates Avalonia from 11.1.3 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

11.2.2

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

What's Changed

Fixes

Misc

11.2.1

What's Changed

Enhancements

... (truncated)

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.Headless.XUnit from 11.1.3 to 11.2.3

Release notes

Sourced from Avalonia.Headless.XUnit's releases.

11.2.3

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

Enhancements

Fixes

11.2.2

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

What's Changed

Fixes

Misc

11.2.1

What's Changed

Enhancements

... (truncated)

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.1.3 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

11.2.2

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

What's Changed

Fixes

Misc

11.2.1

What's Changed

Enhancements

... (truncated)

Commit...

Description has been truncated

…updates

Bumps the major-updates group with 17 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [FSharp.Core](https://github.com/dotnet/fsharp) | `8.0.400` | `9.0.100` |
| [MSBuild.StructuredLogger](https://github.com/KirillOsenkov/MSBuildStructuredLog) | `2.2.350` | `2.2.386` |
| [coverlet.collector](https://github.com/coverlet-coverage/coverlet) | `6.0.2` | `6.0.3` |
| [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) | `17.11.1` | `17.12.0` |
| [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) | `2.8.2` | `3.0.0` |
| [FSharp.Core](https://github.com/dotnet/fsharp) | `8.0.400` | `6.0.0` |
| [Argu](https://github.com/fsprojects/Argu) | `6.2.4` | `6.2.5` |
| [Avalonia](https://github.com/AvaloniaUI/Avalonia) | `11.1.3` | `11.2.3` |
| [Avalonia.Headless.XUnit](https://github.com/AvaloniaUI/Avalonia) | `11.1.3` | `11.2.3` |
| [Avalonia](https://github.com/AvaloniaUI/Avalonia) | `11.1.3` | `11.2.3` |
| [Avalonia.Themes.Fluent](https://github.com/AvaloniaUI/Avalonia) | `11.1.3` | `11.2.3` |
| [Avalonia](https://github.com/AvaloniaUI/Avalonia) | `11.1.3` | `11.2.3` |
| [Avalonia.Controls.DataGrid](https://github.com/AvaloniaUI/Avalonia) | `11.1.3` | `11.2.3` |
| [Avalonia](https://github.com/AvaloniaUI/Avalonia) | `11.1.3` | `11.2.3` |
| [Avalonia.Desktop](https://github.com/AvaloniaUI/Avalonia) | `11.1.3` | `11.2.3` |
| [Avalonia](https://github.com/AvaloniaUI/Avalonia) | `11.1.3` | `11.2.3` |
| [Avalonia.Controls.DataGrid](https://github.com/AvaloniaUI/Avalonia) | `11.1.3` | `11.2.3` |
| [Avalonia.Diagnostics](https://github.com/AvaloniaUI/Avalonia) | `11.1.3` | `11.2.3` |
| [Avalonia](https://github.com/AvaloniaUI/Avalonia) | `11.1.3` | `11.2.3` |
| [Avalonia.ReactiveUI](https://github.com/AvaloniaUI/Avalonia) | `11.1.3` | `11.2.3` |
| [Microsoft.Extensions.DependencyInjection](https://github.com/dotnet/runtime) | `8.0.0` | `9.0.0` |
| [Avalonia](https://github.com/AvaloniaUI/Avalonia) | `11.1.3` | `11.2.3` |
| [Projektanker.Icons.Avalonia](https://github.com/Projektanker/Icons.Avalonia) | `9.4.0` | `9.6.0` |
| [Avalonia](https://github.com/AvaloniaUI/Avalonia) | `11.1.3` | `11.2.3` |
| [Projektanker.Icons.Avalonia](https://github.com/Projektanker/Icons.Avalonia) | `9.4.0` | `9.6.0` |
| [Projektanker.Icons.Avalonia.FontAwesome](https://github.com/Projektanker/Icons.Avalonia) | `9.4.0` | `9.6.0` |
| [Avalonia](https://github.com/AvaloniaUI/Avalonia) | `11.1.3` | `11.2.3` |
| [Projektanker.Icons.Avalonia](https://github.com/Projektanker/Icons.Avalonia) | `9.4.0` | `9.6.0` |
| [Projektanker.Icons.Avalonia.MaterialDesign](https://github.com/Projektanker/Icons.Avalonia) | `9.4.0` | `9.6.0` |



Updates `FSharp.Core` from 8.0.400 to 9.0.100
- [Release notes](https://github.com/dotnet/fsharp/releases)
- [Changelog](https://github.com/dotnet/fsharp/blob/main/release-notes.md)
- [Commits](https://github.com/dotnet/fsharp/commits)

Updates `MSBuild.StructuredLogger` from 2.2.350 to 2.2.386
- [Release notes](https://github.com/KirillOsenkov/MSBuildStructuredLog/releases)
- [Commits](https://github.com/KirillOsenkov/MSBuildStructuredLog/commits)

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 `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.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 `FSharp.Core` from 8.0.400 to 6.0.0
- [Release notes](https://github.com/dotnet/fsharp/releases)
- [Changelog](https://github.com/dotnet/fsharp/blob/main/release-notes.md)
- [Commits](https://github.com/dotnet/fsharp/commits)

Updates `Argu` from 6.2.4 to 6.2.5
- [Release notes](https://github.com/fsprojects/Argu/releases)
- [Changelog](https://github.com/fsprojects/Argu/blob/master/RELEASE_NOTES.md)
- [Commits](fsprojects/Argu@6.2.4...6.2.5)

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

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

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

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

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

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

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

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

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

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

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

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

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

Updates `Microsoft.Extensions.DependencyInjection` 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 `Avalonia` from 11.1.3 to 11.2.3
- [Release notes](https://github.com/AvaloniaUI/Avalonia/releases)
- [Commits](AvaloniaUI/Avalonia@11.1.3...11.2.3)

Updates `Projektanker.Icons.Avalonia` from 9.4.0 to 9.6.0
- [Release notes](https://github.com/Projektanker/Icons.Avalonia/releases)
- [Changelog](https://github.com/Projektanker/Icons.Avalonia/blob/main/CHANGELOG.md)
- [Commits](Projektanker/Icons.Avalonia@v9.4.0...v9.6.0)

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

Updates `Projektanker.Icons.Avalonia` from 9.4.0 to 9.6.0
- [Release notes](https://github.com/Projektanker/Icons.Avalonia/releases)
- [Changelog](https://github.com/Projektanker/Icons.Avalonia/blob/main/CHANGELOG.md)
- [Commits](Projektanker/Icons.Avalonia@v9.4.0...v9.6.0)

Updates `Projektanker.Icons.Avalonia.FontAwesome` from 9.4.0 to 9.6.0
- [Release notes](https://github.com/Projektanker/Icons.Avalonia/releases)
- [Changelog](https://github.com/Projektanker/Icons.Avalonia/blob/main/CHANGELOG.md)
- [Commits](Projektanker/Icons.Avalonia@v9.4.0...v9.6.0)

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

Updates `Projektanker.Icons.Avalonia` from 9.4.0 to 9.6.0
- [Release notes](https://github.com/Projektanker/Icons.Avalonia/releases)
- [Changelog](https://github.com/Projektanker/Icons.Avalonia/blob/main/CHANGELOG.md)
- [Commits](Projektanker/Icons.Avalonia@v9.4.0...v9.6.0)

Updates `Projektanker.Icons.Avalonia.MaterialDesign` from 9.4.0 to 9.6.0
- [Release notes](https://github.com/Projektanker/Icons.Avalonia/releases)
- [Changelog](https://github.com/Projektanker/Icons.Avalonia/blob/main/CHANGELOG.md)
- [Commits](Projektanker/Icons.Avalonia@v9.4.0...v9.6.0)

---
updated-dependencies:
- dependency-name: FSharp.Core
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-updates
- dependency-name: MSBuild.StructuredLogger
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: major-updates
- dependency-name: coverlet.collector
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: major-updates
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-updates
- dependency-name: xunit.runner.visualstudio
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-updates
- dependency-name: FSharp.Core
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-updates
- dependency-name: Argu
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: major-updates
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-updates
- dependency-name: Avalonia.Headless.XUnit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-updates
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-updates
- dependency-name: Avalonia.Themes.Fluent
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-updates
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-updates
- dependency-name: Avalonia.Controls.DataGrid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-updates
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-updates
- dependency-name: Avalonia.Desktop
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-updates
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-updates
- dependency-name: Avalonia.Controls.DataGrid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-updates
- dependency-name: Avalonia.Diagnostics
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-updates
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-updates
- dependency-name: Avalonia.ReactiveUI
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-updates
- dependency-name: Microsoft.Extensions.DependencyInjection
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-updates
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-updates
- dependency-name: Projektanker.Icons.Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-updates
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-updates
- dependency-name: Projektanker.Icons.Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-updates
- dependency-name: Projektanker.Icons.Avalonia.FontAwesome
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-updates
- dependency-name: Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-updates
- dependency-name: Projektanker.Icons.Avalonia
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-updates
- dependency-name: Projektanker.Icons.Avalonia.MaterialDesign
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: major-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 1, 2025
@janssen-io janssen-io force-pushed the dependabot/nuget/major-updates-9d10f691da branch from 1dd8c8f to 6f2b12f Compare January 2, 2025 21:11
@janssen-io janssen-io merged commit 9dc26d7 into main Jan 3, 2025
4 checks passed
@dependabot dependabot bot deleted the dependabot/nuget/major-updates-9d10f691da branch January 3, 2025 07:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant