Skip to content

Bump the all group with 6 updates#30

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

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

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 29, 2026

Copy link
Copy Markdown

Updated CommunityToolkit.Maui from 13.0.0 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

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.2.0).
</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.5.

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

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

## 2.0.5

## What's Changed
* Update versions used in examples to be from latest major by @​Frulfump in https://github.com/dotnet/reproducible-builds/pull/80
* Fix hostfxr resolution for .NET Framework tasks by @​MattKotsenas in https://github.com/dotnet/reproducible-builds/pull/85
* Upgrade MSBuild.ProjectCreation to 18.0.0 by @​MattKotsenas in https://github.com/dotnet/reproducible-builds/pull/84

## New Contributors
* @​Frulfump made their first contribution in https://github.com/dotnet/reproducible-builds/pull/80

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

## 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.5).
</details>

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

<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 [Microsoft.Maui.Controls](https://github.com/dotnet/maui) from 10.0.11 to 10.0.80.

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

_Sourced from [Microsoft.Maui.Controls's releases](https://github.com/dotnet/maui/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
- Add deep UI test execution to Copilot PR review pipeline by @​kubaflo in https://github.com/dotnet/maui/pull/35376

- [CI] Refactor ci-copilot pipeline: scope env vars per task by @​T-Gro in https://github.com/dotnet/maui/pull/35324

## Button
- [Android, iOS] Button: Fix VisualState properties not restored when leaving custom state by @​BagavathiPerumal in https://github.com/dotnet/maui/pull/33346
  <details>
  <summary>🔧 Fixes</summary>

  - [Button VisualStates do not work](https://github.com/dotnet/maui/issues/19690)
  </details>

## CollectionView
- Fix CollectionView grid spacing updates for first row and column by @​KarthikRajaKalaimani in https://github.com/dotnet/maui/pull/34527
  <details>
  <summary>🔧 Fixes</summary>

  - [[MAUI] I2_Vertical grid for horizontal Item Spacing and Vertical Item Spacing - horizontally updating the spacing only applies to the second column](https://github.com/dotnet/maui/issues/34257)
  </details>

- CarouselView: Fix cascading PositionChanged/CurrentItemChanged events on collection update by @​praveenkumarkarunanithi in https://github.com/dotnet/maui/pull/31275
  <details>
  <summary>🔧 Fixes</summary>

  - [[Windows] CurrentItemChangedEventArgs and PositionChangedEventArgs Not Working Properly in CarouselView](https://github.com/dotnet/maui/issues/29529)
  </details>

- [Windows] Fixed ItemSpacing doesn't work in Carousel View by @​SubhikshaSf4851 in https://github.com/dotnet/maui/pull/30014
  <details>
  <summary>🔧 Fixes</summary>

  - [ItemSpacing on CarouselView is not applied on Windows.](https://github.com/dotnet/maui/issues/29772)
  </details>

- Fix CollectionView not scrolling to top on iOS status bar tap by @​jfversluis in https://github.com/dotnet/maui/pull/34687
  <details>
  <summary>🔧 Fixes</summary>

  - [[iOS] UICollectionView ScrollToTop does not work](https://github.com/dotnet/maui/issues/19866)
  </details>

- [iOS] Fixed CollectionView Scroll Jitter for TextType HTML Labels by @​SubhikshaSf4851 in https://github.com/dotnet/maui/pull/34383
  <details>
  <summary>🔧 Fixes</summary>
 ... (truncated)

## 10.0.71

## What's Changed
* [release/10.0.1xx-sr7] [Windows] Fix WebView blank rendering when used with HybridWebView by @​kubaflo in https://github.com/dotnet/maui/pull/35585
* [release/10.0.1xx-sr7] Revert PR #​30068 — Fix FontImageSource centering regression on Windows by @​kubaflo in https://github.com/dotnet/maui/pull/35689
* [release/10.0.1xx-sr7] Fix iOS/Catalyst MapPool retention with MapElements by @​kubaflo in https://github.com/dotnet/maui/pull/35690
* [release/10.0.1xx-sr7] [iOS] Fix Shell - opened keyboard on modal page shifts parent page/frame behind modal after update to 10.0.60 by @​kubaflo in https://github.com/dotnet/maui/pull/35691
* [release/10.0.1xx-sr7] [Android] Fix BottomNavigationView remaining visible for TabbedPage inside modal NavigationPage after PushAsync by @​kubaflo in https://github.com/dotnet/maui/pull/35692
* [release/10.0.1xx-sr7] Gate SafeArea inset listeners in recycler items by @​kubaflo in https://github.com/dotnet/maui/pull/35693
* [release/10.0.1xx-sr7] Revert - Fix TalkBack not correctly narrating RadioButtons with Content by @​kubaflo in https://github.com/dotnet/maui/pull/35694
* [release/10.0.1xx-sr7] Revert - Fix Changing Shell.NavBarIsVisible does not update the nav bar  by @​Tamilarasan-Paranthaman in https://github.com/dotnet/maui/pull/35703
* [Revert] - [Windows] Fix WebView blank rendering when used with HybridWebView by @​SubhikshaSf4851 in https://github.com/dotnet/maui/pull/35744
* Fix OnNavigatedTo not firing after PopModalAsync when tab is changed inside modal by @​praveenkumarkarunanithi in https://github.com/dotnet/maui/pull/35768
* Increment patch version from 70 to 71 by @​PureWeen in https://github.com/dotnet/maui/pull/35786


**Full Changelog**: https://github.com/dotnet/maui/compare/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
- [CI] Extend gate to all test types and decouple from PR review by @​kubaflo in https://github.com/dotnet/maui/pull/34705

- Integrate UI test category detection into PR review and fix gate reliability by @​kubaflo in https://github.com/dotnet/maui/pull/35133

## API
- Revert public API surface from #​34228 on inflight/candidate by @​Redth in https://github.com/dotnet/maui/pull/35024

## Blazor
- Fix: Filter precompressed RCL assets from MAUI Blazor Hybrid APKs by @​mattleibow in https://github.com/dotnet/maui/pull/33917
  <details>
  <summary>🔧 Fixes</summary>

  - [.NET MAUI Blazor Hybrid App should not precompress assets](https://github.com/dotnet/maui/issues/33773)
  </details>

- [Windows] Fix for Runtime error when closing external window with WPF Webview Control by @​BagavathiPerumal in https://github.com/dotnet/maui/pull/34006
  <details>
  <summary>🔧 Fixes</summary>

  - [Runtime error when closing external window with WPF Webview Control](https://github.com/dotnet/maui/issues/32944)
  </details>

## Button
- [Android] ImageButton CornerRadius not being applied - fix by @​kubaflo in https://github.com/dotnet/maui/pull/30074
  <details>
  <summary>🔧 Fixes</summary>

  - [ImageButton CornerRadius not being applied on Android](https://github.com/dotnet/maui/issues/23854)
  </details>

- Fix Disabled visual state ignored when Button has locally-set BackgroundColor/TextColor by @​Dhivya-SF4094 in https://github.com/dotnet/maui/pull/34444
  <details>
  <summary>🔧 Fixes</summary>

  - [[regression/9.0] VisualState "Disabled" is not properly applied for Button with custom appearance](https://github.com/dotnet/maui/issues/34363)
  </details>

## CollectionView
- Fix CollectionView grid spacing updates for first row and column by @​KarthikRajaKalaimani in https://github.com/dotnet/maui/pull/34527
  <details>
  <summary>🔧 Fixes</summary>

  - [[MAUI] I2_Vertical grid for horizontal Item Spacing and Vertical Item Spacing - horizontally updating the spacing only applies to the second column](https://github.com/dotnet/maui/issues/34257)
  </details>
 ... (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
- Add eval.yaml for verify-tests-fail-without-fix skill by @​PureWeen in https://github.com/dotnet/maui/pull/34815

## Blazor
- [blazorwebview] align `SupportedOSPlatform` attribute with templates by @​jonathanpeppers in https://github.com/dotnet/maui/pull/25073

## Border
- [Testing] Refactoring Feature Matrix UITest Cases for Border Control by @​HarishKumarSF4517 in https://github.com/dotnet/maui/pull/34349

- Fix LayoutCycleException from nested Borders on Windows by @​Oxymoron290 in https://github.com/dotnet/maui/pull/34337
  <details>
  <summary>🔧 Fixes</summary>

  - [LayoutCycleException caused by nested Borders in ControlTemplates](https://github.com/dotnet/maui/issues/32406)
  </details>

## Button
- [iOS] Button RTL text and image overlap - fix by @​kubaflo in https://github.com/dotnet/maui/pull/29041

- [Android] Button with corner radius shadow broken on Android device - fix by @​kubaflo in https://github.com/dotnet/maui/pull/29339
  <details>
  <summary>🔧 Fixes</summary>

  - [[Android] Button with corner radius shadow broken on Android device](https://github.com/dotnet/maui/issues/20596)
  </details>

- [iOS] Preserve AlwaysTemplate rendering mode in Button.ResizeImageIfNecessary by @​kubaflo in https://github.com/dotnet/maui/pull/25107
  <details>
  <summary>🔧 Fixes</summary>

  - [[iOS] TintColor on UIButton image no longer working when button made visible](https://github.com/dotnet/maui/issues/25093)
  </details>

- [Android] Implemented Material3 support for  ImageButton by @​Dhivya-SF4094 in https://github.com/dotnet/maui/pull/33649
  <details>
  <summary>🔧 Fixes</summary>

  - [Implement Material3 support for ImageButton](https://github.com/dotnet/maui/issues/33648)
  </details>

- Fixed CI failure : Restore BackButtonBehavior IsEnabled after CanExecute changes by @​Shalini-Ashokan in https://github.com/dotnet/maui/pull/34668

## Checkbox
- [iOS/MacCatalyst] Fix CheckBox foreground color not resetting when set to null by @​Ahamed-Ali in https://github.com/dotnet/maui/pull/34284
  <details>
 ... (truncated)

## 10.0.51

## What's Changed
* Increment patch version from 50 to 51 by @​PureWeen in https://github.com/dotnet/maui/pull/34458
* [release/10.0.1xx-sr5] [Regression] Fix TypedBinding nested property re-subscription (#​34428) by @​github-actions[bot] in https://github.com/dotnet/maui/pull/34450
* [backport 10.0.1xx-sr5] Fix MAUIG2045 false positive with x:Reference source in DataTemplate by @​StephaneDelcroix in https://github.com/dotnet/maui/pull/34525


**Full Changelog**: https://github.com/dotnet/maui/compare/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
- Enable packing and independent preview versioning for Essentials.AI by @​mattleibow in https://github.com/dotnet/maui/pull/33976

- Move Essentials.AI preview iteration to eng/Versions.props by @​mattleibow in https://github.com/dotnet/maui/pull/34025

- [Feature] Add Microsoft.Maui.Essentials.AI - Apple Intelligence by @​mattleibow in https://github.com/dotnet/maui/pull/33519

- [AI] Fix multi-turn tool calling, add chat overlay, upgrade Agent Framework to rc2, and add CI pipelines by @​mattleibow in https://github.com/dotnet/maui/pull/34124

## Ai Agents
- Copilot agent infrastructure, emulator reliability, and try-fix workflow improvements by @​PureWeen via @​Copilot in https://github.com/dotnet/maui/pull/33937

- Update PR agent models to claude-sonnet-4.6 and gpt-5.3-codex by @​kubaflo in https://github.com/dotnet/maui/pull/34109

- ci-copilot: set pipeline run title early using build.updatebuildnumber by @​jfversluis via @​Copilot in https://github.com/dotnet/maui/pull/34156

- Revamp find-reviewable-pr skill: priorities, defaults, and doc fixes by @​PureWeen in https://github.com/dotnet/maui/pull/34160

- Add correct CI pipeline names to Copilot instructions by @​jfversluis in https://github.com/dotnet/maui/pull/34255

- Add resilience to UI tests for frozen/unresponsive apps by @​PureWeen in https://github.com/dotnet/maui/pull/34023

- Copilot CI: Structured phase outputs, autonomous execution, iOS support, and CI pipeline by @​kubaflo in https://github.com/dotnet/maui/pull/34040

- Agent Workflow Metrics via GitHub Labels by @​kubaflo in https://github.com/dotnet/maui/pull/33986

## Animation
- [Android] Fixed TransformProperties issue when a wrapper view is present by @​Ahamed-Ali in https://github.com/dotnet/maui/pull/29228
  <details>
  <summary>🔧 Fixes</summary>

  - [Android Image.Scale produces wrong layout](https://github.com/dotnet/maui/issues/7432)
  </details>

## API
- Add PublicAPI.Unshipped.txt BOM sort warning to Copilot instructions by @​jfversluis in https://github.com/dotnet/maui/pull/34327

## Button
- Fix ImageButton not rendering correctly based on its bounds by @​Shalini-Ashokan in https://github.com/dotnet/maui/pull/28309
  <details>
  <summary>🔧 Fixes</summary>

  - [ImageButton dosen't scale Image correctly](https://github.com/dotnet/maui/issues/25558)
  - [ButtonImage width not sizing correctly](https://github.com/dotnet/maui/issues/14346)
  </details>
 ... (truncated)

## 10.0.41

## What's Changed
* [release/10.0.1xx-sr4] Revert "Remove InternalsVisibleTo attributes for .NET MAUI Community … by @​github-actions[bot] in https://github.com/dotnet/maui/pull/34052
* Increment patch version from 40 to 41 by @​PureWeen in https://github.com/dotnet/maui/pull/34059


**Full Changelog**: https://github.com/dotnet/maui/compare/10.0.40...10.0.41

## 10.0.40

## What's Changed

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


## AI
- Improve write-tests-agent with best practices by @​sheiksyedm in https://github.com/dotnet/maui/pull/33860

- [Sample] Add Microsoft.Maui.Essentials.AI sample app with multi-agent workflow by @​mattleibow in https://github.com/dotnet/maui/pull/33610

## Ai Agents
- Add FileLoggingProvider for MacCatalyst UI test logging by @​PureWeen in https://github.com/dotnet/maui/pull/33518

- Improve verify-tests-fail-without-fix Skill by @​kubaflo in https://github.com/dotnet/maui/pull/33513

- Add find-reviewable-pr skill from existing PR by @​PureWeen via @​Copilot in https://github.com/dotnet/maui/pull/33349

- Add learn-from-pr agent and enhance skills framework structure by @​PureWeen via @​Copilot in https://github.com/dotnet/maui/pull/33579

- Fix PS1 scripts for Windows compatibility by @​PureWeen in https://github.com/dotnet/maui/pull/33679

- Improve skills and scripts for better agent workflows by @​PureWeen in https://github.com/dotnet/maui/pull/33699

- [XEXPR] Refactor test skills/agents to dispatcher pattern by @​PureWeen via @​Copilot in https://github.com/dotnet/maui/pull/33721

- [ai] Skill for running device tests  by @​rmarinho in https://github.com/dotnet/maui/pull/33484

- Add ai-summary-comment skill for automated PR review comments by @​kubaflo in https://github.com/dotnet/maui/pull/33585

- Add PR label management to test verification skill by @​kubaflo in https://github.com/dotnet/maui/pull/33739

- ai-summary-comment: Simplify PR finalize to two collapsible sections by @​kubaflo in https://github.com/dotnet/maui/pull/33771

- Improve issue-triage skill: Add gh CLI checks and fix workflow by @​PureWeen in https://github.com/dotnet/maui/pull/33750

- [ai] Add integration test runner skill by @​rmarinho in https://github.com/dotnet/maui/pull/33654

- Improve PR Agent Gate verification to prevent result fabrication by @​PureWeen in https://github.com/dotnet/maui/pull/33806

- Improve test report formatting and summary extraction by @​kubaflo in https://github.com/dotnet/maui/pull/33793

- Improve try-fix comment parsing and summary by @​kubaflo in https://github.com/dotnet/maui/pull/33794

- Enhance PR agent: multi-model workflow, blocker handling, shared rules extraction by @​PureWeen in https://github.com/dotnet/maui/pull/33813

- Enhance pr-finalize skill with code review phase and safety rules by @​PureWeen in https://github.com/dotnet/maui/pull/33861

- Remove Phase 2 (Tests) from PR agent workflow by @​kubaflo in https://github.com/dotnet/maui/pull/33905

## Blazor
 ... (truncated)

## 10.0.31

## What's Changed
* Increment patch version from 30 to 31 by @​PureWeen in https://github.com/dotnet/maui/pull/33752
* Revert "[Android] Fixed Label Overlapped by Android Status Bar When Using SafeAreaEdges=\"Container\" in .NET MAUI" by @​PureWeen in https://github.com/dotnet/maui/pull/33753


**Full Changelog**: https://github.com/dotnet/maui/compare/10.0.30...10.0.31

## 10.0.30

## What's Changed

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

## .NET 10 Features
- [net10.0] Merge main to net10.0 by @​PureWeen in https://github.com/dotnet/maui/pull/33323

## CollectionView
- Fixed the NRE in CarouselViewController on iOS 15.5 & 16.4  by @​Ahamed-Ali in https://github.com/dotnet/maui/pull/30838
  <details>
  <summary>🔧 Fixes</summary>

  - [NRE in CarouselViewController on iOS 15.5 & 16.4](https://github.com/dotnet/maui/issues/28557)
  </details>

- [iOS, macOS] Fixed CollectionView group header size changes with ItemSizingStrategy by @​NanthiniMahalingam in https://github.com/dotnet/maui/pull/33161
  <details>
  <summary>🔧 Fixes</summary>

  - [[NET 10] I6_Grouping - Grouping_with_variable_sized_items changing the 'ItemSizingStrategy' also changes the header size.](https://github.com/dotnet/maui/issues/33130)
  </details>

- [iOS][CV2] Fix page can be dragged down, and it would cause an extra space between Header and EmptyView text by @​devanathan-vaithiyanathan in https://github.com/dotnet/maui/pull/31840
  <details>
  <summary>🔧 Fixes</summary>

  - [I8_Header_and_Footer_Null - The page can be dragged down, and it would cause an extra space between Header and EmptyView text.](https://github.com/dotnet/maui/issues/31465)
  </details>

- [iOS] Fixed the Items not displayed properly in CarouselView2 by @​Ahamed-Ali in https://github.com/dotnet/maui/pull/31336
  <details>
  <summary>🔧 Fixes</summary>

  - [[iOS] Items are not updated properly in CarouselView2.](https://github.com/dotnet/maui/issues/31148)
  </details>

## Docs
- Add comprehensive README to Microsoft.Maui.Controls NuGet package by @​jfversluis via @​Copilot in https://github.com/dotnet/maui/pull/32835
  <details>
  <summary>🔧 Fixes</summary>

  - [Improve the MAUI Nuget readme.md file](https://github.com/dotnet/maui/issues/31969)
  </details>

- Improve Controls Core API docs 2 by @​jfversluis in https://github.com/dotnet/maui/pull/33243

- Update investigations docs by @​PureWeen via @​Copilot in https://github.com/dotnet/maui/pull/32949

- Improve agent workflow documentation by @​PureWeen via @​Copilot in https://github.com/dotnet/maui/pull/33434

 ... (truncated)

## 10.0.20

## What's Changed

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

## AI
- PR Reviewer Agent by @​PureWeen in https://github.com/dotnet/maui/pull/32340

- [AI] Moved PR Reviewer Agent to File-Based Instruction System by @​kubaflo in https://github.com/dotnet/maui/pull/32659

- Improved pr-reviewer AI agent and modified the usage instructions in README by @​kubaflo in https://github.com/dotnet/maui/pull/32718

- Add checkpoint/resume system for PR review agent by @​kubaflo in https://github.com/dotnet/maui/pull/32774

- [AI] The Issue-Resolver agent by @​kubaflo in https://github.com/dotnet/maui/pull/32804

- [AI] Fixed links for agents by @​kubaflo in https://github.com/dotnet/maui/pull/32818

- Agents scripts by @​PureWeen in https://github.com/dotnet/maui/pull/32819

- Add Git workflow rules for Copilot CLI by @​StephaneDelcroix in https://github.com/dotnet/maui/pull/32873

- Simplify agent instructions and consolidate sandbox testing workflow by @​PureWeen via @​Copilot in https://github.com/dotnet/maui/pull/32950

## Animation
- [Windows]Fixed the ViewExtensions RotateYTo and RotateXTo with length 0 crashes by @​Ahamed-Ali in https://github.com/dotnet/maui/pull/30167
  <details>
  <summary>🔧 Fixes</summary>

  - [[Windows]ViewExtensions RotateYTo and RotateXTo with length 0 crashes on Windows](https://github.com/dotnet/maui/issues/18420)
  </details>

## Button
- [Android] Fixed Material controls themeing issue by @​NirmalKumarYuvaraj in https://github.com/dotnet/maui/pull/30415
  <details>
  <summary>🔧 Fixes</summary>

  - [Java.Lang.IllegalArgumentException: The style on this component requires your app theme to be Theme.MaterialComponent.](https://github.com/dotnet/maui/issues/13356)
  </details>

## CollectionView
- Fix for CollectionView with GridItemsLayout (Span=1) doesn't adapt to window width reduction on Windows platform by @​praveenkumarkarunanithi in https://github.com/dotnet/maui/pull/31038
  <details>
  <summary>🔧 Fixes</summary>

  - [[MAUI]I1_Layout-Vertical list and Grid content cannot adapt when the window is reduced](https://github.com/dotnet/maui/issues/23702)
  </details>

- [iOS] RTL column mirroring in UICollectionView - fix by @​kubaflo in https://github.com/dotnet/maui/pull/32372
  <details>
  <summary>🔧 Fixes</summary>
 ... (truncated)

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

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.2.0
Bumps CommunityToolkit.Mvvm from 8.4.0 to 8.4.2
Bumps DotNet.ReproducibleBuilds from 1.2.39 to 2.0.5
Bumps Microsoft.Extensions.Logging.Debug from 10.0.1 to 10.0.9
Bumps Microsoft.Maui.Controls to 10.0.60, 10.0.80
Bumps MinVer from 6.0.0 to 7.0.0

---
updated-dependencies:
- dependency-name: CommunityToolkit.Maui
  dependency-version: 14.2.0
  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.5
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: Microsoft.Extensions.Logging.Debug
  dependency-version: 10.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: Microsoft.Maui.Controls
  dependency-version: 10.0.80
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: Microsoft.Maui.Controls
  dependency-version: 10.0.80
  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 Jun 29, 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