-
Notifications
You must be signed in to change notification settings - Fork 4.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[manual] Merge release/9.0-staging into release/9.0 #110370
Merged
carlossanlop
merged 35 commits into
dotnet:release/9.0
from
carlossanlop:release/9.0-staging
Dec 3, 2024
Merged
[manual] Merge release/9.0-staging into release/9.0 #110370
carlossanlop
merged 35 commits into
dotnet:release/9.0
from
carlossanlop:release/9.0-staging
Dec 3, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…non-beta x64 image (dotnet#109455) Co-authored-by: Jeremy Koritzinsky <jekoritz@microsoft.com> Co-authored-by: Jeremy Koritzinsky <jkoritzinsky@gmail.com>
…op (dotnet#109359) * Remove thread contention from Activity Start/Stop Author: algorithmsarecool <algorithmsarecool@gmail.com> * Fix ref parameters and whitespace Author: algorithmsarecool<algorithmsarecool@gmail.com> * PR feedback. - Reduce duplication - add comments and make code more obvious - Use IndexOf Author: algorithmsarecool <algorithmsarecool@gmail.com> * PR feedback to simplify locking strategy * PR feedback, final nits * package authoring * Fix package authoring * revert package authoring as it is not needed anymore in net9.0 --------- Co-authored-by: algorithmsarecool <algorithmsarecool@gmail.com> Co-authored-by: Tarek Mahmoud Sayed <tarekms@microsoft.com>
…op (dotnet#109359) * Remove thread contention from Activity Start/Stop Author: algorithmsarecool <algorithmsarecool@gmail.com> * Fix ref parameters and whitespace Author: algorithmsarecool<algorithmsarecool@gmail.com> * PR feedback. - Reduce duplication - add comments and make code more obvious - Use IndexOf Author: algorithmsarecool <algorithmsarecool@gmail.com> * PR feedback to simplify locking strategy * PR feedback, final nits * package authoring * Fix package authoring * revert package authoring as it is not needed anymore in net9.0 --------- Co-authored-by: algorithmsarecool <algorithmsarecool@gmail.com> Co-authored-by: Tarek Mahmoud Sayed <tarekms@microsoft.com>
…otnet#109385) * handle case of Proc Index > MAX_SUPPORTED_CPUS * PR feedback * Update comment --------- Co-authored-by: Manish Godse <61718172+mangod9@users.noreply.github.com>
) Backport of dotnet#109381 There exists a possibility where the klass being passed to try_prepare_objaddr_callvirt_optimization is not legit. This can result in unpredictable crashes. To fix, we pass the MonoType and flush out the MonoClass by calling mono_class_from_mono_type_internal. Fixes dotnet#109111
) * Change pre-release version label to servicing. Bump patch version to 1. * Switch to non-incremental servicing. - Remove incremental servicing docs. - Update APICompat baseline. - Remove some mentions of package servicing process. - Remove redundant source build setting of GeneratePackageOnBuild. * Change the S.D.DS. ProjectReference to `src` instead of `ref` in M.E.L.C. * Update the template message * Update backport.yml message * Update library-servicing.md --------- Co-authored-by: Eric StJohn <ericstj@microsoft.com>
* Run downlevel tests only on main * Invert the condition...
… logic. (dotnet#109813) * Fix regression in constructor parameter binding logic. * Update servicing version --------- Co-authored-by: Eirik Tsarpalis <eirik.tsarpalis@gmail.com>
…rocalSqrt`/`ReciprocalSqrtEstimate` oversights (dotnet#109922) * Fix XML docs for `MinNumber` They ware accidentally referring to maxima * Add `T.Sqrt` to XML docs of reciprocal square root The effective code was copied from the other reciprocal --------- Co-authored-by: delreluca <35895923+delreluca@users.noreply.github.com> Co-authored-by: Luca Del Re <v.commit@ldr.name>
* Add a missing = * Add some tests for bigint AND. * Add some tests for bigint AND. * Update src/libraries/System.Runtime.Numerics/tests/BigInteger/SampleGeneration.cs Co-authored-by: Dan Moseley <danmose@microsoft.com> * Fix BigInteger bitwise operators on certain negative numbers (dotnet#109684) Co-authored-by: Tanner Gooding <tagoo@outlook.com> --------- Co-authored-by: LEI Hongfaan <lihangfan@hotmail.com> Co-authored-by: Dan Moseley <danmose@microsoft.com> Co-authored-by: Rob Hague <rob.hague00@gmail.com> Co-authored-by: Tanner Gooding <tagoo@outlook.com>
…ld targets (dotnet#109709) * Ignore modopts/modreqs for `UnsafeAccessor` field targets The generated IL remains correct and doesn't require a .volatile prefix for the generated accessor. This is based off of what Roslyn currently emits if a getter was available. * Update mono --------- Co-authored-by: Aaron R Robinson <arobins@microsoft.com>
… on Linux running on certain AMD Processors. (dotnet#109749) * Fixed merge conflicts * Fix up build related issues
…JsonSchemaExporter. (dotnet#109975) * Fix transformer handling of boolean schemas in JsonSchemaExporter. * Address feedback. --------- Co-authored-by: Eirik Tsarpalis <eirik.tsarpalis@gmail.com>
…sisting them (dotnet#109844) * Ensure proper cleanup of key files when not persisting them Code inspection suggested that keys imported into the CNG MachineKey store from PFXImportCertStore were not getting properly cleaned up. This change adds tests that prove that supposition, and then fixes the bug so they pass. * Support systems that have never had CAPI-DSS * Review feedback * Bump keysize to 2048 * This caused the tests to be too slow, so reuse 6 random keys for all of them * Remove the random ordering in machine-or-user for defaultkeyset (try both ways) * Remove incorrect copy/paste comment * Remove bad nullable annotation --------- Co-authored-by: Jeremy Barton <jbarton@microsoft.com>
…otnet#109989) Added for now under the same config flag as is being used for other work prioritization experimentation. Co-authored-by: Stephen Toub <stoub@microsoft.com>
Backport of dotnet#109804 to release/9.0-staging /cc @mangod9 @mrsharm Customer Impact Customer reported Found internally Original issue: dotnet#109804. Customers discovered a hang because one of the BGC threads had disappeared which shouldn't have happened - this is due to a BGC thread that was not needed during a previous BGC (because DATAS only needed a subset of BGC threads for that BGC to run) ran at a time when settings.concurrent was FALSE so it exited. Regression Yes No Testing I have added stress code in GC (under STRESS_DYNAMIC_HEAP_COUNT) to make the repro quite easy. Risk Low. This has gone through extensive testing on both Windows and Linux.
…ro (dotnet#110162) * Fix Matrix4x4.CreateReflection * Update tests * Use AssertExtensions instead * Update Matrix4x4Tests.cs * Update Matrix4x4Tests.cs * Use AssertExtensions for new test only --------- Co-authored-by: Steve <hez2010@outlook.com>
Co-authored-by: Michal Strehovský <MichalStrehovsky@users.noreply.github.com>
Co-authored-by: Sven Boemer <sbomer@gmail.com>
) * Update dependencies from https://github.com/dotnet/icu build 20241025.1 Microsoft.NETCore.Runtime.ICU.Transport From Version 9.0.0-rtm.24516.3 -> To Version 9.0.0-rtm.24525.1 * Update dependencies from https://github.com/dotnet/icu build 20241029.1 Microsoft.NETCore.Runtime.ICU.Transport From Version 9.0.0-rtm.24516.3 -> To Version 9.0.0-rtm.24529.1 * Update dependencies from https://github.com/dotnet/icu build 20241105.1 Microsoft.NETCore.Runtime.ICU.Transport From Version 9.0.0-rtm.24516.3 -> To Version 9.0.0-rtm.24555.1 * Update dependencies from https://github.com/dotnet/icu build 20241107.1 Microsoft.NETCore.Runtime.ICU.Transport From Version 9.0.0-rtm.24516.3 -> To Version 9.0.0-rtm.24557.1 * Update dependencies from https://github.com/dotnet/icu build 20241109.1 Microsoft.NETCore.Runtime.ICU.Transport From Version 9.0.0-rtm.24516.3 -> To Version 9.0.0-rtm.24559.1 * Update dependencies from https://github.com/dotnet/icu build 20241114.1 Microsoft.NETCore.Runtime.ICU.Transport From Version 9.0.0-rtm.24516.3 -> To Version 9.0.0-rtm.24564.1 * Update dependencies from https://github.com/dotnet/icu build 20241120.1 Microsoft.NETCore.Runtime.ICU.Transport From Version 9.0.0-rtm.24516.3 -> To Version 9.0.0-rtm.24570.1 * Update dependencies from https://github.com/dotnet/icu build 20241122.1 Microsoft.NETCore.Runtime.ICU.Transport From Version 9.0.0-rtm.24516.3 -> To Version 9.0.0-rtm.24572.1 --------- Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
…t#109306) * Update dependencies from https://github.com/dotnet/xharness build 20241025.1 Microsoft.DotNet.XHarness.CLI , Microsoft.DotNet.XHarness.TestRunners.Common , Microsoft.DotNet.XHarness.TestRunners.Xunit From Version 9.0.0-prerelease.24405.1 -> To Version 9.0.0-prerelease.24525.1 * Update dependencies from https://github.com/dotnet/xharness build 20241106.2 Microsoft.DotNet.XHarness.CLI , Microsoft.DotNet.XHarness.TestRunners.Common , Microsoft.DotNet.XHarness.TestRunners.Xunit From Version 9.0.0-prerelease.24405.1 -> To Version 9.0.0-prerelease.24556.2 * Update dependencies from https://github.com/dotnet/xharness build 20241119.2 Microsoft.DotNet.XHarness.CLI , Microsoft.DotNet.XHarness.TestRunners.Common , Microsoft.DotNet.XHarness.TestRunners.Xunit From Version 9.0.0-prerelease.24405.1 -> To Version 9.0.0-prerelease.24569.2 * Update dependencies from https://github.com/dotnet/xharness build 20241125.3 Microsoft.DotNet.XHarness.CLI , Microsoft.DotNet.XHarness.TestRunners.Common , Microsoft.DotNet.XHarness.TestRunners.Xunit From Version 9.0.0-prerelease.24405.1 -> To Version 9.0.0-prerelease.24575.3 --------- Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
…09297) * Update dependencies from https://github.com/dotnet/cecil build 20241021.1 Microsoft.SourceBuild.Intermediate.cecil , Microsoft.DotNet.Cecil From Version 0.11.5-alpha.24515.1 -> To Version 0.11.5-alpha.24521.1 * Update dependencies from https://github.com/dotnet/cecil build 20241104.3 Microsoft.SourceBuild.Intermediate.cecil , Microsoft.DotNet.Cecil From Version 0.11.5-alpha.24515.1 -> To Version 0.11.5-alpha.24554.3 * Update dependencies from https://github.com/dotnet/cecil build 20241111.1 Microsoft.SourceBuild.Intermediate.cecil , Microsoft.DotNet.Cecil From Version 0.11.5-alpha.24515.1 -> To Version 0.11.5-alpha.24561.1 * Update dependencies from https://github.com/dotnet/cecil build 20241118.1 Microsoft.SourceBuild.Intermediate.cecil , Microsoft.DotNet.Cecil From Version 0.11.5-alpha.24515.1 -> To Version 0.11.5-alpha.24568.1 * Update dependencies from https://github.com/dotnet/cecil build 20241119.4 Microsoft.SourceBuild.Intermediate.cecil , Microsoft.DotNet.Cecil From Version 0.11.5-alpha.24515.1 -> To Version 0.11.5-alpha.24569.4 * Update dependencies from https://github.com/dotnet/cecil build 20241121.1 Microsoft.SourceBuild.Intermediate.cecil , Microsoft.DotNet.Cecil From Version 0.11.5-alpha.24515.1 -> To Version 0.11.5-alpha.24571.1 * Update dependencies from https://github.com/dotnet/cecil build 20241122.1 Microsoft.SourceBuild.Intermediate.cecil , Microsoft.DotNet.Cecil From Version 0.11.5-alpha.24515.1 -> To Version 0.11.5-alpha.24572.1 * Update dependencies from https://github.com/dotnet/cecil build 20241125.1 Microsoft.SourceBuild.Intermediate.cecil , Microsoft.DotNet.Cecil From Version 0.11.5-alpha.24515.1 -> To Version 0.11.5-alpha.24575.1 * Update dependencies from https://github.com/dotnet/cecil build 20241202.1 Microsoft.SourceBuild.Intermediate.cecil , Microsoft.DotNet.Cecil From Version 0.11.5-alpha.24515.1 -> To Version 0.11.5-alpha.24602.1 --------- Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
…ference-packages (dotnet#109301) * Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20241017.1 Microsoft.SourceBuild.Intermediate.source-build-reference-packages From Version 9.0.0-alpha.1.24511.3 -> To Version 9.0.0-alpha.1.24517.1 * Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20241118.3 Microsoft.SourceBuild.Intermediate.source-build-reference-packages From Version 9.0.0-alpha.1.24511.3 -> To Version 9.0.0-alpha.1.24568.3 --------- Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
dotnet#109303) * Update dependencies from https://github.com/dotnet/roslyn-analyzers build 20241027.2 Microsoft.CodeAnalysis.Analyzers , Microsoft.CodeAnalysis.NetAnalyzers From Version 3.11.0-beta1.24508.2 -> To Version 3.11.0-beta1.24527.2 * Update dependencies from https://github.com/dotnet/roslyn-analyzers build 20241124.2 Microsoft.CodeAnalysis.Analyzers , Microsoft.CodeAnalysis.NetAnalyzers From Version 3.11.0-beta1.24508.2 -> To Version 3.11.0-beta1.24574.2 --------- Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
…109305) * Update dependencies from https://github.com/dotnet/roslyn build 20241027.2 Microsoft.SourceBuild.Intermediate.roslyn , Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset From Version 4.12.0-3.24516.15 -> To Version 4.12.0-3.24527.2 * Update dependencies from https://github.com/dotnet/roslyn build 20241031.8 Microsoft.SourceBuild.Intermediate.roslyn , Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset From Version 4.12.0-3.24516.15 -> To Version 4.12.0-3.24531.8 * Update dependencies from https://github.com/dotnet/roslyn build 20241104.3 Microsoft.SourceBuild.Intermediate.roslyn , Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset From Version 4.12.0-3.24516.15 -> To Version 4.12.0-3.24554.3 * Update dependencies from https://github.com/dotnet/roslyn build 20241107.3 Microsoft.SourceBuild.Intermediate.roslyn , Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset From Version 4.12.0-3.24516.15 -> To Version 4.12.0-3.24557.3 * Update dependencies from https://github.com/dotnet/roslyn build 20241108.5 Microsoft.SourceBuild.Intermediate.roslyn , Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset From Version 4.12.0-3.24516.15 -> To Version 4.12.0-3.24558.5 * Update dependencies from https://github.com/dotnet/roslyn build 20241120.6 Microsoft.SourceBuild.Intermediate.roslyn , Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset From Version 4.12.0-3.24516.15 -> To Version 4.12.0-3.24570.6 * Update dependencies from https://github.com/dotnet/roslyn build 20241122.7 Microsoft.SourceBuild.Intermediate.roslyn , Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset From Version 4.12.0-3.24516.15 -> To Version 4.12.0-3.24572.7 * Update dependencies from https://github.com/dotnet/roslyn build 20241124.8 Microsoft.SourceBuild.Intermediate.roslyn , Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.Net.Compilers.Toolset From Version 4.12.0-3.24516.15 -> To Version 4.12.0-3.24574.8 --------- Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
…109825) * Update dependencies from https://github.com/dotnet/arcade build 20241112.13 Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Archives , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Build.Tasks.Packaging , Microsoft.DotNet.Build.Tasks.TargetFramework , Microsoft.DotNet.Build.Tasks.Templating , Microsoft.DotNet.Build.Tasks.Workloads , Microsoft.DotNet.CodeAnalysis , Microsoft.DotNet.GenAPI , Microsoft.DotNet.GenFacades , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.PackageTesting , Microsoft.DotNet.RemoteExecutor , Microsoft.DotNet.SharedFramework.Sdk , Microsoft.DotNet.VersionTools.Tasks , Microsoft.DotNet.XliffTasks , Microsoft.DotNet.XUnitAssert , Microsoft.DotNet.XUnitConsoleRunner , Microsoft.DotNet.XUnitExtensions From Version 9.0.0-beta.24516.2 -> To Version 9.0.0-beta.24562.13 * Update dependencies from https://github.com/dotnet/arcade build 20241122.2 Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Archives , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Build.Tasks.Packaging , Microsoft.DotNet.Build.Tasks.TargetFramework , Microsoft.DotNet.Build.Tasks.Templating , Microsoft.DotNet.Build.Tasks.Workloads , Microsoft.DotNet.CodeAnalysis , Microsoft.DotNet.GenAPI , Microsoft.DotNet.GenFacades , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.PackageTesting , Microsoft.DotNet.RemoteExecutor , Microsoft.DotNet.SharedFramework.Sdk , Microsoft.DotNet.VersionTools.Tasks , Microsoft.DotNet.XliffTasks , Microsoft.DotNet.XUnitAssert , Microsoft.DotNet.XUnitConsoleRunner , Microsoft.DotNet.XUnitExtensions From Version 9.0.0-beta.24516.2 -> To Version 9.0.0-beta.24572.2 --------- Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
…ternals (dotnet#109960) * Update dependencies from https://github.com/dotnet/source-build-externals build 20241118.2 Microsoft.SourceBuild.Intermediate.source-build-externals From Version 9.0.0-alpha.1.24516.3 -> To Version 9.0.0-alpha.1.24568.2 * Update dependencies from https://github.com/dotnet/source-build-externals build 20241125.1 Microsoft.SourceBuild.Intermediate.source-build-externals From Version 9.0.0-alpha.1.24516.3 -> To Version 9.0.0-alpha.1.24575.1 --------- Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
…09298) * Update dependencies from https://github.com/dotnet/emsdk build 20241024.2 Microsoft.SourceBuild.Intermediate.emsdk , Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100 , Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100.Transport From Version 9.0.0-rtm.24519.2 -> To Version 9.0.0-rtm.24524.2 Dependency coherency updates runtime.linux-arm64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.linux-x64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.linux-musl-x64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.win-arm64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.win-x64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.osx-arm64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.osx-x64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.linux-musl-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.linux-musl-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.win-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.win-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.osx-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.osx-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.osx-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.osx-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools From Version 19.1.0-alpha.1.24510.5 -> To Version 19.1.0-alpha.1.24519.2 (parent: Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100.Transport * Update dependencies from https://github.com/dotnet/emsdk build 20241028.2 Microsoft.SourceBuild.Intermediate.emsdk , Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100 , Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100.Transport From Version 9.0.0-rtm.24519.2 -> To Version 9.0.0-rtm.24528.2 * Update dependencies from https://github.com/dotnet/emsdk build 20241104.3 Microsoft.SourceBuild.Intermediate.emsdk , Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100 , Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100.Transport From Version 9.0.0-rtm.24519.2 -> To Version 9.0.0-rtm.24554.3 * Update dependencies from https://github.com/dotnet/emsdk build 20241105.2 Microsoft.SourceBuild.Intermediate.emsdk , Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100 , Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100.Transport From Version 9.0.0-rtm.24519.2 -> To Version 9.0.0-rtm.24555.2 * Update dependencies from https://github.com/dotnet/emsdk build 20241105.5 Microsoft.SourceBuild.Intermediate.emsdk , Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100 , Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100.Transport From Version 9.0.0-rtm.24519.2 -> To Version 9.0.0-rtm.24555.5 * Update dependencies from https://github.com/dotnet/emsdk build 20241108.1 Microsoft.SourceBuild.Intermediate.emsdk , Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100 , Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100.Transport From Version 9.0.0-rtm.24519.2 -> To Version 9.0.1-servicing.24558.1 Dependency coherency updates runtime.linux-arm64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.linux-x64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.linux-musl-x64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.win-arm64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.win-x64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.osx-arm64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.osx-x64.Microsoft.NETCore.Runtime.JIT.Tools,runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.linux-musl-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.linux-musl-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.win-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.win-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.osx-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.osx-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools,runtime.osx-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk,runtime.osx-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools From Version 19.1.0-alpha.1.24510.5 -> To Version 19.1.0-alpha.1.24554.4 (parent: Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100.Transport * Update dependencies from https://github.com/dotnet/emsdk build 20241113.3 Microsoft.SourceBuild.Intermediate.emsdk , Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100 , Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100.Transport From Version 9.0.0-rtm.24519.2 -> To Version 9.0.1-servicing.24563.3 * Update dependencies from https://github.com/dotnet/emsdk build 20241119.3 Microsoft.SourceBuild.Intermediate.emsdk , Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100 , Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100.Transport From Version 9.0.0-rtm.24519.2 -> To Version 9.0.1-servicing.24569.3 * Update dependencies from https://github.com/dotnet/emsdk build 20241121.2 Microsoft.SourceBuild.Intermediate.emsdk , Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100 , Microsoft.NET.Workload.Emscripten.Current.Manifest-9.0.100.Transport From Version 9.0.0-rtm.24519.2 -> To Version 9.0.1-servicing.24571.2 --------- Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com> Co-authored-by: Carlos Sánchez López <1175054+carlossanlop@users.noreply.github.com>
…ld 20241017.2 (dotnet#109336) Microsoft.DotNet.CilStrip.Sources , System.ComponentModel.TypeConverter.TestData , System.Data.Common.TestData , System.Drawing.Common.TestData , System.Formats.Tar.TestData , System.IO.Compression.TestData , System.IO.Packaging.TestData , System.Net.TestData , System.Private.Runtime.UnicodeData , System.Runtime.Numerics.TestData , System.Runtime.TimeZoneData , System.Security.Cryptography.X509Certificates.TestData , System.Text.RegularExpressions.TestData , System.Windows.Extensions.TestData From Version 9.0.0-beta.24459.2 -> To Version 9.0.0-beta.24517.2 Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com> Co-authored-by: Carlos Sánchez López <1175054+carlossanlop@users.noreply.github.com>
…dotnet#109308) * Update dependencies from https://github.com/dotnet/hotreload-utils build 20241023.3 Microsoft.DotNet.HotReload.Utils.Generator.BuildTool From Version 9.0.0-alpha.0.24514.3 -> To Version 9.0.0-alpha.0.24523.3 * Update dependencies from https://github.com/dotnet/hotreload-utils build 20241030.2 Microsoft.DotNet.HotReload.Utils.Generator.BuildTool From Version 9.0.0-alpha.0.24514.3 -> To Version 9.0.0-alpha.0.24530.2 * Update dependencies from https://github.com/dotnet/hotreload-utils build 20241104.2 Microsoft.DotNet.HotReload.Utils.Generator.BuildTool From Version 9.0.0-alpha.0.24514.3 -> To Version 9.0.0-alpha.0.24554.2 * Update dependencies from https://github.com/dotnet/hotreload-utils build 20241111.2 Microsoft.DotNet.HotReload.Utils.Generator.BuildTool From Version 9.0.0-alpha.0.24514.3 -> To Version 9.0.0-alpha.0.24561.2 --------- Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com> Co-authored-by: Carlos Sánchez López <1175054+carlossanlop@users.noreply.github.com>
carlossanlop
added
Servicing-approved
Approved for servicing release
area-codeflow
for labeling automated codeflow
labels
Dec 3, 2024
carlossanlop
requested review from
marek-safar,
akoeplinger,
maraf,
ilonatommy,
lewing,
pavelsavara,
lambdageek,
steveisok and
thaystg
as code owners
December 3, 2024 19:17
rbhanda
approved these changes
Dec 3, 2024
Ready to merge. Some CI build legs have finishes successfully. cc @mmitche |
This was referenced Dec 3, 2024
Open
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Merge commit