Skip to content

Bump the all group with 16 updates#26

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/nuget/src/apps/Mvvm.Apps.Avalonia/all-5f1cf4f12e
Closed

Bump the all group with 16 updates#26
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/nuget/src/apps/Mvvm.Apps.Avalonia/all-5f1cf4f12e

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 28, 2026

Updated Avalonia from 11.0.5 to 11.3.14.

Release notes

Sourced from Avalonia's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Avalonia from 11.0.6 to 11.3.14.

Release notes

Sourced from Avalonia's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Avalonia.Desktop from 11.0.5 to 11.3.14.

Release notes

Sourced from Avalonia.Desktop's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Avalonia.Diagnostics from 11.0.5 to 11.3.14.

Release notes

Sourced from Avalonia.Diagnostics's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Avalonia.ReactiveUI from 11.0.6 to 11.3.8.

Release notes

Sourced from Avalonia.ReactiveUI's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated CommunityToolkit.Maui from 7.0.0 to 9.1.1.

Release notes

Sourced from CommunityToolkit.Maui's releases.

9.1.1

.NET 9 is almost upon us, just before the new major release that we will be introduction as part of there, here are a couple of bugfixes that you can use today!

A big thank you to @​Bensley96 for the very first contribution to this project 👏

Requirements

The following tools are now required for CommunityToolkit.Maui.:

  • Xcode 16.0.0
    • Read the latest .NET MAUI Release wiki to always find the latest-supported version) of Xcode for .NET MAUI
    • We HIGHLY recommend using the open-source tool Xcodes to easily manage your installed Xcode versions
  • Update to the latest stable version of Visual Studio (or Jet Brains Rider)
  • Download/install .NET SDK v8.0.403
  • After installing the latest stable .NET SDK, update to the latest stable version of the .NET MAUI workload:
    • On macOS, open the Terminal and enter the following command: sudo dotnet workload install maui
    • On Windows, open the command prompt (or Powershell) and enter the following command: dotnet workload install maui
  • Add a global.json file to your application with the following parameters to ensure you're not using a unsupported preview version of .NET (example below)
    • The .NET MAUI Community Toolkit does not support preview releases of .NET

global.json

{
  "sdk": {
    "version": "8.0.403", 
    "rollForward": "latestMajor",
    "allowPrerelease": false
  }
}

What's Changed

🧼 Housekeeping 🧽

New Contributors

Full Changelog: CommunityToolkit/Maui@9.1.0...9.1.1

9.1.0

Required Updates

The following tools are now required for .NET MAUI Community Toolkit v9.1.0

  • Xcode 16.0.0
    • Read the latest .NET MAUI Release wiki to always find the latest-supported version) of Xcode for .NET MAUI
    • We HIGHLY recommend using the open-source tool Xcodes to easily manage your installed Xcode versions
  • Update to the latest stable version of Visual Studio (or Jet Brains Rider)
  • Download/install .NET SDK v8.0.403
  • After installing the latest stable .NET SDK, update to the latest stable version of the .NET MAUI workload:
    • On macOS, open the Terminal and enter the following command: sudo dotnet workload install maui
    • On Windows, open the command prompt (or Powershell) and enter the following command: dotnet workload install maui
  • Add a global.json file to your application with the following parameters to ensure you're not using a unsupported preview version of .NET (example below)
    • The .NET MAUI Community Toolkit does not support preview releases of .NET

global.json

{
  "sdk": {
    "version": "8.0.403", 
    "rollForward": "latestMajor",
    "allowPrerelease": false
  }
}

What's Changed

Housekeeping 🧹

9.0.3

Just before the weekend, here are some new goodies to play with!

Minor new functionalities, bugfixes and we updated the dependency of .NET MAUI to 8.0.71 to match the latest version that is included in the workload that comes with Visual Studio.

What's Changed

New Contributors

A big thank you to these heroes right here! You make this project the best version it can be!

Full Changelog: CommunityToolkit/Maui@9.0.2...9.0.3

9.0.2

Some Friday bugfixes for you! Special shout out to @​GuidoNeele and @​myix765 for their first contributions to this project, thank you so much! 👏 Find all the details about the fixes below.

And, did you know that we have an amazing sample app in this repository that shows you how to use all the features of the Toolkit?! Now you do! And the Windows version just got a refresh by @​mhrastegari

Check this out 🤩

Screenshot of Windows sample app

What's Changed

Bumps and Housekeepings

New Contributors

Full Changelog: CommunityToolkit/Maui@9.0.1...9.0.2

9.0.1

Just a couple of bugfixes for you to enjoy!

No fancy funny text here this time, sorry. It's Friday for me too you know?!

What's Changed

New Contributors

Full Changelog: CommunityToolkit/Maui@9.0.0...9.0.1

9.0.0

Version 9! That must mean amazing new goodies! 😱

Unfortunately, no. Although every release of the Toolkit is a party of its own, for this release there are a couple of bugfixes that required breaking changes and therefore we bumped the version up to 9.

However, is XAML and converters are your jam, then be sure to check out the improvements in usage with CompareConverter. @​bijington has done some great work with that and you can find the documentation for that right here.

Find all the details below, if you have any questions or concerns, please let us know!

You might also like the .NET MAUI Community Toolkit standup live stream recording for May. Join us live and come hang out every first Thursday of every month on the .NET Foundation YouTube channel!

As always, many thanks to our contributors for this version, especially the community ones 👏 you are our heroes!

Breaking Changes

Replace FrozenSet with IReadOnlyList

By @​brminnick in CommunityToolkit/Maui#1839

This was breaking because it changed the signature of some public APIs:

AlertView.macios.cs changed the Children property from:

public FrozenSet<UIView> Children

to

public IReadOnlyList<UIView> Children

Improve the usage experience with CompareConverter in XAML

By @​bijington in CommunityToolkit/Maui#1841

This change is breaking because CompareConverter now takes 2 type arguments.

It went from

public abstract class CompareConverter<TReturnObject> : BaseConverterOneWay<IComparable, object>

to

public abstract class CompareConverter<TValue, TReturnObject> : BaseConverterOneWay<TValue, object> where TValue : IComparable

... (truncated)

9.0.0-mediaelement

CommunityToolkit.Maui.MediaElement v9.0.0

Introducing UriMediaSource.HttpHeaders

We heard your feedback! You can now use Http Headers for UriMediaSource:

var headers = new Dictionary<string, string>
{
    ["Authorization"] = "Bearer my-token"
};
mediaElement.Source = MediaSource.FromUri(new Uri("https://example.com/stream.m3u8"), headers);

What's Changed

New Contributors

Full Changelog: CommunityToolkit/Maui@14.0.1...9.0.0-mediaelement

8.0.1

By implementing TouchBehavior we found out that the databinding for it was a bit odd and went to investigate why.

The good news is: we found it! 🎉

The bad news is: it applied to all of our behaviors 🙈

We quickly fixed it and rolling it out as a minor release. Technically it's a breaking change, but we expect not many people to be impacted by that. If we thought wrong: our sincere apologies.

Check the PR below for all the details, TL;DR is data binding for behaviors is now a lot easier!

What's Changed

Full Changelog: CommunityToolkit/Maui@8.0.0...8.0.1

8.0.1-mediaelement

CommunityToolkit.Maui.MediaElement v8.0.1

This release fixes a bug when opting-out of the Android Foreground Service.

Initializing MediaElement

Opt-In to Android Foreground Service

To use MediaElement with Background Playback and/or Rich Media Notifications, opt-in to the Android Foreground Service when initializing CommunityToolkit.Maui.MediaElement:

.UseMauiCommunityToolkitMediaElement(isAndroidForegroundServiceEnabled: true, static options =>
{
    options.SetDefaultAndroidViewType(AndroidViewType.TextureView);
})

Opt-out of Android Foreground Service

To use MediaElement without Background Playback and/or Rich Media Notifications, opt out of the Android Foreground Service when initializing CommunityToolkit.Maui.MediaElement:

.UseMauiCommunityToolkitMediaElement(isAndroidForegroundServiceEnabled: false, static options =>
{
    options.SetDefaultAndroidViewType(AndroidViewType.TextureView);
})

What's Changed

Full Changelog: CommunityToolkit/Maui@6.0.0-camera...8.0.1-mediaelement

8.0.0

TouchBehavior is here!

The release a lot of people have been waiting for is here. Version 8.0 of the .NET MAUI Community Toolkit introduces the ever popular TouchBehavior! You might know TouchBehavior as TouchEffect in the Xamarin world, but since Effects no longer exist, it has now been turned into a Behavior.

Due to the amazing work of @​Axemasta this functionality is now ported from the Xamarin Community Toolkit to .NET MAUI. Of course, @​bijington was on the case with the documentation, so we have that in place for you as well.

Breaking Snackbar on Windows

Otherwise, there is A LOT going on in this release, just look at the list below. There is however one thing we do want to highlight: the breaking changes for Snackbar.

Based on your feedback @​VladislavAntonyuk did a complete rewrite of the Snackbar on Windows, ultimately of course to make things better, but it requires some changes on your side if you are working with Snackbar on Windows today. On other platforms it should work unchanged.

Find all the details in our updated documentation for this.

NavigationBar coloring for Android

Another functionality that was ported over from the Xamarin Community Toolkit is the NavigationBar coloring. This is very specific to Android and allows you to change the color of the systems navigation bar (the bottom one with the back button, home button, etc.)

@​pictos did a great job on this one figuring out how to fit this into our toolkit 👏

Find all the docs on how to start using it, right here.

Thank you contributors!

Of course we couldn't have done this without our amazing community and team, a major feature like TouchBehavior being implemented by someone from the community is what this project is all about. Truly amazing.

Special shoutout to our first-time contributors: @​Marioo1357, @​eduardoagr, @​StevilKnevil, @​Cybrosys, @​marco-skizza and @​Axemasta but of course a BIG THANK YOU to all of you!

Big Ol' List of Changes

8.0.0-mediaelement

CommunityToolkit.Maui.MediaElement v8.0.0

We heard your feedback! In this release using the Android Foreground Service is now optional. For developers requiring Background Playback and/or Rich Media Notifications, you'll now opt-in to the Android Foreground Service. Everyone else now has the option to opt-out.

This does come with a breaking change to the way we initialize MediaElement in MauiProgram.cs to either opt-in or opt-out of the Android Foreground Service.

Initializing MediaElement

Opt-In to Android Foreground Service

To use MediaElement with Background Playback and/or Rich Media Notifications, opt-in to the Android Foreground Service when initializing CommunityToolkit.Maui.MediaElement:

.UseMauiCommunityToolkitMediaElement(isAndroidForegroundServiceEnabled: true, static options =>
{
    options.SetDefaultAndroidViewType(AndroidViewType.TextureView);
})

Opt-out of Android Foreground Service

To use MediaElement without Background Playback and/or Rich Media Notifications, opt out of the Android Foreground Service when initializing CommunityToolkit.Maui.MediaElement:

.UseMauiCommunityToolkitMediaElement(isAndroidForegroundServiceEnabled: false, static options =>
{
    options.SetDefaultAndroidViewType(AndroidViewType.TextureView);
})

What's Changed

Full Changelog: CommunityToolkit/Maui@7.0.0-mediaelement...8.0.0-mediaelement

7.0.1

Happy holidays for those of you who celebrate! In the meanwhile, we're not clowning around and present to you the last release of 2023.

This version has a good number of bugfixes and improvements, but nothing too crazy so that it might blow up your project before you go on a holiday break. As always a big thank you to anyone and everyone not only using our product but also caring, engaging and even contributing. We appreciate it!

Let's make 2024 even better 🚀

What's Changed

We couldn't make this project work without these dependencies 🫶

New Contributors

So many new contributors this release, thank you so much @​IIARROWS, @​TRybina132, @​ne0rrmatrix and our very own Tizen superhero @​JoonghyunCho. We appreciate all the time that you are spending on this project and making it better.

Full Changelog: CommunityToolkit/Maui@7.0.0...7.0.1

Commits viewable in compare view.

Updated CommunityToolkit.Mvvm from 8.2.2 to 8.4.2.

Release notes

Sourced from CommunityToolkit.Mvvm's releases.

8.4.2

What's Changed

Full Changelog: CommunityToolkit/dotnet@v8.4.1...v8.4.2

8.4.1

This release of the .NET Community Toolkit updates the MVVM Toolkit analyzers and source generator to Roslyn 5.0, so they can work with C# 14 out of the box. This means that [ObservableProperty] on partial properties no longer needs preview language version 🎉

What's Changed 🆕

New Contributors

Full Changelog: CommunityToolkit/dotnet@v8.4.0...v8.4.1

8.4.0

What's Changed 🆕

New Contributors

Full Changelog: CommunityToolkit/dotnet@v8.3.2...v8.4.0

8.4.0-preview3

What's Changed 🆕

New Contributors

Full Changelog: CommunityToolkit/dotnet@v8.3.2...v8.4.0-preview3

8.3.2

This hotfix release updates the build time validation for the Windows SDK projections, when using the .NET 9 SDK.

What's Changed 🆕

8.3.1

This hotfix release includes build time validation for the Windows SDK projections, to improve the developer experience.

What's Changed 🆕

8.3.0

What's Changed 🆕

New Contributors

Full Changelog: CommunityToolkit/dotnet@v8.2.2...v8.3.0

Note ℹ️

If you're consuming the MVVM Toolkit from net8.0-windows10.0.xxxxx.0, you'll either need the latest servicing update of the .NET 8 SDK (ie. > 8.0.403), or as a temporary workaround you can manually specify the Windows SDK package version in your .csproj, as follows:

<WindowsSdkPackageVersion>10.0.xxxxx.41</WindowsSdkPackageVersion>

Where "xxxxx" should match the Windows SDK you're targeting (in your "TargetFramework" property).

https://www.nuget.org/packages/Microsoft.Windows.SDK.NET.Ref/10.0.26100.41
https://www.nuget.org/packages/Microsoft.Windows.SDK.NET.Ref/10.0.22621.41
https://www.nuget.org/packages/Microsoft.Windows.SDK.NET.Ref/10.0.22000.41
https://www.nuget.org/packages/Microsoft.Windows.SDK.NET.Ref/10.0.20348.41
https://www.nuget.org/packages/Microsoft.Windows.SDK.NET.Ref/10.0.19041.41
https://www.nuget.org/packages/Microsoft.Windows.SDK.NET.Ref/10.0.18362.41
https://www.nuget.org/packages/Microsoft.Windows.SDK.NET.Ref/10.0.17763.41

Commits viewable in compare view.

Updated DependencyPropertyGenerator from 1.3.3 to 1.5.0.

Release notes

Sourced from DependencyPropertyGenerator's releases.

1.5.0

What's Changed

Commits viewable in compare view.

Updated DotNet.ReproducibleBuilds from 1.1.1 to 2.0.2.

Release notes

Sourced from DotNet.ReproducibleBuilds's releases.

2.0.2

What's Changed

Full Changelog: dotnet/reproducible-builds@v2.0.1...v2.0.2

2.0.1

What's Changed

Full Changelog: dotnet/reproducible-builds@v1.2.39...v2.0.1

1.2.39

Additions

Removals

Changed

Tidying up

New Contributors

Full Changelog: dotnet/reproducible-builds@v1.2.25...v1.2.39

1.2.25

This release is designed to be a "cleanup" release that we can use as a solid foundation to build on. We've cleared the backlog of PRs and resolved several issues. Two changes of note:

  • The minimum required SDK version is now .NET 8
  • The RepositoryBranch logic introduced in v1.2.4 has been refactored to align with the values provided by Source Link in .NET 9

Removals

What's changed

Tidying up

New Contributors

Full Changelog: dotnet/reproducible-builds@v1.2.4...v1.2.25

1.2.4

At long last we've have a new release of the DotNet.ReproducibleBuilds and DotNet.ReproducibleBuilds.Isolated packages! We've dusted off the cobwebs and worked through some infrastructure and permissions issues, and now have the ability to reliably release new versions of the packages again. This is due in no small part to the help of our brand new maintainer - welcome to @​MattKotsenas! He and I will be working together to develop a plan for this repo going forward, and I'm very excited to welcome him to the maintainer team.

This release has a few new features and one feature removal due to obsoletion.

Additions

  • Set the DisableImplicitLibraryPacks property to true to prevent using packages from the .NET SDK's built-in package sources. #​21 (Thanks @​cmeeren!)
  • Populate the RepositoryBranch property if other Repository Metadata has been requested to be made public. #​27 (Thanks @​kzu!)

Removals

  • No longer include the .NET Framework reference assembly packages, because the .NET SDK does this now. #​33 (Thanks @​MattKotsenas!)

Infrastructure

We have simplified the packaging of the repo to be more straightforward, using dotnet pack as expected these days.

Commits viewable in compare view.

Updated MessageBox.Avalonia from 3.1.5.1 to 3.3.1.1.

Updated Microsoft.Extensions.Hosting from 8.0.0 to 10.0.7.

Release notes

Sourced from Microsoft.Extensions.Hosting's releases.

10.0.0-preview.6.25358.103

You can build .NET 10.0 Preview 6 from the repository by cloning the release tag v10.0.0-preview.6.25358.103 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

10.0.0-preview.5.25277.114

You can build .NET 10.0 Preview 5 from the repository by cloning the release tag v10.0.0-preview.5.25277.114 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

10.0.0-preview.4.25258.110

You can build .NET 10.0 Preview 4 from the repository by cloning the release tag v10.0.0-preview.4.25258.110 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

10.0.0-preview.3.25171.5

You can build .NET 10.0 Preview 3 from the repository by cloning the release tag v10.0.0-preview.3.25171.5 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

10.0.0-preview.2.25163.2

You can build .NET 10.0 Preview 2 from the repository by cloning the release tag v10.0.0-preview.2.25163.2 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

10.0.0-preview.1.25080.5

You can build .NET 10.0 Preview 1 from the repository by cloning the release tag v10.0.0-preview.1.25080.5 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

9.0.116

You can build .NET 9.0 from the repository by cloning the release tag v9.0.116 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

9.0.115

You can build .NET 9.0 from the repository by cloning the release tag v9.0.115 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

9.0.114

You can build .NET 9.0 from the repository by cloning the release tag v9.0.114 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this relea...

_Description has...

Description has been truncated

Bumps Avalonia to 11.3.14
Bumps Avalonia.Desktop from 11.0.5 to 11.3.14
Bumps Avalonia.Diagnostics from 11.0.5 to 11.3.14
Bumps Avalonia.ReactiveUI from 11.0.6 to 11.3.8
Bumps CommunityToolkit.Maui from 7.0.0 to 9.1.1
Bumps CommunityToolkit.Mvvm from 8.2.2 to 8.4.2
Bumps DependencyPropertyGenerator from 1.3.3 to 1.5.0
Bumps DotNet.ReproducibleBuilds from 1.1.1 to 2.0.2
Bumps MessageBox.Avalonia from 3.1.5.1 to 3.3.1.1
Bumps Microsoft.Extensions.Hosting from 8.0.0 to 10.0.7
Bumps Microsoft.Extensions.Logging.Debug from 8.0.0 to 10.0.7
Bumps Microsoft.Maui.Controls to 8.0.71, 10.0.51
Bumps Microsoft.WindowsAppSDK from 1.4.231115000 to 1.8.260416003
Bumps MinVer from 5.0.0-beta.1 to 7.0.0
Bumps Uno.UI from 5.0.48 to 5.6.99
Bumps Uno.WinUI from 5.0.48 to 6.2.87

---
updated-dependencies:
- dependency-name: Avalonia
  dependency-version: 11.3.14
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: Avalonia
  dependency-version: 11.3.14
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: Avalonia.Desktop
  dependency-version: 11.3.14
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: Avalonia.Diagnostics
  dependency-version: 11.3.14
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: Avalonia.ReactiveUI
  dependency-version: 11.3.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: CommunityToolkit.Maui
  dependency-version: 9.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: Microsoft.Maui.Controls
  dependency-version: 8.0.71
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: CommunityToolkit.Mvvm
  dependency-version: 8.4.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: DependencyPropertyGenerator
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: DependencyPropertyGenerator
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: DependencyPropertyGenerator
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: DependencyPropertyGenerator
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: DotNet.ReproducibleBuilds
  dependency-version: 2.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: MessageBox.Avalonia
  dependency-version: 3.3.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: Microsoft.Extensions.Hosting
  dependency-version: 10.0.7
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: Microsoft.Extensions.Logging.Debug
  dependency-version: 10.0.7
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: Microsoft.Maui.Controls
  dependency-version: 10.0.51
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: Microsoft.Maui.Controls
  dependency-version: 10.0.51
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: Microsoft.WindowsAppSDK
  dependency-version: 1.8.260416003
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: MinVer
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: Uno.UI
  dependency-version: 5.6.99
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: Uno.WinUI
  dependency-version: 6.2.87
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code labels Apr 28, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 5, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this May 5, 2026
@dependabot dependabot Bot deleted the dependabot/nuget/src/apps/Mvvm.Apps.Avalonia/all-5f1cf4f12e branch May 5, 2026 01:32
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 .NET Pull requests that update .NET code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants