Skip to content

Bump the all group with 6 updates#25

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/sample/all-c2d87eff1a
Open

Bump the all group with 6 updates#25
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/sample/all-c2d87eff1a

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github May 19, 2026

Updated CommunityToolkit.Maui from 13.0.0 to 14.1.1.

Release notes

Sourced from CommunityToolkit.Maui's releases.

14.1.1

CommunityToolkit.Maui v14.1.1

New Popup Extension

public static bool IsDestinationPageACommunityToolkitPopupPage(this NavigatingFromEventArgs args);

You can now use NavigatingFromEventArgs to determine if the previous page was a Popup: https://learn.microsoft.com/en-us/dotnet/communitytoolkit/maui/views/popup#lifecycle-behavior

protected override void OnNavigatingFrom(NavigatingFromEventArgs args)
{
    base.OnNavigatingFrom(args);
    if (args.IsDestinationPageACommunityToolkitPopupPage())
    {
        // If true, `OnNavigatingFrom` was called by starting a Popup
    }
}

SpeechToText Bug Fix

  • Fix AutoStopSilenceTimeout for SpeechToTextOptions doesn't work on iOS

StatusBar Bug Fix

  • Fix StatusBar.SetColor() when using StatusBarBehavior
  • Update StatusBar Size On Device Orientation Change

Microsoft.Maui.Controls Dependency

  • Increase dependency to Microsoft.Maui.Controls v10.0.60

What's Changed

Housekeeping

New Contributors

Full Changelog: CommunityToolkit/Maui@14.1.0...14.1.1

14.1.0

CommunityToolkit.Maui v14.1.0

SpeechToText

  • We've added SpeechToTextOptions.AutostopSilenceTimeout to allow you to auto-stop ISpeechToText

Public Custom Exceptions

We heard your feedback! The following exceptions are now public allowing you to properly catch them inside a try/catch block:

  • SoftKeyboardException
  • PopupNotFoundException
  • PopupBlockedException
  • InvalidPopupOperationException

StatusBar Bug Fixes

  • StatusBarBehavior now works when used inside a Modal Page on Android
  • StatusBarBehavior now uses the correct height for Android API 36+

Popup Fixes

  • Popup now works when used in a Modal Page

AvatarView

  • AvatarView now correctly updates its size when ImageSource changes

What's Changed

New Contributors

Full Changelog: CommunityToolkit/Maui@14.0.1...14.1.0

14.0.1

CommunityToolkit.Maui v14.0.1

Bug Fixes

  • NavigationBar
    • Add Support for NavigationBar.SetColor(Color) on Android 35+
    • Fix duplicate values for Color Attached Property
  • Popup
    • Fix duplicate instantiation of the ViewModel via PopupService.ShowPopupAsync<T>'
    • Fix Padding regression introduced in v14.0.0
  • StateContainer
    • Fix duplicate StateContainer ViewState bug
  • BindableProperty Attribute
    • Resolve CS0436 Warning
  • DateTimeOffsetConverter
    • Use TimeZoneInfo to calculate correct offset
  • Microsoft.Maui.Controls Dependency
    • Increase dependency to Microsoft.Maui.Controls v10.0.41
  • Windows Apps
    • Downgrade Microsoft.WindowsAppSDK to v1.8.260101001 from 2.0.0-experimental

What's Changed

Full Changelog: CommunityToolkit/Maui@14.0.0...14.0.1

14.0.0

CommunityToolkit.Maui v14.0.0

I am excited to debut two new source generators!

  • [BindableProperty]
  • [AttachedBindableProperty<T>]

These new source generators make it easier than ever to create a BindableProperty for your .NET MAUI apps by allowing us to write all the associated boiler-plate code for you. In fact, all Bindable Properties in CommunityToolkit.Maui are now automatically generated using these new source generators!

For an in-depth overview of both [BindableProperty] and [AttachedBindableProperty<T>], check out my comprehensive write-up:
👉 https://codetraveler.io/2026/01/29/introducing-bindable-property-source-generators/

Bug Fixes + New Features

Alongside the new Source Generators, this Release also brings important bug fixes and new features:

  • StatusBarBehavior
    • Fixes StatusBarBehavior on Android 35+
  • Snackbar
    • Fixes a memory leak
  • Popup
    • Add extension method for NavigatedFromEventArgs
    • Fixes tapping issues when using a CollectionView in Popup
    • Fixes a memory leak

Introducing Bindable Property Source Generators

Opt-into this Experimental Feature

We have decided to release this feature using the [Experimental] attribute. This allows us to let you try out its features and provide feedback while giving us the flexibility to update it with your feedback over the next few releases.

In the csproj file of your .NET MAUI app, add the following code:

<!-- Opt into Bindable Property Source Generators -->
<PropertyGroup>
    <NoWarn>MCTEXP001</NoWarn>
</PropertyGroup>

In the mean-time, we will be writing more comprehensive documentation and writing Analyzers, similar to CommunityToolkit.MVVM, to help provide you the best coding experience!

Using [BindableProperty]

To leverage the Bindable Property Source Generator, first ensure you using a partial class. Then, add the partial keyword and attach the [BindableProperty] attribute to your property:

  1. Add the partial keyword to the class
  2. Add the partial keyword the Property for which to generate an associated Bindable Property
  3. Add the [BindableProperty] attribute to the property to make it bindable
using CommunityToolkit.Maui;

 ... (truncated)

Commits viewable in [compare view](https://github.com/CommunityToolkit/Maui/compare/13.0.0...14.1.1).
</details>

Updated [CommunityToolkit.Mvvm](https://github.com/CommunityToolkit/dotnet) from 8.4.0 to 8.4.2.

<details>
<summary>Release notes</summary>

_Sourced from [CommunityToolkit.Mvvm's releases](https://github.com/CommunityToolkit/dotnet/releases)._

## 8.4.2

## What's Changed
* Fix incorrect version check order in MVVMToolkitRemoveDuplicateAnalyzers target by @​Sergio0694 in https://github.com/CommunityToolkit/dotnet/pull/1174


**Full Changelog**: https://github.com/CommunityToolkit/dotnet/compare/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 🆕
* Migrate workflow to GitHub Actions by @​Sergio0694 in https://github.com/CommunityToolkit/dotnet/pull/1105
* Remove extra dash in `--no-build` argument in dotnet test invokation by @​echoix in https://github.com/CommunityToolkit/dotnet/pull/1132
* Bump unit tests from .NET 7 to .NET 9 by @​Sergio0694 in https://github.com/CommunityToolkit/dotnet/pull/1085
* Migrate solution to '.slnx' format by @​Sergio0694 in https://github.com/CommunityToolkit/dotnet/pull/1133
* Remove .NET 7 TFM by @​Sergio0694 in https://github.com/CommunityToolkit/dotnet/pull/1134
* fix object.Equals for EquatableArray by @​JamesYFC in https://github.com/CommunityToolkit/dotnet/pull/1120
* Handle 'CanExecute' with method overrides by @​Sergio0694 in https://github.com/CommunityToolkit/dotnet/pull/1081
* Migrate to new MSTest APIs to prepare for 4.0.x by @​Sergio0694 in https://github.com/CommunityToolkit/dotnet/pull/1136
* Update MSTest to latest by @​Sergio0694 in https://github.com/CommunityToolkit/dotnet/pull/1137
* Update NuGet packages and Windows SDK props by @​Sergio0694 in https://github.com/CommunityToolkit/dotnet/pull/1047
* Update to .NET 10 SDK, add .NET 10 TFM to test projects by @​Sergio0694 in https://github.com/CommunityToolkit/dotnet/pull/1144
* Fix C# language version checks for `[ObservableProperty]` by @​Sergio0694 in https://github.com/CommunityToolkit/dotnet/pull/1140
* Eliminate this = default shortcut when height * width = 0 by @​marcin-krystianc in https://github.com/CommunityToolkit/dotnet/pull/1130
* Support nested blocks in semi-auto property analyzer, add tests by @​Youssef1313 in https://github.com/CommunityToolkit/dotnet/pull/1025
* Update .NET SDK and NuGet dependencies by @​Sergio0694 in https://github.com/CommunityToolkit/dotnet/pull/1155
* Update Roslyn 5.0 analyzer and code fixer paths by @​Sergio0694 in https://github.com/CommunityToolkit/dotnet/pull/1156
* Update analyzers for C# 14.0 language version checks by @​Sergio0694 in https://github.com/CommunityToolkit/dotnet/pull/1159
* Fix deterministic builds, improve GitHub links by @​Sergio0694 in https://github.com/CommunityToolkit/dotnet/pull/1170
* Add MVVM Toolkit code fixer for Roslyn 5.0 by @​Sergio0694 in https://github.com/CommunityToolkit/dotnet/pull/1171

## New Contributors
* @​echoix made their first contribution in https://github.com/CommunityToolkit/dotnet/pull/1132
* @​JamesYFC made their first contribution in https://github.com/CommunityToolkit/dotnet/pull/1120
* @​marcin-krystianc made their first contribution in https://github.com/CommunityToolkit/dotnet/pull/1130

**Full Changelog**: https://github.com/CommunityToolkit/dotnet/compare/v8.4.0...v8.4.1

Commits viewable in [compare view](https://github.com/CommunityToolkit/dotnet/compare/v8.4.0...v8.4.2).
</details>

Updated [DotNet.ReproducibleBuilds](https://github.com/dotnet/reproducible-builds) from 1.2.39 to 2.0.2.

<details>
<summary>Release notes</summary>

_Sourced from [DotNet.ReproducibleBuilds's releases](https://github.com/dotnet/reproducible-builds/releases)._

## 2.0.2

## What's Changed
* Fix hostfxr probing path for musl-based runtimes by @​MattKotsenas in https://github.com/dotnet/reproducible-builds/pull/75


**Full Changelog**: https://github.com/dotnet/reproducible-builds/compare/v2.0.1...v2.0.2

## 2.0.1

## What's Changed
* Warn if missing global.json to enforce consistent SDK versions by @​MattKotsenas in https://github.com/dotnet/reproducible-builds/pull/73


**Full Changelog**: https://github.com/dotnet/reproducible-builds/compare/v1.2.39...v2.0.1

Commits viewable in [compare view](https://github.com/dotnet/reproducible-builds/compare/v1.2.39...v2.0.2).
</details>

Updated [Microsoft.Extensions.Logging.Debug](https://github.com/dotnet/dotnet) from 10.0.1 to 10.0.8.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Extensions.Logging.Debug's releases](https://github.com/dotnet/dotnet/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/dotnet/dotnet/commits).
</details>

Updated Microsoft.Maui.Controls from 10.0.11 to 10.0.60.

Updated [MinVer](https://github.com/adamralph/minver) from 6.0.0 to 7.0.0.

<details>
<summary>Release notes</summary>

_Sourced from [MinVer's releases](https://github.com/adamralph/minver/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/adamralph/minver/commits).
</details>

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions


</details>

Bumps CommunityToolkit.Maui from 13.0.0 to 14.1.1
Bumps CommunityToolkit.Mvvm from 8.4.0 to 8.4.2
Bumps DotNet.ReproducibleBuilds from 1.2.39 to 2.0.2
Bumps Microsoft.Extensions.Logging.Debug from 10.0.1 to 10.0.8
Bumps Microsoft.Maui.Controls from 10.0.11 to 10.0.60
Bumps MinVer from 6.0.0 to 7.0.0

---
updated-dependencies:
- dependency-name: CommunityToolkit.Maui
  dependency-version: 14.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: Microsoft.Maui.Controls
  dependency-version: 10.0.60
  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-patch
  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: Microsoft.Extensions.Logging.Debug
  dependency-version: 10.0.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: Microsoft.Maui.Controls
  dependency-version: 10.0.60
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: MinVer
  dependency-version: 7.0.0
  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 .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels May 19, 2026
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