Skip to content

Conversation

@rmarinho
Copy link
Member

@rmarinho rmarinho commented Oct 21, 2025

What's Changed

.NET MAUI main-to-net10.0 introduces significant improvements across all platforms with focus on quality, performance, and developer experience. This release includes 159 commits with various improvements, bug fixes, and enhancements.

.NET MAUI Product Fixes

.NET 10 Features

Android

Aspire

BlazorWebView

Collectionview

Controls Dialogalert

Controls Hybridwebview

Controls Radiobutton

Core

Core Lifecycle

DateTimePicker

Docs

Essentials

Essentials Texttospeech

Flyout

Frame

Gestures

Image

Infrastructure

Layout

Localization

Mediapicker

Navigation

Other

ProgressBar

RefreshView

Shapes

Shell

Templates

Theming

Toolbar

WebView

Window

Windows

Xaml

iOS

🧪 Testing (17)
🏠 Housekeeping (7)
**Full Changelog**: https://github.com/dotnet/maui/compare/main...net10.0

jfversluis and others added 30 commits August 15, 2025 15:41
* [ci] Update to rc1

* [ci] Update iOS to RC1

* [test] Fix test for skipped target
# Conflicts:
#	src/Controls/src/Core/CarouselPage/CarouselPage.cs
#	src/Controls/src/Core/Cells/EntryCell.cs
#	src/Controls/src/Core/Cells/ImageCell.cs
#	src/Controls/src/Core/Cells/SwitchCell.cs
#	src/Controls/src/Core/Cells/TextCell.cs
#	src/Controls/src/Core/Cells/ViewCell.cs
#	src/Controls/src/Core/ClickGestureRecognizer.cs
#	src/Controls/src/Core/ClickedEventArgs.cs
#	src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/ShellItemRenderer.cs
#	src/Controls/src/Core/DatePicker/DatePicker.cs
#	src/Controls/src/Core/FileImageSource.cs
#	src/Controls/src/Core/ListView/ListView.cs
#	src/Controls/src/Core/Menu/MenuItem.cs
#	src/Controls/src/Core/NavigationPage/NavigationPage.cs
#	src/Controls/src/Core/PlatformConfiguration/AndroidSpecific/ListView.cs
#	src/Controls/src/Core/PlatformConfiguration/WindowsSpecific/ListView.cs
#	src/Controls/src/Core/PlatformConfiguration/iOSSpecific/Cell.cs
#	src/Controls/src/Core/PlatformConfiguration/iOSSpecific/ListView.cs
* Remove edge to edge from top level container

* - fix insets for shell and flyoutview

* - fix inset
* [ci] Add build for core-clr

* [iOS] Ignore iOS trimming on sample

* [ci] CoreCLR just for android

* [ci] Run tests on macos-15

* [ci] Run Android on api 36

* [ci] Fix variable TargetFramework

* [ci] Fix artifacts name

* [ci] Ignore more trimming warnings

* change variable name

* [ci] Add coreclr run tests

* [ci] Fix artifact condition

* [ci] Improve naming

* Fix Name

* Move back to api 30

* Update ui-tests.yml
I tested this with a "franken-build", using
`System.Private.CoreLib.dll` from this PR:

* dotnet/runtime#118761

With the `Type.GetType()` revert in place for Mono, I'm getting good
startup on an Android Pixel 5 (old) device with the `dotnet new maui`
project template:

Comparing the updated AOT profile:

    Before:
    Average(ms): 624.9
    Std Err(ms): 3.77844765302719
    Std Dev(ms): 11.9485006032835
    After:
    Average(ms): 582.1
    Std Err(ms): 2.92289810519172
    Std Dev(ms): 9.24301538099625

Some of my past numbers were on a Pixel 7, so these are good numbers for
an even older device.

We may want to run this again with newer (less-franken) builds, but
this is worth merging for now.
UI tests do not support scroll up: #31216
…Preview 6 (#30748)

<!-- Please let the below note in for people that find this PR -->
> [!NOTE]
> Are you waiting for the changes in this PR to be merged?
> It would be very helpful if you could [test the resulting
artifacts](https://github.com/dotnet/maui/wiki/Testing-PR-Builds) from
this PR and let us know in a comment if this change resolves your issue.
Thank you!

<!--
!!!!!!! MAIN IS THE ONLY ACTIVE BRANCH. MAKE SURE THIS PR IS TARGETING
MAIN. !!!!!!!
-->

### Issue detail:
DatePicker's DateSelected event not firing on Windows - .NET 10 Preview
6
### Root Cause
 
The DateSelected event was not firing on Windows due to an incorrect
condition check. The original code used if (VirtualView.Date is null),
which did not properly capture changes to the selected date. Although
Date can be set to null, the check was not sufficient to determine
whether the date had actually changed. As a result, the selected date
was not updated, and the event was not triggered.

### Description of Change
 
To resolve these issues, the condition was updated to if
(VirtualView.Date != args.NewDate.Value.DateTime) to ensure the event
triggers only when the selected date actually changes.
 
Validated the behaviour in the following platforms
 
- [x] Android
- [x] Windows
- [x] iOS
- [x] Mac
 
### Issues Fixed:
Fixes #30736 
 
### Screenshots
| Before  | After |
|---------|--------|
| <video
src="https://github.com/user-attachments/assets/d8f31f10-0d23-4546-92bf-dd474d2ca0f8">
| <video
src="https://github.com/user-attachments/assets/89285658-f7d6-4fea-87e8-458aa0d83899">
|
… using side effects (#31091)

* Initial plan

* Implement ComputeConstraintForView return value changes as per issue #31083

Co-authored-by: PureWeen <[email protected]>

* Fix LegacyLayouts/StackLayout.cs to use return values for ComputeConstraintForView

Co-authored-by: PureWeen <[email protected]>

* Fix final call site in LegacyLayouts/StackLayout.cs to use return value

Co-authored-by: PureWeen <[email protected]>

* Change ComputeConstraintForView access modifier back to protected

Co-authored-by: PureWeen <[email protected]>

* Address feedback: restore ViewCell constraint assignments and make ComputedConstraint setter internal

Co-authored-by: PureWeen <[email protected]>

* - fix public apis

# Conflicts:
#	src/Controls/src/Core/PublicAPI/net-android/PublicAPI.Unshipped.txt

# Conflicts:
#	src/Controls/src/Core/PublicAPI/net-android/PublicAPI.Unshipped.txt

* - fix publicapi

* Update PublicAPI.Unshipped.txt

* Fix LegacyLayouts/Grid.cs to use individual constraint assignment as requested

Co-authored-by: PureWeen <[email protected]>

* Revert ListView.cs constraint assignment removal as requested

Co-authored-by: PureWeen <[email protected]>

---------

Co-authored-by: copilot-swe-agent[bot] <[email protected]>
Co-authored-by: PureWeen <[email protected]>
Co-authored-by: Shane Neuville <[email protected]>
rmarinho and others added 15 commits October 21, 2025 22:11
* tweak

* delete all simulator runtimes if failing to install one

---------

Co-authored-by: Rolf Bjarne Kvinge <[email protected]>
Removed Android-specific environment variable handling code.
x:Reference optimization for XSG wasn't able to walk up the tree when a
node is a ListNode

- fixes #31995
* [testing] Ignore sample tests for ga

* Add TODO for Community Toolkit .NET 10 support

Added a TODO comment regarding re-enabling tests for .NET 10 support.
* Update dependencies from https://github.com/dotnet/macios build 20251022.2
On relative base path root
Microsoft.iOS.Sdk.net10.0_26.0 , Microsoft.MacCatalyst.Sdk.net10.0_26.0 , Microsoft.macOS.Sdk.net10.0_26.0 , Microsoft.tvOS.Sdk.net10.0_26.0 From Version 26.0.11007 -> To Version 26.0.11009

Dependency coherency updates
On relative base path root
Microsoft.MacCatalyst.Sdk.net9.0_26.0 From Version 26.0.9757 -> To Version 26.0.9758 (parent: Microsoft.MacCatalyst.Sdk.net10.0_26.0)

Microsoft.macOS.Sdk.net9.0_26.0 From Version 26.0.9757 -> To Version 26.0.9758 (parent: Microsoft.macOS.Sdk.net10.0_26.0)

Microsoft.iOS.Sdk.net9.0_26.0 From Version 26.0.9757 -> To Version 26.0.9758 (parent: Microsoft.iOS.Sdk.net10.0_26.0)

Microsoft.tvOS.Sdk.net9.0_26.0 From Version 26.0.9757 -> To Version 26.0.9758 (parent: Microsoft.tvOS.Sdk.net10.0_26.0)

* Update dependencies from https://github.com/dotnet/macios build 20251022.5
On relative base path root
Microsoft.iOS.Sdk.net10.0_26.0 , Microsoft.MacCatalyst.Sdk.net10.0_26.0 , Microsoft.macOS.Sdk.net10.0_26.0 , Microsoft.tvOS.Sdk.net10.0_26.0 From Version 26.0.11007 -> To Version 26.0.11010

Dependency coherency updates
On relative base path root
Microsoft.MacCatalyst.Sdk.net9.0_26.0 From Version 26.0.9757 -> To Version 26.0.9760 (parent: Microsoft.MacCatalyst.Sdk.net10.0_26.0)

Microsoft.macOS.Sdk.net9.0_26.0 From Version 26.0.9757 -> To Version 26.0.9760 (parent: Microsoft.macOS.Sdk.net10.0_26.0)

Microsoft.iOS.Sdk.net9.0_26.0 From Version 26.0.9757 -> To Version 26.0.9760 (parent: Microsoft.iOS.Sdk.net10.0_26.0)

Microsoft.tvOS.Sdk.net9.0_26.0 From Version 26.0.9757 -> To Version 26.0.9760 (parent: Microsoft.tvOS.Sdk.net10.0_26.0)

---------

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
* Add longPathAware setting to template Windows app manifest

* Enable long path support in app manifest

* Add longPathAware setting to app manifest

* Add longPathAware setting to app manifest
….0-ci.net10.25522.1+azdo.12633259 (#32156)

On relative base path root
Microsoft.Android.Sdk.Windows From Version 36.0.14 -> To Version 36.0.16

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
* Update dependencies from https://github.com/dotnet/macios build 20251023.3
On relative base path root
Microsoft.iOS.Sdk.net10.0_26.0 , Microsoft.MacCatalyst.Sdk.net10.0_26.0 , Microsoft.macOS.Sdk.net10.0_26.0 , Microsoft.tvOS.Sdk.net10.0_26.0 From Version 26.0.11010 -> To Version 26.0.11011

* Update dependencies from https://github.com/dotnet/macios build 20251023.4
On relative base path root
Microsoft.iOS.Sdk.net10.0_26.0 , Microsoft.MacCatalyst.Sdk.net10.0_26.0 , Microsoft.macOS.Sdk.net10.0_26.0 , Microsoft.tvOS.Sdk.net10.0_26.0 From Version 26.0.11010 -> To Version 26.0.11012

Dependency coherency updates
On relative base path root
Microsoft.MacCatalyst.Sdk.net9.0_26.0 From Version 26.0.9760 -> To Version 26.0.9764 (parent: Microsoft.MacCatalyst.Sdk.net10.0_26.0)

Microsoft.macOS.Sdk.net9.0_26.0 From Version 26.0.9760 -> To Version 26.0.9764 (parent: Microsoft.macOS.Sdk.net10.0_26.0)

Microsoft.iOS.Sdk.net9.0_26.0 From Version 26.0.9760 -> To Version 26.0.9764 (parent: Microsoft.iOS.Sdk.net10.0_26.0)

Microsoft.tvOS.Sdk.net9.0_26.0 From Version 26.0.9760 -> To Version 26.0.9764 (parent: Microsoft.tvOS.Sdk.net10.0_26.0)

---------

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
…e .NET MAUI repo (#32148)

* moved changes from maui-samples to maui.

* Update ProjectListPageModel.cs

* Update MauiProgram.cs

* Update MauiProgram.cs

* comments addressed.

* updated review concerns

* Update ProjectDetailPage.xaml

---------

Co-authored-by: Shane Neuville <[email protected]>
…023.13 (#32176)

On relative base path root
Microsoft.iOS.Sdk.net10.0_26.0 , Microsoft.MacCatalyst.Sdk.net10.0_26.0 , Microsoft.macOS.Sdk.net10.0_26.0 , Microsoft.tvOS.Sdk.net10.0_26.0 From Version 26.0.11012 -> To Version 26.0.11013

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
* Fix appBarLayout so it extends correctly full screen

* - update screen shots

* - update notch images

* - generate iOS images

* - fix based on review comments

* - fix insetting on MaterialToolBar so its content doesn't go into the display cutout

* - fix insets

* - fix screen shots
…023.15 (#32189)

On relative base path root
Microsoft.iOS.Sdk.net10.0_26.0 , Microsoft.MacCatalyst.Sdk.net10.0_26.0 , Microsoft.macOS.Sdk.net10.0_26.0 , Microsoft.tvOS.Sdk.net10.0_26.0 From Version 26.0.11013 -> To Version 26.0.11014

Dependency coherency updates
On relative base path root
Microsoft.MacCatalyst.Sdk.net9.0_26.0 From Version 26.0.9764 -> To Version 26.0.9765 (parent: Microsoft.MacCatalyst.Sdk.net10.0_26.0)

Microsoft.macOS.Sdk.net9.0_26.0 From Version 26.0.9764 -> To Version 26.0.9765 (parent: Microsoft.macOS.Sdk.net10.0_26.0)

Microsoft.iOS.Sdk.net9.0_26.0 From Version 26.0.9764 -> To Version 26.0.9765 (parent: Microsoft.iOS.Sdk.net10.0_26.0)

Microsoft.tvOS.Sdk.net9.0_26.0 From Version 26.0.9764 -> To Version 26.0.9765 (parent: Microsoft.tvOS.Sdk.net10.0_26.0)

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
if EnableDiagnostics isn't set, defaut to true on Debug builds

- fixes #32047
TamilarasanSF4853 and others added 2 commits October 25, 2025 16:13
* updated EntrySelectionLengthRuntimeUpdate snapshot

* Updated Issue28343_ProgressSpinnerDisabled snapshot
….0-ci.net10.25524.1+azdo.12655054 (#32207)

On relative base path root
Microsoft.Android.Sdk.Windows From Version 36.0.16 -> To Version 36.0.17

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
dotnet-maestro bot and others added 9 commits October 27, 2025 22:27
* Update dependencies from https://github.com/dotnet/macios build 20251027.5
On relative base path root
Microsoft.iOS.Sdk.net10.0_26.0 , Microsoft.MacCatalyst.Sdk.net10.0_26.0 , Microsoft.macOS.Sdk.net10.0_26.0 , Microsoft.tvOS.Sdk.net10.0_26.0 From Version 26.0.11014 -> To Version 26.0.11015

* Update dependencies from https://github.com/dotnet/macios build 20251027.8
On relative base path root
Microsoft.iOS.Sdk.net10.0_26.0 , Microsoft.MacCatalyst.Sdk.net10.0_26.0 , Microsoft.macOS.Sdk.net10.0_26.0 , Microsoft.tvOS.Sdk.net10.0_26.0 From Version 26.0.11014 -> To Version 26.0.11016

---------

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
…027.12 (#32233)

On relative base path root
Microsoft.iOS.Sdk.net10.0_26.0 , Microsoft.MacCatalyst.Sdk.net10.0_26.0 , Microsoft.macOS.Sdk.net10.0_26.0 , Microsoft.tvOS.Sdk.net10.0_26.0 From Version 26.0.11016 -> To Version 26.0.11017

Dependency coherency updates
On relative base path root
Microsoft.MacCatalyst.Sdk.net9.0_26.0 From Version 26.0.9765 -> To Version 26.0.9766 (parent: Microsoft.MacCatalyst.Sdk.net10.0_26.0)

Microsoft.macOS.Sdk.net9.0_26.0 From Version 26.0.9765 -> To Version 26.0.9766 (parent: Microsoft.macOS.Sdk.net10.0_26.0)

Microsoft.iOS.Sdk.net9.0_26.0 From Version 26.0.9765 -> To Version 26.0.9766 (parent: Microsoft.iOS.Sdk.net10.0_26.0)

Microsoft.tvOS.Sdk.net9.0_26.0 From Version 26.0.9765 -> To Version 26.0.9766 (parent: Microsoft.tvOS.Sdk.net10.0_26.0)

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
* Update dependencies from https://github.com/dotnet/android build 10.0.0-ci.net10.25527.1+azdo.12666624
On relative base path root
Microsoft.Android.Sdk.Windows From Version 36.0.17 -> To Version 36.1.1

* Update dependencies from https://github.com/dotnet/android build 10.0.0-ci.net10.25527.1+azdo.12666621
On relative base path root
Microsoft.Android.Sdk.Windows From Version 36.0.17 -> To Version 36.0.18

---------

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
* Update dependencies from https://github.com/dotnet/dotnet build 20251021.7
On relative base path root
Microsoft.AspNetCore.Authentication.Facebook , Microsoft.AspNetCore.Authentication.Google , Microsoft.AspNetCore.Authentication.MicrosoftAccount , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components , Microsoft.AspNetCore.Components.Analyzers , Microsoft.AspNetCore.Components.Forms , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.Components.WebAssembly , Microsoft.AspNetCore.Components.WebAssembly.Server , Microsoft.AspNetCore.Components.WebView , Microsoft.AspNetCore.Metadata , Microsoft.Extensions.Configuration , Microsoft.Extensions.Configuration.Abstractions , Microsoft.Extensions.Configuration.Json , Microsoft.Extensions.DependencyInjection , Microsoft.Extensions.DependencyInjection.Abstractions , Microsoft.Extensions.FileProviders.Abstractions , Microsoft.Extensions.Hosting.Abstractions , Microsoft.Extensions.Logging , Microsoft.Extensions.Logging.Abstractions , Microsoft.Extensions.Logging.Console , Microsoft.Extensions.Logging.Debug , Microsoft.Extensions.Primitives , Microsoft.JSInterop , Microsoft.NETCore.App.Ref From Version 10.0.0 -> To Version 10.0.0
Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Build.Tasks.Workloads , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.RemoteExecutor , Microsoft.DotNet.SharedFramework.Sdk , Microsoft.DotNet.XUnitExtensions From Version 10.0.0-beta.25520.105 -> To Version 10.0.0-beta.25521.107
Microsoft.NET.Sdk From Version 10.0.100-rtm.25520.105 -> To Version 10.0.100-rtm.25521.107

* Update dependencies from https://github.com/dotnet/dotnet build 20251023.8
On relative base path root
Microsoft.AspNetCore.Authentication.Facebook , Microsoft.AspNetCore.Authentication.Google , Microsoft.AspNetCore.Authentication.MicrosoftAccount , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components , Microsoft.AspNetCore.Components.Analyzers , Microsoft.AspNetCore.Components.Forms , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.Components.WebAssembly , Microsoft.AspNetCore.Components.WebAssembly.Server , Microsoft.AspNetCore.Components.WebView , Microsoft.AspNetCore.Metadata , Microsoft.Extensions.Configuration , Microsoft.Extensions.Configuration.Abstractions , Microsoft.Extensions.Configuration.Json , Microsoft.Extensions.DependencyInjection , Microsoft.Extensions.DependencyInjection.Abstractions , Microsoft.Extensions.FileProviders.Abstractions , Microsoft.Extensions.Hosting.Abstractions , Microsoft.Extensions.Logging , Microsoft.Extensions.Logging.Abstractions , Microsoft.Extensions.Logging.Console , Microsoft.Extensions.Logging.Debug , Microsoft.Extensions.Primitives , Microsoft.JSInterop , Microsoft.NETCore.App.Ref From Version 10.0.0 -> To Version 10.0.0
Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Build.Tasks.Workloads , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.RemoteExecutor , Microsoft.DotNet.SharedFramework.Sdk , Microsoft.DotNet.XUnitExtensions From Version 10.0.0-beta.25520.105 -> To Version 10.0.0-beta.25523.108
Microsoft.NET.Sdk From Version 10.0.100-rtm.25520.105 -> To Version 10.0.100-rtm.25523.108

* Update dependencies from https://github.com/dotnet/dotnet build 20251023.13
On relative base path root
Microsoft.AspNetCore.Authentication.Facebook , Microsoft.AspNetCore.Authentication.Google , Microsoft.AspNetCore.Authentication.MicrosoftAccount , Microsoft.AspNetCore.Authorization , Microsoft.AspNetCore.Components , Microsoft.AspNetCore.Components.Analyzers , Microsoft.AspNetCore.Components.Forms , Microsoft.AspNetCore.Components.Web , Microsoft.AspNetCore.Components.WebAssembly , Microsoft.AspNetCore.Components.WebAssembly.Server , Microsoft.AspNetCore.Components.WebView , Microsoft.AspNetCore.Metadata , Microsoft.Extensions.Configuration , Microsoft.Extensions.Configuration.Abstractions , Microsoft.Extensions.Configuration.Json , Microsoft.Extensions.DependencyInjection , Microsoft.Extensions.DependencyInjection.Abstractions , Microsoft.Extensions.FileProviders.Abstractions , Microsoft.Extensions.Hosting.Abstractions , Microsoft.Extensions.Logging , Microsoft.Extensions.Logging.Abstractions , Microsoft.Extensions.Logging.Console , Microsoft.Extensions.Logging.Debug , Microsoft.Extensions.Primitives , Microsoft.JSInterop , Microsoft.NETCore.App.Ref From Version 10.0.0 -> To Version 10.0.0
Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Build.Tasks.Workloads , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.RemoteExecutor , Microsoft.DotNet.SharedFramework.Sdk , Microsoft.DotNet.XUnitExtensions From Version 10.0.0-beta.25520.105 -> To Version 10.0.0-beta.25523.113
Microsoft.NET.Sdk From Version 10.0.100-rtm.25520.105 -> To Version 10.0.100-rtm.25523.113

---------

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
….0-ci.net10.25528.1+azdo.12671732 (#32249)

On relative base path root
Microsoft.Android.Sdk.Windows From Version 36.0.18 -> To Version 36.1.2

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
@rmarinho rmarinho merged commit c17c624 into main Oct 29, 2025
167 checks passed
@github-actions github-actions bot locked and limited conversation to collaborators Nov 29, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.