[release/11.0.1xx-rc.1] Update dependencies from dotnet/dotnet - #26454
[release/11.0.1xx-rc.1] Update dependencies from dotnet/dotnet#26454dotnet-maestro[bot] wants to merge 20 commits into
Conversation
…820.3 On relative base path root Microsoft.NET.Runtime.MonoTargets.Sdk , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Ref From Version 11.0.0-preview.7.26365.101 -> To Version 11.0.0-rc.1.26420.103 Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.SharedFramework.Sdk From Version 11.0.0-beta.26365.101 -> To Version 11.0.0-beta.26420.103 Microsoft.DotNet.Cecil From Version 0.11.5-preview.26365.101 -> To Version 0.11.5-preview.26420.103 Microsoft.NET.Sdk , Microsoft.TemplateEngine.Authoring.Tasks From Version 11.0.100-preview.7.26365.101 -> To Version 11.0.100-rc.1.26420.103
.net ChangeLog for #26454Level 1Level 2
Generated using https://github.com/spouliot/dotnet-tools/tree/master/changelog |
… dependencies from dotnet/dotnet
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
…821.1 On relative base path root Microsoft.NET.Runtime.MonoTargets.Sdk , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Ref From Version 11.0.0-preview.7.26365.101 -> To Version 11.0.0-rc.1.26421.101 Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.SharedFramework.Sdk From Version 11.0.0-beta.26365.101 -> To Version 11.0.0-beta.26421.101 Microsoft.DotNet.Cecil From Version 0.11.5-preview.26365.101 -> To Version 0.11.5-preview.26421.101 Microsoft.NET.Sdk , Microsoft.TemplateEngine.Authoring.Tasks From Version 11.0.100-preview.7.26365.101 -> To Version 11.0.100-rc.1.26421.101
… dependencies from dotnet/dotnet
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
…821.10 On relative base path root Microsoft.NET.Runtime.MonoTargets.Sdk , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Ref From Version 11.0.0-preview.7.26365.101 -> To Version 11.0.0-rc.1.26421.110 Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.SharedFramework.Sdk From Version 11.0.0-beta.26365.101 -> To Version 11.0.0-beta.26421.110 Microsoft.DotNet.Cecil From Version 0.11.5-preview.26365.101 -> To Version 0.11.5-preview.26421.110 Microsoft.NET.Sdk , Microsoft.TemplateEngine.Authoring.Tasks From Version 11.0.100-preview.7.26365.101 -> To Version 11.0.100-rc.1.26421.110
… dependencies from dotnet/dotnet
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
|
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
`TargetsCurrent=true` was set unconditionally as a workaround for the mono
toolchain workload manifest not knowing about net11.0 yet. The manifest now
sets `TargetsCurrent` itself for net11.0 target frameworks, so the override is
obsolete - and actively harmful, because it forces *every* target framework
(net8.0, net9.0, net10.0, ...) to use the net11 mono packs.
That made `BuildNet10_0App` fail to link:
Undefined symbols for architecture x86_64:
"_mono_helper_box_nullable", referenced from:
wrapper_managed_to_native_object___icall_wrapper_mono_helper_box_nullable_intptr_intptr in System.Private.CoreLib.dll.o
The net11 mono AOT cross compiler (Microsoft.NETCore.App.Runtime.AOT.*.Cross.*
11.0.0-rc.1.*) was used to AOT-compile a net10.0 app, while the runtime itself
came from the net10.0 runtime pack (Microsoft.NETCore.App.Runtime.Mono.*
10.0.12). dotnet/runtime#132153 added the new `mono_helper_box_nullable` icall
in .NET 11, so the AOT output referenced a symbol that doesn't exist in the
.NET 10 libmonosgen.
Removing the override makes the AOT cross pack version match the runtime pack
version again (both 10.0.12 for a net10.0 app).
Fixes #24418
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Mono's LLVM AOT compiler emits a malformed declaration for the uaddlp/saddlp
intrinsics:
declare <8 x i8> @llvm.aarch64.neon.uaddlp.v8i8.f64(double)
LLVM 23's IR verifier rejects this, so the AOT compilation of
System.Private.CoreLib fails:
error : Failed to AOT compile System.Private.CoreLib.dll, the AOT compiler exited with code 1.
The 'dont link' tests are the only ones affected, because the only methods
referencing those intrinsics (AdvSimd.AddPairwiseWidening) are otherwise
removed by the trimmer. Disable LLVM AOT here until the runtime fix flows in.
Ref: dotnet/runtime#132743
Fix: dotnet/runtime#132744
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Copilot-Session: 1b1fe653-aecb-469b-b96d-85e0691818de
Ref: #26467 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 1b1fe653-aecb-469b-b96d-85e0691818de
The Windows .NET tests failed to restore:
external/Xamarin.MacDev/Xamarin.MacDev/Xamarin.MacDev.csproj error NU1102: Unable to find package Microsoft.NETCore.App.Ref with version (= 10.0.12)
The Xamarin.MacDev submodule has its own NuGet.config which clears all
package sources, so the darc feeds we add to our own NuGet.config (to get
unreleased .NET packages, such as the 10.0.12 feed) aren't available when
restoring the submodule's projects.
Make.config already works around this for the macOS build by exporting
RestoreConfigFile (and NuGetPackageRoot, which Arcade overrides in CI), but
the Windows test scripts invoke 'dotnet test' directly, so they never got
those variables. Set them in the Windows test scripts as well.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
🚀 [CI Build #565dc42] Test results 🚀Test results✅ All tests passed on VSTS: test results. 🎉 All 260 tests passed 🎉 Tests counts✅ assembly-processing: All 1 tests passed. Html Report (VSDrops) Download macOS tests✅ Tests on macOS Sonoma (14): All 5 tests passed. Html Report (VSDrops) Download Linux Build VerificationPipeline on Agent |
…826.5 On relative base path root Microsoft.NET.Runtime.MonoTargets.Sdk , Microsoft.NET.ILLink , Microsoft.NET.ILLink.Tasks , Microsoft.NETCore.App.Ref From Version 11.0.0-preview.7.26365.101 -> To Version 11.0.0-rc.1.26426.105 Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.SharedFramework.Sdk From Version 11.0.0-beta.26365.101 -> To Version 11.0.0-beta.26426.105 Microsoft.DotNet.Cecil From Version 0.11.5-preview.26365.101 -> To Version 0.11.5-preview.26426.105 Microsoft.NET.Sdk , Microsoft.TemplateEngine.Authoring.Tasks From Version 11.0.100-preview.7.26365.101 -> To Version 11.0.100-rc.1.26426.105
… dependencies from dotnet/dotnet
✅ API diff for current PR / commitNET (empty diffs)✅ API diff vs stableNET (empty diffs)ℹ️ Generator diffGenerator Diff: vsdrops (html) vsdrops (raw diff) gist (raw diff) - Please review changes) Pipeline on Agent |
This pull request updates the following dependencies
From https://github.com/dotnet/dotnet