Skip to content

chore(deps): Bump the samples group with 5 updates#43

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/main/samples-55b6561228
Closed

chore(deps): Bump the samples group with 5 updates#43
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/nuget/main/samples-55b6561228

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 12, 2026

Copy link
Copy Markdown
Contributor

Updated CommunityToolkit.Maui from 14.0.1 to 14.2.0.

Release notes

Sourced from CommunityToolkit.Maui's releases.

14.2.0

CommunityToolkit.Maui v14.2.0

Thanks to @​IeuanWalker, Android Screen Reader now properly reads Popup v2! Previously the screen reader would default to the underlying PopupPage, now it defaults directly to the content of your Popup:

Before After
android-before.mp4
android-after.mp4

What's Changed

Housekeeping

New Contributors

@​MFinkBK made their first contribution in CommunityToolkit/Maui#3216

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

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

Commits viewable in compare view.

Updated CommunityToolkit.Mvvm from 8.4.1 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

Commits viewable in compare view.

Updated Microsoft.Extensions.Logging.Debug from 10.0.2 to 10.0.9.

Release notes

Sourced from Microsoft.Extensions.Logging.Debug's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Maui.Controls from 10.0.41 to 10.0.60.

Updated Microsoft.Maui.Controls from 10.0.41 to 10.0.80.

Release notes

Sourced from Microsoft.Maui.Controls's releases.

10.0.80

.NET MAUI 10.0.80 Release Notes

.NET MAUI 10.0.80 introduces significant improvements across all platforms with focus on quality, performance, and developer experience. This release includes 112 commits with various improvements, bug fixes, and enhancements.

Ai Agents

Button

CollectionView

... (truncated)

10.0.71

What's Changed

Full Changelog: dotnet/maui@10.0.70...10.0.71

10.0.70

What's Changed

.NET MAUI 10.0.70 introduces significant improvements across all platforms with focus on quality, performance, and developer experience. This release includes 135 commits with various improvements, bug fixes, and enhancements.

Ai Agents

API

Blazor

Button

CollectionView

... (truncated)

10.0.60

What's Changed

.NET MAUI 10.0.60 introduces significant improvements across all platforms with focus on quality, performance, and developer experience. This release includes 242 commits with various improvements, bug fixes, and enhancements.

Ai Agents

Blazor

Border

Button

Checkbox

... (truncated)

10.0.51

What's Changed

Full Changelog: dotnet/maui@10.0.50...10.0.51

10.0.50

What's Changed

.NET MAUI 10.0.50 introduces significant improvements across all platforms with focus on quality, performance, and developer experience. This release includes 78 commits with various improvements, bug fixes, and enhancements.

AI

Ai Agents

Animation

API

Button

... (truncated)

Commits viewable in compare view.

Updated Plugin.Maui.BottomSheet from 10.0.6 to 10.0.7.

Release notes

Sourced from Plugin.Maui.BottomSheet's releases.

10.0.7

What's Changed

[!IMPORTANT]
To fix #​235, I had to change the peek height calculation. To ensure existing BottomSheets aren’t affected, the new behavior must be explicitly enabled. As you can imagine, it’s not possible to test all layout variations. If you encounter any issues, please open a new issue and revert to the old behavior.

  .UseBottomSheet(config =>
  {
      config.UseNewPeekHeightCalculation = true;
  })

Full Changelog: lucacivale/Maui.BottomSheet@10.0.6...10.0.7

Commits viewable in compare view.

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 commands and options

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

Bumps CommunityToolkit.Maui from 14.0.1 to 14.2.0
Bumps CommunityToolkit.Mvvm from 8.4.1 to 8.4.2
Bumps Microsoft.Extensions.Logging.Debug from 10.0.2 to 10.0.9
Bumps Microsoft.Maui.Controls to 10.0.60, 10.0.80
Bumps Plugin.Maui.BottomSheet from 10.0.6 to 10.0.7

---
updated-dependencies:
- dependency-name: CommunityToolkit.Maui
  dependency-version: 14.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: samples
- dependency-name: Microsoft.Maui.Controls
  dependency-version: 10.0.60
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: samples
- dependency-name: CommunityToolkit.Mvvm
  dependency-version: 8.4.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: samples
- dependency-name: Microsoft.Extensions.Logging.Debug
  dependency-version: 10.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: samples
- dependency-name: Microsoft.Maui.Controls
  dependency-version: 10.0.80
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: samples
- dependency-name: Plugin.Maui.BottomSheet
  dependency-version: 10.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: samples
...

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 Jul 12, 2026
@dependabot
dependabot Bot requested a review from phunkeler as a code owner July 12, 2026 02:47
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code labels Jul 12, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jul 19, 2026

Copy link
Copy Markdown
Contributor Author

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

@dependabot dependabot Bot closed this Jul 19, 2026
@dependabot
dependabot Bot deleted the dependabot/nuget/main/samples-55b6561228 branch July 19, 2026 02:45
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