diff --git a/release-notes/11.0/preview/preview3/README.md b/release-notes/11.0/preview/preview3/README.md new file mode 100644 index 0000000000..5bd6a3d79e --- /dev/null +++ b/release-notes/11.0/preview/preview3/README.md @@ -0,0 +1,50 @@ +# .NET 11 Preview 3 - Release Notes + +These notes cover the highest-value changes that shipped in .NET 11 Preview 3: + +- [Libraries](./libraries.md) +- [Runtime](./runtime.md) +- [SDK](./sdk.md) + +## Languages + +- [C#](./csharp.md) + +## Web and data + +- [ASP.NET Core](./aspnetcore.md) +- [EF Core](./efcore.md) + +## Release information + +| | Version | +| --- | --- | +| Runtime | 11.0.0-preview.3.26179.102 | +| SDK | 11.0.100-preview.3.26179.102 | + +### VMR refs + +These release notes were generated from the [dotnet/dotnet](https://github.com/dotnet/dotnet) VMR: + +- **Base**: [`v11.0.0-preview.2.26159.112`](https://github.com/dotnet/dotnet/tree/v11.0.0-preview.2.26159.112) +- **Head**: [`release/11.0.1xx-preview3`](https://github.com/dotnet/dotnet/tree/release/11.0.1xx-preview3) + +## Get Started + +Instructions on getting started with .NET 11 can be found in the +[getting started guide](../../get-started.md). Installers and binaries for +.NET 11 Preview 3 are available from +[dotnet.microsoft.com](https://dotnet.microsoft.com/download/dotnet/11.0) and +[.NET 11 Releases](../../README.md). + +## Stay up to date + +You can find a broader overview of .NET 11 here: + +- [What's new in .NET 11](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-11/overview) +- [What's new in ASP.NET Core for .NET 11](https://learn.microsoft.com/aspnet/core/release-notes/aspnetcore-11) +- [What's new in EF Core 11](https://learn.microsoft.com/ef/core/what-is-new/ef-core-11.0/whatsnew) + +The latest .NET 11 release is always available at +[dotnet.microsoft.com](https://dotnet.microsoft.com/download/dotnet/11.0) and +[.NET 11 Releases](../../README.md). diff --git a/release-notes/11.0/preview/preview3/aspnetcore.md b/release-notes/11.0/preview/preview3/aspnetcore.md new file mode 100644 index 0000000000..3d4f58023b --- /dev/null +++ b/release-notes/11.0/preview/preview3/aspnetcore.md @@ -0,0 +1,121 @@ +# ASP.NET Core in .NET 11 Preview 3 - Release Notes + +.NET 11 Preview 3 includes new ASP.NET Core features and improvements: + +- [Zstandard response compression and request decompression](#zstandard-response-compression-and-request-decompression) +- [Virtualize adapts to variable-height items at runtime](#virtualize-adapts-to-variable-height-items-at-runtime) +- [HTTP/3 starts processing requests earlier](#http3-starts-processing-requests-earlier) +- [Bug fixes](#bug-fixes) +- [Community contributors](#community-contributors) + +ASP.NET Core updates in .NET 11: + +- [What's new in ASP.NET Core in .NET 11](https://learn.microsoft.com/aspnet/core/release-notes/aspnetcore-11) +- [dotnet/aspnetcore #64787](https://github.com/dotnet/aspnetcore/issues/64787) + + + +## Zstandard response compression and request decompression + +ASP.NET Core now supports [Zstandard (zstd)](https://facebook.github.io/zstd/) +for both response compression and request decompression +([dotnet/aspnetcore #65479](https://github.com/dotnet/aspnetcore/pull/65479)). +This adds zstd support to the existing response-compression and +request-decompression middleware and enables it by default. + +```csharp +var builder = WebApplication.CreateBuilder(args); + +builder.Services.AddResponseCompression(); +builder.Services.AddRequestDecompression(); +builder.Services.Configure(options => +{ + options.CompressionOptions = new ZstandardCompressionOptions + { + Quality = 6 // 1-22, higher = better compression, slower + }; +}); +``` + +Thank you [@manandre](https://github.com/manandre) for this contribution! + +## Virtualize adapts to variable-height items at runtime + +Blazor's `Virtualize` component no longer assumes every item has the same +height. Preview 3 updates it to adapt to measured item sizes at runtime, which +reduces incorrect spacing and scrolling when item heights vary +([dotnet/aspnetcore #64964](https://github.com/dotnet/aspnetcore/pull/64964)). + +```razor + +
+

@message.Author

+

@message.Text

+
+
+``` + +## HTTP/3 starts processing requests earlier + +Kestrel now starts processing HTTP/3 requests without waiting for the control +stream and SETTINGS frame first, which reduces first-request latency on new +connections ([dotnet/aspnetcore #65399](https://github.com/dotnet/aspnetcore/pull/65399)). + + + +## Bug fixes + +- **Blazor** + - Fixed a null reference error in `Virtualize` + ([dotnet/aspnetcore #65207](https://github.com/dotnet/aspnetcore/pull/65207)). + - Fixed scroll-container detection when `overflow-x` is set + ([dotnet/aspnetcore #65744](https://github.com/dotnet/aspnetcore/pull/65744)). + - Fixed the Web Worker template in published Blazor WebAssembly apps + ([dotnet/aspnetcore #65885](https://github.com/dotnet/aspnetcore/pull/65885)). + - Fixed TempData lazy loading: `Get`, `Remove`, `Keep`, and enumeration now correctly trigger lazy loading + ([dotnet/aspnetcore #65722](https://github.com/dotnet/aspnetcore/pull/65722)). + - Fixed `IJSObjectReference` leak in `ResourceCollectionProvider` + ([dotnet/aspnetcore #65606](https://github.com/dotnet/aspnetcore/pull/65606)). + - Fixed cache headers for the Blazor resource collection endpoint to include `no-transform` and correct `Vary` headers + ([dotnet/aspnetcore #65513](https://github.com/dotnet/aspnetcore/pull/65513)). +- **Data Protection** + - Fixed `ManagedAuthenticatedEncryptor` hash calculation and comparison on .NET Framework targets + ([dotnet/aspnetcore #65890](https://github.com/dotnet/aspnetcore/pull/65890)). +- **HTTP / Kestrel** + - Fixed HTTP/2 HEADERS frame padding length validation to account for PRIORITY flag bytes + ([dotnet/aspnetcore #65729](https://github.com/dotnet/aspnetcore/pull/65729)). + - Fixed HTTP/2 Content-Length mismatch with trailers split across CONTINUATION frames + ([dotnet/aspnetcore #65765](https://github.com/dotnet/aspnetcore/pull/65765)). + - Fixed HPACK/QPACK decoder to validate uncompressed header size limits per `MaxRequestHeaderFieldSize` documentation + ([dotnet/aspnetcore #65771](https://github.com/dotnet/aspnetcore/pull/65771)). + - Fixed oversized TLS record length handling in `TlsListener` per RFC 8446 + ([dotnet/aspnetcore #65558](https://github.com/dotnet/aspnetcore/pull/65558)). + - Updated `ReasonPhrase` validation for HTTP responses + ([dotnet/aspnetcore #65797](https://github.com/dotnet/aspnetcore/pull/65797)). +- **JSON Patch** + - Fixed `JsonPatchDocument` operations on properties within array elements + ([dotnet/aspnetcore #65470](https://github.com/dotnet/aspnetcore/pull/65470)). +- **Middleware** + - Fixed output caching freshness check that incorrectly rejected cached entries when the request arrived on the same tick as the cache write + ([dotnet/aspnetcore #65659](https://github.com/dotnet/aspnetcore/pull/65659)). +- **Minimal APIs** + - Fixed validation source generator crash when encountering types with indexers like `JsonElement` and `Dictionary` + ([dotnet/aspnetcore #65432](https://github.com/dotnet/aspnetcore/pull/65432)). +- **SignalR** + - Fixed cancellation handling with `StatefulReconnect` to be more aggressive + ([dotnet/aspnetcore #65732](https://github.com/dotnet/aspnetcore/pull/65732)). + +## Community contributors + +Thank you contributors! ❤️ + +- [@am11](https://github.com/dotnet/aspnetcore/pulls?q=is%3Apr+is%3Amerged+milestone%3A11.0-preview3+author%3Aam11) +- [@DarianBaker](https://github.com/dotnet/aspnetcore/pulls?q=is%3Apr+is%3Amerged+milestone%3A11.0-preview3+author%3ADarianBaker) +- [@HPOD00019](https://github.com/dotnet/aspnetcore/pulls?q=is%3Apr+is%3Amerged+milestone%3A11.0-preview3+author%3AHPOD00019) +- [@kasperk81](https://github.com/dotnet/aspnetcore/pulls?q=is%3Apr+is%3Amerged+milestone%3A11.0-preview3+author%3Akasperk81) +- [@kklocker](https://github.com/dotnet/aspnetcore/pulls?q=is%3Apr+is%3Amerged+milestone%3A11.0-preview3+author%3Akklocker) +- [@manandre](https://github.com/dotnet/aspnetcore/pulls?q=is%3Apr+is%3Amerged+milestone%3A11.0-preview3+author%3Amanandre) +- [@martincostello](https://github.com/dotnet/aspnetcore/pulls?q=is%3Apr+is%3Amerged+milestone%3A11.0-preview3+author%3Amartincostello) diff --git a/release-notes/11.0/preview/preview3/build-metadata.json b/release-notes/11.0/preview/preview3/build-metadata.json new file mode 100644 index 0000000000..cc845fa0a1 --- /dev/null +++ b/release-notes/11.0/preview/preview3/build-metadata.json @@ -0,0 +1,20 @@ +{ + "version": "11.0.0-preview.3", + "base_ref": "v11.0.0-preview.2.26159.112", + "head_ref": "origin/release/11.0.1xx-preview3", + "build": { + "version": "11.0.0-preview.3.26203.107", + "sdk_version": "11.0.100-preview.3.26203.107", + "sdk_url": "https://ci.dot.net/public/Sdk/11.0.100-preview.3.26203.107/dotnet-sdk-11.0.100-preview.3.26203.107-{platform}.tar.gz" + }, + "nuget": { + "source": "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet11/nuget/v3/index.json", + "packages": { + "Microsoft.NETCore.App.Ref": "11.0.0-preview.3.26203.107", + "Microsoft.AspNetCore.App.Ref": "11.0.0-preview.3.26203.107", + "Microsoft.WindowsDesktop.App.Ref": "11.0.0-preview.3.26203.107", + "Microsoft.EntityFrameworkCore": "11.0.0-preview.3.26203.107", + "Microsoft.Data.Sqlite.Core": "11.0.0-preview.3.26203.107" + } + } +} \ No newline at end of file diff --git a/release-notes/11.0/preview/preview3/changes.json b/release-notes/11.0/preview/preview3/changes.json new file mode 100644 index 0000000000..11ec2c205a --- /dev/null +++ b/release-notes/11.0/preview/preview3/changes.json @@ -0,0 +1,44620 @@ +{ + "release_version": "11.0.0-preview.3", + "release_date": "", + "changes": [ + { + "id": "arcade@7db333e", + "repo": "arcade", + "title": "Change PackageReference to PackageDownload in SymStore.targets", + "url": "https://github.com/dotnet/arcade/pull/16526", + "commit": "dotnet@8b24ff4", + "is_security": false, + "local_repo_commit": "arcade@7db333e" + }, + { + "id": "arcade@620febd", + "repo": "arcade", + "title": "Remove NETStandard1X workarounds", + "url": "https://github.com/dotnet/arcade/pull/16528", + "commit": "dotnet@73edf32", + "is_security": false, + "local_repo_commit": "arcade@620febd" + }, + { + "id": "arcade@ae9439c", + "repo": "arcade", + "title": "Support for hotfix version tag", + "url": "https://github.com/dotnet/arcade/pull/16529", + "commit": "dotnet@73edf32", + "is_security": false, + "local_repo_commit": "arcade@ae9439c" + }, + { + "id": "arcade@90215a0", + "repo": "arcade", + "title": "Add CMake File API support to Microsoft.DotNet.CMake.Sdk", + "url": "https://github.com/dotnet/arcade/pull/16233", + "commit": "dotnet@73edf32", + "is_security": false, + "local_repo_commit": "arcade@90215a0" + }, + { + "id": "arcade@973af93", + "repo": "arcade", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/arcade/pull/16533", + "commit": "dotnet@f69203c", + "is_security": false, + "local_repo_commit": "arcade@973af93" + }, + { + "id": "arcade@da9054c", + "repo": "arcade", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/arcade/pull/16538", + "commit": "dotnet@f69203c", + "is_security": false, + "local_repo_commit": "arcade@da9054c" + }, + { + "id": "arcade@4055041", + "repo": "arcade", + "title": "Remove error suppression from tar archive commands", + "url": "https://github.com/dotnet/arcade/pull/16532", + "commit": "dotnet@f69203c", + "is_security": false, + "local_repo_commit": "arcade@4055041" + }, + { + "id": "arcade@c5560fb", + "repo": "arcade", + "title": "Re-enable running of Helix tests", + "url": "https://github.com/dotnet/arcade/pull/16536", + "commit": "dotnet@f69203c", + "is_security": false, + "local_repo_commit": "arcade@c5560fb" + }, + { + "id": "arcade@88c8808", + "repo": "arcade", + "title": "Fix internal queue name for Windows 11", + "url": "https://github.com/dotnet/arcade/pull/16539", + "commit": "dotnet@f69203c", + "is_security": false, + "local_repo_commit": "arcade@88c8808" + }, + { + "id": "arcade@55a078a", + "repo": "arcade", + "title": "Install lldb-dev on Alpine for SOS", + "url": "https://github.com/dotnet/arcade/pull/16540", + "commit": "dotnet@ecb6d9d", + "is_security": false, + "local_repo_commit": "arcade@55a078a" + }, + { + "id": "arcade@0831f9c", + "repo": "arcade", + "title": "Fix bug in conditionaltheory for xunit3", + "url": "https://github.com/dotnet/arcade/pull/16537", + "commit": "dotnet@ecb6d9d", + "is_security": false, + "local_repo_commit": "arcade@0831f9c" + }, + { + "id": "arcade@9ebf1ae", + "repo": "arcade", + "title": "Add macOS leg to PR validation pipeline", + "url": "https://github.com/dotnet/arcade/pull/16530", + "commit": "dotnet@a457158", + "is_security": false, + "local_repo_commit": "arcade@9ebf1ae" + }, + { + "id": "arcade@e95f9ba", + "repo": "arcade", + "title": "Update MSTest to 4.1.0", + "url": "https://github.com/dotnet/arcade/pull/16544", + "commit": "dotnet@a457158", + "is_security": false, + "local_repo_commit": "arcade@e95f9ba" + }, + { + "id": "arcade@4e3c44c", + "repo": "arcade", + "title": "Update xunit.v3 to latest", + "url": "https://github.com/dotnet/arcade/pull/16545", + "commit": "dotnet@d3ae6e9", + "is_security": false, + "local_repo_commit": "arcade@4e3c44c" + }, + { + "id": "arcade@5ce557e", + "repo": "arcade", + "title": "use SpecialFolder.UserProfile instead of USERPROFILE", + "url": "https://github.com/dotnet/arcade/pull/15135", + "commit": "dotnet@d3ae6e9", + "is_security": false, + "local_repo_commit": "arcade@5ce557e" + }, + { + "id": "arcade@38eefc1", + "repo": "arcade", + "title": "Remove Microsoft.NET.Test.Sdk version override from Versions.props", + "url": "https://github.com/dotnet/arcade/pull/16546", + "commit": "dotnet@d3ae6e9", + "is_security": false, + "local_repo_commit": "arcade@38eefc1" + }, + { + "id": "arcade@13e9f77", + "repo": "arcade", + "title": "Use GA VS2026 image instead of preview scouting", + "url": "https://github.com/dotnet/arcade/pull/16547", + "commit": "dotnet@c6946a8", + "is_security": false, + "local_repo_commit": "arcade@13e9f77" + }, + { + "id": "arcade@55c97a4", + "repo": "arcade", + "title": "Add Renovate support", + "url": "https://github.com/dotnet/arcade/pull/16504", + "commit": "dotnet@c6946a8", + "is_security": false, + "local_repo_commit": "arcade@55c97a4" + }, + { + "id": "arcade@31161de", + "repo": "arcade", + "title": "[main] Update dependencies from dotnet/xharness", + "url": "https://github.com/dotnet/arcade/pull/16553", + "commit": "dotnet@c463141", + "is_security": false, + "local_repo_commit": "arcade@31161de" + }, + { + "id": "arcade@a27769f", + "repo": "arcade", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/arcade/pull/16549", + "commit": "dotnet@c463141", + "is_security": false, + "local_repo_commit": "arcade@a27769f" + }, + { + "id": "arcade@0392c5d", + "repo": "arcade", + "title": "Sync xunit v3 versions in Directory.Packages.props with DefaultVersions.props", + "url": "https://github.com/dotnet/arcade/pull/16554", + "commit": "dotnet@7a05b89", + "is_security": false, + "local_repo_commit": "arcade@0392c5d" + }, + { + "id": "arcade@d531dad", + "repo": "arcade", + "title": "Add OpenBSD cross-build support", + "url": "https://github.com/dotnet/arcade/pull/16561", + "commit": "dotnet@7a05b89", + "is_security": false, + "local_repo_commit": "arcade@d531dad" + }, + { + "id": "arcade@0560b9e", + "repo": "arcade", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/arcade/pull/16562", + "commit": "dotnet@7a05b89", + "is_security": false, + "local_repo_commit": "arcade@0560b9e" + }, + { + "id": "arcade@a2dd169", + "repo": "arcade", + "title": "Move arcade to RTM version of System.CommandLine (2.0.3)", + "url": "https://github.com/dotnet/arcade/pull/16560", + "commit": "dotnet@7a05b89", + "is_security": false, + "local_repo_commit": "arcade@a2dd169" + }, + { + "id": "arcade@139fa4e", + "repo": "arcade", + "title": "[main] Remove MaestroAccessToken from publish logs YAML", + "url": "https://github.com/dotnet/arcade/pull/16563", + "commit": "dotnet@7a05b89", + "is_security": false, + "local_repo_commit": "arcade@139fa4e" + }, + { + "id": "arcade@c62e947", + "repo": "arcade", + "title": "Remove @self references from Azure Pipeline template nodes and documentation", + "url": "https://github.com/dotnet/arcade/pull/16568", + "commit": "dotnet@5b3fa07", + "is_security": false, + "local_repo_commit": "arcade@c62e947" + }, + { + "id": "arcade@c70a2fb", + "repo": "arcade", + "title": "Fix root fs dir on OpenBSD", + "url": "https://github.com/dotnet/arcade/pull/16570", + "commit": "dotnet@5b3fa07", + "is_security": false, + "local_repo_commit": "arcade@c70a2fb" + }, + { + "id": "arcade@539e874", + "repo": "arcade", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/arcade/pull/16565", + "commit": "dotnet@5b3fa07", + "is_security": false, + "local_repo_commit": "arcade@539e874" + }, + { + "id": "arcade@d6da516", + "repo": "arcade", + "title": "Document array support in Known Issues ErrorMessage/ErrorPattern sections", + "url": "https://github.com/dotnet/arcade/pull/16573", + "commit": "dotnet@9cbf747", + "is_security": false, + "local_repo_commit": "arcade@d6da516" + }, + { + "id": "arcade@e100c45", + "repo": "arcade", + "title": "Restore @self references in eng/** (non-common) and azure-pipelines* YAML files", + "url": "https://github.com/dotnet/arcade/pull/16572", + "commit": "dotnet@9cbf747", + "is_security": false, + "local_repo_commit": "arcade@e100c45" + }, + { + "id": "arcade@3a872e7", + "repo": "arcade", + "title": "Add label input to backport workflow", + "url": "https://github.com/dotnet/arcade/pull/16575", + "commit": "dotnet@9cbf747", + "is_security": false, + "local_repo_commit": "arcade@3a872e7" + }, + { + "id": "arcade@97f5d8a", + "repo": "arcade", + "title": "Remove self-reference from microbuild install templates", + "url": "https://github.com/dotnet/arcade/pull/16558", + "commit": "dotnet@9cbf747", + "is_security": false, + "local_repo_commit": "arcade@97f5d8a" + }, + { + "id": "arcade@2e8c949", + "repo": "arcade", + "title": "Quickly check if runtime is installed", + "url": "https://github.com/dotnet/arcade/pull/16580", + "commit": "dotnet@9cbf747", + "is_security": false, + "local_repo_commit": "arcade@2e8c949" + }, + { + "id": "arcade@763f00f", + "repo": "arcade", + "title": "Remove SDL from Arcade entirely", + "url": "https://github.com/dotnet/arcade/pull/16582", + "commit": "dotnet@9cbf747", + "is_security": false, + "local_repo_commit": "arcade@763f00f" + }, + { + "id": "arcade@566903f", + "repo": "arcade", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/arcade/pull/16578", + "commit": "dotnet@9cbf747", + "is_security": false, + "local_repo_commit": "arcade@566903f" + }, + { + "id": "arcade@12f2683", + "repo": "arcade", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/arcade/pull/16588", + "commit": "dotnet@9cbf747", + "is_security": false, + "local_repo_commit": "arcade@12f2683" + }, + { + "id": "arcade@9c14c8e", + "repo": "arcade", + "title": "Add non-portable RID for OpenBSD", + "url": "https://github.com/dotnet/arcade/pull/16564", + "commit": "dotnet@9cbf747", + "is_security": false, + "local_repo_commit": "arcade@9c14c8e" + }, + { + "id": "arcade@f7f177c", + "repo": "arcade", + "title": "Various Renovate improvements", + "url": "https://github.com/dotnet/arcade/pull/16569", + "commit": "dotnet@9b01a55", + "is_security": false, + "local_repo_commit": "arcade@f7f177c" + }, + { + "id": "arcade@b536294", + "repo": "arcade", + "title": "Add support for WarnNotAsError", + "url": "https://github.com/dotnet/arcade/pull/16592", + "commit": "dotnet@9b01a55", + "is_security": false, + "local_repo_commit": "arcade@b536294" + }, + { + "id": "arcade@bcbb938", + "repo": "arcade", + "title": "Add Aspire aka.ms links for install scripts", + "url": "https://github.com/dotnet/arcade/pull/16593", + "commit": "dotnet@9b01a55", + "is_security": false, + "local_repo_commit": "arcade@bcbb938" + }, + { + "id": "arcade@eab76e0", + "repo": "arcade", + "title": "SignCheck: report file and archive context on verification errors", + "url": "https://github.com/dotnet/arcade/pull/16595", + "commit": "dotnet@c7efe30", + "is_security": false, + "local_repo_commit": "arcade@eab76e0" + }, + { + "id": "arcade@3290ea9", + "repo": "arcade", + "title": "Add xunitv3assert", + "url": "https://github.com/dotnet/arcade/pull/16555", + "commit": "dotnet@c7efe30", + "is_security": false, + "local_repo_commit": "arcade@3290ea9" + }, + { + "id": "arcade@f7f7469", + "repo": "arcade", + "title": "Fix NU1009 CPM conflict for xunit.v3.core", + "url": "https://github.com/dotnet/arcade/pull/16608", + "commit": "dotnet@e921c3d", + "is_security": false, + "local_repo_commit": "arcade@f7f7469" + }, + { + "id": "arcade@b7e0a87", + "repo": "arcade", + "title": "Fix SignCheck EndOfStreamException on truncated PE files", + "url": "https://github.com/dotnet/arcade/pull/16607", + "commit": "dotnet@e921c3d", + "is_security": false, + "local_repo_commit": "arcade@b7e0a87" + }, + { + "id": "arcade@0512309", + "repo": "arcade", + "title": "Fix invalid reference to Renovate log path", + "url": "https://github.com/dotnet/arcade/pull/16610", + "commit": "dotnet@e921c3d", + "is_security": false, + "local_repo_commit": "arcade@0512309" + }, + { + "id": "arcade@edfa48e", + "repo": "arcade", + "title": "Add test to detect CPM conflicts with implicit PackageReferences", + "url": "https://github.com/dotnet/arcade/pull/16609", + "commit": "dotnet@e921c3d", + "is_security": false, + "local_repo_commit": "arcade@edfa48e" + }, + { + "id": "arcade@0e34dd8", + "repo": "arcade", + "title": "Revert \u0022Fix SignCheck EndOfStreamException on truncated PE files\u0022", + "url": "https://github.com/dotnet/arcade/pull/16613", + "commit": "dotnet@e921c3d", + "is_security": false, + "local_repo_commit": "arcade@0e34dd8" + }, + { + "id": "arcade@853171a", + "repo": "arcade", + "title": "Fix circular init in AOT equality comparer causing NRE on Mono", + "url": "https://github.com/dotnet/arcade/pull/16615", + "commit": "dotnet@e921c3d", + "is_security": false, + "local_repo_commit": "arcade@853171a" + }, + { + "id": "arcade@e385506", + "repo": "arcade", + "title": "Add VS 18.7-18.10 publishing", + "url": "https://github.com/dotnet/arcade/pull/16617", + "commit": "dotnet@561e25b", + "is_security": false, + "local_repo_commit": "arcade@e385506" + }, + { + "id": "arcade@feffa5f", + "repo": "arcade", + "title": "Fix VS NuGet restore loop caused by VSSDK property name conflict", + "url": "https://github.com/dotnet/arcade/pull/16594", + "commit": "dotnet@2615092", + "is_security": false, + "local_repo_commit": "arcade@feffa5f" + }, + { + "id": "arcade@291fa08", + "repo": "arcade", + "title": "Skip CG in SourceIndexStage1", + "url": "https://github.com/dotnet/arcade/pull/16619", + "commit": "dotnet@2615092", + "is_security": false, + "local_repo_commit": "arcade@291fa08" + }, + { + "id": "aspnetcore@bb01877", + "repo": "aspnetcore", + "title": "Add test helper and test cases to validate EventSource IDs", + "url": "https://github.com/dotnet/aspnetcore/pull/65408", + "commit": "dotnet@36ea4de", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@bb01877", + "labels": [ + "area-networking" + ] + }, + { + "id": "aspnetcore@3a973a5", + "repo": "aspnetcore", + "title": "Fix memory leaks in CertificateManager by improving certificate disposal patterns", + "url": "https://github.com/dotnet/aspnetcore/pull/63321", + "commit": "dotnet@36ea4de", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@3a973a5", + "labels": [ + "area-commandlinetools", + "pending-ci-rerun", + "Attention: Shared Code Modified" + ] + }, + { + "id": "aspnetcore@18b430f", + "repo": "aspnetcore", + "title": "Update dependencies from build 301564", + "url": "https://github.com/dotnet/aspnetcore/pull/65414", + "commit": "dotnet@36ea4de", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@18b430f", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@e626393", + "repo": "aspnetcore", + "title": "[release/10.0] AppContext for HttpSys CBT hardening", + "url": "https://github.com/dotnet/aspnetcore/pull/65387", + "commit": "dotnet@36ea4de", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@e626393", + "labels": [ + "area-networking" + ] + }, + { + "id": "aspnetcore@e356396", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/backport-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65422", + "commit": "dotnet@36ea4de", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@e356396", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@423a70f", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/inter-branch-merge-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65423", + "commit": "dotnet@36ea4de", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@423a70f", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@6bf45a7", + "repo": "aspnetcore", + "title": "fix SignalR http2 SkipNegotiation error", + "url": "https://github.com/dotnet/aspnetcore/pull/62940", + "commit": "dotnet@36ea4de", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@6bf45a7", + "labels": [ + "area-signalr", + "community-contribution", + "pending-ci-rerun" + ] + }, + { + "id": "aspnetcore@9ea8e2c", + "repo": "aspnetcore", + "title": "Update dependencies from build 301803", + "url": "https://github.com/dotnet/aspnetcore/pull/65428", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@9ea8e2c", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@105e935", + "repo": "aspnetcore", + "title": "Unquarantine HealthCheckPublisherHostedServiceTest.RunAsync_WaitsForCompletion_Single_RegistrationParameters", + "url": "https://github.com/dotnet/aspnetcore/pull/65404", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@105e935", + "labels": [ + "area-healthchecks", + "test-fixed" + ] + }, + { + "id": "aspnetcore@cb0202b", + "repo": "aspnetcore", + "title": "Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimization build 20260213.1", + "url": "https://github.com/dotnet/aspnetcore/pull/65441", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@cb0202b", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@f90e099", + "repo": "aspnetcore", + "title": "[main] (deps): Bump src/submodules/googletest", + "url": "https://github.com/dotnet/aspnetcore/pull/65421", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@f90e099", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@2027040", + "repo": "aspnetcore", + "title": "Add E2E tests for webworker template", + "url": "https://github.com/dotnet/aspnetcore/pull/65405", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@2027040", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@9bf9db6", + "repo": "aspnetcore", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/aspnetcore/pull/65431", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@9bf9db6", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@45f8aea", + "repo": "aspnetcore", + "title": "Make report-green.yml run on agentless server job", + "url": "https://github.com/dotnet/aspnetcore/pull/65444", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@45f8aea", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@16198d1", + "repo": "aspnetcore", + "title": "Update browser testing dependencies: Selenium 4.40.0, Playwright 1.57.0", + "url": "https://github.com/dotnet/aspnetcore/pull/65304", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@16198d1", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@7426595", + "repo": "aspnetcore", + "title": "Update dependencies from https://github.com/dotnet/extensions build 20260210.2", + "url": "https://github.com/dotnet/aspnetcore/pull/65437", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@7426595", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@06efb5f", + "repo": "aspnetcore", + "title": "Update dependencies from build 302061", + "url": "https://github.com/dotnet/aspnetcore/pull/65448", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@06efb5f", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@af25746", + "repo": "aspnetcore", + "title": "dont throw on having x-content-length", + "url": "https://github.com/dotnet/aspnetcore/pull/65445", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@af25746", + "labels": [ + "area-networking" + ] + }, + { + "id": "aspnetcore@637a267", + "repo": "aspnetcore", + "title": "Fix race in RST_STREAM_IncompleteRequest tests", + "url": "https://github.com/dotnet/aspnetcore/pull/65454", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@637a267", + "labels": [ + "area-networking" + ] + }, + { + "id": "aspnetcore@df6c8e9", + "repo": "aspnetcore", + "title": "Skip indexer properties in validation source generator", + "url": "https://github.com/dotnet/aspnetcore/pull/65432", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@df6c8e9", + "labels": [ + "area-minimal", + "feature-validation" + ] + }, + { + "id": "aspnetcore@5967f89", + "repo": "aspnetcore", + "title": "Fix Http3 connection close metric sometimes remaining Unset", + "url": "https://github.com/dotnet/aspnetcore/pull/65398", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@5967f89", + "labels": [ + "feature-kestrel", + "area-networking" + ] + }, + { + "id": "aspnetcore@74725c1", + "repo": "aspnetcore", + "title": "Port CI analysis Copilot skill and default it to aspnetcore", + "url": "https://github.com/dotnet/aspnetcore/pull/65464", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@74725c1", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@6e3747e", + "repo": "aspnetcore", + "title": "Update dependencies from build 302104", + "url": "https://github.com/dotnet/aspnetcore/pull/65455", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@6e3747e", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@97c3db9", + "repo": "aspnetcore", + "title": "Fix flaky Http2 test by using consistent ConnectionEndReason for closed streams", + "url": "https://github.com/dotnet/aspnetcore/pull/65456", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@97c3db9", + "labels": [ + "area-networking" + ] + }, + { + "id": "aspnetcore@5ad0444", + "repo": "aspnetcore", + "title": "feat: adds support for OpenAPI 3.2.0", + "url": "https://github.com/dotnet/aspnetcore/pull/65415", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@5ad0444", + "labels": [ + "community-contribution", + "feature-openapi", + "area-minimal" + ] + }, + { + "id": "aspnetcore@13dcbb4", + "repo": "aspnetcore", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/aspnetcore/pull/65467", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@13dcbb4", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@c0c593c", + "repo": "aspnetcore", + "title": "Update dependencies from build 302589", + "url": "https://github.com/dotnet/aspnetcore/pull/65480", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@c0c593c", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@ae50886", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/inter-branch-merge-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65486", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@ae50886", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@e742462", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/backport-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65487", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@e742462", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@53bb265", + "repo": "aspnetcore", + "title": "infra(main): proper branch name for mirroring within azdo", + "url": "https://github.com/dotnet/aspnetcore/pull/65472", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@53bb265", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@01bf0df", + "repo": "aspnetcore", + "title": "Fix Copilot not working in forks", + "url": "https://github.com/dotnet/aspnetcore/pull/65492", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@01bf0df", + "labels": [ + "area-infrastructure", + "community-contribution" + ] + }, + { + "id": "aspnetcore@8cf6a95", + "repo": "aspnetcore", + "title": "[main] (deps): Bump src/submodules/googletest", + "url": "https://github.com/dotnet/aspnetcore/pull/65485", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@8cf6a95", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@162a1f7", + "repo": "aspnetcore", + "title": "Update dependencies from build 302768", + "url": "https://github.com/dotnet/aspnetcore/pull/65496", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@162a1f7", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@7a2262d", + "repo": "aspnetcore", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/aspnetcore/pull/65500", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@7a2262d", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@93830e4", + "repo": "aspnetcore", + "title": "Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimization build 20260217.2", + "url": "https://github.com/dotnet/aspnetcore/pull/65507", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@93830e4", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@db50e77", + "repo": "aspnetcore", + "title": "upgrade cswin32 \u002B fix build", + "url": "https://github.com/dotnet/aspnetcore/pull/65516", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@db50e77", + "labels": [ + "area-networking" + ] + }, + { + "id": "aspnetcore@2cf27e2", + "repo": "aspnetcore", + "title": "Support zstd Content-Encoding", + "url": "https://github.com/dotnet/aspnetcore/pull/65479", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@2cf27e2", + "labels": [ + "community-contribution", + "area-middleware" + ] + }, + { + "id": "aspnetcore@072d32a", + "repo": "aspnetcore", + "title": "Fixing JsonPatchDocument bug", + "url": "https://github.com/dotnet/aspnetcore/pull/65470", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@072d32a", + "labels": [ + "feature-json-patch", + "community-contribution", + "area-minimal" + ] + }, + { + "id": "aspnetcore@eec80e1", + "repo": "aspnetcore", + "title": "Update dependencies from build 303072", + "url": "https://github.com/dotnet/aspnetcore/pull/65520", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@eec80e1", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@c2ea7d8", + "repo": "aspnetcore", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/aspnetcore/pull/65534", + "commit": "dotnet@d9499bf", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@c2ea7d8", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@eb9e4b5", + "repo": "aspnetcore", + "title": "Add FrameworkReference to Microsoft.Aspnetcore.App for non-SharedFx projects with SharedFx-only references", + "url": "https://github.com/dotnet/aspnetcore/pull/65478", + "commit": "dotnet@d9499bf", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@eb9e4b5", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@8dc0b08", + "repo": "aspnetcore", + "title": "Update milestones for p3", + "url": "https://github.com/dotnet/aspnetcore/pull/65548", + "commit": "dotnet@d9499bf", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@8dc0b08", + "labels": [ + "needs-area-label" + ] + }, + { + "id": "aspnetcore@eec60ba", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/backport-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65552", + "commit": "dotnet@9efe2b7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@eec60ba", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@0f4a109", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/inter-branch-merge-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65553", + "commit": "dotnet@9efe2b7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@0f4a109", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@7350993", + "repo": "aspnetcore", + "title": "[main] (deps): Bump actions/upload-artifact from 6.0.0 to 7.0.0", + "url": "https://github.com/dotnet/aspnetcore/pull/65554", + "commit": "dotnet@9efe2b7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@7350993", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@83c5b49", + "repo": "aspnetcore", + "title": "Fix transitive framework references in sample projects", + "url": "https://github.com/dotnet/aspnetcore/pull/65560", + "commit": "dotnet@9efe2b7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@83c5b49", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@680a049", + "repo": "aspnetcore", + "title": "Fix SignalR StackExchangeRedis tests", + "url": "https://github.com/dotnet/aspnetcore/pull/65564", + "commit": "dotnet@9efe2b7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@680a049", + "labels": [ + "area-signalr" + ] + }, + { + "id": "aspnetcore@01129f7", + "repo": "aspnetcore", + "title": "Fix WebTransport test hang by draining all settings before CONNECT request", + "url": "https://github.com/dotnet/aspnetcore/pull/65562", + "commit": "dotnet@9efe2b7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@01129f7", + "labels": [ + "area-networking" + ] + }, + { + "id": "aspnetcore@888d231", + "repo": "aspnetcore", + "title": "Fix extraneous lines in webapi .http file using source modifiers", + "url": "https://github.com/dotnet/aspnetcore/pull/65318", + "commit": "dotnet@93f3a33", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@888d231", + "labels": [ + "area-mvc", + "pending-ci-rerun" + ] + }, + { + "id": "aspnetcore@9dbfe9d", + "repo": "aspnetcore", + "title": "Fix IJSObjectReference leak in ResourceCollectionProvider", + "url": "https://github.com/dotnet/aspnetcore/pull/65606", + "commit": "dotnet@93f3a33", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@9dbfe9d", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@5f2a8c6", + "repo": "aspnetcore", + "title": "Disable scheduled workflows in forks", + "url": "https://github.com/dotnet/aspnetcore/pull/65588", + "commit": "dotnet@93f3a33", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@5f2a8c6", + "labels": [ + "area-infrastructure", + "community-contribution" + ] + }, + { + "id": "aspnetcore@9f6184c", + "repo": "aspnetcore", + "title": "Update dependencies from build 303682", + "url": "https://github.com/dotnet/aspnetcore/pull/65563", + "commit": "dotnet@db38f08", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@9f6184c", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@07f13c1", + "repo": "aspnetcore", + "title": "Update dependencies from build 304069", + "url": "https://github.com/dotnet/aspnetcore/pull/65622", + "commit": "dotnet@db38f08", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@07f13c1", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@9857de8", + "repo": "aspnetcore", + "title": "Fix \u0060Failed to load resource: net::ERR_CONNECTION_RESET\u0060.", + "url": "https://github.com/dotnet/aspnetcore/pull/65625", + "commit": "dotnet@db38f08", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@9857de8", + "labels": [ + "area-perf" + ] + }, + { + "id": "aspnetcore@2fbb3f3", + "repo": "aspnetcore", + "title": "Fix Wasm.Performance benchmark Kestrel.Core FileNotFoundException", + "url": "https://github.com/dotnet/aspnetcore/pull/65631", + "commit": "dotnet@db38f08", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@2fbb3f3", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@69f3533", + "repo": "aspnetcore", + "title": "Update milestones for April", + "url": "https://github.com/dotnet/aspnetcore/pull/65641", + "commit": "dotnet@db38f08", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@69f3533", + "labels": [ + "needs-area-label" + ] + }, + { + "id": "aspnetcore@4e6e8eb", + "repo": "aspnetcore", + "title": "Update dependencies from https://github.com/dotnet/extensions build 20260227.4", + "url": "https://github.com/dotnet/aspnetcore/pull/65601", + "commit": "dotnet@205078e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@4e6e8eb", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@51f852f", + "repo": "aspnetcore", + "title": "Update dependencies from build 304338", + "url": "https://github.com/dotnet/aspnetcore/pull/65644", + "commit": "dotnet@205078e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@51f852f", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@0fcd46b", + "repo": "aspnetcore", + "title": "Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimization build 20260226.1", + "url": "https://github.com/dotnet/aspnetcore/pull/65603", + "commit": "dotnet@205078e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@0fcd46b", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@d17d872", + "repo": "aspnetcore", + "title": "Add openbsd RID", + "url": "https://github.com/dotnet/aspnetcore/pull/65628", + "commit": "dotnet@205078e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@d17d872", + "labels": [ + "area-infrastructure", + "community-contribution" + ] + }, + { + "id": "aspnetcore@5c76285", + "repo": "aspnetcore", + "title": "Use Wix5 in SharedFx/Targeting Pack .msi\u0027s", + "url": "https://github.com/dotnet/aspnetcore/pull/65637", + "commit": "dotnet@205078e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@5c76285", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@552c986", + "repo": "aspnetcore", + "title": "Fix oversized record length handling in TlsListener", + "url": "https://github.com/dotnet/aspnetcore/pull/65558", + "commit": "dotnet@205078e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@552c986", + "labels": [ + "feature-kestrel", + "area-networking" + ] + }, + { + "id": "aspnetcore@4e3592e", + "repo": "aspnetcore", + "title": "Revert media type change for Newtonsoft JsonPatch package", + "url": "https://github.com/dotnet/aspnetcore/pull/65559", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@4e3592e", + "labels": [ + "feature-json-patch", + "area-minimal" + ] + }, + { + "id": "aspnetcore@ab5185d", + "repo": "aspnetcore", + "title": "Update CONTRIBUTING.md", + "url": "https://github.com/dotnet/aspnetcore/pull/65616", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@ab5185d", + "labels": [ + "area-infrastructure", + "community-contribution" + ] + }, + { + "id": "aspnetcore@6dd7f70", + "repo": "aspnetcore", + "title": "Update dependencies from build 304425", + "url": "https://github.com/dotnet/aspnetcore/pull/65657", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@6dd7f70", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@5df2824", + "repo": "aspnetcore", + "title": "Remove unnecessary cache freshness check", + "url": "https://github.com/dotnet/aspnetcore/pull/65659", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@5df2824", + "labels": [ + "area-middleware" + ] + }, + { + "id": "aspnetcore@e3bebf7", + "repo": "aspnetcore", + "title": "Fix intermittent circular dependency build failure", + "url": "https://github.com/dotnet/aspnetcore/pull/65667", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@e3bebf7", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@708d724", + "repo": "aspnetcore", + "title": "Suppress MSB3026 warnings", + "url": "https://github.com/dotnet/aspnetcore/pull/65671", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@708d724", + "labels": [ + "needs-area-label" + ] + }, + { + "id": "aspnetcore@0b12e6f", + "repo": "aspnetcore", + "title": "Restore trimming test projects serially", + "url": "https://github.com/dotnet/aspnetcore/pull/65668", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@0b12e6f", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@1c8ced0", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/backport-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65683", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@1c8ced0", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@7390100", + "repo": "aspnetcore", + "title": "[main] (deps): Bump actions/setup-node from 6.2.0 to 6.3.0", + "url": "https://github.com/dotnet/aspnetcore/pull/65685", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@7390100", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@07cd5f8", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/inter-branch-merge-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65684", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@07cd5f8", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@865dc41", + "repo": "aspnetcore", + "title": "[main] (deps): Bump src/submodules/googletest", + "url": "https://github.com/dotnet/aspnetcore/pull/65682", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@865dc41", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@ea6182a", + "repo": "aspnetcore", + "title": "Update browser testing dependencies: Selenium 4.41.0, Playwright 1.58.0", + "url": "https://github.com/dotnet/aspnetcore/pull/65679", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@ea6182a", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@42a65bf", + "repo": "aspnetcore", + "title": "Fix HelixTestRunner using the wrong version of dotnet-ef", + "url": "https://github.com/dotnet/aspnetcore/pull/65676", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@42a65bf", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@2b1cb0a", + "repo": "aspnetcore", + "title": "Fix double-publish ILLink error in BasicTestApp", + "url": "https://github.com/dotnet/aspnetcore/pull/65675", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@2b1cb0a", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@4ca3d71", + "repo": "aspnetcore", + "title": "[Blazor] Fix cache headers for Blazor resource collection endpoint", + "url": "https://github.com/dotnet/aspnetcore/pull/65513", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@4ca3d71", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@086f563", + "repo": "aspnetcore", + "title": "Port PR 65532: fix Blazor template EF migration baseline", + "url": "https://github.com/dotnet/aspnetcore/pull/65692", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@086f563", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@3d53504", + "repo": "aspnetcore", + "title": "Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimization build 20260303.1", + "url": "https://github.com/dotnet/aspnetcore/pull/65708", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@3d53504", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@cb2bd84", + "repo": "aspnetcore", + "title": "Fix race in RST_STREAM_IncompleteRequest_AdditionalResetFrame test", + "url": "https://github.com/dotnet/aspnetcore/pull/65715", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@cb2bd84", + "labels": [ + "area-networking" + ] + }, + { + "id": "aspnetcore@e55796c", + "repo": "aspnetcore", + "title": "Fix TempData lazy loading bugs", + "url": "https://github.com/dotnet/aspnetcore/pull/65722", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@e55796c", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@c2daa92", + "repo": "aspnetcore", + "title": "Merged PR 57695: Fix cancellation with StatefulReconnect", + "url": "https://github.com/dotnet/aspnetcore/pull/65732", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@c2daa92", + "labels": [ + "area-signalr" + ] + }, + { + "id": "aspnetcore@1fd3d6a", + "repo": "aspnetcore", + "title": "Don\u0027t wait for control stream before processing requests", + "url": "https://github.com/dotnet/aspnetcore/pull/65399", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@1fd3d6a", + "labels": [ + "feature-kestrel", + "area-networking" + ] + }, + { + "id": "aspnetcore@2a414e9", + "repo": "aspnetcore", + "title": "Fix null reference error in Virtualize component", + "url": "https://github.com/dotnet/aspnetcore/pull/65207", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@2a414e9", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@8842e08", + "repo": "aspnetcore", + "title": "fix http/2 header payload padding parsing", + "url": "https://github.com/dotnet/aspnetcore/pull/65729", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@8842e08", + "labels": [ + "feature-kestrel", + "area-networking" + ] + }, + { + "id": "aspnetcore@ae31b22", + "repo": "aspnetcore", + "title": "Bump serialize-javascript and @rollup/plugin-terser", + "url": "https://github.com/dotnet/aspnetcore/pull/65757", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@ae31b22", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "javascript", + "dependencies", + "build-ops" + ] + }, + { + "id": "aspnetcore@0efd832", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/backport-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65769", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@0efd832", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@8338afb", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/inter-branch-merge-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65770", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@8338afb", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@c892018", + "repo": "aspnetcore", + "title": "fix: Q/HPackDecoder limit validation after decoding", + "url": "https://github.com/dotnet/aspnetcore/pull/65771", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@c892018", + "labels": [ + "area-networking" + ] + }, + { + "id": "aspnetcore@810928e", + "repo": "aspnetcore", + "title": "Issue triage agent via agentic-workflow", + "url": "https://github.com/dotnet/aspnetcore/pull/65540", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@810928e", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@f8410f8", + "repo": "aspnetcore", + "title": "[main] (deps): Bump src/submodules/googletest", + "url": "https://github.com/dotnet/aspnetcore/pull/65768", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@f8410f8", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@773e0c2", + "repo": "aspnetcore", + "title": "Fix typo in ResponseDrainingTests comment", + "url": "https://github.com/dotnet/aspnetcore/pull/65218", + "commit": "dotnet@1fe064f", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@773e0c2", + "labels": [ + "community-contribution", + "pending-ci-rerun", + "area-networking" + ] + }, + { + "id": "aspnetcore@a200b84", + "repo": "aspnetcore", + "title": "Migrate IIS in-process handler from DEFAULT_STACK_SIZE to System.Threading.DefaultStackSize", + "url": "https://github.com/dotnet/aspnetcore/pull/65737", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@a200b84", + "labels": [ + "feature-iis", + "area-networking" + ] + }, + { + "id": "aspnetcore@d77c401", + "repo": "aspnetcore", + "title": "Fix Virtualize scroll container detection with horizontal overflow", + "url": "https://github.com/dotnet/aspnetcore/pull/65744", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@d77c401", + "labels": [ + "area-blazor", + "feature-blazor-virtualization" + ] + }, + { + "id": "aspnetcore@245440c", + "repo": "aspnetcore", + "title": "fix HTTP/2: Content-Length mismatch with trailers split across CONTINUATION frames", + "url": "https://github.com/dotnet/aspnetcore/pull/65765", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@245440c", + "labels": [ + "area-networking" + ] + }, + { + "id": "aspnetcore@dedf040", + "repo": "aspnetcore", + "title": "Unquarantine \u0060RoutePatternCompletionProviderTests\u0060", + "url": "https://github.com/dotnet/aspnetcore/pull/65782", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@dedf040", + "labels": [ + "area-routing" + ] + }, + { + "id": "aspnetcore@ff3ea50", + "repo": "aspnetcore", + "title": "update roles:all", + "url": "https://github.com/dotnet/aspnetcore/pull/65780", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@ff3ea50", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@5bc9780", + "repo": "aspnetcore", + "title": "Use SetUnixFileMode for chmod in functional test", + "url": "https://github.com/dotnet/aspnetcore/pull/65790", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@5bc9780", + "labels": [ + "community-contribution", + "area-networking" + ] + }, + { + "id": "aspnetcore@7c53dac", + "repo": "aspnetcore", + "title": "Move PackageReference Update to .targets.in (imported after project)", + "url": "https://github.com/dotnet/aspnetcore/pull/65784", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@7c53dac", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@0fba831", + "repo": "aspnetcore", + "title": "Update create-pull-request action version", + "url": "https://github.com/dotnet/aspnetcore/pull/65795", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@0fba831", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@ab2e33a", + "repo": "aspnetcore", + "title": "Fix race condition in ProcessBufferedRenderBatches_WritesRenders", + "url": "https://github.com/dotnet/aspnetcore/pull/65783", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@ab2e33a", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@0807dd9", + "repo": "aspnetcore", + "title": "Update CODEOWNERS for directory ownership changes", + "url": "https://github.com/dotnet/aspnetcore/pull/65748", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@0807dd9", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@8288f56", + "repo": "aspnetcore", + "title": "Fix .devcontainer references to archived repo", + "url": "https://github.com/dotnet/aspnetcore/pull/65806", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@8288f56", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@5b89273", + "repo": "aspnetcore", + "title": "Fix 10.0 milestone for special patch", + "url": "https://github.com/dotnet/aspnetcore/pull/65818", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@5b89273", + "labels": [ + "needs-area-label" + ] + }, + { + "id": "aspnetcore@f7c186e", + "repo": "aspnetcore", + "title": "Remove transitive AspNetCore.App framework reference in trimming tests", + "url": "https://github.com/dotnet/aspnetcore/pull/65793", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@f7c186e", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@81dc76b", + "repo": "aspnetcore", + "title": "Switch default for useHostedUbuntu to false and use dnceng pool", + "url": "https://github.com/dotnet/aspnetcore/pull/64842", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@81dc76b", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@50fe923", + "repo": "aspnetcore", + "title": "fix: issue-triage agent to not post noop-issue", + "url": "https://github.com/dotnet/aspnetcore/pull/65826", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@50fe923", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@cad82f1", + "repo": "aspnetcore", + "title": "Update npm dependencies", + "url": "https://github.com/dotnet/aspnetcore/pull/65830", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@cad82f1", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@659206f", + "repo": "aspnetcore", + "title": "Add agentic workflow for quarantining/unquarantining tests", + "url": "https://github.com/dotnet/aspnetcore/pull/65716", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@659206f", + "labels": [ + "needs-area-label" + ] + }, + { + "id": "aspnetcore@65ae876", + "repo": "aspnetcore", + "title": "Fixup for quarantine workflow", + "url": "https://github.com/dotnet/aspnetcore/pull/65834", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@65ae876", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@27a9115", + "repo": "aspnetcore", + "title": "Update to latest ci-analysis skill", + "url": "https://github.com/dotnet/aspnetcore/pull/65835", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@27a9115", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@9657193", + "repo": "aspnetcore", + "title": "Allow more domains \u0026 more files for ci-analysis", + "url": "https://github.com/dotnet/aspnetcore/pull/65850", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@9657193", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@b571f34", + "repo": "aspnetcore", + "title": "Improve test harness crash detection in CI status script", + "url": "https://github.com/dotnet/aspnetcore/pull/65822", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@b571f34", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@d984f78", + "repo": "aspnetcore", + "title": "Fix Ubuntu build image", + "url": "https://github.com/dotnet/aspnetcore/pull/65867", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@d984f78", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@d601f7c", + "repo": "aspnetcore", + "title": "Test quarantine workflow follow-ups, again", + "url": "https://github.com/dotnet/aspnetcore/pull/65866", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@d601f7c", + "labels": [ + "needs-area-label" + ] + }, + { + "id": "aspnetcore@7c63bad", + "repo": "aspnetcore", + "title": "Unquarantine Http2ConnectionTests.OutputFlowControl_ConnectionAndRequestAborted_NoException", + "url": "https://github.com/dotnet/aspnetcore/pull/65862", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@7c63bad", + "labels": [ + "test-failure", + "area-networking" + ] + }, + { + "id": "aspnetcore@0c878b3", + "repo": "aspnetcore", + "title": "Unquarantine HeartbeatTests.HeartbeatLoopRunsWithSpecifiedInterval", + "url": "https://github.com/dotnet/aspnetcore/pull/65865", + "commit": "dotnet@f494a49", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@0c878b3", + "labels": [ + "test-failure", + "area-networking" + ] + }, + { + "id": "aspnetcore@37375a8", + "repo": "aspnetcore", + "title": "Unquarantine OutputCacheMiddlewareTests.Locking_ExecuteAllRequestsWhenDisabled", + "url": "https://github.com/dotnet/aspnetcore/pull/65863", + "commit": "dotnet@f494a49", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@37375a8", + "labels": [ + "test-failure", + "area-middleware" + ] + }, + { + "id": "aspnetcore@7b5aa5e", + "repo": "aspnetcore", + "title": "Quarantine Http2TimeoutTests.HEADERS_ReceivedWithoutAllCONTINUATIONs_WithinRequestHeadersTimeout_AbortsConnection", + "url": "https://github.com/dotnet/aspnetcore/pull/65858", + "commit": "dotnet@f494a49", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@7b5aa5e", + "labels": [ + "test-failure", + "area-networking" + ] + }, + { + "id": "aspnetcore@0289caa", + "repo": "aspnetcore", + "title": "Quarantine TestServerTests.LongPollingWorks", + "url": "https://github.com/dotnet/aspnetcore/pull/65859", + "commit": "dotnet@f494a49", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@0289caa", + "labels": [ + "test-failure", + "area-signalr" + ] + }, + { + "id": "aspnetcore@d4edb13", + "repo": "aspnetcore", + "title": "Unquarantine LoggingConnectionMiddlewareTests.LoggingConnectionMiddlewareCanBeAddedBeforeAndAfterHttps", + "url": "https://github.com/dotnet/aspnetcore/pull/65861", + "commit": "dotnet@f494a49", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@d4edb13", + "labels": [ + "test-failure", + "area-networking" + ] + }, + { + "id": "aspnetcore@01549b2", + "repo": "aspnetcore", + "title": "Quarantine VirtualizationTest E2E tests", + "url": "https://github.com/dotnet/aspnetcore/pull/65857", + "commit": "dotnet@f494a49", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@01549b2", + "labels": [ + "test-failure", + "area-blazor" + ] + }, + { + "id": "aspnetcore@706ce53", + "repo": "aspnetcore", + "title": "Quarantine Kestrel TLS tests failing with OpenSSL error code 77", + "url": "https://github.com/dotnet/aspnetcore/pull/65856", + "commit": "dotnet@f494a49", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@706ce53", + "labels": [ + "test-failure", + "area-networking" + ] + }, + { + "id": "aspnetcore@1855c53", + "repo": "aspnetcore", + "title": "Unquarantine Razor runtime compilation tests (issue #56553)", + "url": "https://github.com/dotnet/aspnetcore/pull/65864", + "commit": "dotnet@f494a49", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@1855c53", + "labels": [ + "test-failure", + "area-mvc" + ] + }, + { + "id": "aspnetcore@d375204", + "repo": "aspnetcore", + "title": "[wasm][coreCLR] do not use mono internals", + "url": "https://github.com/dotnet/aspnetcore/pull/65029", + "commit": "dotnet@f494a49", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@d375204", + "labels": [ + "area-blazor", + "arch-wasm" + ] + }, + { + "id": "aspnetcore@ca7652f", + "repo": "aspnetcore", + "title": "Update ReasonPhrase validation", + "url": "https://github.com/dotnet/aspnetcore/pull/65797", + "commit": "dotnet@f494a49", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@ca7652f", + "labels": [ + "area-networking" + ] + }, + { + "id": "aspnetcore@83662b1", + "repo": "aspnetcore", + "title": "[main] (deps): Bump github/gh-aw-actions", + "url": "https://github.com/dotnet/aspnetcore/pull/65882", + "commit": "dotnet@95a45c6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@83662b1", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@abda9bd", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/backport-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65883", + "commit": "dotnet@95a45c6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@abda9bd", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@606caee", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/inter-branch-merge-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65884", + "commit": "dotnet@95a45c6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@606caee", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@e9e6afa", + "repo": "aspnetcore", + "title": "Quarantine RazorRuntimeCompilationHostingStartupTest tests (issue #56553)", + "url": "https://github.com/dotnet/aspnetcore/pull/65881", + "commit": "dotnet@95a45c6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@e9e6afa", + "labels": [ + "test-failure", + "area-mvc" + ] + }, + { + "id": "aspnetcore@faf0ea0", + "repo": "aspnetcore", + "title": "Virtualization supports variable-height items", + "url": "https://github.com/dotnet/aspnetcore/pull/64964", + "commit": "dotnet@95a45c6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@faf0ea0", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@3dafd5c", + "repo": "aspnetcore", + "title": "[blazor] eslint", + "url": "https://github.com/dotnet/aspnetcore/pull/65896", + "commit": "dotnet@491bbab", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@3dafd5c", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@8bba19e", + "repo": "aspnetcore", + "title": "[blazor][wasm] Convert more interop to JSImport", + "url": "https://github.com/dotnet/aspnetcore/pull/65895", + "commit": "dotnet@d2f30e6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@8bba19e", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@41822ee", + "repo": "aspnetcore", + "title": "[blazor][wasm] JSExport for events", + "url": "https://github.com/dotnet/aspnetcore/pull/65897", + "commit": "dotnet@d2f30e6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@41822ee", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@472d942", + "repo": "aspnetcore", + "title": "Quarantine TestServerTests.WebSocketsWorks", + "url": "https://github.com/dotnet/aspnetcore/pull/65916", + "commit": "dotnet@d2f30e6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@472d942", + "labels": [ + "test-failure", + "area-signalr" + ] + }, + { + "id": "aspnetcore@3741588", + "repo": "aspnetcore", + "title": "Fix ManagedAuthenticatedEncryptor calculations", + "url": "https://github.com/dotnet/aspnetcore/pull/65890", + "commit": "dotnet@d2f30e6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@3741588", + "labels": [ + "area-dataprotection" + ] + }, + { + "id": "aspnetcore@bf7d552", + "repo": "aspnetcore", + "title": "Quarantine Http2ConnectionTests.RequestHeaderStringReuse_MultipleStreams_KnownHeaderReused", + "url": "https://github.com/dotnet/aspnetcore/pull/65917", + "commit": "dotnet@d2f30e6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@bf7d552", + "labels": [ + "test-failure", + "area-networking" + ] + }, + { + "id": "aspnetcore@5b7bc39", + "repo": "aspnetcore", + "title": "Quarantine RazorBuildTest flaky tests (issue #56553)", + "url": "https://github.com/dotnet/aspnetcore/pull/65927", + "commit": "dotnet@d2f30e6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@5b7bc39", + "labels": [ + "test-failure", + "area-mvc" + ] + }, + { + "id": "aspnetcore@e0f509f", + "repo": "aspnetcore", + "title": "Unquarantine OpenApiDocumentConcurrentRequestTests.MapOpenApi_HandlesConcurrentRequests (issue #58128)", + "url": "https://github.com/dotnet/aspnetcore/pull/65924", + "commit": "dotnet@d2f30e6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@e0f509f", + "labels": [ + "test-failure", + "area-mvc" + ] + }, + { + "id": "aspnetcore@ece07c5", + "repo": "aspnetcore", + "title": "Unquarantine dotnet-openapi tests (issue #61225)", + "url": "https://github.com/dotnet/aspnetcore/pull/65919", + "commit": "dotnet@d2f30e6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@ece07c5", + "labels": [ + "test-failure", + "area-mvc" + ] + }, + { + "id": "aspnetcore@1d9cbfa", + "repo": "aspnetcore", + "title": "Unquarantine MapIdentityApiTests.CanResetSharedKey (issue #54840)", + "url": "https://github.com/dotnet/aspnetcore/pull/65923", + "commit": "dotnet@d2f30e6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@1d9cbfa", + "labels": [ + "test-failure", + "area-identity" + ] + }, + { + "id": "aspnetcore@a2abc03", + "repo": "aspnetcore", + "title": "Unquarantine W3CLoggerTests.WritesDateTime (issue #61614)", + "url": "https://github.com/dotnet/aspnetcore/pull/65922", + "commit": "dotnet@d2f30e6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@a2abc03", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@7ee3019", + "repo": "aspnetcore", + "title": "Unquarantine TargetTest (issue #50662)", + "url": "https://github.com/dotnet/aspnetcore/pull/65918", + "commit": "dotnet@d2f30e6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@7ee3019", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@cac95fb", + "repo": "aspnetcore", + "title": "Unquarantine CacheTagHelperTest.ProcessAsync_AwaitersUseTheResultOfExecutor (issue #57567)", + "url": "https://github.com/dotnet/aspnetcore/pull/65925", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@cac95fb", + "labels": [ + "test-failure", + "area-mvc" + ] + }, + { + "id": "aspnetcore@2fdaffc", + "repo": "aspnetcore", + "title": "Unquarantine OutputCaching.CachedResponseBodyTests.Copy_MultipleSegments (issue #60904)", + "url": "https://github.com/dotnet/aspnetcore/pull/65921", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@2fdaffc", + "labels": [ + "test-failure", + "area-middleware" + ] + }, + { + "id": "aspnetcore@d8491f4", + "repo": "aspnetcore", + "title": "Use full git history in test-quarantine workflow", + "url": "https://github.com/dotnet/aspnetcore/pull/65932", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@d8491f4", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@d14f00b", + "repo": "aspnetcore", + "title": "Fix WebWorker template failing in published Blazor WASM apps", + "url": "https://github.com/dotnet/aspnetcore/pull/65885", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@d14f00b", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@7e307f4", + "repo": "aspnetcore", + "title": "Unquarantine QuicConnectionContextTests.StreamPool_ManyConcurrentStreams_StreamPoolFull (issue #56517)", + "url": "https://github.com/dotnet/aspnetcore/pull/65948", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@7e307f4", + "labels": [ + "test-failure", + "area-networking" + ] + }, + { + "id": "aspnetcore@ff787d9", + "repo": "aspnetcore", + "title": "Unquarantine KestrelConfigurationLoaderTests.ConfigureEndpointDevelopmentCertificateGetsLoadedWhenPresent (issue #48736)", + "url": "https://github.com/dotnet/aspnetcore/pull/65949", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@ff787d9", + "labels": [ + "test-failure", + "area-networking" + ] + }, + { + "id": "aspnetcore@379c93b", + "repo": "aspnetcore", + "title": "Unquarantine StartupTests.CheckStdoutWithLargeWrites_TestSink (issue #52734)", + "url": "https://github.com/dotnet/aspnetcore/pull/65945", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@379c93b", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@4b53b87", + "repo": "aspnetcore", + "title": "Unquarantine HealthCheckPublisherHostedServiceTest.RunAsync_CanFilterHealthChecks (issue #56245)", + "url": "https://github.com/dotnet/aspnetcore/pull/65946", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@4b53b87", + "labels": [ + "test-failure", + "area-healthchecks" + ] + }, + { + "id": "aspnetcore@6aad0fa", + "repo": "aspnetcore", + "title": "Unquarantine NamedPipeConnectionTests.BidirectionalStream_ServerReadsDataAndCompletes_GracefullyClosed (issue #52462)", + "url": "https://github.com/dotnet/aspnetcore/pull/65942", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@6aad0fa", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@002e2fd", + "repo": "aspnetcore", + "title": "Virtualize: reduce JS-to-.NET surface and extract E2E test helpers", + "url": "https://github.com/dotnet/aspnetcore/pull/65913", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@002e2fd", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@7de8efd", + "repo": "aspnetcore", + "title": "Unquarantine MessagePumpTests.UseDefaultAddress_WhenNoServerAddressAndNoDirectConfiguration (issue #28993)", + "url": "https://github.com/dotnet/aspnetcore/pull/65941", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@7de8efd", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@5f25968", + "repo": "aspnetcore", + "title": "Unquarantine ResponseCaching.CachedResponseBodyTests.Copy_MultipleSegments (issue #61293)", + "url": "https://github.com/dotnet/aspnetcore/pull/65920", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@5f25968", + "labels": [ + "test-failure", + "area-middleware" + ] + }, + { + "id": "aspnetcore@cc983ac", + "repo": "aspnetcore", + "title": "Unquarantine ShutdownTests.ShutdownTimeoutIsApplied (issue #52676)", + "url": "https://github.com/dotnet/aspnetcore/pull/65943", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@cc983ac", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@70329cf", + "repo": "aspnetcore", + "title": "Unquarantine Http3RequestTests.POST_Expect100Continue_Get100Continue (issue #57373)", + "url": "https://github.com/dotnet/aspnetcore/pull/65950", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@70329cf", + "labels": [ + "test-failure", + "area-networking" + ] + }, + { + "id": "aspnetcore@5c96464", + "repo": "aspnetcore", + "title": "Unquarantine HtmlGenerationWithCultureTest.CacheTagHelper_VaryByCultureComposesWithOtherVaryByOptions (issue #56440)", + "url": "https://github.com/dotnet/aspnetcore/pull/65947", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@5c96464", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@a6285e2", + "repo": "aspnetcore", + "title": "Unquarantine StartupTests.WrongApplicationPath_FailedToRun (issue #52889)", + "url": "https://github.com/dotnet/aspnetcore/pull/65944", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@a6285e2", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@43bf870", + "repo": "aspnetcore", + "title": "Disable parallel restore for BuildPass2 projects", + "url": "https://github.com/dotnet/aspnetcore/pull/65954", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@43bf870", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@53559dd", + "repo": "aspnetcore", + "title": "Re-quarantine CacheTagHelperTest.ProcessAsync_AwaitersUseTheResultOfExecutor (issue #57567)", + "url": "https://github.com/dotnet/aspnetcore/pull/65963", + "commit": "dotnet@17aaf56", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@53559dd", + "labels": [ + "test-failure", + "needs-area-label", + "re-quarantine" + ] + }, + { + "id": "aspnetcore@9d746bd", + "repo": "aspnetcore", + "title": "Update milestones for May", + "url": "https://github.com/dotnet/aspnetcore/pull/65976", + "commit": "dotnet@17aaf56", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@9d746bd", + "labels": [ + "needs-area-label" + ] + }, + { + "id": "aspnetcore@e0d31d9", + "repo": "aspnetcore", + "title": "Fix test quarantine agent budgeting", + "url": "https://github.com/dotnet/aspnetcore/pull/65977", + "commit": "dotnet@17aaf56", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@e0d31d9", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@5d3e13d", + "repo": "aspnetcore", + "title": "Unquarantine dotnet-openapi URL tests (issue #61348)", + "url": "https://github.com/dotnet/aspnetcore/pull/65965", + "commit": "dotnet@17aaf56", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@5d3e13d", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@8feb203", + "repo": "aspnetcore", + "title": "Update PR build criteria for Quarantine workflow", + "url": "https://github.com/dotnet/aspnetcore/pull/65983", + "commit": "dotnet@17aaf56", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@8feb203", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@17fb030", + "repo": "aspnetcore", + "title": "Unquarantine QuicStreamContextTests.BidirectionalStream_MultipleStreamsOnConnection_ReusedFromPool (issue #59978)", + "url": "https://github.com/dotnet/aspnetcore/pull/65971", + "commit": "dotnet@17aaf56", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@17fb030", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@1e4711c", + "repo": "aspnetcore", + "title": "Unquarantine RemoteRendererTest.ProcessBufferedRenderBatches_WritesRenders (issue #61807)", + "url": "https://github.com/dotnet/aspnetcore/pull/65966", + "commit": "dotnet@17aaf56", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@1e4711c", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@cdea7e1", + "repo": "aspnetcore", + "title": "[test-quarantine] Quarantine ServerRoutingTest and ServerVirtualizationTest flaky tests", + "url": "https://github.com/dotnet/aspnetcore/pull/65964", + "commit": "dotnet@17aaf56", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@cdea7e1", + "labels": [ + "test-failure", + "area-blazor" + ] + }, + { + "id": "aspnetcore@20cea47", + "repo": "aspnetcore", + "title": "Unquarantine Kestrel ResponseTests.AppCanHandleClientAbortingConnectionMidResponse (issue #60110)", + "url": "https://github.com/dotnet/aspnetcore/pull/65969", + "commit": "dotnet@17aaf56", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@20cea47", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@ade5151", + "repo": "aspnetcore", + "title": "Unquarantine Kestrel ResponseTests.ConnectionClosedWhenResponseDoesNotSatisfyMinimumDataRate (issue #49974)", + "url": "https://github.com/dotnet/aspnetcore/pull/65970", + "commit": "dotnet@17aaf56", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@ade5151", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@655f41d", + "repo": "aspnetcore", + "title": "Unquarantine Http3RequestTests.POST_ClientCancellationBidirectional_RequestAbortRaised (issue #38008)", + "url": "https://github.com/dotnet/aspnetcore/pull/65972", + "commit": "dotnet@17aaf56", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@655f41d", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "command-line-api@a3bae7d", + "repo": "command-line-api", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/command-line-api/pull/2762", + "commit": "dotnet@7535708", + "is_security": false, + "local_repo_commit": "command-line-api@a3bae7d" + }, + { + "id": "command-line-api@0b720d0", + "repo": "command-line-api", + "title": "Include name of argument when an argument is missing", + "url": "https://github.com/dotnet/command-line-api/pull/2747", + "commit": "dotnet@6e01e62", + "is_security": false, + "local_repo_commit": "command-line-api@0b720d0" + }, + { + "id": "deployment-tools@e83794f", + "repo": "deployment-tools", + "title": "Update dependencies", + "url": "https://github.com/dotnet/deployment-tools/pull/531", + "commit": "dotnet@9d2430d", + "is_security": false, + "product": "dotnet-deployment-tools", + "local_repo_commit": "deployment-tools@e83794f" + }, + { + "id": "deployment-tools@71f5b36", + "repo": "deployment-tools", + "title": "Run the issue-labeler over pull requests using polling", + "url": "https://github.com/dotnet/deployment-tools/pull/534", + "commit": "dotnet@9d2430d", + "is_security": false, + "product": "dotnet-deployment-tools", + "local_repo_commit": "deployment-tools@71f5b36" + }, + { + "id": "deployment-tools@24caf42", + "repo": "deployment-tools", + "title": "Update dependencies from build 306701", + "url": "https://github.com/dotnet/deployment-tools/pull/536", + "commit": "dotnet@9d2430d", + "is_security": false, + "product": "dotnet-deployment-tools", + "local_repo_commit": "deployment-tools@24caf42" + }, + { + "id": "deployment-tools@bdad519", + "repo": "deployment-tools", + "title": "Update dependencies from build 307118", + "url": "https://github.com/dotnet/deployment-tools/pull/537", + "commit": "dotnet@9d2430d", + "is_security": false, + "product": "dotnet-deployment-tools", + "local_repo_commit": "deployment-tools@bdad519" + }, + { + "id": "deployment-tools@73e2836", + "repo": "deployment-tools", + "title": "React to SDLValdiationParameters removal", + "url": "https://github.com/dotnet/deployment-tools/pull/539", + "commit": "dotnet@9d2430d", + "is_security": false, + "product": "dotnet-deployment-tools", + "local_repo_commit": "deployment-tools@73e2836" + }, + { + "id": "efcore@88ad5f0", + "repo": "efcore", + "title": "Update branding to 8.0.25", + "url": "https://github.com/dotnet/efcore/pull/37613", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@88ad5f0" + }, + { + "id": "efcore@fe8711d", + "repo": "efcore", + "title": "Merging internal commits for release/8.0", + "url": "https://github.com/dotnet/efcore/pull/37667", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@fe8711d" + }, + { + "id": "efcore@ce4c061", + "repo": "efcore", + "title": "Merging internal commits for release/9.0", + "url": "https://github.com/dotnet/efcore/pull/37666", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@ce4c061" + }, + { + "id": "efcore@2171920", + "repo": "efcore", + "title": "[automated] Merge branch \u0027release/8.0\u0027 =\u003E \u0027release/9.0\u0027", + "url": "https://github.com/dotnet/efcore/pull/37669", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@2171920" + }, + { + "id": "efcore@05a2ee4", + "repo": "efcore", + "title": "[release/10.0] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/efcore/pull/37692", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@05a2ee4" + }, + { + "id": "efcore@c214374", + "repo": "efcore", + "title": "[release/10.0] Fix struct complex property nullability when reading EF Core 8.x/9.x model snapshots", + "url": "https://github.com/dotnet/efcore/pull/37690", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@c214374", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "efcore@c413a34", + "repo": "efcore", + "title": "[release/10.0] Fix NullReferenceException in dbcontext optimize with cross-version compatibility", + "url": "https://github.com/dotnet/efcore/pull/37547", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@c413a34", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "efcore@f2d8cf2", + "repo": "efcore", + "title": "Update dependencies from build 301818", + "url": "https://github.com/dotnet/efcore/pull/37704", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@f2d8cf2" + }, + { + "id": "efcore@272a411", + "repo": "efcore", + "title": "Update dependencies from build 301859", + "url": "https://github.com/dotnet/efcore/pull/37705", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@272a411" + }, + { + "id": "efcore@b215568", + "repo": "efcore", + "title": "Update dependencies from build 301880", + "url": "https://github.com/dotnet/efcore/pull/37709", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@b215568" + }, + { + "id": "efcore@f0533e3", + "repo": "efcore", + "title": "Update dependencies from build 301892", + "url": "https://github.com/dotnet/efcore/pull/37712", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@f0533e3" + }, + { + "id": "efcore@fa02541", + "repo": "efcore", + "title": "Update dependencies from build 301911", + "url": "https://github.com/dotnet/efcore/pull/37713", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@fa02541" + }, + { + "id": "efcore@13b022a", + "repo": "efcore", + "title": "Update dependencies from https://github.com/dotnet/arcade build 20260210.2", + "url": "https://github.com/dotnet/efcore/pull/37718", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@13b022a", + "labels": [ + "area-infrastructure", + "type-dependency update :arrow_up_small:" + ] + }, + { + "id": "efcore@0d5f479", + "repo": "efcore", + "title": "Update dependencies from build 301945", + "url": "https://github.com/dotnet/efcore/pull/37716", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@0d5f479" + }, + { + "id": "efcore@9db9403", + "repo": "efcore", + "title": "Update dependencies from build 301941", + "url": "https://github.com/dotnet/efcore/pull/37717", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@9db9403" + }, + { + "id": "efcore@ae8da6d", + "repo": "efcore", + "title": "Update dependencies from build 302031", + "url": "https://github.com/dotnet/efcore/pull/37722", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@ae8da6d" + }, + { + "id": "efcore@197e23b", + "repo": "efcore", + "title": "Update dependencies from build 302056", + "url": "https://github.com/dotnet/efcore/pull/37723", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@197e23b" + }, + { + "id": "efcore@a1198d4", + "repo": "efcore", + "title": "Update dependencies from build 302124", + "url": "https://github.com/dotnet/efcore/pull/37728", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@a1198d4" + }, + { + "id": "efcore@4740247", + "repo": "efcore", + "title": "Record latest migration ID in model snapshot as property to detect diverged migration trees", + "url": "https://github.com/dotnet/efcore/pull/37689", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@4740247" + }, + { + "id": "efcore@239465b", + "repo": "efcore", + "title": "Add EF.Functions.JsonContains for SQL Server 2025", + "url": "https://github.com/dotnet/efcore/pull/37714", + "commit": "dotnet@2b330ce", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@239465b" + }, + { + "id": "efcore@0e146f5", + "repo": "efcore", + "title": "[automated] Merge branch \u0027release/9.0\u0027 =\u003E \u0027release/10.0\u0027", + "url": "https://github.com/dotnet/efcore/pull/37678", + "commit": "dotnet@2b330ce", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@0e146f5" + }, + { + "id": "efcore@9dae88e", + "repo": "efcore", + "title": "Update dependencies from build 302254", + "url": "https://github.com/dotnet/efcore/pull/37736", + "commit": "dotnet@2b330ce", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@9dae88e" + }, + { + "id": "efcore@35514be", + "repo": "efcore", + "title": "Improve error reporting when using spatial/HierarchyId types without provider configured", + "url": "https://github.com/dotnet/efcore/pull/37733", + "commit": "dotnet@2b330ce", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@35514be", + "labels": [ + "community-contribution" + ] + }, + { + "id": "efcore@35089f2", + "repo": "efcore", + "title": "Fix: Named query filters cannot override convention-set filters", + "url": "https://github.com/dotnet/efcore/pull/37710", + "commit": "dotnet@2b330ce", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@35089f2" + }, + { + "id": "efcore@04fc72c", + "repo": "efcore", + "title": "Update dependencies from build 302411", + "url": "https://github.com/dotnet/efcore/pull/37743", + "commit": "dotnet@2b330ce", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@04fc72c" + }, + { + "id": "efcore@fb96b4a", + "repo": "efcore", + "title": "Workflow to automatically add preview/rc labels for merged PRs", + "url": "https://github.com/dotnet/efcore/pull/37737", + "commit": "dotnet@2b330ce", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@fb96b4a" + }, + { + "id": "efcore@6f19809", + "repo": "efcore", + "title": "[automated] Merge branch \u0027release/10.0\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/efcore/pull/37701", + "commit": "dotnet@2b330ce", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@6f19809" + }, + { + "id": "efcore@48dc694", + "repo": "efcore", + "title": "Update dependencies from build 302542", + "url": "https://github.com/dotnet/efcore/pull/37746", + "commit": "dotnet@51587e2", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@48dc694" + }, + { + "id": "efcore@9f06179", + "repo": "efcore", + "title": "[release/10.0] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/efcore/pull/37752", + "commit": "dotnet@51587e2", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@9f06179" + }, + { + "id": "efcore@56a682a", + "repo": "efcore", + "title": "Rename JsonExists to JsonPathExists", + "url": "https://github.com/dotnet/efcore/pull/37732", + "commit": "dotnet@51587e2", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@56a682a" + }, + { + "id": "efcore@f74c457", + "repo": "efcore", + "title": "[TINY] Use InterceptableLocation for precompiled query interceptor generation", + "url": "https://github.com/dotnet/efcore/pull/37734", + "commit": "dotnet@51587e2", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@f74c457" + }, + { + "id": "efcore@31e3250", + "repo": "efcore", + "title": "[release/10.0] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/efcore/pull/37753", + "commit": "dotnet@51587e2", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@31e3250" + }, + { + "id": "efcore@a00f52a", + "repo": "efcore", + "title": "Route dotnet-ef diagnostic output to stderr, fix premature help exit code", + "url": "https://github.com/dotnet/efcore/pull/37744", + "commit": "dotnet@51587e2", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@a00f52a" + }, + { + "id": "efcore@4797ba9", + "repo": "efcore", + "title": "Update dependencies from build 302699", + "url": "https://github.com/dotnet/efcore/pull/37757", + "commit": "dotnet@51587e2", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@4797ba9" + }, + { + "id": "efcore@4707794", + "repo": "efcore", + "title": "[automated] Merge branch \u0027release/10.0\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/efcore/pull/37749", + "commit": "dotnet@51587e2", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@4707794" + }, + { + "id": "efcore@5f9c2c3", + "repo": "efcore", + "title": "Fix ArgumentOutOfRangeException when deleting from ComplexCollection with nested arrays", + "url": "https://github.com/dotnet/efcore/pull/37702", + "commit": "dotnet@605aaa9", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@5f9c2c3", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "efcore@5740ed8", + "repo": "efcore", + "title": "[release/10.0] Fix named query filter conventions", + "url": "https://github.com/dotnet/efcore/pull/37738", + "commit": "dotnet@605aaa9", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@5740ed8", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "efcore@ac1a32c", + "repo": "efcore", + "title": "Update dependencies from build 302754", + "url": "https://github.com/dotnet/efcore/pull/37759", + "commit": "dotnet@605aaa9", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@ac1a32c" + }, + { + "id": "efcore@59291da", + "repo": "efcore", + "title": "Restore ordinals when changing entity state from Deleted/Added", + "url": "https://github.com/dotnet/efcore/pull/37729", + "commit": "dotnet@605aaa9", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@59291da", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "efcore@0c22a71", + "repo": "efcore", + "title": "[release/10.0] Fix Microsoft.EntityFrameworkCore.Tools for net8.0", + "url": "https://github.com/dotnet/efcore/pull/37731", + "commit": "dotnet@605aaa9", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@0c22a71", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "efcore@873db19", + "repo": "efcore", + "title": "Update dependencies from build 302799", + "url": "https://github.com/dotnet/efcore/pull/37764", + "commit": "dotnet@605aaa9", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@873db19" + }, + { + "id": "efcore@fb11d70", + "repo": "efcore", + "title": "Remove servicing PR template from Copilot instructions", + "url": "https://github.com/dotnet/efcore/pull/37761", + "commit": "dotnet@605aaa9", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@fb11d70" + }, + { + "id": "efcore@a06277e", + "repo": "efcore", + "title": "Update dependencies from build 302824", + "url": "https://github.com/dotnet/efcore/pull/37767", + "commit": "dotnet@5d0ff92", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@a06277e" + }, + { + "id": "efcore@62b0941", + "repo": "efcore", + "title": "Remove UseOldBehavior quirk switches", + "url": "https://github.com/dotnet/efcore/pull/37770", + "commit": "dotnet@5d0ff92", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@62b0941" + }, + { + "id": "efcore@5ccb348", + "repo": "efcore", + "title": "Update dependencies from build 302854", + "url": "https://github.com/dotnet/efcore/pull/37772", + "commit": "dotnet@5d0ff92", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@5ccb348" + }, + { + "id": "efcore@6b4f383", + "repo": "efcore", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/efcore/pull/37773", + "commit": "dotnet@5d0ff92", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@6b4f383" + }, + { + "id": "efcore@45d3267", + "repo": "efcore", + "title": "Update dependencies from build 303025", + "url": "https://github.com/dotnet/efcore/pull/37777", + "commit": "dotnet@5d0ff92", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@45d3267" + }, + { + "id": "efcore@fc6f21d", + "repo": "efcore", + "title": "Fix InvalidCastException in ArrayPropertyValues.ToObject() with nested nullable complex properties", + "url": "https://github.com/dotnet/efcore/pull/37762", + "commit": "dotnet@5d0ff92", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@fc6f21d" + }, + { + "id": "efcore@4957f0e", + "repo": "efcore", + "title": "[automated] Merge branch \u0027release/10.0\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/efcore/pull/37760", + "commit": "dotnet@debd236", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@4957f0e" + }, + { + "id": "efcore@f69c365", + "repo": "efcore", + "title": "Update dependencies from build 303089", + "url": "https://github.com/dotnet/efcore/pull/37782", + "commit": "dotnet@debd236", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@f69c365" + }, + { + "id": "efcore@ebc7591", + "repo": "efcore", + "title": "Fix projection of entities with complex collections through subqueries", + "url": "https://github.com/dotnet/efcore/pull/37747", + "commit": "dotnet@debd236", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@ebc7591", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "efcore@1460789", + "repo": "efcore", + "title": "Update dependencies from build 303150", + "url": "https://github.com/dotnet/efcore/pull/37789", + "commit": "dotnet@debd236", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@1460789" + }, + { + "id": "efcore@8a06ad4", + "repo": "efcore", + "title": "Emit all properties on the join type, even when there\u0027s no extra configuration on them.", + "url": "https://github.com/dotnet/efcore/pull/37783", + "commit": "dotnet@debd236", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@8a06ad4" + }, + { + "id": "efcore@1d245f3", + "repo": "efcore", + "title": "RevEng: Always scaffold HasPrecision for decimal columns in SQL Server", + "url": "https://github.com/dotnet/efcore/pull/37730", + "commit": "dotnet@debd236", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@1d245f3", + "labels": [ + "community-contribution" + ] + }, + { + "id": "efcore@1d6294e", + "repo": "efcore", + "title": "Update dependencies from build 303190", + "url": "https://github.com/dotnet/efcore/pull/37793", + "commit": "dotnet@a40fded", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@1d6294e" + }, + { + "id": "efcore@0cc9a4b", + "repo": "efcore", + "title": "Update dependencies from build 303263", + "url": "https://github.com/dotnet/efcore/pull/37801", + "commit": "dotnet@a40fded", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@0cc9a4b" + }, + { + "id": "efcore@4077099", + "repo": "efcore", + "title": "[automated] Merge branch \u0027release/10.0\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/efcore/pull/37790", + "commit": "dotnet@a40fded", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@4077099" + }, + { + "id": "efcore@bbba406", + "repo": "efcore", + "title": "Fix HasDiscriminator with default name \u0022Discriminator\u0022 failing for non-string types", + "url": "https://github.com/dotnet/efcore/pull/37785", + "commit": "dotnet@a40fded", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@bbba406" + }, + { + "id": "efcore@fbf051c", + "repo": "efcore", + "title": "Fix RowVersion concurrency issue when replacing entities with TPH inheritance and owned types", + "url": "https://github.com/dotnet/efcore/pull/37788", + "commit": "dotnet@a40fded", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@fbf051c" + }, + { + "id": "efcore@aa10d1d", + "repo": "efcore", + "title": "[release/10.0] Fix InvalidCastException in OriginalValues.ToObject() with nested nullable complex properties", + "url": "https://github.com/dotnet/efcore/pull/37703", + "commit": "dotnet@a40fded", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@aa10d1d", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "efcore@150afc9", + "repo": "efcore", + "title": "Fix FK dependency ordering when replacing row-sharing owned entity", + "url": "https://github.com/dotnet/efcore/pull/37799", + "commit": "dotnet@a40fded", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@150afc9" + }, + { + "id": "efcore@3eabbaf", + "repo": "efcore", + "title": "Fix in-memory corruption of nested owned entities after SaveChanges when navigation is replaced", + "url": "https://github.com/dotnet/efcore/pull/37787", + "commit": "dotnet@c4221be", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@3eabbaf" + }, + { + "id": "efcore@2f5c7f3", + "repo": "efcore", + "title": "[automated] Merge branch \u0027release/10.0\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/efcore/pull/37806", + "commit": "dotnet@c4221be", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@2f5c7f3" + }, + { + "id": "efcore@8132028", + "repo": "efcore", + "title": "Add parameterless overload for AddPooledDbContextFactory\u003CTContext\u003E aligning pooled factory with ConfigureDbContext\u003CTContext\u003E.", + "url": "https://github.com/dotnet/efcore/pull/37144", + "commit": "dotnet@c4221be", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@8132028", + "labels": [ + "community-contribution" + ] + }, + { + "id": "efcore@1c16df9", + "repo": "efcore", + "title": "Fix owned entities with default values not saved in TPH with shared columns", + "url": "https://github.com/dotnet/efcore/pull/37751", + "commit": "dotnet@352ee4c", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@1c16df9" + }, + { + "id": "efcore@0518708", + "repo": "efcore", + "title": "Fix NullReferenceException when accessing null complex properties in TPH with shared columns", + "url": "https://github.com/dotnet/efcore/pull/37695", + "commit": "dotnet@352ee4c", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@0518708" + }, + { + "id": "efcore@209f088", + "repo": "efcore", + "title": "[release/10.0] Fix invalid SQL parameter names for switch/case pattern-matched variables", + "url": "https://github.com/dotnet/efcore/pull/37805", + "commit": "dotnet@352ee4c", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@209f088", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "efcore@39531c8", + "repo": "efcore", + "title": "Fix ExecuteUpdate over scalar projections", + "url": "https://github.com/dotnet/efcore/pull/37791", + "commit": "dotnet@352ee4c", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@39531c8", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "efcore@f254706", + "repo": "efcore", + "title": "Preserve batch terminators in migration scripts for SQL operations with GO separators", + "url": "https://github.com/dotnet/efcore/pull/37810", + "commit": "dotnet@352ee4c", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@f254706" + }, + { + "id": "efcore@a707320", + "repo": "efcore", + "title": "Bump actions/upload-artifact from 6 to 7", + "url": "https://github.com/dotnet/efcore/pull/37813", + "commit": "dotnet@352ee4c", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@a707320", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "efcore@15af73b", + "repo": "efcore", + "title": "Add helpful exception when a property\u2019s backing field cannot be found.", + "url": "https://github.com/dotnet/efcore/pull/36720", + "commit": "dotnet@0f9b4fe", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@15af73b", + "labels": [ + "community-contribution" + ] + }, + { + "id": "efcore@a5a6356", + "repo": "efcore", + "title": "Remove accidental auto-approve workflow", + "url": "https://github.com/dotnet/efcore/pull/37814", + "commit": "dotnet@0f9b4fe", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@a5a6356" + }, + { + "id": "efcore@9c4450c", + "repo": "efcore", + "title": "Update dependencies from https://github.com/dotnet/arcade build 20260217.2", + "url": "https://github.com/dotnet/efcore/pull/37816", + "commit": "dotnet@ed58d9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@9c4450c", + "labels": [ + "area-infrastructure", + "type-dependency update :arrow_up_small:" + ] + }, + { + "id": "efcore@d0d82d2", + "repo": "efcore", + "title": "Allow query test classes to have non-shared tests", + "url": "https://github.com/dotnet/efcore/pull/37681", + "commit": "dotnet@ed58d9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@d0d82d2" + }, + { + "id": "efcore@76c0497", + "repo": "efcore", + "title": "Update dependencies from https://github.com/dotnet/arcade build 20260223.3", + "url": "https://github.com/dotnet/efcore/pull/37820", + "commit": "dotnet@ed58d9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@76c0497", + "labels": [ + "area-infrastructure", + "type-dependency update :arrow_up_small:" + ] + }, + { + "id": "efcore@39c16b2", + "repo": "efcore", + "title": "Update dependencies from build 303883", + "url": "https://github.com/dotnet/efcore/pull/37821", + "commit": "dotnet@ed58d9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@39c16b2" + }, + { + "id": "efcore@e006093", + "repo": "efcore", + "title": "[automated] Merge branch \u0027release/10.0\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/efcore/pull/37811", + "commit": "dotnet@ed58d9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@e006093" + }, + { + "id": "efcore@c2941e7", + "repo": "efcore", + "title": "[release/10.0] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/efcore/pull/37822", + "commit": "dotnet@ed58d9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@c2941e7" + }, + { + "id": "efcore@d072427", + "repo": "efcore", + "title": "Update dependencies from build 304097", + "url": "https://github.com/dotnet/efcore/pull/37828", + "commit": "dotnet@ed58d9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@d072427" + }, + { + "id": "efcore@41811eb", + "repo": "efcore", + "title": "Fix NRE in FindJsonPartialUpdateInfo when replacing TPH derived entity with owned JSON", + "url": "https://github.com/dotnet/efcore/pull/37823", + "commit": "dotnet@ed58d9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@41811eb" + }, + { + "id": "efcore@fdf01ed", + "repo": "efcore", + "title": "[release/10.0] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/efcore/pull/37830", + "commit": "dotnet@ed58d9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@fdf01ed" + }, + { + "id": "efcore@a24cf33", + "repo": "efcore", + "title": "Update dependencies from build 304232", + "url": "https://github.com/dotnet/efcore/pull/37832", + "commit": "dotnet@ed58d9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@a24cf33" + }, + { + "id": "efcore@f0fd83c", + "repo": "efcore", + "title": "Remove checked-in nuspec files to resolve build issues", + "url": "https://github.com/dotnet/efcore/pull/37826", + "commit": "dotnet@ed58d9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@f0fd83c" + }, + { + "id": "efcore@8f03289", + "repo": "efcore", + "title": "Update branding on release/9.0", + "url": "https://github.com/dotnet/efcore/pull/37833", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@8f03289" + }, + { + "id": "efcore@28fec6b", + "repo": "efcore", + "title": "Update branding on release/8.0", + "url": "https://github.com/dotnet/efcore/pull/37834", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@28fec6b" + }, + { + "id": "efcore@c538920", + "repo": "efcore", + "title": "[release/9.0] Update SDK to 9.0.114", + "url": "https://github.com/dotnet/efcore/pull/37779", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@c538920" + }, + { + "id": "efcore@1ade1a4", + "repo": "efcore", + "title": "Update SDK and dotnet versions to 8.0.124", + "url": "https://github.com/dotnet/efcore/pull/37780", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@1ade1a4" + }, + { + "id": "efcore@b75d148", + "repo": "efcore", + "title": "Model building and change tracking changes to avoid loading vector properties", + "url": "https://github.com/dotnet/efcore/pull/37829", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@b75d148" + }, + { + "id": "efcore@1422c65", + "repo": "efcore", + "title": "Remove EFCore.Design dependency from EFCore.Tools and EFCore.Tasks", + "url": "https://github.com/dotnet/efcore/pull/37837", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@1422c65" + }, + { + "id": "efcore@251f5d3", + "repo": "efcore", + "title": "Add ChangeTracker.GetEntriesForState()", + "url": "https://github.com/dotnet/efcore/pull/37847", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@251f5d3" + }, + { + "id": "efcore@9bad67c", + "repo": "efcore", + "title": "Use migration ID as scaffolded migration type name", + "url": "https://github.com/dotnet/efcore/pull/37841", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@9bad67c" + }, + { + "id": "efcore@a6f77af", + "repo": "efcore", + "title": "Throw on RelationalEventId.MigrationsNotFound by default", + "url": "https://github.com/dotnet/efcore/pull/37839", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@a6f77af" + }, + { + "id": "efcore@6a7fa61", + "repo": "efcore", + "title": "Fix complex property JSON column not marked nullable in TPH hierarchy", + "url": "https://github.com/dotnet/efcore/pull/37781", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@6a7fa61" + }, + { + "id": "efcore@59aa0ae", + "repo": "efcore", + "title": "Update dependencies from build 304482", + "url": "https://github.com/dotnet/efcore/pull/37845", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@59aa0ae" + }, + { + "id": "efcore@253f08d", + "repo": "efcore", + "title": "Log warning and skip discovery for compiled models built for a different provider", + "url": "https://github.com/dotnet/efcore/pull/37840", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@253f08d" + }, + { + "id": "efcore@d3e476b", + "repo": "efcore", + "title": "[automated] Merge branch \u0027release/8.0\u0027 =\u003E \u0027release/9.0\u0027", + "url": "https://github.com/dotnet/efcore/pull/37836", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@d3e476b" + }, + { + "id": "efcore@a75602c", + "repo": "efcore", + "title": "Allow excluding foreign key from migrations", + "url": "https://github.com/dotnet/efcore/pull/37815", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@a75602c" + }, + { + "id": "efcore@ddea54e", + "repo": "efcore", + "title": "Remove EFOptimizeContext property from EF targets", + "url": "https://github.com/dotnet/efcore/pull/37838", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@ddea54e" + }, + { + "id": "efcore@df4e613", + "repo": "efcore", + "title": "Update dependencies from build 304539", + "url": "https://github.com/dotnet/efcore/pull/37850", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@df4e613" + }, + { + "id": "efcore@9f8fd9c", + "repo": "efcore", + "title": "[automated] Merge branch \u0027release/10.0\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/efcore/pull/37848", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@9f8fd9c" + }, + { + "id": "efcore@462bcf0", + "repo": "efcore", + "title": "[automated] Merge branch \u0027release/9.0\u0027 =\u003E \u0027release/10.0\u0027", + "url": "https://github.com/dotnet/efcore/pull/37835", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@462bcf0" + }, + { + "id": "efcore@d34c72b", + "repo": "efcore", + "title": "[automated] Merge branch \u0027release/10.0\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/efcore/pull/37853", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@d34c72b" + }, + { + "id": "efcore@20d5fef", + "repo": "efcore", + "title": "Update dependencies from build 304615", + "url": "https://github.com/dotnet/efcore/pull/37854", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@20d5fef" + }, + { + "id": "efcore@9141489", + "repo": "efcore", + "title": "Update dependencies from build 304701", + "url": "https://github.com/dotnet/efcore/pull/37858", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@9141489" + }, + { + "id": "efcore@63f9baa", + "repo": "efcore", + "title": "Allow using foreign keys in Dataverse reverse engineering", + "url": "https://github.com/dotnet/efcore/pull/34689", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@63f9baa", + "labels": [ + "community-contribution" + ] + }, + { + "id": "efcore@1b36259", + "repo": "efcore", + "title": "Fix NRE in AddJsonNavigationBindings when combining DbFunction with OwnsOne/OwnsMany ToJson", + "url": "https://github.com/dotnet/efcore/pull/37855", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@1b36259", + "labels": [ + "poachable" + ] + }, + { + "id": "efcore@94f0b72", + "repo": "efcore", + "title": "Throw when IsExcludedFromMigrations is executed on the runtime model", + "url": "https://github.com/dotnet/efcore/pull/37869", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@94f0b72" + }, + { + "id": "efcore@11a0a69", + "repo": "efcore", + "title": "Refactor GetConversion", + "url": "https://github.com/dotnet/efcore/pull/37867", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@11a0a69" + }, + { + "id": "efcore@589a82f", + "repo": "efcore", + "title": "Configure dependabot to use nuget.org only and add a version switch for MSBuild/Roslyn versions", + "url": "https://github.com/dotnet/efcore/pull/37866", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@589a82f" + }, + { + "id": "efcore@35c6d03", + "repo": "efcore", + "title": "Add background information skills for EF Core subsystems", + "url": "https://github.com/dotnet/efcore/pull/37768", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@35c6d03" + }, + { + "id": "efcore@b3caffb", + "repo": "efcore", + "title": "Make GetContainerColumnType() always return the expected type", + "url": "https://github.com/dotnet/efcore/pull/37864", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@b3caffb" + }, + { + "id": "efcore@69db2b6", + "repo": "efcore", + "title": "Bump Microsoft.Build.NoTargets from 3.7.0 to 3.7.134", + "url": "https://github.com/dotnet/efcore/pull/37873", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@69db2b6", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "efcore@82f974b", + "repo": "efcore", + "title": "Update dependencies from build 304915", + "url": "https://github.com/dotnet/efcore/pull/37876", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@82f974b" + }, + { + "id": "efcore@3817d73", + "repo": "efcore", + "title": "Implement partial property loading in relational query", + "url": "https://github.com/dotnet/efcore/pull/37857", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@3817d73" + }, + { + "id": "efcore@017b6f1", + "repo": "efcore", + "title": "Update Dependabot configuration for NuGet registry", + "url": "https://github.com/dotnet/efcore/pull/37879", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@017b6f1" + }, + { + "id": "efcore@45eaef0", + "repo": "efcore", + "title": "Address review comments for partial property loading", + "url": "https://github.com/dotnet/efcore/pull/37882", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@45eaef0" + }, + { + "id": "efcore@a4a91fb", + "repo": "efcore", + "title": "Update dependencies from build 305024", + "url": "https://github.com/dotnet/efcore/pull/37881", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@a4a91fb" + }, + { + "id": "efcore@3781593", + "repo": "efcore", + "title": "Add KeysUniqueAcrossSchemas property to SharedTableConvention", + "url": "https://github.com/dotnet/efcore/pull/37861", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@3781593" + }, + { + "id": "efcore@356ecab", + "repo": "efcore", + "title": "Reenable F# tests", + "url": "https://github.com/dotnet/efcore/pull/37871", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@356ecab" + }, + { + "id": "efcore@2277164", + "repo": "efcore", + "title": "Update dependencies from build 305074", + "url": "https://github.com/dotnet/efcore/pull/37886", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@2277164" + }, + { + "id": "efcore@f29112a", + "repo": "efcore", + "title": "Update MSBuild and Roslyn dependencies for non-servicing builds", + "url": "https://github.com/dotnet/efcore/pull/37875", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@f29112a" + }, + { + "id": "efcore@ecc3936", + "repo": "efcore", + "title": "Update dependencies from build 305271", + "url": "https://github.com/dotnet/efcore/pull/37892", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@ecc3936" + }, + { + "id": "efcore@be6a920", + "repo": "efcore", + "title": "Better SQL for to-one joins", + "url": "https://github.com/dotnet/efcore/pull/37819", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@be6a920" + }, + { + "id": "efcore@79c8ce7", + "repo": "efcore", + "title": "Automate setting closed issue milestones", + "url": "https://github.com/dotnet/efcore/pull/37872", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@79c8ce7" + }, + { + "id": "efcore@b48ea4d", + "repo": "efcore", + "title": "Update dependencies from build 305389", + "url": "https://github.com/dotnet/efcore/pull/37894", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@b48ea4d" + }, + { + "id": "efcore@b20350a", + "repo": "efcore", + "title": "Update dependencies from build 305413", + "url": "https://github.com/dotnet/efcore/pull/37896", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@b20350a" + }, + { + "id": "efcore@92de1c1", + "repo": "efcore", + "title": "Update dependencies from build 305495", + "url": "https://github.com/dotnet/efcore/pull/37898", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@92de1c1" + }, + { + "id": "efcore@31144c5", + "repo": "efcore", + "title": "Add RemoveExtension and RemoveDbContext APIs for removing provider configuration", + "url": "https://github.com/dotnet/efcore/pull/37891", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@31144c5" + }, + { + "id": "efcore@3a8fcc4", + "repo": "efcore", + "title": "Update dependencies from build 305569", + "url": "https://github.com/dotnet/efcore/pull/37902", + "commit": "dotnet@c12d1f5", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@3a8fcc4" + }, + { + "id": "efcore@50d0a10", + "repo": "efcore", + "title": "Update dependencies from build 305648", + "url": "https://github.com/dotnet/efcore/pull/37904", + "commit": "dotnet@c12d1f5", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@50d0a10" + }, + { + "id": "efcore@0cdfa6e", + "repo": "efcore", + "title": "Cosmos: Complex properties Query", + "url": "https://github.com/dotnet/efcore/pull/37577", + "commit": "dotnet@c12d1f5", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@0cdfa6e", + "labels": [ + "community-contribution" + ] + }, + { + "id": "efcore@8bf0f7f", + "repo": "efcore", + "title": "Fix misc issues found by Copilot", + "url": "https://github.com/dotnet/efcore/pull/37916", + "commit": "dotnet@c12d1f5", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@8bf0f7f" + }, + { + "id": "efcore@5117a26", + "repo": "efcore", + "title": "Update dependencies from build 306135", + "url": "https://github.com/dotnet/efcore/pull/37922", + "commit": "dotnet@4c1c254", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@5117a26" + }, + { + "id": "efcore@d06927c", + "repo": "efcore", + "title": "Update dependencies from build 306176", + "url": "https://github.com/dotnet/efcore/pull/37925", + "commit": "dotnet@4c1c254", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@d06927c" + }, + { + "id": "efcore@79fdc9f", + "repo": "efcore", + "title": "Update dependencies from build 306234", + "url": "https://github.com/dotnet/efcore/pull/37930", + "commit": "dotnet@4c1c254", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@79fdc9f" + }, + { + "id": "efcore@1af4e91", + "repo": "efcore", + "title": "Update dependencies from build 306251", + "url": "https://github.com/dotnet/efcore/pull/37931", + "commit": "dotnet@4c1c254", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@1af4e91" + }, + { + "id": "efcore@3031b80", + "repo": "efcore", + "title": "Update dependencies from build 306357", + "url": "https://github.com/dotnet/efcore/pull/37936", + "commit": "dotnet@4c1c254", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@3031b80" + }, + { + "id": "efcore@397179c", + "repo": "efcore", + "title": "Remove SqlExpressionVisitor from Cosmos", + "url": "https://github.com/dotnet/efcore/pull/37927", + "commit": "dotnet@4c1c254", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@397179c" + }, + { + "id": "efcore@8bfecfd", + "repo": "efcore", + "title": "Add triage skill", + "url": "https://github.com/dotnet/efcore/pull/37917", + "commit": "dotnet@4c1c254", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@8bfecfd" + }, + { + "id": "efcore@3b8b5b8", + "repo": "efcore", + "title": "Avoid hardcoded TFMs in source code", + "url": "https://github.com/dotnet/efcore/pull/37865", + "commit": "dotnet@4c1c254", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@3b8b5b8" + }, + { + "id": "efcore@39beebf", + "repo": "efcore", + "title": "Fix struct complex type boxing in collection materialization", + "url": "https://github.com/dotnet/efcore/pull/37934", + "commit": "dotnet@803eb28", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@39beebf" + }, + { + "id": "efcore@f1817b2", + "repo": "efcore", + "title": "Update dependencies from build 306438", + "url": "https://github.com/dotnet/efcore/pull/37938", + "commit": "dotnet@803eb28", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@f1817b2" + }, + { + "id": "efcore@41d1ffd", + "repo": "efcore", + "title": "Cosmos: Complex properties model building support for specifying property names", + "url": "https://github.com/dotnet/efcore/pull/37919", + "commit": "dotnet@803eb28", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@41d1ffd", + "labels": [ + "community-contribution" + ] + }, + { + "id": "efcore@1ff287c", + "repo": "efcore", + "title": "Fix projection of required complex type via left join", + "url": "https://github.com/dotnet/efcore/pull/37928", + "commit": "dotnet@b4ddb57", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@1ff287c", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "efcore@8416688", + "repo": "efcore", + "title": "Create milestone if missing in label-and-milestone workflow", + "url": "https://github.com/dotnet/efcore/pull/37946", + "commit": "dotnet@b4ddb57", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@8416688" + }, + { + "id": "efcore@3441962", + "repo": "efcore", + "title": "Fix persisting null optional complex property with default values", + "url": "https://github.com/dotnet/efcore/pull/37944", + "commit": "dotnet@b4ddb57", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@3441962", + "labels": [ + "community-contribution" + ] + }, + { + "id": "efcore@b2174cf", + "repo": "efcore", + "title": "Add ci-analysis skill and GitHub Actions workflow skill", + "url": "https://github.com/dotnet/efcore/pull/37950", + "commit": "dotnet@b4ddb57", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@b2174cf" + }, + { + "id": "efcore@6f682a4", + "repo": "efcore", + "title": "Improve triage skill", + "url": "https://github.com/dotnet/efcore/pull/37955", + "commit": "dotnet@b4ddb57", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@6f682a4" + }, + { + "id": "efcore@f9393e7", + "repo": "efcore", + "title": "Fix validate-pr-target-branch: handle unknown users and case-insensitive Copilot check", + "url": "https://github.com/dotnet/efcore/pull/37953", + "commit": "dotnet@b4ddb57", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@f9393e7" + }, + { + "id": "efcore@d08003c", + "repo": "efcore", + "title": "[automated] Merge branch \u0027release/10.0\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/efcore/pull/37945", + "commit": "dotnet@bf0350c", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@d08003c" + }, + { + "id": "efcore@aeda6f5", + "repo": "efcore", + "title": "Add more detailed steps for skill testing", + "url": "https://github.com/dotnet/efcore/pull/37959", + "commit": "dotnet@bf0350c", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@aeda6f5" + }, + { + "id": "efcore@a81cc59", + "repo": "efcore", + "title": "Update dependencies from build 307198", + "url": "https://github.com/dotnet/efcore/pull/37968", + "commit": "dotnet@c5dbcf5", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@a81cc59" + }, + { + "id": "efcore@c5a0f6b", + "repo": "efcore", + "title": "Add scripts to run Cosmos tests on a container", + "url": "https://github.com/dotnet/efcore/pull/37110", + "commit": "dotnet@c5dbcf5", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@c5a0f6b" + }, + { + "id": "efcore@9817145", + "repo": "efcore", + "title": "Cosmos: Projection binding initialize empty collections", + "url": "https://github.com/dotnet/efcore/pull/37971", + "commit": "dotnet@c5dbcf5", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@9817145", + "labels": [ + "community-contribution" + ] + }, + { + "id": "efcore@97db209", + "repo": "efcore", + "title": "Fix SetProperty discard lambda failing for nullable value type properties in ExecuteUpdate", + "url": "https://github.com/dotnet/efcore/pull/37975", + "commit": "dotnet@c5dbcf5", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@97db209" + }, + { + "id": "efcore@f8d2760", + "repo": "efcore", + "title": "Infer version from tags/branches instead of Versions.props", + "url": "https://github.com/dotnet/efcore/pull/37985", + "commit": "dotnet@591f22b", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@f8d2760" + }, + { + "id": "efcore@68bb873", + "repo": "efcore", + "title": "Skip branch-PR validation in validate-pr-target-branch workflow", + "url": "https://github.com/dotnet/efcore/pull/37988", + "commit": "dotnet@591f22b", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@68bb873" + }, + { + "id": "efcore@7f484b1", + "repo": "efcore", + "title": "Copy over community-contribution label from closing PR to issue", + "url": "https://github.com/dotnet/efcore/pull/37989", + "commit": "dotnet@591f22b", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@7f484b1" + }, + { + "id": "efcore@30dca55", + "repo": "efcore", + "title": "Fix memory leak in LazyLoaderFactory", + "url": "https://github.com/dotnet/efcore/pull/37977", + "commit": "dotnet@591f22b", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@30dca55", + "labels": [ + "community-contribution" + ] + }, + { + "id": "efcore@ba4ebfe", + "repo": "efcore", + "title": "Fix ComplexCollection ToJson migration default value: use \u0022[]\u0022 instead of \u0022{}\u0022", + "url": "https://github.com/dotnet/efcore/pull/37965", + "commit": "dotnet@591f22b", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@ba4ebfe" + }, + { + "id": "efcore@365cbc3", + "repo": "efcore", + "title": "Fix NullReferenceException in SqlServerStringMethodTranslator.TranslateIndexOf for casted parameters", + "url": "https://github.com/dotnet/efcore/pull/37956", + "commit": "dotnet@86d7aba", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@365cbc3" + }, + { + "id": "efcore@bfad1f2", + "repo": "efcore", + "title": "Show a warning when the tools are used with a platform-specific app", + "url": "https://github.com/dotnet/efcore/pull/37868", + "commit": "dotnet@86d7aba", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@bfad1f2" + }, + { + "id": "efcore@0842c55", + "repo": "efcore", + "title": "Update Microsoft.Data.SqlClient to 7.0.0", + "url": "https://github.com/dotnet/efcore/pull/37949", + "commit": "dotnet@86d7aba", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@0842c55", + "labels": [ + "breaking-change", + "community-contribution" + ] + }, + { + "id": "efcore@3445554", + "repo": "efcore", + "title": "Cosmos: Track session tokens for Pre-Condition, Conflict and document NotFound failures", + "url": "https://github.com/dotnet/efcore/pull/37941", + "commit": "dotnet@86d7aba", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@3445554", + "labels": [ + "community-contribution" + ] + }, + { + "id": "emsdk@62354f3", + "repo": "emsdk", + "title": "Update dependencies", + "url": "https://github.com/dotnet/emsdk/pull/1557", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@62354f3" + }, + { + "id": "emsdk@8ac03c2", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1561", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@8ac03c2" + }, + { + "id": "emsdk@394c283", + "repo": "emsdk", + "title": "Update dependencies", + "url": "https://github.com/dotnet/emsdk/pull/1568", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@394c283" + }, + { + "id": "emsdk@1adfd1f", + "repo": "emsdk", + "title": "[main] Update dependencies from dotnet/binaryen, dotnet/emscripten", + "url": "https://github.com/dotnet/emsdk/pull/1564", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@1adfd1f" + }, + { + "id": "emsdk@5ff7edc", + "repo": "emsdk", + "title": "Update dependencies from https://github.com/dotnet/cpython build 20260125.1", + "url": "https://github.com/dotnet/emsdk/pull/1572", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@5ff7edc" + }, + { + "id": "emsdk@afe7a79", + "repo": "emsdk", + "title": "[main] Update dependencies from dotnet/binaryen, dotnet/cpython, dotnet/emscripten", + "url": "https://github.com/dotnet/emsdk/pull/1580", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@afe7a79" + }, + { + "id": "emsdk@9994979", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1573", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@9994979" + }, + { + "id": "emsdk@20e1677", + "repo": "emsdk", + "title": "Update dependencies", + "url": "https://github.com/dotnet/emsdk/pull/1584", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@20e1677" + }, + { + "id": "emsdk@1cf2cba", + "repo": "emsdk", + "title": "Update dependencies from build 300976", + "url": "https://github.com/dotnet/emsdk/pull/1590", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@1cf2cba" + }, + { + "id": "emsdk@4c20000", + "repo": "emsdk", + "title": "[main] Update dependencies from dotnet/binaryen, dotnet/emscripten", + "url": "https://github.com/dotnet/emsdk/pull/1586", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@4c20000" + }, + { + "id": "emsdk@f801db5", + "repo": "emsdk", + "title": "Update dependencies from https://github.com/dotnet/cpython build 20260209.1", + "url": "https://github.com/dotnet/emsdk/pull/1593", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@f801db5" + }, + { + "id": "emsdk@062d1d8", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1594", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@062d1d8" + }, + { + "id": "emsdk@113a4b4", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1596", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@113a4b4" + }, + { + "id": "emsdk@90915b7", + "repo": "emsdk", + "title": "[main] Update dependencies from dotnet/binaryen, dotnet/emscripten", + "url": "https://github.com/dotnet/emsdk/pull/1600", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@90915b7" + }, + { + "id": "emsdk@08d0c10", + "repo": "emsdk", + "title": "Update dependencies from build 302061", + "url": "https://github.com/dotnet/emsdk/pull/1601", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@08d0c10" + }, + { + "id": "emsdk@ee4b2f7", + "repo": "emsdk", + "title": "Update dependencies from https://github.com/dotnet/cpython build 20260215.1", + "url": "https://github.com/dotnet/emsdk/pull/1602", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@ee4b2f7" + }, + { + "id": "emsdk@5a0edd4", + "repo": "emsdk", + "title": "Update dependencies from build 302104", + "url": "https://github.com/dotnet/emsdk/pull/1604", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@5a0edd4" + }, + { + "id": "emsdk@112bfc2", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1606", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@112bfc2" + }, + { + "id": "emsdk@22404dd", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1607", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@22404dd" + }, + { + "id": "emsdk@d3326da", + "repo": "emsdk", + "title": "[main] Update dependencies from dotnet/binaryen, dotnet/cpython, dotnet/emscripten", + "url": "https://github.com/dotnet/emsdk/pull/1610", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@d3326da" + }, + { + "id": "emsdk@2a18dd9", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1611", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@2a18dd9" + }, + { + "id": "emsdk@79dafee", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1614", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@79dafee" + }, + { + "id": "emsdk@b06720c", + "repo": "emsdk", + "title": "Update dependencies from build 304069", + "url": "https://github.com/dotnet/emsdk/pull/1625", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@b06720c" + }, + { + "id": "emsdk@2ac1a6e", + "repo": "emsdk", + "title": "[main] Update dependencies from dotnet/cpython, dotnet/emscripten", + "url": "https://github.com/dotnet/emsdk/pull/1620", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@2ac1a6e" + }, + { + "id": "emsdk@c70f075", + "repo": "emsdk", + "title": "Update dependencies from build 304338", + "url": "https://github.com/dotnet/emsdk/pull/1631", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@c70f075" + }, + { + "id": "emsdk@776fcb4", + "repo": "emsdk", + "title": "[main] Update dependencies from dotnet/binaryen, dotnet/emscripten", + "url": "https://github.com/dotnet/emsdk/pull/1628", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@776fcb4" + }, + { + "id": "emsdk@ef73528", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1634", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@ef73528" + }, + { + "id": "emsdk@3e71182", + "repo": "emsdk", + "title": "Update dependencies from build 304998", + "url": "https://github.com/dotnet/emsdk/pull/1635", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@3e71182" + }, + { + "id": "emsdk@bc4c4fb", + "repo": "emsdk", + "title": "Update dependencies from build 305296", + "url": "https://github.com/dotnet/emsdk/pull/1642", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@bc4c4fb" + }, + { + "id": "emsdk@c0a0f5f", + "repo": "emsdk", + "title": "[main] Update dependencies from dotnet/binaryen, dotnet/cpython, dotnet/emscripten", + "url": "https://github.com/dotnet/emsdk/pull/1643", + "commit": "dotnet@dd9825a", + "is_security": false, + "local_repo_commit": "emsdk@c0a0f5f" + }, + { + "id": "emsdk@35f3868", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1644", + "commit": "dotnet@dd9825a", + "is_security": false, + "local_repo_commit": "emsdk@35f3868" + }, + { + "id": "emsdk@0426e0c", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1646", + "commit": "dotnet@dd9825a", + "is_security": false, + "local_repo_commit": "emsdk@0426e0c" + }, + { + "id": "emsdk@41bf542", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1649", + "commit": "dotnet@dd9825a", + "is_security": false, + "local_repo_commit": "emsdk@41bf542" + }, + { + "id": "emsdk@506ea9f", + "repo": "emsdk", + "title": "Use azurelinux 3 build image", + "url": "https://github.com/dotnet/emsdk/pull/1655", + "commit": "dotnet@dd9825a", + "is_security": false, + "local_repo_commit": "emsdk@506ea9f" + }, + { + "id": "fsharp@1890128", + "repo": "fsharp", + "title": "remove duplicate FlatErrors file", + "url": "https://github.com/dotnet/fsharp/pull/19383", + "commit": "dotnet@0697b32", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@1890128" + }, + { + "id": "fsharp@87dc60c", + "repo": "fsharp", + "title": "Update dependencies from https://github.com/dotnet/arcade build 20260302.1", + "url": "https://github.com/dotnet/fsharp/pull/19379", + "commit": "dotnet@0697b32", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@87dc60c" + }, + { + "id": "fsharp@1c0cc5e", + "repo": "fsharp", + "title": "[main] Update dependencies from dotnet/msbuild", + "url": "https://github.com/dotnet/fsharp/pull/19021", + "commit": "dotnet@0697b32", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@1c0cc5e", + "labels": [ + "NO_RELEASE_NOTES" + ] + }, + { + "id": "fsharp@761162d", + "repo": "fsharp", + "title": "Add fsharp-release-announcement agent", + "url": "https://github.com/dotnet/fsharp/pull/19390", + "commit": "dotnet@0697b32", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@761162d" + }, + { + "id": "fsharp@6479611", + "repo": "fsharp", + "title": "Fix Seq.empty rendering as \u0022EmptyEnumerable\u0022 in serializers", + "url": "https://github.com/dotnet/fsharp/pull/19317", + "commit": "dotnet@0697b32", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@6479611" + }, + { + "id": "fsharp@966cb0c", + "repo": "fsharp", + "title": "Update FileContentMapping.fs", + "url": "https://github.com/dotnet/fsharp/pull/19391", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@966cb0c" + }, + { + "id": "fsharp@8b46242", + "repo": "fsharp", + "title": "Fix flaky help_options test: restore enableConsoleColoring after mutation", + "url": "https://github.com/dotnet/fsharp/pull/19385", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@8b46242" + }, + { + "id": "fsharp@68373f5", + "repo": "fsharp", + "title": "isolate checker", + "url": "https://github.com/dotnet/fsharp/pull/19393", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@68373f5" + }, + { + "id": "fsharp@635a57e", + "repo": "fsharp", + "title": "Introduce CallRelatedSymbolSink to avoid affect name resolution with related symbols", + "url": "https://github.com/dotnet/fsharp/pull/19361", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@635a57e", + "labels": [ + "NO_RELEASE_NOTES" + ] + }, + { + "id": "fsharp@3b1218b", + "repo": "fsharp", + "title": "[main] Update dependencies from dnceng/internal/dotnet-optimization", + "url": "https://github.com/dotnet/fsharp/pull/19380", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@3b1218b" + }, + { + "id": "fsharp@56d1363", + "repo": "fsharp", + "title": "Warn when function type passed to interpolated string", + "url": "https://github.com/dotnet/fsharp/pull/19289", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@56d1363" + }, + { + "id": "fsharp@66c4f0f", + "repo": "fsharp", + "title": "Fix flaky type-provider test in MultiProjectAnalysisTests by isolating its checker and disabling parallelization", + "url": "https://github.com/dotnet/fsharp/pull/19395", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@66c4f0f" + }, + { + "id": "fsharp@3f33dbb", + "repo": "fsharp", + "title": "Update dependencies from https://github.com/dotnet/arcade build 20260303.3", + "url": "https://github.com/dotnet/fsharp/pull/19386", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@3f33dbb" + }, + { + "id": "fsharp@2bfd488", + "repo": "fsharp", + "title": "Update dependencies from https://github.com/dotnet/msbuild build 20260303.5", + "url": "https://github.com/dotnet/fsharp/pull/19387", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@2bfd488" + }, + { + "id": "fsharp@afd9294", + "repo": "fsharp", + "title": "Remove RoslynForTestingButNotForVSLayer hack", + "url": "https://github.com/dotnet/fsharp/pull/19375", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@afd9294" + }, + { + "id": "fsharp@6f1cc37", + "repo": "fsharp", + "title": "FSharpType: add more predefined type checks", + "url": "https://github.com/dotnet/fsharp/pull/19325", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@6f1cc37" + }, + { + "id": "fsharp@c80d142", + "repo": "fsharp", + "title": "Add #version;; directive to F# Interactive", + "url": "https://github.com/dotnet/fsharp/pull/19332", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@c80d142" + }, + { + "id": "fsharp@a5baeaa", + "repo": "fsharp", + "title": "[main] Update dependencies from dotnet/roslyn", + "url": "https://github.com/dotnet/fsharp/pull/19392", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@a5baeaa" + }, + { + "id": "fsharp@5111aeb", + "repo": "fsharp", + "title": "Update dependencies from https://github.com/dotnet/msbuild build 20260306.2", + "url": "https://github.com/dotnet/fsharp/pull/19400", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@5111aeb" + }, + { + "id": "fsharp@a581d51", + "repo": "fsharp", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/fsharp/pull/19401", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@a581d51" + }, + { + "id": "fsharp@6609928", + "repo": "fsharp", + "title": "Fix YieldFromFinal/ReturnFromFinal being called in non-tail positions", + "url": "https://github.com/dotnet/fsharp/pull/19403", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@6609928" + }, + { + "id": "fsharp@7424154", + "repo": "fsharp", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/fsharp/pull/19413", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@7424154" + }, + { + "id": "fsharp@ab1f6ce", + "repo": "fsharp", + "title": "Remove leading spaces from warn directive range", + "url": "https://github.com/dotnet/fsharp/pull/19408", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@ab1f6ce" + }, + { + "id": "fsharp@4b36640", + "repo": "fsharp", + "title": "Move System.* package versions to Version.Details.xml for source-build", + "url": "https://github.com/dotnet/fsharp/pull/19397", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@4b36640" + }, + { + "id": "fsharp@e199206", + "repo": "fsharp", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 499: Build ID 2917180", + "url": "https://github.com/dotnet/fsharp/pull/19378", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@e199206" + }, + { + "id": "fsharp@66beb38", + "repo": "fsharp", + "title": "Update dependencies from https://github.com/dotnet/msbuild build 20260309.5", + "url": "https://github.com/dotnet/fsharp/pull/19410", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@66beb38" + }, + { + "id": "fsharp@7981cb5", + "repo": "fsharp", + "title": "Resolve ILVerify errors \u2014 adjust codegen (551 \u2192 56 errors)", + "url": "https://github.com/dotnet/fsharp/pull/19372", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@7981cb5" + }, + { + "id": "fsharp@e6f00ee", + "repo": "fsharp", + "title": "Update dependencies from https://github.com/dotnet/arcade build 20260309.1", + "url": "https://github.com/dotnet/fsharp/pull/19409", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@e6f00ee" + }, + { + "id": "fsharp@b54ff0a", + "repo": "fsharp", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/fsharp/pull/19425", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@b54ff0a" + }, + { + "id": "fsharp@7a075f3", + "repo": "fsharp", + "title": "[main] Update dependencies from dotnet/msbuild", + "url": "https://github.com/dotnet/fsharp/pull/19423", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@7a075f3" + }, + { + "id": "fsharp@20aa5a4", + "repo": "fsharp", + "title": "VS: make Alt-F1 work for inline hints", + "url": "https://github.com/dotnet/fsharp/pull/19421", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@20aa5a4" + }, + { + "id": "fsharp@71c0951", + "repo": "fsharp", + "title": "Use union merge strategy for release notes to avoid conflicts", + "url": "https://github.com/dotnet/fsharp/pull/19420", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@71c0951" + }, + { + "id": "fsharp@4a7df88", + "repo": "fsharp", + "title": "[main] Update dependencies from dotnet/roslyn", + "url": "https://github.com/dotnet/fsharp/pull/19411", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@4a7df88" + }, + { + "id": "fsharp@1dd1db0", + "repo": "fsharp", + "title": "Bugfix :: Sequence points", + "url": "https://github.com/dotnet/fsharp/pull/19278", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@1dd1db0" + }, + { + "id": "fsharp@1b1deba", + "repo": "fsharp", + "title": "[main] Update dependencies from dotnet/roslyn", + "url": "https://github.com/dotnet/fsharp/pull/19431", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@1b1deba" + }, + { + "id": "fsharp@5a0255a", + "repo": "fsharp", + "title": "Update dependencies from https://github.com/dotnet/msbuild build 20260313.3", + "url": "https://github.com/dotnet/fsharp/pull/19430", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@5a0255a" + }, + { + "id": "fsharp@3f5a346", + "repo": "fsharp", + "title": "Fix flaky tests and add flaky-test-detector skill", + "url": "https://github.com/dotnet/fsharp/pull/19427", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@3f5a346" + }, + { + "id": "fsharp@552ef9d", + "repo": "fsharp", + "title": "Add limited repo assist to identify very old issues that are already fixed", + "url": "https://github.com/dotnet/fsharp/pull/19436", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@552ef9d" + }, + { + "id": "fsharp@487aa8b", + "repo": "fsharp", + "title": "[main] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/fsharp/pull/19422", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@487aa8b" + }, + { + "id": "fsharp@67a56a4", + "repo": "fsharp", + "title": "Fix UoM ToString codegen with checknulls", + "url": "https://github.com/dotnet/fsharp/pull/19440", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@67a56a4" + }, + { + "id": "fsharp@afdccf9", + "repo": "fsharp", + "title": "Allow repo-assist to create monthly report", + "url": "https://github.com/dotnet/fsharp/pull/19437", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@afdccf9" + }, + { + "id": "fsharp@6f6440a", + "repo": "fsharp", + "title": "Fix PublicSign with full key pair embedding private key material in assembly", + "url": "https://github.com/dotnet/fsharp/pull/19442", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@6f6440a" + }, + { + "id": "fsharp@f80d20f", + "repo": "fsharp", + "title": "Cache attributes read by compiler\u2014 replace repeated string matching with O(1) enum lookups", + "url": "https://github.com/dotnet/fsharp/pull/19394", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@f80d20f", + "labels": [ + "Refactoring", + "NO_RELEASE_NOTES" + ] + }, + { + "id": "fsharp@0a710a8", + "repo": "fsharp", + "title": "Split CI tests based on namespace", + "url": "https://github.com/dotnet/fsharp/pull/19354", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@0a710a8", + "labels": [ + "AI-reviewed" + ] + }, + { + "id": "fsharp@4a2c294", + "repo": "fsharp", + "title": "Adding Copilot skills\u002Binstructions\u002Bagent for specialized compiler review (trained on historical feedback here)", + "url": "https://github.com/dotnet/fsharp/pull/19447", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@4a2c294" + }, + { + "id": "fsharp@ff81858", + "repo": "fsharp", + "title": "Copilot reviewer - drop overfitted learnings, turn into generalized rules", + "url": "https://github.com/dotnet/fsharp/pull/19451", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@ff81858" + }, + { + "id": "fsharp@f00319f", + "repo": "fsharp", + "title": "Update issue label workflow", + "url": "https://github.com/dotnet/fsharp/pull/19454", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@f00319f" + }, + { + "id": "fsharp@0fe04d0", + "repo": "fsharp", + "title": "Update dependencies from https://github.com/dotnet/arcade build 20260318.1", + "url": "https://github.com/dotnet/fsharp/pull/19452", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@0fe04d0" + }, + { + "id": "fsharp@9c01f26", + "repo": "fsharp", + "title": "[main] Update dependencies from dotnet/roslyn", + "url": "https://github.com/dotnet/fsharp/pull/19444", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@9c01f26" + }, + { + "id": "fsharp@6908bca", + "repo": "fsharp", + "title": "[main] Update dependencies from dotnet/msbuild", + "url": "https://github.com/dotnet/fsharp/pull/19443", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@6908bca" + }, + { + "id": "fsharp@d04f46f", + "repo": "fsharp", + "title": "Reduce Repo Assist schedule from hourly to 4x daily", + "url": "https://github.com/dotnet/fsharp/pull/19459", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@d04f46f" + }, + { + "id": "fsharp@be84684", + "repo": "fsharp", + "title": "Add regression test for #14057: Renaming operator with dot only renames right of dot", + "url": "https://github.com/dotnet/fsharp/pull/19488", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@be84684", + "labels": [ + "NO_RELEASE_NOTES", + "AI-Issue-Regression-PR" + ] + }, + { + "id": "fsharp@fdea689", + "repo": "fsharp", + "title": "Add regression test for #14969: FindReferences for active patterns in .fsi", + "url": "https://github.com/dotnet/fsharp/pull/19487", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@fdea689", + "labels": [ + "NO_RELEASE_NOTES", + "AI-Issue-Regression-PR" + ] + }, + { + "id": "fsharp@38f78a9", + "repo": "fsharp", + "title": "Add regression test for #13194: Completion/tooltip with quote in member name", + "url": "https://github.com/dotnet/fsharp/pull/19486", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@38f78a9", + "labels": [ + "NO_RELEASE_NOTES", + "AI-Issue-Regression-PR" + ] + }, + { + "id": "fsharp@64e384d", + "repo": "fsharp", + "title": "Update dependencies from https://github.com/dotnet/roslyn build 20260323.11", + "url": "https://github.com/dotnet/fsharp/pull/19462", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@64e384d" + }, + { + "id": "fsharp@38b455d", + "repo": "fsharp", + "title": "Update dependencies from https://github.com/dotnet/msbuild build 20260323.2", + "url": "https://github.com/dotnet/fsharp/pull/19461", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@38b455d" + }, + { + "id": "fsharp@59581dc", + "repo": "fsharp", + "title": "Bugfix :: Fix emitted method signatures: outref and static abstract byref params", + "url": "https://github.com/dotnet/fsharp/pull/19340", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@59581dc" + }, + { + "id": "fsharp@f915353", + "repo": "fsharp", + "title": "Bugfix :: Fix closure capture and let-rec initialization codegen", + "url": "https://github.com/dotnet/fsharp/pull/19339", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@f915353" + }, + { + "id": "fsharp@9e37b2c", + "repo": "fsharp", + "title": "Add regression test for #6750: Mutually recursive DU values initialization", + "url": "https://github.com/dotnet/fsharp/pull/19483", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@9e37b2c", + "labels": [ + "NO_RELEASE_NOTES", + "AI-Issue-Regression-PR" + ] + }, + { + "id": "fsharp@1cd0ca0", + "repo": "fsharp", + "title": "Add regression tests for #14308 and #14310: Signature generation improvements", + "url": "https://github.com/dotnet/fsharp/pull/19490", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@1cd0ca0", + "labels": [ + "NO_RELEASE_NOTES", + "AI-Issue-Regression-PR" + ] + }, + { + "id": "fsharp@5ee6d09", + "repo": "fsharp", + "title": "Add regression test for #16410: no spurious FS3570 with KeyValue active pattern", + "url": "https://github.com/dotnet/fsharp/pull/19481", + "commit": "dotnet@646090b", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@5ee6d09", + "labels": [ + "NO_RELEASE_NOTES", + "AI-Issue-Regression-PR" + ] + }, + { + "id": "fsharp@632a0ab", + "repo": "fsharp", + "title": "Add regression test for #3841: Hash directive indentation in nested module", + "url": "https://github.com/dotnet/fsharp/pull/19489", + "commit": "dotnet@646090b", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@632a0ab", + "labels": [ + "NO_RELEASE_NOTES", + "AI-Issue-Regression-PR" + ] + }, + { + "id": "fsharp@fb1ca7e", + "repo": "fsharp", + "title": "Add regression test for #14152: nowarn directive before module declaration", + "url": "https://github.com/dotnet/fsharp/pull/19477", + "commit": "dotnet@646090b", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@fb1ca7e", + "labels": [ + "NO_RELEASE_NOTES", + "AI-Issue-Regression-PR" + ] + }, + { + "id": "fsharp@0db49dd", + "repo": "fsharp", + "title": "Add regression test: #6929, Literal bindings preserve units of measure", + "url": "https://github.com/dotnet/fsharp/pull/19463", + "commit": "dotnet@646090b", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@0db49dd", + "labels": [ + "NO_RELEASE_NOTES", + "AI-Issue-Regression-PR" + ] + }, + { + "id": "fsharp@251aaf2", + "repo": "fsharp", + "title": "Add regression test: #3660, array of functions invocation correctness", + "url": "https://github.com/dotnet/fsharp/pull/19479", + "commit": "dotnet@646090b", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@251aaf2", + "labels": [ + "NO_RELEASE_NOTES", + "AI-Issue-Regression-PR" + ] + }, + { + "id": "msbuild@28e6097", + "repo": "msbuild", + "title": "Remove Shouldly from ProjectCachePlugin sample", + "url": "https://github.com/dotnet/msbuild/pull/13219", + "commit": "dotnet@8103dd0", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@28e6097" + }, + { + "id": "msbuild@885e1bb", + "repo": "msbuild", + "title": "Tweak build and test instructions in AGENTS", + "url": "https://github.com/dotnet/msbuild/pull/13251", + "commit": "dotnet@8103dd0", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@885e1bb" + }, + { + "id": "msbuild@6fdc193", + "repo": "msbuild", + "title": "Rationalize Microsoft.Build.Framework string resources and add ThrowIf* polyfills for exceptions", + "url": "https://github.com/dotnet/msbuild/pull/13276", + "commit": "dotnet@8103dd0", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@6fdc193" + }, + { + "id": "msbuild@9cc6c63", + "repo": "msbuild", + "title": "[IBuildEngine callbacks] Stage 1: Packet infrastructure \u002B IsRunningMultipleNodes", + "url": "https://github.com/dotnet/msbuild/pull/13149", + "commit": "dotnet@8103dd0", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@9cc6c63" + }, + { + "id": "msbuild@1a818e7", + "repo": "msbuild", + "title": "Changewave doc updates", + "url": "https://github.com/dotnet/msbuild/pull/13275", + "commit": "dotnet@8103dd0", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@1a818e7" + }, + { + "id": "msbuild@a2c1035", + "repo": "msbuild", + "title": "Improve crash telemetry: enums, FaultEvent, remove noise, dedup host detection", + "url": "https://github.com/dotnet/msbuild/pull/13289", + "commit": "dotnet@8103dd0", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@a2c1035" + }, + { + "id": "msbuild@b781c76", + "repo": "msbuild", + "title": "[main] Update dependencies from nuget/nuget.client", + "url": "https://github.com/dotnet/msbuild/pull/13279", + "commit": "dotnet@8103dd0", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@b781c76" + }, + { + "id": "msbuild@c48fb46", + "repo": "msbuild", + "title": "Improve cross-platform node discovery for reuse with NodeMode filtering", + "url": "https://github.com/dotnet/msbuild/pull/13256", + "commit": "dotnet@8103dd0", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@c48fb46", + "labels": [ + "User Experience", + "Area: Engine" + ] + }, + { + "id": "msbuild@326f6a7", + "repo": "msbuild", + "title": "Updated common types XSD to remove errors from redefining \u0060Include\u0060 attributes", + "url": "https://github.com/dotnet/msbuild/pull/13284", + "commit": "dotnet@8be2ae1", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@326f6a7" + }, + { + "id": "msbuild@b8f5ea0", + "repo": "msbuild", + "title": "Update VersionPrefix to 18.6.0 \u002B insertion flow", + "url": "https://github.com/dotnet/msbuild/pull/13296", + "commit": "dotnet@8be2ae1", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@b8f5ea0" + }, + { + "id": "msbuild@ab7dbb6", + "repo": "msbuild", + "title": "Log warnings for skipped STR resource keys instead of failing the build", + "url": "https://github.com/dotnet/msbuild/pull/13291", + "commit": "dotnet@8be2ae1", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@ab7dbb6" + }, + { + "id": "msbuild@5ac8ab0", + "repo": "msbuild", + "title": "Isolate MSBuildTaskHost from the rest of MSBuild Codebase", + "url": "https://github.com/dotnet/msbuild/pull/13232", + "commit": "dotnet@8be2ae1", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@5ac8ab0" + }, + { + "id": "msbuild@414f0ac", + "repo": "msbuild", + "title": "Improve error messages when ToolTask overrides exit code 0 to -1 due to logged errors", + "url": "https://github.com/dotnet/msbuild/pull/13303", + "commit": "dotnet@1056a87", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@414f0ac" + }, + { + "id": "msbuild@074bba0", + "repo": "msbuild", + "title": "Migrate Exec task to TaskEnvironment API", + "url": "https://github.com/dotnet/msbuild/pull/13171", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@074bba0" + }, + { + "id": "msbuild@77c8e1f", + "repo": "msbuild", + "title": "Enhance crash telemetry with richer diagnostics and EndBuild hang detection", + "url": "https://github.com/dotnet/msbuild/pull/13304", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@77c8e1f" + }, + { + "id": "msbuild@ec66ab6", + "repo": "msbuild", + "title": "[main] Update dependencies from nuget/nuget.client", + "url": "https://github.com/dotnet/msbuild/pull/13309", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@ec66ab6" + }, + { + "id": "msbuild@7d3313c", + "repo": "msbuild", + "title": "[IBuildEngine callbacks] Stage 2: RequestCores/ReleaseCores", + "url": "https://github.com/dotnet/msbuild/pull/13306", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@7d3313c" + }, + { + "id": "msbuild@ac21192", + "repo": "msbuild", + "title": "Only get command line args names on modern .NET", + "url": "https://github.com/dotnet/msbuild/pull/13314", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@ac21192", + "labels": [ + "Area: Performance" + ] + }, + { + "id": "msbuild@98231a0", + "repo": "msbuild", + "title": "Detect and correct worker node over-provisioning", + "url": "https://github.com/dotnet/msbuild/pull/13220", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@98231a0", + "labels": [ + "User Experience", + "Area: Engine" + ] + }, + { + "id": "msbuild@c8011cb", + "repo": "msbuild", + "title": "Add App Host Support for MSBuild", + "url": "https://github.com/dotnet/msbuild/pull/13175", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@c8011cb" + }, + { + "id": "msbuild@8b542c4", + "repo": "msbuild", + "title": "[main] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/msbuild/pull/13311", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@8b542c4" + }, + { + "id": "msbuild@4b59b45", + "repo": "msbuild", + "title": "Fix ObjectDisposedException in BuildsWhileBuildIsRunningOnServer test", + "url": "https://github.com/dotnet/msbuild/pull/13316", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@4b59b45" + }, + { + "id": "msbuild@9f3a7a5", + "repo": "msbuild", + "title": "Add PoC of pipelines check skill", + "url": "https://github.com/dotnet/msbuild/pull/13242", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@9f3a7a5" + }, + { + "id": "msbuild@3477e49", + "repo": "msbuild", + "title": "Fix CodeSign.MissingSigningCert for xsd/Update-MSBuildXsds.ps1", + "url": "https://github.com/dotnet/msbuild/pull/13320", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@3477e49" + }, + { + "id": "msbuild@b481c50", + "repo": "msbuild", + "title": "Fix task host launch regressions from apphost support", + "url": "https://github.com/dotnet/msbuild/pull/13325", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@b481c50" + }, + { + "id": "msbuild@b93059c", + "repo": "msbuild", + "title": "Enlighten GetFrameworkPath and GetFrameworkSdkPath.", + "url": "https://github.com/dotnet/msbuild/pull/13282", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@b93059c" + }, + { + "id": "msbuild@399d597", + "repo": "msbuild", + "title": "Add VMR codeflow health check to pipelines skill", + "url": "https://github.com/dotnet/msbuild/pull/13326", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@399d597" + }, + { + "id": "msbuild@676f32c", + "repo": "msbuild", + "title": "[main] Update dependencies from dotnet/roslyn", + "url": "https://github.com/dotnet/msbuild/pull/13281", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@676f32c" + }, + { + "id": "msbuild@9d58c2f", + "repo": "msbuild", + "title": "Fix GenerateResource to track all ResXFileRef linked files for incremental builds", + "url": "https://github.com/dotnet/msbuild/pull/13327", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@9d58c2f" + }, + { + "id": "msbuild@0b2773e", + "repo": "msbuild", + "title": "Add escape hatch for not sharing assemblies from tools directory", + "url": "https://github.com/dotnet/msbuild/pull/13305", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@0b2773e" + }, + { + "id": "msbuild@986a951", + "repo": "msbuild", + "title": "Add merge-dependency-updates skill for bot PR triage", + "url": "https://github.com/dotnet/msbuild/pull/13331", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@986a951" + }, + { + "id": "msbuild@6500dd2", + "repo": "msbuild", + "title": "Add diagnostic data to crash/hang telemetry and move null-Project check after RetrieveFromCache", + "url": "https://github.com/dotnet/msbuild/pull/13332", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@6500dd2" + }, + { + "id": "msbuild@bf9f757", + "repo": "msbuild", + "title": "Update remote-host-object.md with SDK .tlb shipping and IDispatch example", + "url": "https://github.com/dotnet/msbuild/pull/13324", + "commit": "dotnet@e311f21", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@bf9f757" + }, + { + "id": "msbuild@fee9971", + "repo": "msbuild", + "title": "[main] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/msbuild/pull/13341", + "commit": "dotnet@e311f21", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@fee9971" + }, + { + "id": "msbuild@0655967", + "repo": "msbuild", + "title": "improve task migration skill", + "url": "https://github.com/dotnet/msbuild/pull/13234", + "commit": "dotnet@e311f21", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@0655967" + }, + { + "id": "msbuild@fd46d4a", + "repo": "msbuild", + "title": "Fix telemetry PII concerns: sanitize exceptions, project paths, and custom names", + "url": "https://github.com/dotnet/msbuild/pull/13344", + "commit": "dotnet@e311f21", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@fd46d4a" + }, + { + "id": "msbuild@ef957b7", + "repo": "msbuild", + "title": "Use .exe.config when loading \u0022as full Framework\u0022", + "url": "https://github.com/dotnet/msbuild/pull/13349", + "commit": "dotnet@e311f21", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@ef957b7" + }, + { + "id": "msbuild@6fa57bb", + "repo": "msbuild", + "title": "Fix RequestCores/ReleaseCores fallback in OOP TaskHost: throw NotImplementedException instead of logging error", + "url": "https://github.com/dotnet/msbuild/pull/13345", + "commit": "dotnet@da71424", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@6fa57bb" + }, + { + "id": "msbuild@e2b57d0", + "repo": "msbuild", + "title": "Fixed indentation for _GetCopyToOutputDirectoryItemsFromTransitiveProjectReferences", + "url": "https://github.com/dotnet/msbuild/pull/13358", + "commit": "dotnet@da71424", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@e2b57d0" + }, + { + "id": "msbuild@6a4c26f", + "repo": "msbuild", + "title": "Fix Unix SessionId in handshake to enable cross-terminal node reuse", + "url": "https://github.com/dotnet/msbuild/pull/13354", + "commit": "dotnet@da71424", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@6a4c26f" + }, + { + "id": "msbuild@7d73e8e", + "repo": "msbuild", + "title": "Revert \u0022Migrate Exec task to TaskEnvironment API\u0022", + "url": "https://github.com/dotnet/msbuild/pull/13367", + "commit": "dotnet@da71424", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@7d73e8e" + }, + { + "id": "msbuild@8cee1da", + "repo": "msbuild", + "title": "Look for apphost when considering node reuse", + "url": "https://github.com/dotnet/msbuild/pull/13368", + "commit": "dotnet@da71424", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@8cee1da" + }, + { + "id": "msbuild@df3c977", + "repo": "msbuild", + "title": "Move lots of shared code to Microsoft.Build.Framework", + "url": "https://github.com/dotnet/msbuild/pull/13364", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@df3c977" + }, + { + "id": "msbuild@aac4696", + "repo": "msbuild", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/msbuild/pull/13353", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@aac4696" + }, + { + "id": "msbuild@5215c7e", + "repo": "msbuild", + "title": "Fix ScheduleTimeRecord.AccumulatedTime hang during solution close", + "url": "https://github.com/dotnet/msbuild/pull/13375", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@5215c7e" + }, + { + "id": "msbuild@4ca2875", + "repo": "msbuild", + "title": "Update runtime package references to 10.0.3", + "url": "https://github.com/dotnet/msbuild/pull/13376", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@4ca2875" + }, + { + "id": "msbuild@337c123", + "repo": "msbuild", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/msbuild/pull/13378", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@337c123" + }, + { + "id": "msbuild@1cbd743", + "repo": "msbuild", + "title": "Fix ProjectImports.zip regression from shared FileUtilities statics", + "url": "https://github.com/dotnet/msbuild/pull/13382", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@1cbd743" + }, + { + "id": "msbuild@1f15113", + "repo": "msbuild", + "title": "Enrich EndBuild hang diagnostics with logging service and submission state", + "url": "https://github.com/dotnet/msbuild/pull/13385", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@1f15113" + }, + { + "id": "msbuild@72d89ab", + "repo": "msbuild", + "title": "Enhance path normalization: add handling for consecutive directory separators", + "url": "https://github.com/dotnet/msbuild/pull/13369", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@72d89ab", + "labels": [ + "regression" + ] + }, + { + "id": "msbuild@f2213b0", + "repo": "msbuild", + "title": "Move task environment drivers to Framework.", + "url": "https://github.com/dotnet/msbuild/pull/13380", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@f2213b0" + }, + { + "id": "msbuild@1688a71", + "repo": "msbuild", + "title": "Update MicrosoftBuildVersion in analyzer template", + "url": "https://github.com/dotnet/msbuild/pull/13298", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@1688a71" + }, + { + "id": "msbuild@0bd8bb3", + "repo": "msbuild", + "title": "Add agentic workflow to auto-close PRs older than 180 days", + "url": "https://github.com/dotnet/msbuild/pull/13400", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@0bd8bb3" + }, + { + "id": "msbuild@52f1e9d", + "repo": "msbuild", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 9434: Build ID 13575337", + "url": "https://github.com/dotnet/msbuild/pull/13394", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@52f1e9d" + }, + { + "id": "msbuild@18baac8", + "repo": "msbuild", + "title": "Respect MSBUILDPRESERVETOOLTEMPFILES in ProcessExit cleanup", + "url": "https://github.com/dotnet/msbuild/pull/13395", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@18baac8" + }, + { + "id": "msbuild@17e89c7", + "repo": "msbuild", + "title": "Fix stale PR workflow: enable close_pull_request tool and add 30\u002B7 day inactivity grace period", + "url": "https://github.com/dotnet/msbuild/pull/13402", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@17e89c7" + }, + { + "id": "msbuild@cb266c7", + "repo": "msbuild", + "title": "Fix RecursiveDir metadata loss in -mt builds (TaskHost boundary only)", + "url": "https://github.com/dotnet/msbuild/pull/13318", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@cb266c7" + }, + { + "id": "msbuild@2a728a3", + "repo": "msbuild", + "title": "Improve logging for AppDomain assembly load tracking", + "url": "https://github.com/dotnet/msbuild/pull/13359", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@2a728a3" + }, + { + "id": "msbuild@32d344d", + "repo": "msbuild", + "title": "Proposal: instructions, skills and review agent", + "url": "https://github.com/dotnet/msbuild/pull/13397", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@32d344d" + }, + { + "id": "msbuild@960ca3c", + "repo": "msbuild", + "title": "Fix System.IO.File/Directory property functions with relative paths in -mt mode", + "url": "https://github.com/dotnet/msbuild/pull/13239", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@960ca3c" + }, + { + "id": "msbuild@6bde8dc", + "repo": "msbuild", + "title": "Add skill for patching VS with build msbuild", + "url": "https://github.com/dotnet/msbuild/pull/13405", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@6bde8dc" + }, + { + "id": "msbuild@8d5ad98", + "repo": "msbuild", + "title": "[main] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/msbuild/pull/13388", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@8d5ad98" + }, + { + "id": "msbuild@673ef31", + "repo": "msbuild", + "title": "Fix macOS symlink handshake mismatch in .NET task host (MSB4216)", + "url": "https://github.com/dotnet/msbuild/pull/13406", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@673ef31" + }, + { + "id": "msbuild@b717f6f", + "repo": "msbuild", + "title": "Pre-size MultiDictionary in CreateEvaluatedIncludeSnapshotIfRequested to avoid resize allocations", + "url": "https://github.com/dotnet/msbuild/pull/13377", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@b717f6f" + }, + { + "id": "msbuild@05668ef", + "repo": "msbuild", + "title": "Remove wrong review instructinons", + "url": "https://github.com/dotnet/msbuild/pull/13414", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@05668ef" + }, + { + "id": "msbuild@82c3923", + "repo": "msbuild", + "title": "Add default fallback TaskEnvironment to all IMultiThreadableTask implementations", + "url": "https://github.com/dotnet/msbuild/pull/13415", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@82c3923" + }, + { + "id": "msbuild@6e04068", + "repo": "msbuild", + "title": "Simplify vs-insertion pipelines: remove obsolete rel/dX.Y branch logic", + "url": "https://github.com/dotnet/msbuild/pull/13409", + "commit": "dotnet@7e7ab8a", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@6e04068" + }, + { + "id": "msbuild@dfe5370", + "repo": "msbuild", + "title": "Fix thread safety issues in WorkerNodeTelemetryData", + "url": "https://github.com/dotnet/msbuild/pull/13413", + "commit": "dotnet@7e7ab8a", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@dfe5370" + }, + { + "id": "msbuild@5071b11", + "repo": "msbuild", + "title": "Skip results transfer in MT mode to fix ResultsNodeId race", + "url": "https://github.com/dotnet/msbuild/pull/13417", + "commit": "dotnet@7e7ab8a", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@5071b11" + }, + { + "id": "msbuild@ec15050", + "repo": "msbuild", + "title": "Move more shared files to a single binary", + "url": "https://github.com/dotnet/msbuild/pull/13370", + "commit": "dotnet@eca1665", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@ec15050" + }, + { + "id": "msbuild@6c499a7", + "repo": "msbuild", + "title": "Fix ToolTask hang when grandchild processes inherit pipe handles", + "url": "https://github.com/dotnet/msbuild/pull/13351", + "commit": "dotnet@eca1665", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@6c499a7" + }, + { + "id": "msbuild@37cc8b7", + "repo": "msbuild", + "title": "Fix ShouldTreatWarningAsError in OOP TaskHost checking wrong collection", + "url": "https://github.com/dotnet/msbuild/pull/13440", + "commit": "dotnet@8cb849f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@37cc8b7" + }, + { + "id": "msbuild@168763b", + "repo": "msbuild", + "title": "Add MSBuild.Benchmarks and greatly improve ItemSpecModifiers and BuiltInMetadata performance", + "url": "https://github.com/dotnet/msbuild/pull/13386", + "commit": "dotnet@8cb849f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@168763b" + }, + { + "id": "msbuild@d84a0dc", + "repo": "msbuild", + "title": "Fix Unix paths normalization in properties in /mt mode.", + "url": "https://github.com/dotnet/msbuild/pull/13439", + "commit": "dotnet@8cb849f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@d84a0dc" + }, + { + "id": "msbuild@1b923e2", + "repo": "msbuild", + "title": "Fix race conditions in AssemblyTaskFactory class.", + "url": "https://github.com/dotnet/msbuild/pull/13422", + "commit": "dotnet@8cb849f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@1b923e2" + }, + { + "id": "msbuild@0f7f8dd", + "repo": "msbuild", + "title": "Allow referencing virtual projects", + "url": "https://github.com/dotnet/msbuild/pull/13389", + "commit": "dotnet@d22e935", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@0f7f8dd" + }, + { + "id": "msbuild@ce6d7a5", + "repo": "msbuild", + "title": "Simplify release, add agent skill to drive release activities", + "url": "https://github.com/dotnet/msbuild/pull/13408", + "commit": "dotnet@02092ee", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@ce6d7a5" + }, + { + "id": "msbuild@5065de5", + "repo": "msbuild", + "title": "Fix TaskHostTask to pass request-level global properties to TaskHost", + "url": "https://github.com/dotnet/msbuild/pull/13443", + "commit": "dotnet@02092ee", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@5065de5" + }, + { + "id": "msbuild@db5eca3", + "repo": "msbuild", + "title": "Fix race condition in LoggingService.ProcessLoggingEvent after shutdown", + "url": "https://github.com/dotnet/msbuild/pull/13450", + "commit": "dotnet@02092ee", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@db5eca3" + }, + { + "id": "msbuild@161d626", + "repo": "msbuild", + "title": "Skip HandleBuildResultAsync when ProjectInstance is not loaded on in-proc node", + "url": "https://github.com/dotnet/msbuild/pull/13445", + "commit": "dotnet@02092ee", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@161d626" + }, + { + "id": "msbuild@ee7d635", + "repo": "msbuild", + "title": "Thread-safe task analyzer (without IL decompiler)", + "url": "https://github.com/dotnet/msbuild/pull/13444", + "commit": "dotnet@02092ee", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@ee7d635" + }, + { + "id": "msbuild@9ff77d7", + "repo": "msbuild", + "title": "Expose public API for TaskEnvironment construction", + "url": "https://github.com/dotnet/msbuild/pull/13383", + "commit": "dotnet@02092ee", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@9ff77d7" + }, + { + "id": "msbuild@fa130f6", + "repo": "msbuild", + "title": "unexclude repositories in -mt validation VMR pipeline", + "url": "https://github.com/dotnet/msbuild/pull/13460", + "commit": "dotnet@02092ee", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@fa130f6" + }, + { + "id": "msbuild@66645d8", + "repo": "msbuild", + "title": "Version bump check fix", + "url": "https://github.com/dotnet/msbuild/pull/13461", + "commit": "dotnet@02092ee", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@66645d8" + }, + { + "id": "msbuild@f851364", + "repo": "msbuild", + "title": "Add ETW events for node launch lifecycle", + "url": "https://github.com/dotnet/msbuild/pull/13459", + "commit": "dotnet@02092ee", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@f851364" + }, + { + "id": "msbuild@4fde89a", + "repo": "msbuild", + "title": "Refactor: use TaskEnvironment public API", + "url": "https://github.com/dotnet/msbuild/pull/13462", + "commit": "dotnet@02092ee", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@4fde89a" + }, + { + "id": "msbuild@8a330c4", + "repo": "msbuild", + "title": "Prefer dotnet MSBuild.dll for out-of-proc worker nodes in CLI scenarios", + "url": "https://github.com/dotnet/msbuild/pull/13452", + "commit": "dotnet@02092ee", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@8a330c4", + "labels": [ + "merge-carefully" + ] + }, + { + "id": "msbuild@d34fb86", + "repo": "msbuild", + "title": "Fix TraceEngine file contention deadlock in multithreaded mode", + "url": "https://github.com/dotnet/msbuild/pull/13446", + "commit": "dotnet@02092ee", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@d34fb86" + }, + { + "id": "msbuild@926e304", + "repo": "msbuild", + "title": "Remove duplicate test cases in MultithreadableTaskAnalyzer", + "url": "https://github.com/dotnet/msbuild/pull/13483", + "commit": "dotnet@02092ee", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@926e304" + }, + { + "id": "nuget-client@88c27a6", + "repo": "nuget-client", + "title": "Resolve dependency graph items reduce allocation size", + "url": "https://github.com/nuget/nuget.client/pull/7174", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@88c27a6", + "labels": [ + "Community" + ] + }, + { + "id": "nuget-client@f826ad4", + "repo": "nuget-client", + "title": "Remove Intent assignment in CopilotRequest", + "url": "https://github.com/nuget/nuget.client/pull/7177", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@f826ad4" + }, + { + "id": "nuget-client@1158132", + "repo": "nuget-client", + "title": "Nullable annotations for most of NuGet.ProjectModel", + "url": "https://github.com/nuget/nuget.client/pull/7172", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@1158132" + }, + { + "id": "nuget-client@d4425db", + "repo": "nuget-client", + "title": "Enabling nullability in NuGet.Packaging - phase 1, models and simple classes", + "url": "https://github.com/nuget/nuget.client/pull/7176", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@d4425db" + }, + { + "id": "nuget-client@c041177", + "repo": "nuget-client", + "title": "Move to manifest based event source", + "url": "https://github.com/nuget/nuget.client/pull/7164", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@c041177" + }, + { + "id": "nuget-client@2ba46c4", + "repo": "nuget-client", + "title": "Remove global.json sdk property", + "url": "https://github.com/nuget/nuget.client/pull/7182", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@2ba46c4" + }, + { + "id": "nuget-client@76b9210", + "repo": "nuget-client", + "title": "Use Themed Context menus and remove custom FontSize converters", + "url": "https://github.com/nuget/nuget.client/pull/7179", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@76b9210" + }, + { + "id": "nuget-client@a561a5b", + "repo": "nuget-client", + "title": "Move all CI to VS stable agent pool", + "url": "https://github.com/nuget/nuget.client/pull/7187", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@a561a5b" + }, + { + "id": "nuget-client@a52c5c1", + "repo": "nuget-client", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 8117: Build ID 13442077", + "url": "https://github.com/nuget/nuget.client/pull/7188", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@a52c5c1" + }, + { + "id": "nuget-client@3534a18", + "repo": "nuget-client", + "title": "Update branding to 7.6", + "url": "https://github.com/nuget/nuget.client/pull/7189", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@3534a18", + "labels": [ + "Engineering" + ] + }, + { + "id": "nuget-client@8a9eabb", + "repo": "nuget-client", + "title": "Normalize line endings in CommandsEventSource.cs", + "url": "https://github.com/nuget/nuget.client/pull/7190", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@8a9eabb", + "labels": [ + "Engineering" + ] + }, + { + "id": "nuget-client@a4675d8", + "repo": "nuget-client", + "title": "Add CI information to User-Agent header", + "url": "https://github.com/nuget/nuget.client/pull/7103", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@a4675d8" + }, + { + "id": "nuget-client@c0c368a", + "repo": "nuget-client", + "title": "Enabling nullability in NuGet.Packaging - Phase 2, declare some interfaces", + "url": "https://github.com/nuget/nuget.client/pull/7178", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@c0c368a" + }, + { + "id": "nuget-client@a3f6e96", + "repo": "nuget-client", + "title": "dotnet package search tests use default width", + "url": "https://github.com/nuget/nuget.client/pull/7171", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@a3f6e96" + }, + { + "id": "nuget-client@8deb76a", + "repo": "nuget-client", + "title": "AOT compatible: set IsAOTcompatible", + "url": "https://github.com/nuget/nuget.client/pull/7152", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@8deb76a" + }, + { + "id": "nuget-client@ab7d0d6", + "repo": "nuget-client", + "title": "Fix \u0060dotnet add package --no-restore\u0060 ignoring Central Package Management", + "url": "https://github.com/nuget/nuget.client/pull/7148", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@ab7d0d6", + "labels": [ + "Community" + ] + }, + { + "id": "nuget-client@a553524", + "repo": "nuget-client", + "title": "Handle missing TargetFramework in nomination", + "url": "https://github.com/nuget/nuget.client/pull/7196", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@a553524" + }, + { + "id": "nuget-client@f424430", + "repo": "nuget-client", + "title": "AOT compatible: make NuGet.ProjectModel AOT compatible", + "url": "https://github.com/nuget/nuget.client/pull/7191", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@f424430" + }, + { + "id": "nuget-client@3619c9f", + "repo": "nuget-client", + "title": "Centralize the definition of MCP Server and Tool names into Constants class", + "url": "https://github.com/nuget/nuget.client/pull/7168", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@3619c9f" + }, + { + "id": "nuget-client@b761098", + "repo": "nuget-client", + "title": "Remove NU5105 suppressions", + "url": "https://github.com/nuget/nuget.client/pull/7202", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@b761098", + "labels": [ + "Engineering" + ] + }, + { + "id": "nuget-client@2233ffd", + "repo": "nuget-client", + "title": "Enabling nullability in NuGet.Packaging - Annotate ContentModel, LicenseMetadata \u0026 some extraction types", + "url": "https://github.com/nuget/nuget.client/pull/7195", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@2233ffd" + }, + { + "id": "nuget-client@e0311a9", + "repo": "nuget-client", + "title": "Show CRL and OCSP URLs in verify output", + "url": "https://github.com/nuget/nuget.client/pull/7181", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@e0311a9" + }, + { + "id": "nuget-client@efaba6a", + "repo": "nuget-client", + "title": "Ensure props/targets imports are generated correctly for aliased projects", + "url": "https://github.com/nuget/nuget.client/pull/7203", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@efaba6a" + }, + { + "id": "nuget-client@60d1ab4", + "repo": "nuget-client", + "title": "AOT compatible: make NuGet.Commandline.Xplat Aot compatible", + "url": "https://github.com/nuget/nuget.client/pull/7207", + "commit": "dotnet@0061c2b", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@60d1ab4" + }, + { + "id": "nuget-client@b8bbe4b", + "repo": "nuget-client", + "title": "List package uses aliases as pivot when printing packages; Fix list package not supporting aliased frameworks", + "url": "https://github.com/nuget/nuget.client/pull/7146", + "commit": "dotnet@435654e", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@b8bbe4b" + }, + { + "id": "nuget-client@1edb104", + "repo": "nuget-client", + "title": "Revert \u0022dotnet nuget why reports requested as well as resolved versions \u0022", + "url": "https://github.com/nuget/nuget.client/pull/7017", + "commit": "dotnet@435654e", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@1edb104", + "labels": [ + "Breaking-change", + "needs-breaking-change-doc-created" + ] + }, + { + "id": "nuget-client@105e1d3", + "repo": "nuget-client", + "title": "Enabling nullability in NuGet.Packaging - Package Reading APIs, PackageArchiveReader and all its interfaces", + "url": "https://github.com/nuget/nuget.client/pull/7210", + "commit": "dotnet@08797ec", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@105e1d3" + }, + { + "id": "nuget-client@21c6db6", + "repo": "nuget-client", + "title": "AOT compatible: enable in NuGet.Protocol", + "url": "https://github.com/nuget/nuget.client/pull/7193", + "commit": "dotnet@08797ec", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@21c6db6" + }, + { + "id": "nuget-client@460c27e", + "repo": "nuget-client", + "title": "Update E2E WebApplication templates to fix tests errors in project creation", + "url": "https://github.com/nuget/nuget.client/pull/7208", + "commit": "dotnet@08797ec", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@460c27e" + }, + { + "id": "nuget-client@be185b4", + "repo": "nuget-client", + "title": "Aot compatible: NuGet.Packaging", + "url": "https://github.com/nuget/nuget.client/pull/7197", + "commit": "dotnet@08797ec", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@be185b4" + }, + { + "id": "nuget-client@7cc1f0a", + "repo": "nuget-client", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 8117: Build ID 13566335", + "url": "https://github.com/nuget/nuget.client/pull/7205", + "commit": "dotnet@08797ec", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@7cc1f0a" + }, + { + "id": "nuget-client@15db684", + "repo": "nuget-client", + "title": "Replace GetInstalled with result.LockFile.Libraries", + "url": "https://github.com/nuget/nuget.client/pull/7216", + "commit": "dotnet@08797ec", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@15db684" + }, + { + "id": "nuget-client@15dafc4", + "repo": "nuget-client", + "title": "Enabling nullability in NuGet.Packaging - Package Creation", + "url": "https://github.com/nuget/nuget.client/pull/7217", + "commit": "dotnet@8abef4f", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@15dafc4" + }, + { + "id": "nuget-client@6840069", + "repo": "nuget-client", + "title": "Get reference nearest disambiguates with an alias too", + "url": "https://github.com/nuget/nuget.client/pull/7218", + "commit": "dotnet@8abef4f", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@6840069" + }, + { + "id": "nuget-client@5e65b14", + "repo": "nuget-client", + "title": "Add --allow-untrusted-root flag to nuget sign and dotnet nuget sign", + "url": "https://github.com/nuget/nuget.client/pull/7201", + "commit": "dotnet@c141211", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@5e65b14", + "labels": [ + "Community" + ] + }, + { + "id": "nuget-client@b5ca9db", + "repo": "nuget-client", + "title": "Use Ordinal string comparison for TargetAlias", + "url": "https://github.com/nuget/nuget.client/pull/7224", + "commit": "dotnet@865f098", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@b5ca9db", + "labels": [ + "Community" + ] + }, + { + "id": "nuget-client@279cdad", + "repo": "nuget-client", + "title": "Pack is aliased framework aware and supports deduplication to allowed aliased projects to be packed.", + "url": "https://github.com/nuget/nuget.client/pull/7227", + "commit": "dotnet@865f098", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@279cdad" + }, + { + "id": "nuget-client@cfc4937", + "repo": "nuget-client", + "title": "NuGet.Packaging nullability - Signing APIs", + "url": "https://github.com/nuget/nuget.client/pull/7219", + "commit": "dotnet@865f098", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@cfc4937" + }, + { + "id": "nuget-client@9b4c24b", + "repo": "nuget-client", + "title": "Fix up null annotations for CertificateChainUtility.GetCertificateChain", + "url": "https://github.com/nuget/nuget.client/pull/7230", + "commit": "dotnet@865f098", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@9b4c24b", + "labels": [ + "Engineering" + ] + }, + { + "id": "nuget-client@4ee8cd0", + "repo": "nuget-client", + "title": "Update NuGet MCP version in Visual Studio to 1.2.3", + "url": "https://github.com/nuget/nuget.client/pull/7232", + "commit": "dotnet@6a24598", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@4ee8cd0" + }, + { + "id": "nuget-client@d070eb6", + "repo": "nuget-client", + "title": "Add support for file-based apps to the XPlat CLI", + "url": "https://github.com/nuget/nuget.client/pull/7169", + "commit": "dotnet@6a24598", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@d070eb6", + "labels": [ + "Community" + ] + }, + { + "id": "nuget-client@9131f71", + "repo": "nuget-client", + "title": "Make virtual project builder parameter required in MSBuildAPIUtility", + "url": "https://github.com/nuget/nuget.client/pull/7233", + "commit": "dotnet@6a24598", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@9131f71", + "labels": [ + "Community", + "Engineering" + ] + }, + { + "id": "nuget-client@45c7a1b", + "repo": "nuget-client", + "title": "Add telemetry for NUGET_USE_LEGACY_ASSET_TARGET_FALLBACK_DEPENDENCY_RESOLUTION", + "url": "https://github.com/nuget/nuget.client/pull/7231", + "commit": "dotnet@6a24598", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@45c7a1b" + }, + { + "id": "nuget-client@6ca6f21", + "repo": "nuget-client", + "title": "Migrate 10 end to end tests to apex", + "url": "https://github.com/nuget/nuget.client/pull/7222", + "commit": "dotnet@6a24598", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@6ca6f21", + "labels": [ + "Engineering" + ] + }, + { + "id": "nuget-client@a690ce6", + "repo": "nuget-client", + "title": "Fix \u0060\u003CNuGetAuditSuppress\u003E\u0060 with packages.config ignoring all suppressions after the first", + "url": "https://github.com/nuget/nuget.client/pull/7234", + "commit": "dotnet@6a24598", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@a690ce6" + }, + { + "id": "nuget-client@13353c2", + "repo": "nuget-client", + "title": "Publish NuGet gate tests to version-based drop path", + "url": "https://github.com/nuget/nuget.client/pull/7236", + "commit": "dotnet@6a24598", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@13353c2" + }, + { + "id": "nuget-client@bff510e", + "repo": "nuget-client", + "title": "Lazily load unconfigured project only when it\u0027s needed", + "url": "https://github.com/nuget/nuget.client/pull/7238", + "commit": "dotnet@6a24598", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@bff510e" + }, + { + "id": "nuget-client@36a9adb", + "repo": "nuget-client", + "title": "Fix NU1107 message guidance for CPVM with transitive pinning", + "url": "https://github.com/nuget/nuget.client/pull/7235", + "commit": "dotnet@6a24598", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@36a9adb" + }, + { + "id": "nuget-client@9065b8f", + "repo": "nuget-client", + "title": "Fix flaky ResolverGather_TimeoutFromPrimaryRepositoryThrows test", + "url": "https://github.com/nuget/nuget.client/pull/7242", + "commit": "dotnet@6a24598", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@9065b8f" + }, + { + "id": "nuget-client@d502477", + "repo": "nuget-client", + "title": "Test: remove elevation requirement from some tests", + "url": "https://github.com/nuget/nuget.client/pull/7241", + "commit": "dotnet@6a24598", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@d502477", + "labels": [ + "Engineering" + ] + }, + { + "id": "nuget-client@b260088", + "repo": "nuget-client", + "title": "Publish NuGet test gate drop from official pipeline", + "url": "https://github.com/nuget/nuget.client/pull/7247", + "commit": "dotnet@ab3420c", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@b260088" + }, + { + "id": "nuget-client@31e377a", + "repo": "nuget-client", + "title": "Block path separators in aliases", + "url": "https://github.com/nuget/nuget.client/pull/7244", + "commit": "dotnet@ab3420c", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@31e377a" + }, + { + "id": "nuget-client@7e74bb1", + "repo": "nuget-client", + "title": "Reduce allocations in LicenseExpressionTokenizer.HasValidCharacters by caching Regex instance", + "url": "https://github.com/nuget/nuget.client/pull/7237", + "commit": "dotnet@ab3420c", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@7e74bb1", + "labels": [ + "Community" + ] + }, + { + "id": "nuget-client@39d7da6", + "repo": "nuget-client", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 8117: Build ID 13675107", + "url": "https://github.com/nuget/nuget.client/pull/7221", + "commit": "dotnet@ca90a9c", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@39d7da6" + }, + { + "id": "nuget-client@779eff1", + "repo": "nuget-client", + "title": "Fix cross product no-op", + "url": "https://github.com/nuget/nuget.client/pull/7250", + "commit": "dotnet@ca90a9c", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@779eff1" + }, + { + "id": "razor@e449a2e", + "repo": "razor", + "title": "Remove the old language server", + "url": "https://github.com/dotnet/razor/pull/12871", + "commit": "dotnet@893864c", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@e449a2e" + }, + { + "id": "razor@10ec240", + "repo": "razor", + "title": "CG: Update .NET SDK from 10.0.102 to 10.0.103", + "url": "https://github.com/dotnet/razor/pull/12881", + "commit": "dotnet@cb76c30", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@10ec240" + }, + { + "id": "razor@7b8f170", + "repo": "razor", + "title": "Remove cohost feature flag and various associated non-cohosting features", + "url": "https://github.com/dotnet/razor/pull/12874", + "commit": "dotnet@cb76c30", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@7b8f170" + }, + { + "id": "razor@bd6b73c", + "repo": "razor", + "title": "Simplify copilot instructions", + "url": "https://github.com/dotnet/razor/pull/12870", + "commit": "dotnet@cb76c30", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@bd6b73c" + }, + { + "id": "razor@2c1a9a0", + "repo": "razor", + "title": "Add troubleshooting section for additional files", + "url": "https://github.com/dotnet/razor/pull/12861", + "commit": "dotnet@cb76c30", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@2c1a9a0" + }, + { + "id": "razor@c5f489f", + "repo": "razor", + "title": "Port a few skills from the runtime repo to here", + "url": "https://github.com/dotnet/razor/pull/12882", + "commit": "dotnet@41b5534", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@c5f489f" + }, + { + "id": "razor@d7e6869", + "repo": "razor", + "title": "Update dependencies from build 305398", + "url": "https://github.com/dotnet/razor/pull/12886", + "commit": "dotnet@41b5534", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@d7e6869" + }, + { + "id": "razor@81bd809", + "repo": "razor", + "title": "Turn integration test retries down to 2", + "url": "https://github.com/dotnet/razor/pull/12884", + "commit": "dotnet@41b5534", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@81bd809" + }, + { + "id": "razor@59e5a0d", + "repo": "razor", + "title": "Remove unused serialization code", + "url": "https://github.com/dotnet/razor/pull/12885", + "commit": "dotnet@41b5534", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@59e5a0d" + }, + { + "id": "razor@616486b", + "repo": "razor", + "title": "Expand docs to cover another property", + "url": "https://github.com/dotnet/razor/pull/12892", + "commit": "dotnet@41b5534", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@616486b" + }, + { + "id": "razor@afc2753", + "repo": "razor", + "title": "Treat unmapped directive spans as Razor for code actions", + "url": "https://github.com/dotnet/razor/pull/12893", + "commit": "dotnet@41b5534", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@afc2753" + }, + { + "id": "razor@c3788ee", + "repo": "razor", + "title": "[main] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/razor/pull/12887", + "commit": "dotnet@5ff448a", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@c3788ee", + "labels": [ + "area-infrastructure", + "type-dependency update :arrow_up_small:" + ] + }, + { + "id": "razor@4d608b8", + "repo": "razor", + "title": "Try to fix build clashes", + "url": "https://github.com/dotnet/razor/pull/12894", + "commit": "dotnet@5ff448a", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@4d608b8" + }, + { + "id": "razor@bad1bd6", + "repo": "razor", + "title": "Update formatting docs and error to hopefully get logs front loaded", + "url": "https://github.com/dotnet/razor/pull/12896", + "commit": "dotnet@5ff448a", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@bad1bd6" + }, + { + "id": "razor@c4c12a2", + "repo": "razor", + "title": "Centralize how we handle C# using directive edits", + "url": "https://github.com/dotnet/razor/pull/12895", + "commit": "dotnet@5ff448a", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@c4c12a2" + }, + { + "id": "razor@640fe55", + "repo": "razor", + "title": "Update dependencies from https://github.com/dotnet/arcade build 20260314.1", + "url": "https://github.com/dotnet/razor/pull/12899", + "commit": "dotnet@0088929", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@640fe55", + "labels": [ + "area-infrastructure", + "type-dependency update :arrow_up_small:" + ] + }, + { + "id": "razor@f64530d", + "repo": "razor", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 262: Build ID 2928257", + "url": "https://github.com/dotnet/razor/pull/12905", + "commit": "dotnet@0088929", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@f64530d" + }, + { + "id": "razor@78e7891", + "repo": "razor", + "title": "MSBuild anti-pattern cleanup: quote conditions, add PrivateAssets, remove dead code", + "url": "https://github.com/dotnet/razor/pull/12907", + "commit": "dotnet@0088929", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@78e7891" + }, + { + "id": "razor@00b8803", + "repo": "razor", + "title": "Hopefully bring stability to completion integration tests", + "url": "https://github.com/dotnet/razor/pull/12908", + "commit": "dotnet@b9fcd94", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@00b8803" + }, + { + "id": "razor@0e1af56", + "repo": "razor", + "title": "Fix NRE when remote call fails", + "url": "https://github.com/dotnet/razor/pull/12912", + "commit": "dotnet@b9fcd94", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@0e1af56" + }, + { + "id": "razor@57eaac5", + "repo": "razor", + "title": "Cache base project in source generator tests for ~60% speedup", + "url": "https://github.com/dotnet/razor/pull/12911", + "commit": "dotnet@b9fcd94", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@57eaac5" + }, + { + "id": "razor@dcfc37e", + "repo": "razor", + "title": "Fix block bodied lambda attribute formatting", + "url": "https://github.com/dotnet/razor/pull/12913", + "commit": "dotnet@b9fcd94", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@dcfc37e" + }, + { + "id": "razor@bd9d77d", + "repo": "razor", + "title": "Clean up CollectionExpression and Select combined usage", + "url": "https://github.com/dotnet/razor/pull/12919", + "commit": "dotnet@b9fcd94", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@bd9d77d" + }, + { + "id": "razor@7a25669", + "repo": "razor", + "title": "Add run-toolset-tests skill for ecosystem validation", + "url": "https://github.com/dotnet/razor/pull/12920", + "commit": "dotnet@b9fcd94", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@7a25669" + }, + { + "id": "razor@42fb27d", + "repo": "razor", + "title": "Update dependencies from https://github.com/dotnet/arcade build 20260318.1", + "url": "https://github.com/dotnet/razor/pull/12923", + "commit": "dotnet@b9fcd94", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@42fb27d", + "labels": [ + "area-infrastructure", + "type-dependency update :arrow_up_small:" + ] + }, + { + "id": "razor@07169ff", + "repo": "razor", + "title": "Don\u0027t squiggle unused directives in VS Code", + "url": "https://github.com/dotnet/razor/pull/12932", + "commit": "dotnet@5e22ce0", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@07169ff" + }, + { + "id": "razor@75d8b7d", + "repo": "razor", + "title": "Change service connection", + "url": "https://github.com/dotnet/razor/pull/12931", + "commit": "dotnet@5e22ce0", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@75d8b7d" + }, + { + "id": "razor@15665b9", + "repo": "razor", + "title": "Don\u0027t need node no more", + "url": "https://github.com/dotnet/razor/pull/12937", + "commit": "dotnet@5e22ce0", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@15665b9" + }, + { + "id": "razor@21fccf2", + "repo": "razor", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/razor/pull/12945", + "commit": "dotnet@1948989", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@21fccf2" + }, + { + "id": "razor@9ecf467", + "repo": "razor", + "title": "Add test to validate section brace-on-next-line formatting (issue #10796)", + "url": "https://github.com/dotnet/razor/pull/12947", + "commit": "dotnet@1948989", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@9ecf467" + }, + { + "id": "razor@381882d", + "repo": "razor", + "title": "Add regression test for array initializer indentation inside HTML elements", + "url": "https://github.com/dotnet/razor/pull/12946", + "commit": "dotnet@1948989", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@381882d" + }, + { + "id": "razor@19513d3", + "repo": "razor", + "title": "Fix attribute formatting for short Html tags", + "url": "https://github.com/dotnet/razor/pull/12944", + "commit": "dotnet@1948989", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@19513d3" + }, + { + "id": "razor@e9acb82", + "repo": "razor", + "title": "More completion integration test \u0022fixes\u0022", + "url": "https://github.com/dotnet/razor/pull/12933", + "commit": "dotnet@1948989", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@e9acb82" + }, + { + "id": "razor@d9362b9", + "repo": "razor", + "title": "Fix formatting of script tags that have/are tag helpers", + "url": "https://github.com/dotnet/razor/pull/12922", + "commit": "dotnet@1948989", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@d9362b9" + }, + { + "id": "razor@30f6cf0", + "repo": "razor", + "title": "Remove unused GetOrParseCSharpSyntaxTree helper", + "url": "https://github.com/dotnet/razor/pull/12951", + "commit": "dotnet@be7bfd8", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@30f6cf0" + }, + { + "id": "razor@3c2c573", + "repo": "razor", + "title": "Create an indent cache for formatting", + "url": "https://github.com/dotnet/razor/pull/12950", + "commit": "dotnet@be7bfd8", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@3c2c573" + }, + { + "id": "razor@2b0c51d", + "repo": "razor", + "title": "Enable CFSClean* policies for Razor", + "url": "https://github.com/dotnet/razor/pull/12955", + "commit": "dotnet@be7bfd8", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@2b0c51d" + }, + { + "id": "razor@599013a", + "repo": "razor", + "title": "Handle when there is non-whitespace content after the end of a Razor comment", + "url": "https://github.com/dotnet/razor/pull/12961", + "commit": "dotnet@be7bfd8", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@599013a" + }, + { + "id": "razor@06c797e", + "repo": "razor", + "title": "Remove the UseCache property and old benchmark", + "url": "https://github.com/dotnet/razor/pull/12962", + "commit": "dotnet@be7bfd8", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@06c797e" + }, + { + "id": "razor@1fb1d4b", + "repo": "razor", + "title": "Support Generate Method code action in Razor and C# editors", + "url": "https://github.com/dotnet/razor/pull/12960", + "commit": "dotnet@be7bfd8", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@1fb1d4b" + }, + { + "id": "razor@c5b4ff3", + "repo": "razor", + "title": "Update dependencies from https://github.com/dotnet/arcade build 20260327.7", + "url": "https://github.com/dotnet/razor/pull/12966", + "commit": "dotnet@be7bfd8", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@c5b4ff3", + "labels": [ + "area-infrastructure", + "type-dependency update :arrow_up_small:" + ] + }, + { + "id": "razor@20feb9c", + "repo": "razor", + "title": "Follow ups to Generate Method", + "url": "https://github.com/dotnet/razor/pull/12972", + "commit": "dotnet@be7bfd8", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@20feb9c" + }, + { + "id": "razor@6d1913a", + "repo": "razor", + "title": "Try to fix integration tests take 4", + "url": "https://github.com/dotnet/razor/pull/12978", + "commit": "dotnet@be7bfd8", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@6d1913a" + }, + { + "id": "razor@afb8471", + "repo": "razor", + "title": "Post-snap configuration updates", + "url": "https://github.com/dotnet/razor/pull/12976", + "commit": "dotnet@be7bfd8", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@afb8471" + }, + { + "id": "razor@e626c1b", + "repo": "razor", + "title": "Only have one menu resource provided by the razor package.", + "url": "https://github.com/dotnet/razor/pull/12979", + "commit": "dotnet@be7bfd8", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@e626c1b" + }, + { + "id": "razor@a9bd3f8", + "repo": "razor", + "title": "Consolidate Edit services, and our two \u0022Generate Method\u0022 systems", + "url": "https://github.com/dotnet/razor/pull/12982", + "commit": "dotnet@9aff3e5", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@a9bd3f8" + }, + { + "id": "razor@c22097b", + "repo": "razor", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 262: Build ID 2941801", + "url": "https://github.com/dotnet/razor/pull/12989", + "commit": "dotnet@142cdd5", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@c22097b" + }, + { + "id": "razor@ae3fde0", + "repo": "razor", + "title": "Update dependencies from https://github.com/dotnet/arcade build 20260401.4", + "url": "https://github.com/dotnet/razor/pull/12984", + "commit": "dotnet@142cdd5", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@ae3fde0", + "labels": [ + "area-infrastructure", + "type-dependency update :arrow_up_small:" + ] + }, + { + "id": "razor@0ba060b", + "repo": "razor", + "title": "Initial support for razor isolation files (cs, css, js)", + "url": "https://github.com/dotnet/razor/pull/12981", + "commit": "dotnet@142cdd5", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@0ba060b" + }, + { + "id": "razor@951f8eb", + "repo": "razor", + "title": "Clean up DocumentContext a little", + "url": "https://github.com/dotnet/razor/pull/12990", + "commit": "dotnet@142cdd5", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@951f8eb" + }, + { + "id": "razor@71d8c92", + "repo": "razor", + "title": "Deferred tag helper lowering: separate resolution from lowering phase", + "url": "https://github.com/dotnet/razor/pull/12957", + "commit": "dotnet@142cdd5", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@71d8c92" + }, + { + "id": "razor@d496432", + "repo": "razor", + "title": "Make IntermediateNodeCollection implement IReadOnlyList\u003CIntermediateNode\u003E", + "url": "https://github.com/dotnet/razor/pull/13006", + "commit": "dotnet@142cdd5", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@d496432" + }, + { + "id": "razor@6f57fec", + "repo": "razor", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 262: Build ID 2942737", + "url": "https://github.com/dotnet/razor/pull/12994", + "commit": "dotnet@142cdd5", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@6f57fec" + }, + { + "id": "razor@5fd75b4", + "repo": "razor", + "title": "Disable draft insertions on main after VS snap", + "url": "https://github.com/dotnet/razor/pull/12992", + "commit": "dotnet@142cdd5", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@5fd75b4" + }, + { + "id": "razor@afcf31d", + "repo": "razor", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 262: Build ID 2943270", + "url": "https://github.com/dotnet/razor/pull/13009", + "commit": "dotnet@142cdd5", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@afcf31d" + }, + { + "id": "roslyn@dcc3438", + "repo": "roslyn", + "title": "Update insert.yml to use roslyn-tools for insertions", + "url": "https://github.com/dotnet/roslyn/pull/82615", + "commit": "dotnet@a2179ce", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@dcc3438", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@f4ce901", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82655", + "commit": "dotnet@a2179ce", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@f4ce901", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@2bc2bb6", + "repo": "roslyn", + "title": "Use \u0060FieldTypeEncoder\u0060 API to emit field metadata.", + "url": "https://github.com/dotnet/roslyn/pull/82651", + "commit": "dotnet@a2179ce", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@2bc2bb6", + "labels": [ + "Area-Compilers", + "Community" + ] + }, + { + "id": "roslyn@0d88ffd", + "repo": "roslyn", + "title": "Copy specific skills from the dotnet/runtime repo", + "url": "https://github.com/dotnet/roslyn/pull/82656", + "commit": "dotnet@a2179ce", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@0d88ffd", + "labels": [ + "Area-IDE" + ] + }, + { + "id": "roslyn@07e15c1", + "repo": "roslyn", + "title": "Improve trivia handling in \u0027use as expression\u0027.", + "url": "https://github.com/dotnet/roslyn/pull/82577", + "commit": "dotnet@a2179ce", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@07e15c1", + "labels": [ + "Area-IDE", + "Community", + "VSCode" + ] + }, + { + "id": "roslyn@115a597", + "repo": "roslyn", + "title": "Use a sequence point for custom awaiters with runtime async", + "url": "https://github.com/dotnet/roslyn/pull/82605", + "commit": "dotnet@e959381", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@115a597", + "labels": [ + "Area-Compilers", + "Feature - Runtime Async" + ] + }, + { + "id": "roslyn@e9a5618", + "repo": "roslyn", + "title": "Fix IDE0059 to not flag writes to by-ref parameters or ref locals as redundant", + "url": "https://github.com/dotnet/roslyn/pull/82664", + "commit": "dotnet@e959381", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@e9a5618", + "labels": [ + "VSCode" + ] + }, + { + "id": "roslyn@0a8d4b9", + "repo": "roslyn", + "title": "[main] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/roslyn/pull/82671", + "commit": "dotnet@e959381", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@0a8d4b9", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@170fc84", + "repo": "roslyn", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 327: Build ID 2922671", + "url": "https://github.com/dotnet/roslyn/pull/82676", + "commit": "dotnet@e959381", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@170fc84", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@26be960", + "repo": "roslyn", + "title": "Add a CodeFlow link to new pull requests", + "url": "https://github.com/dotnet/roslyn/pull/82684", + "commit": "dotnet@e959381", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@26be960", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@cb64e68", + "repo": "roslyn", + "title": "Use more informative assert for FBA multi file test", + "url": "https://github.com/dotnet/roslyn/pull/82688", + "commit": "dotnet@e959381", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@cb64e68", + "labels": [ + "VSCode" + ] + }, + { + "id": "roslyn@0b12a91", + "repo": "roslyn", + "title": "Reduce allocations in DocumentAnalysisExecutor ctor", + "url": "https://github.com/dotnet/roslyn/pull/82669", + "commit": "dotnet@e959381", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@0b12a91", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@d4f7c35", + "repo": "roslyn", + "title": "Convert ComputeDocumentDiagnosticsAsync to a static method", + "url": "https://github.com/dotnet/roslyn/pull/82670", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@d4f7c35", + "labels": [ + "Area-Analyzers", + "VSCode" + ] + }, + { + "id": "roslyn@859b23f", + "repo": "roslyn", + "title": "[main] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/roslyn/pull/82695", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@859b23f", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@36c7834", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82699", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@36c7834", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@d70faac", + "repo": "roslyn", + "title": "Fix visiting unreachable \u0060when\u0060 clauses in NullableWalker", + "url": "https://github.com/dotnet/roslyn/pull/82563", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@d70faac", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@06bff44", + "repo": "roslyn", + "title": "Implement SynthesizedBackingFieldSymbolBase.TryGetFirstLocation", + "url": "https://github.com/dotnet/roslyn/pull/82679", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@06bff44", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@46e9530", + "repo": "roslyn", + "title": "Avoid duplicate TFM in Microsoft.CodeAnalysis.ExternalAccess.Razor.Features.csproj", + "url": "https://github.com/dotnet/roslyn/pull/82705", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@46e9530", + "labels": [ + "Area-IDE" + ] + }, + { + "id": "roslyn@ef0c5bb", + "repo": "roslyn", + "title": "Report progress when we\u0027re doing the auto-load of the project", + "url": "https://github.com/dotnet/roslyn/pull/82700", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@ef0c5bb", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@ff1aa5b", + "repo": "roslyn", + "title": "Fix/76886 await nullable value type", + "url": "https://github.com/dotnet/roslyn/pull/82146", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@ff1aa5b", + "labels": [ + "Area-Compilers", + "Community", + "VSCode" + ] + }, + { + "id": "roslyn@6b75273", + "repo": "roslyn", + "title": "Use VS2026 Helix image for Desktop test CI", + "url": "https://github.com/dotnet/roslyn/pull/82720", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@6b75273", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@18f1f01", + "repo": "roslyn", + "title": "Unsafe evolution: add LangVersion error for updated memory safety rules", + "url": "https://github.com/dotnet/roslyn/pull/82687", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@18f1f01", + "labels": [ + "Area-Compilers", + "Feature - Unsafe Evolution" + ] + }, + { + "id": "roslyn@a73833a", + "repo": "roslyn", + "title": "Unsafe evolution: add more tests", + "url": "https://github.com/dotnet/roslyn/pull/82683", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@a73833a", + "labels": [ + "Area-Compilers", + "Test-Gap", + "Feature - Unsafe Evolution" + ] + }, + { + "id": "roslyn@836ffa6", + "repo": "roslyn", + "title": "Unsafe evolution: handle \u0060new()\u0060 constraint", + "url": "https://github.com/dotnet/roslyn/pull/82647", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@836ffa6", + "labels": [ + "Area-Compilers", + "Feature - Unsafe Evolution" + ] + }, + { + "id": "roslyn@ea63049", + "repo": "roslyn", + "title": "Cache diagnostics for method body compilation.", + "url": "https://github.com/dotnet/roslyn/pull/82667", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@ea63049", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@5128876", + "repo": "roslyn", + "title": "Remove the support for server-created pipes", + "url": "https://github.com/dotnet/roslyn/pull/82715", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@5128876", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@38c1d17", + "repo": "roslyn", + "title": "Use NamedPipeUtil to create named pipes in interactive host", + "url": "https://github.com/dotnet/roslyn/pull/82728", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@38c1d17", + "labels": [ + "Area-Interactive" + ] + }, + { + "id": "roslyn@f6f8bd5", + "repo": "roslyn", + "title": "Proposal Adjuster - Keep line endings in line with original source text", + "url": "https://github.com/dotnet/roslyn/pull/82611", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@f6f8bd5", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@30c9b18", + "repo": "roslyn", + "title": "Update AutoLoad so LSP can read defaultSolution from .vscode/settings.json", + "url": "https://github.com/dotnet/roslyn/pull/82690", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@30c9b18", + "labels": [ + "Area-Infrastructure", + "VSCode" + ] + }, + { + "id": "roslyn@d9ab6fd", + "repo": "roslyn", + "title": "Create a builder for AnalyzerActions", + "url": "https://github.com/dotnet/roslyn/pull/82682", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@d9ab6fd", + "labels": [ + "Area-Analyzers" + ] + }, + { + "id": "roslyn@f881263", + "repo": "roslyn", + "title": "Reduce allocations in GetEscapedMetadataName", + "url": "https://github.com/dotnet/roslyn/pull/82716", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@f881263", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@28bd949", + "repo": "roslyn", + "title": "Use VS2026 for building integration tests", + "url": "https://github.com/dotnet/roslyn/pull/82740", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@28bd949", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@822aba7", + "repo": "roslyn", + "title": "Avoid flaky \u0022rules missing documentation\u0022 check due to rate limiting", + "url": "https://github.com/dotnet/roslyn/pull/82745", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@822aba7" + }, + { + "id": "roslyn@d05575c", + "repo": "roslyn", + "title": "Clean up menu handler registration", + "url": "https://github.com/dotnet/roslyn/pull/82554", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@d05575c", + "labels": [ + "Area-IDE" + ] + }, + { + "id": "roslyn@a8d3977", + "repo": "roslyn", + "title": "Exclude implement interface/abstract member fixes from code cleanup", + "url": "https://github.com/dotnet/roslyn/pull/82703", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@a8d3977", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@1f1d220", + "repo": "roslyn", + "title": "Update titlePrefix parameter in PR validation", + "url": "https://github.com/dotnet/roslyn/pull/82753", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@1f1d220", + "labels": [ + "Area-IDE" + ] + }, + { + "id": "roslyn@db4a70a", + "repo": "roslyn", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 327: Build ID 2926188", + "url": "https://github.com/dotnet/roslyn/pull/82751", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@db4a70a", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@f808321", + "repo": "roslyn", + "title": "Reduce allocations in normal elfie usage", + "url": "https://github.com/dotnet/roslyn/pull/82743", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@f808321", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@d8168bc", + "repo": "roslyn", + "title": "[main] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/roslyn/pull/82766", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@d8168bc", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@de6d596", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82760", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@de6d596", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@c3de0e6", + "repo": "roslyn", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 327: Build ID 2926848", + "url": "https://github.com/dotnet/roslyn/pull/82772", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@c3de0e6", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@60ccee8", + "repo": "roslyn", + "title": "Fix small LookupResult pooling leak in NameofBinder.LookupSymbolsInSingleBinder", + "url": "https://github.com/dotnet/roslyn/pull/82764", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@60ccee8", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@781516d", + "repo": "roslyn", + "title": "Update build pool name in PR-Val pipeline", + "url": "https://github.com/dotnet/roslyn/pull/82778", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@781516d" + }, + { + "id": "roslyn@1538767", + "repo": "roslyn", + "title": "Reduce allocations in GreenNode.To(Full)String", + "url": "https://github.com/dotnet/roslyn/pull/82718", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@1538767", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@9788e10", + "repo": "roslyn", + "title": "[main] Update dependencies from dotnet/roslyn", + "url": "https://github.com/dotnet/roslyn/pull/82783", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@9788e10", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@489667e", + "repo": "roslyn", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 327: Build ID 2927614", + "url": "https://github.com/dotnet/roslyn/pull/82774", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@489667e", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@73136ae", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82785", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@73136ae", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@20ee1e9", + "repo": "roslyn", + "title": "Fix another RuntimeAsync NRE with hoisted methods", + "url": "https://github.com/dotnet/roslyn/pull/82624", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@20ee1e9", + "labels": [ + "Area-Compilers", + "Feature - Runtime Async" + ] + }, + { + "id": "roslyn@28d629d", + "repo": "roslyn", + "title": "[Hot Reload] Include exception details in internal error message", + "url": "https://github.com/dotnet/roslyn/pull/82732", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@28d629d", + "labels": [ + "Area-Interactive", + "VSCode" + ] + }, + { + "id": "roslyn@947ca38", + "repo": "roslyn", + "title": "Fix \u0060CSharpSimplifyPropertyAccessorDiagnosticAnalyzer\u0060", + "url": "https://github.com/dotnet/roslyn/pull/82776", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@947ca38", + "labels": [ + "Area-Analyzers", + "Community", + "VSCode" + ] + }, + { + "id": "roslyn@915f7a6", + "repo": "roslyn", + "title": "Allow running roslyn insert tool on newer runtime", + "url": "https://github.com/dotnet/roslyn/pull/82796", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@915f7a6", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@d2d357d", + "repo": "roslyn", + "title": "Reduce allocations in TextBufferFactoryCloneService.Clone", + "url": "https://github.com/dotnet/roslyn/pull/82777", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@d2d357d", + "labels": [ + "Area-IDE" + ] + }, + { + "id": "roslyn@491aa49", + "repo": "roslyn", + "title": "Small optimization reducing repeated int.ToString calls in completion", + "url": "https://github.com/dotnet/roslyn/pull/82765", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@491aa49", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@1ea3352", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82801", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@1ea3352", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@eb56329", + "repo": "roslyn", + "title": "Add componentBuildProjectName to PR validation configuration", + "url": "https://github.com/dotnet/roslyn/pull/82803", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@eb56329", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@7467800", + "repo": "roslyn", + "title": "Unsafe evolution: add warning for \u0060unsafe\u0060 delegates", + "url": "https://github.com/dotnet/roslyn/pull/82730", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@7467800", + "labels": [ + "Area-Compilers", + "Feature - Unsafe Evolution" + ] + }, + { + "id": "roslyn@b1eaa1a", + "repo": "roslyn", + "title": "[EnC] Fix reporting emit errors in telemetry", + "url": "https://github.com/dotnet/roslyn/pull/82805", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@b1eaa1a", + "labels": [ + "Area-Interactive", + "VSCode" + ] + }, + { + "id": "roslyn@b8e6208", + "repo": "roslyn", + "title": "Add documentation for roslyn-language-server Copilot plugin", + "url": "https://github.com/dotnet/roslyn/pull/82797", + "commit": "dotnet@281ef27", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@b8e6208", + "labels": [ + "Documentation" + ] + }, + { + "id": "roslyn@1f7fae4", + "repo": "roslyn", + "title": "Reduce allocations in TextDocumentStates.AddRange", + "url": "https://github.com/dotnet/roslyn/pull/82806", + "commit": "dotnet@281ef27", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@1f7fae4", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@9bd232f", + "repo": "roslyn", + "title": "Implement LSP \u0060textDocument/selectionRange\u0060 handler", + "url": "https://github.com/dotnet/roslyn/pull/82809", + "commit": "dotnet@281ef27", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@9bd232f", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@8007c87", + "repo": "roslyn", + "title": "Include \u0060[RequiresUnsafe]\u0060 in PublicAPI signatures", + "url": "https://github.com/dotnet/roslyn/pull/82731", + "commit": "dotnet@281ef27", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@8007c87", + "labels": [ + "Area-Analyzers", + "Feature - Unsafe Evolution" + ] + }, + { + "id": "roslyn@02833a6", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82812", + "commit": "dotnet@281ef27", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@02833a6", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@06a735c", + "repo": "roslyn", + "title": "Simplifying internal structure and logic for the SyntaxNodeCache", + "url": "https://github.com/dotnet/roslyn/pull/80825", + "commit": "dotnet@281ef27", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@06a735c", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@3f4c548", + "repo": "roslyn", + "title": "[main] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/roslyn/pull/82841", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@3f4c548", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@787432e", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82847", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@787432e", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@611c993", + "repo": "roslyn", + "title": "Add user name to PR validation titles", + "url": "https://github.com/dotnet/roslyn/pull/82839", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@611c993", + "labels": [ + "Area-IDE" + ] + }, + { + "id": "roslyn@e5de3cd", + "repo": "roslyn", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 327: Build ID 2930317", + "url": "https://github.com/dotnet/roslyn/pull/82848", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@e5de3cd", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@79038db", + "repo": "roslyn", + "title": "Skip building test projects in official builds", + "url": "https://github.com/dotnet/roslyn/pull/82818", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@79038db", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@7e25adf", + "repo": "roslyn", + "title": "Use correct length for Slice in object initializer", + "url": "https://github.com/dotnet/roslyn/pull/82794", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@7e25adf", + "labels": [ + "Area-Compilers", + "Feature - Range" + ] + }, + { + "id": "roslyn@7f59aed", + "repo": "roslyn", + "title": "Refactor fbp workspace management", + "url": "https://github.com/dotnet/roslyn/pull/82509", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@7f59aed", + "labels": [ + "Area-Infrastructure", + "VSCode" + ] + }, + { + "id": "roslyn@8b8aebd", + "repo": "roslyn", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 327: Build ID 2931040", + "url": "https://github.com/dotnet/roslyn/pull/82858", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@8b8aebd", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@373490c", + "repo": "roslyn", + "title": "Optimize codegen for slicing to end", + "url": "https://github.com/dotnet/roslyn/pull/82729", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@373490c", + "labels": [ + "Area-Compilers", + "Code Gen Quality" + ] + }, + { + "id": "roslyn@bb74f15", + "repo": "roslyn", + "title": "Implement csproj-in-cone check for file-based app heuristic detection", + "url": "https://github.com/dotnet/roslyn/pull/82633", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@bb74f15", + "labels": [ + "Area-Infrastructure", + "VSCode" + ] + }, + { + "id": "roslyn@5d06c25", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82860", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@5d06c25", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@ebc4231", + "repo": "roslyn", + "title": "Remove logging from CanonicalMiscellaneousFilesProjectProvider", + "url": "https://github.com/dotnet/roslyn/pull/82861", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@ebc4231", + "labels": [ + "Area-Infrastructure", + "VSCode" + ] + }, + { + "id": "roslyn@c2a993b", + "repo": "roslyn", + "title": "Unsafe evolution: update RequiresUnsafeAttribute namespace", + "url": "https://github.com/dotnet/roslyn/pull/82813", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@c2a993b", + "labels": [ + "Area-Compilers", + "Feature - Unsafe Evolution" + ] + }, + { + "id": "roslyn@0376bcd", + "repo": "roslyn", + "title": "Fix bug in the remote the dart pipeline pulls from", + "url": "https://github.com/dotnet/roslyn/pull/82873", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@0376bcd", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@909ec10", + "repo": "roslyn", + "title": "Update issue template URLs for CAxxxx rules", + "url": "https://github.com/dotnet/roslyn/pull/82872", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@909ec10", + "labels": [ + "Area-IDE" + ] + }, + { + "id": "roslyn@a1696dd", + "repo": "roslyn", + "title": "Exclude Replay tool from official builds", + "url": "https://github.com/dotnet/roslyn/pull/82866", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@a1696dd", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@bf28202", + "repo": "roslyn", + "title": "Fix git pull failure in PR validation setup script", + "url": "https://github.com/dotnet/roslyn/pull/82880", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@bf28202", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@9ed174d", + "repo": "roslyn", + "title": "Put binder for object initializers in the binder map", + "url": "https://github.com/dotnet/roslyn/pull/82543", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@9ed174d", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@216a7f2", + "repo": "roslyn", + "title": "Enable CFSClean* policies for dotnet-roslyn-official pipeline (main)", + "url": "https://github.com/dotnet/roslyn/pull/82820", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@216a7f2", + "labels": [ + "Area-IDE" + ] + }, + { + "id": "roslyn@70ce379", + "repo": "roslyn", + "title": "Adjust preconditions in CsprojInConeChecker", + "url": "https://github.com/dotnet/roslyn/pull/82877", + "commit": "dotnet@15791d9", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@70ce379", + "labels": [ + "Area-Infrastructure", + "VSCode" + ] + }, + { + "id": "roslyn@af65eb7", + "repo": "roslyn", + "title": "Reduce allocations in MergedNamespaceDeclaration.addNamespacesToChildren", + "url": "https://github.com/dotnet/roslyn/pull/82819", + "commit": "dotnet@15791d9", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@af65eb7", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@d83e85b", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82886", + "commit": "dotnet@15791d9", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@d83e85b", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@2742db7", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82888", + "commit": "dotnet@15791d9", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@2742db7", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@6e85e46", + "repo": "roslyn", + "title": "Optimize annotation search to avoid unnecessary red node creation", + "url": "https://github.com/dotnet/roslyn/pull/82816", + "commit": "dotnet@15791d9", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@6e85e46", + "labels": [ + "Area-Compilers", + "Community", + "VSCode" + ] + }, + { + "id": "roslyn@3af8cfc", + "repo": "roslyn", + "title": "[main] Update dependencies from dotnet/roslyn", + "url": "https://github.com/dotnet/roslyn/pull/82898", + "commit": "dotnet@15791d9", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@3af8cfc", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@e5041dd", + "repo": "roslyn", + "title": "Fix InvalidCastException in split-if refactoring for top-level statements", + "url": "https://github.com/dotnet/roslyn/pull/82807", + "commit": "dotnet@15791d9", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@e5041dd", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@bd2083f", + "repo": "roslyn", + "title": "DeterministicKeyBuilder: deduplicate ParseOptions across SyntaxTrees", + "url": "https://github.com/dotnet/roslyn/pull/82895", + "commit": "dotnet@15791d9", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@bd2083f", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@12c7798", + "repo": "roslyn", + "title": "Make the fetch of the VisualStudioWorkspace lazy in ObjectBrowser", + "url": "https://github.com/dotnet/roslyn/pull/82883", + "commit": "dotnet@905a186", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@12c7798", + "labels": [ + "Area-IDE" + ] + }, + { + "id": "roslyn@3ff19bf", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82908", + "commit": "dotnet@905a186", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@3ff19bf", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@e794aa9", + "repo": "roslyn", + "title": "Add missing buildQueueName parameter to scouting pipeline", + "url": "https://github.com/dotnet/roslyn/pull/82901", + "commit": "dotnet@905a186", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@e794aa9", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@ce4f889", + "repo": "roslyn", + "title": "Fix handling of added import trivia", + "url": "https://github.com/dotnet/roslyn/pull/82788", + "commit": "dotnet@905a186", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@ce4f889", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@287981c", + "repo": "roslyn", + "title": "Modify SyntaxNode trivia search/walk methods to utilize green node checks", + "url": "https://github.com/dotnet/roslyn/pull/82893", + "commit": "dotnet@905a186", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@287981c", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@9a06091", + "repo": "roslyn", + "title": "Update Microsoft.Bcl.Memory used by Basic.CompilerLog.Util to a non-vulnerable version", + "url": "https://github.com/dotnet/roslyn/pull/82817", + "commit": "dotnet@905a186", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@9a06091", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@3d3a43b", + "repo": "roslyn", + "title": "Update status of \u0027Unsafe evolution\u0027 feature", + "url": "https://github.com/dotnet/roslyn/pull/82910", + "commit": "dotnet@905a186", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@3d3a43b", + "labels": [ + "Area-Compilers", + "Documentation", + "Feature - Unsafe Evolution" + ] + }, + { + "id": "roslyn@e8a04ee", + "repo": "roslyn", + "title": "Add completion provider for \u0060#:include\u0060 directives", + "url": "https://github.com/dotnet/roslyn/pull/82625", + "commit": "dotnet@9886077", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@e8a04ee", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@7762e77", + "repo": "roslyn", + "title": "Add IAsyncDisposable support to IWorkspaceProjectContext", + "url": "https://github.com/dotnet/roslyn/pull/82907", + "commit": "dotnet@9886077", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@7762e77", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@d3724ec", + "repo": "roslyn", + "title": "Update PublicApi changes in 5.3", + "url": "https://github.com/dotnet/roslyn/pull/82904", + "commit": "dotnet@9886077", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@d3724ec", + "labels": [ + "Area-Compilers", + "Needs API Review" + ] + }, + { + "id": "roslyn@f3b5991", + "repo": "roslyn", + "title": "Add regex search support to NavigateTo", + "url": "https://github.com/dotnet/roslyn/pull/82706", + "commit": "dotnet@9886077", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@f3b5991", + "labels": [ + "Area-IDE", + "Community", + "VSCode" + ] + }, + { + "id": "roslyn@1ba62c4", + "repo": "roslyn", + "title": "Add support for skipping analyzing banned API analysis in generated files", + "url": "https://github.com/dotnet/roslyn/pull/82713", + "commit": "dotnet@9886077", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@1ba62c4", + "labels": [ + "Area-Analyzers", + "VSCode" + ] + }, + { + "id": "roslyn@d3fa672", + "repo": "roslyn", + "title": "Embed AnalyzerConfigFiles in binlog", + "url": "https://github.com/dotnet/roslyn/pull/82741", + "commit": "dotnet@9886077", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@d3fa672", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@5f04355", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82925", + "commit": "dotnet@9886077", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@5f04355", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@89a024e", + "repo": "roslyn", + "title": "Change service connection", + "url": "https://github.com/dotnet/roslyn/pull/82856", + "commit": "dotnet@9886077", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@89a024e", + "labels": [ + "Area-Infrastructure", + "Community" + ] + }, + { + "id": "roslyn@675bbbd", + "repo": "roslyn", + "title": "Improve classification of file-based app directives", + "url": "https://github.com/dotnet/roslyn/pull/82627", + "commit": "dotnet@9886077", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@675bbbd", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@a13c229", + "repo": "roslyn", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 327: Build ID 2935907", + "url": "https://github.com/dotnet/roslyn/pull/82940", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@a13c229", + "labels": [ + "Area-IDE" + ] + }, + { + "id": "roslyn@8ebf7d5", + "repo": "roslyn", + "title": "Only cache diagnostics for legacy projects", + "url": "https://github.com/dotnet/roslyn/pull/82643", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@8ebf7d5", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@c8f805e", + "repo": "roslyn", + "title": "Ensure we properly dispose our loggers during MSBuildWorkspace tests", + "url": "https://github.com/dotnet/roslyn/pull/82942", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@c8f805e", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@9636481", + "repo": "roslyn", + "title": "Add tests for inline regex options in conditional expression branches", + "url": "https://github.com/dotnet/roslyn/pull/82834", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@9636481", + "labels": [ + "Area-IDE", + "Community" + ] + }, + { + "id": "roslyn@c43cd69", + "repo": "roslyn", + "title": "Fix issues with reentrancy due to pumping in lock acquisition", + "url": "https://github.com/dotnet/roslyn/pull/82522", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@c43cd69" + }, + { + "id": "roslyn@439635a", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82959", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@439635a", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@9bfaa97", + "repo": "roslyn", + "title": "Thread cancellation more deeply into ProjectSystemProjectFactory.Create", + "url": "https://github.com/dotnet/roslyn/pull/82922", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@9bfaa97", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@e94e90e", + "repo": "roslyn", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 327: Build ID 2937106", + "url": "https://github.com/dotnet/roslyn/pull/82952", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@e94e90e", + "labels": [ + "Area-IDE" + ] + }, + { + "id": "roslyn@a4627ec", + "repo": "roslyn", + "title": "Navigate to position instead of span for Go to Implementation", + "url": "https://github.com/dotnet/roslyn/pull/82906", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@a4627ec", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@00f4340", + "repo": "roslyn", + "title": "Fix structure guideline anchor for initializer expressions with multi-line argument lists", + "url": "https://github.com/dotnet/roslyn/pull/82946", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@00f4340", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@d6e77ba", + "repo": "roslyn", + "title": "Update codespaces definitions", + "url": "https://github.com/dotnet/roslyn/pull/82963", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@d6e77ba", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@e6ea27b", + "repo": "roslyn", + "title": "Update CCA", + "url": "https://github.com/dotnet/roslyn/pull/82965", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@e6ea27b" + }, + { + "id": "roslyn@849bed6", + "repo": "roslyn", + "title": "Handle misc project having an AdditionalDocument and not a Document", + "url": "https://github.com/dotnet/roslyn/pull/82956", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@849bed6", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@1068905", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82972", + "commit": "dotnet@3b3d683", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@1068905", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@68d99b2", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82990", + "commit": "dotnet@3b3d683", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@68d99b2", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@0b95158", + "repo": "roslyn", + "title": "Post-snap configuration updates", + "url": "https://github.com/dotnet/roslyn/pull/82984", + "commit": "dotnet@3b3d683", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@0b95158", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@750f95c", + "repo": "roslyn", + "title": "[main] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/roslyn/pull/82967", + "commit": "dotnet@3b3d683", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@750f95c", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@abacf67", + "repo": "roslyn", + "title": "Move CallHierarchy logic to the Features layer", + "url": "https://github.com/dotnet/roslyn/pull/82864", + "commit": "dotnet@3b3d683", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@abacf67", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@f2bb266", + "repo": "roslyn", + "title": "[Hot Reload] Unify ManagedHotReloadLanguageService across DevKit and VS", + "url": "https://github.com/dotnet/roslyn/pull/82905", + "commit": "dotnet@3b3d683", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@f2bb266", + "labels": [ + "Area-Interactive", + "VSCode" + ] + }, + { + "id": "roslyn@c208079", + "repo": "roslyn", + "title": "Correct arrow direction in project layering diagram", + "url": "https://github.com/dotnet/roslyn/pull/83004", + "commit": "dotnet@3b3d683", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@c208079" + }, + { + "id": "roslyn@ebe25bb", + "repo": "roslyn", + "title": "Improve Copilot instruction files and extract analyzer/codefix skill", + "url": "https://github.com/dotnet/roslyn/pull/82937", + "commit": "dotnet@3b3d683", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@ebe25bb" + }, + { + "id": "roslyn@83c179c", + "repo": "roslyn", + "title": "Add LSP CallHierarchy support", + "url": "https://github.com/dotnet/roslyn/pull/82865", + "commit": "dotnet@3b3d683", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@83c179c", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@f839a71", + "repo": "roslyn", + "title": "Switch Unix builds to Roslyn.slnx and drive test platform selection via TFM", + "url": "https://github.com/dotnet/roslyn/pull/82989", + "commit": "dotnet@53ede2a", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@f839a71", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@0ce7508", + "repo": "roslyn", + "title": "Don\u0027t format plain blocks as member declaration blocks in top level code", + "url": "https://github.com/dotnet/roslyn/pull/82976", + "commit": "dotnet@53ede2a", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@0ce7508", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@b230b1d", + "repo": "roslyn", + "title": "Move inheritance margin logic to a features service", + "url": "https://github.com/dotnet/roslyn/pull/83001", + "commit": "dotnet@53ede2a", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@b230b1d", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@f1f8682", + "repo": "roslyn", + "title": "[main] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/roslyn/pull/83020", + "commit": "dotnet@53ede2a", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@f1f8682", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@1ce811b", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/83027", + "commit": "dotnet@53ede2a", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@1ce811b", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "runtime@1c7b5c4", + "repo": "runtime", + "title": "Re-enable SslStreamTlsResumeTests.ClientDisableTlsResume_Succeeds", + "url": "https://github.com/dotnet/runtime/pull/124463", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1c7b5c4", + "labels": [ + "area-System.Net.Security" + ] + }, + { + "id": "runtime@9268ae6", + "repo": "runtime", + "title": "Add default value when FeatureDynamicCodeCompiled is undefined", + "url": "https://github.com/dotnet/runtime/pull/124476", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9268ae6", + "labels": [ + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@e399e13", + "repo": "runtime", + "title": "Build zstd with \u0060/source-charset:utf-8\u0060 option", + "url": "https://github.com/dotnet/runtime/pull/124475", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e399e13", + "labels": [ + "area-System.IO.Compression", + "community-contribution" + ] + }, + { + "id": "runtime@868a890", + "repo": "runtime", + "title": "Use IndexOfAny/SearchValues in more places around Uri", + "url": "https://github.com/dotnet/runtime/pull/124433", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@868a890", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@35ad59d", + "repo": "runtime", + "title": "[HTTP] Fix HttpListener tests blocking xunit workers", + "url": "https://github.com/dotnet/runtime/pull/21870", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@35ad59d" + }, + { + "id": "runtime@11edfaf", + "repo": "runtime", + "title": "Add InstructionSet_VectorT for ARM64", + "url": "https://github.com/dotnet/runtime/pull/123992", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@11edfaf", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@dad8dcc", + "repo": "runtime", + "title": "Rename SVE2 AddSaturate signed/unsigned addend API", + "url": "https://github.com/dotnet/runtime/pull/122283", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@dad8dcc", + "labels": [ + "area-System.Runtime.Intrinsics", + "community-contribution" + ] + }, + { + "id": "runtime@0928e2d", + "repo": "runtime", + "title": "Implement SVE2 non-temporal scatter stores", + "url": "https://github.com/dotnet/runtime/pull/123892", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0928e2d", + "labels": [ + "area-System.Runtime.Intrinsics", + "community-contribution" + ] + }, + { + "id": "runtime@766f6f1", + "repo": "runtime", + "title": "[browser] Emit symbols in WasmSDK", + "url": "https://github.com/dotnet/runtime/pull/124500", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@766f6f1", + "labels": [ + "arch-wasm", + "area-Build-mono", + "os-browser" + ] + }, + { + "id": "runtime@7f0095f", + "repo": "runtime", + "title": "[RuntimeAsync] Remove [RequiresPreviewFeatures] on runtime async API", + "url": "https://github.com/dotnet/runtime/pull/124488", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7f0095f", + "labels": [ + "area-VM-coreclr", + "linkable-framework", + "runtime-async" + ] + }, + { + "id": "runtime@54570b5", + "repo": "runtime", + "title": "Extract ManifestBuilder and EventListener", + "url": "https://github.com/dotnet/runtime/pull/124323", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@54570b5", + "labels": [ + "needs-area-label" + ] + }, + { + "id": "runtime@e02e618", + "repo": "runtime", + "title": "[WIP] Fix threshold exceeded exception in HTTP tests", + "url": "https://github.com/dotnet/runtime/pull/124517", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e02e618", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@fd9316c", + "repo": "runtime", + "title": "Remove support for issues.targets", + "url": "https://github.com/dotnet/runtime/pull/123909", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fd9316c", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@1933e44", + "repo": "runtime", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/runtime/pull/124495", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1933e44", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@3fbc6d0", + "repo": "runtime", + "title": "Add null check in LCGMethodResolver::GetManagedResolver", + "url": "https://github.com/dotnet/runtime/pull/124457", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3fbc6d0", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@6f242ac", + "repo": "runtime", + "title": "[RyuJit/WASM] Register allocation for multiply used operands", + "url": "https://github.com/dotnet/runtime/pull/124481", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6f242ac", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@0de478b", + "repo": "runtime", + "title": "Fixed potential integer overflow in coreclr", + "url": "https://github.com/dotnet/runtime/pull/124047", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0de478b", + "labels": [ + "area-GC-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@786c1e3", + "repo": "runtime", + "title": "Fix missing upper-bound guard in LastIndexOf and FindLastIndex", + "url": "https://github.com/dotnet/runtime/pull/124161", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@786c1e3", + "labels": [ + "area-System.Collections", + "community-contribution" + ] + }, + { + "id": "runtime@2ff39b5", + "repo": "runtime", + "title": "\u0060PersistedAssemblyBuilder\u0060: Fix encoding of custom modifiers.", + "url": "https://github.com/dotnet/runtime/pull/123925", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2ff39b5", + "labels": [ + "area-System.Reflection.Emit", + "community-contribution" + ] + }, + { + "id": "runtime@49e6723", + "repo": "runtime", + "title": "[Runtime Async] do not hold to continuation state when completing reusable valuetask sources", + "url": "https://github.com/dotnet/runtime/pull/124491", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@49e6723", + "labels": [ + "area-System.Threading", + "runtime-async" + ] + }, + { + "id": "runtime@bd81308", + "repo": "runtime", + "title": "Convert CustomMarshalerInfo GetInstance to UnmanagedCallersOnly", + "url": "https://github.com/dotnet/runtime/pull/124440", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@bd81308", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@9bfbe13", + "repo": "runtime", + "title": "Add legs to run crossgenned libraries tests with runtime-async enabled", + "url": "https://github.com/dotnet/runtime/pull/124400", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9bfbe13", + "labels": [ + "area-crossgen2-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@d9a0bf4", + "repo": "runtime", + "title": "[Android][NativeAOT] Fix SIGSEGV in RandomNumberGenerator by providing weak JNI_OnLoad symbol", + "url": "https://github.com/dotnet/runtime/pull/123694", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d9a0bf4", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@deb797f", + "repo": "runtime", + "title": "JIT: Check for inline candidates in gtTreeContainsAsyncCall", + "url": "https://github.com/dotnet/runtime/pull/124502", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@deb797f", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@8e6e74e", + "repo": "runtime", + "title": "Remove INodeWithSize interface, use IMAGE_REL_SYMBOL_SIZE relocation, and restructure ModuleInfoRow", + "url": "https://github.com/dotnet/runtime/pull/124202", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8e6e74e", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@efc5e35", + "repo": "runtime", + "title": "Quote a few cmake commands to allow spaces", + "url": "https://github.com/dotnet/runtime/pull/124479", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@efc5e35", + "labels": [ + "area-Infrastructure-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@5c12c98", + "repo": "runtime", + "title": "Add more null checks to request.cpp", + "url": "https://github.com/dotnet/runtime/pull/124451", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5c12c98", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@7c6a676", + "repo": "runtime", + "title": "Fix comment in eng/Versions.props", + "url": "https://github.com/dotnet/runtime/pull/124543", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7c6a676", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@823bec2", + "repo": "runtime", + "title": "Add ProcessStartOptions class with platform-aware path resolution", + "url": "https://github.com/dotnet/runtime/pull/124271", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@823bec2", + "labels": [ + "area-System.Diagnostics.Process" + ] + }, + { + "id": "runtime@6051699", + "repo": "runtime", + "title": "Avoid resolving direct awaits to thunks (IL scanner part)", + "url": "https://github.com/dotnet/runtime/pull/124536", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6051699", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@d29eec6", + "repo": "runtime", + "title": "[mono][interp] Add missing intrinsic for Volatile.ReadBarrier/WriteBarrier", + "url": "https://github.com/dotnet/runtime/pull/124538", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d29eec6", + "labels": [ + "area-Codegen-Interpreter-mono" + ] + }, + { + "id": "runtime@ad38fcd", + "repo": "runtime", + "title": "Revert \u0022Re-enable SslStreamTlsResumeTests.ClientDisableTlsResume_Succeeds\u0022", + "url": "https://github.com/dotnet/runtime/pull/124542", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ad38fcd", + "labels": [ + "area-System.Net.Security" + ] + }, + { + "id": "runtime@5679b73", + "repo": "runtime", + "title": "JIT: Handle LCL_ADDR in TreeLifeUpdater for async liveness", + "url": "https://github.com/dotnet/runtime/pull/124472", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5679b73", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@179f34d", + "repo": "runtime", + "title": "[Android CoreCLR] Log managed callstacks on native crash", + "url": "https://github.com/dotnet/runtime/pull/123824", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@179f34d", + "labels": [ + "area-VM-coreclr", + "os-android" + ] + }, + { + "id": "runtime@f557d6d", + "repo": "runtime", + "title": "Support Profile Optimization for single file deployment", + "url": "https://github.com/dotnet/runtime/pull/124501", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f557d6d", + "labels": [ + "area-VM-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@d69bdbe", + "repo": "runtime", + "title": "Fix Optimization Profile read", + "url": "https://github.com/dotnet/runtime/pull/124497", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d69bdbe", + "labels": [ + "area-VM-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@f68ae3c", + "repo": "runtime", + "title": "[browser] no sockets", + "url": "https://github.com/dotnet/runtime/pull/124347", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f68ae3c", + "labels": [ + "arch-wasm", + "area-System.Net.Sockets", + "os-browser" + ] + }, + { + "id": "runtime@49154df", + "repo": "runtime", + "title": "JIT: Disqualify inlinees using AsyncSuspend intrinsic", + "url": "https://github.com/dotnet/runtime/pull/124503", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@49154df", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@736475c", + "repo": "runtime", + "title": "Add SHA-384 and SHA-512 hash algorithms to metadata spec", + "url": "https://github.com/dotnet/runtime/pull/124573", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@736475c", + "labels": [ + "area-Meta" + ] + }, + { + "id": "runtime@57ff75e", + "repo": "runtime", + "title": "Add a config switch to fully disable hot-reload", + "url": "https://github.com/dotnet/runtime/pull/123744", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@57ff75e", + "labels": [ + "enhancement", + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@1451f24", + "repo": "runtime", + "title": "#124513 - Guard Base64Url.DecodeFromChars against non-ASCII input", + "url": "https://github.com/dotnet/runtime/pull/124540", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1451f24", + "labels": [ + "area-System.Buffers", + "community-contribution" + ] + }, + { + "id": "runtime@5cae5ef", + "repo": "runtime", + "title": "Add ActiveIssue to GetTotalAllocatedBytes test", + "url": "https://github.com/dotnet/runtime/pull/124539", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5cae5ef", + "labels": [ + "area-GC-coreclr" + ] + }, + { + "id": "runtime@eee8b59", + "repo": "runtime", + "title": "Pass EncApproxFieldDescIterator::FixUpEncFields instead of TRUE", + "url": "https://github.com/dotnet/runtime/pull/124554", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@eee8b59", + "labels": [ + "area-VM-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@1774582", + "repo": "runtime", + "title": "Simple ComWrappers APIs", + "url": "https://github.com/dotnet/runtime/pull/120114", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1774582", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@cae181e", + "repo": "runtime", + "title": "Preserve ninja=false via msbuild", + "url": "https://github.com/dotnet/runtime/pull/124562", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cae181e", + "labels": [ + "area-Infrastructure-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@8274262", + "repo": "runtime", + "title": "Handle RFC 6761 special-use domain names in Dns resolution", + "url": "https://github.com/dotnet/runtime/pull/123076", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8274262", + "labels": [ + "area-System.Net", + "community-contribution" + ] + }, + { + "id": "runtime@fbd060d", + "repo": "runtime", + "title": "[maccatalyst][coreclr] Fix native build failure on Xcode 26.2", + "url": "https://github.com/dotnet/runtime/pull/124220", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fbd060d", + "labels": [ + "area-Infrastructure-coreclr", + "os-maccatalyst" + ] + }, + { + "id": "runtime@2af34ab", + "repo": "runtime", + "title": "[ios] HelloiOS - Set RunAOTCompilation only on Mono", + "url": "https://github.com/dotnet/runtime/pull/124265", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2af34ab", + "labels": [ + "documentation", + "os-ios", + "needs-area-label" + ] + }, + { + "id": "runtime@8181c67", + "repo": "runtime", + "title": "Improve test coverage for System.Formats.Tar APIs", + "url": "https://github.com/dotnet/runtime/pull/123989", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8181c67", + "labels": [ + "area-System.Formats.Tar" + ] + }, + { + "id": "runtime@9583f33", + "repo": "runtime", + "title": "[browser][coreCLR] native stack trace symbols", + "url": "https://github.com/dotnet/runtime/pull/124483", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9583f33", + "labels": [ + "arch-wasm", + "area-Host", + "os-browser" + ] + }, + { + "id": "runtime@de80f78", + "repo": "runtime", + "title": "Eliminate redundant bounds checks for arr[^N-1] after arr[^N]", + "url": "https://github.com/dotnet/runtime/pull/124571", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@de80f78", + "labels": [ + "area-CodeGen-coreclr", + "reduce-unsafe" + ] + }, + { + "id": "runtime@b268dec", + "repo": "runtime", + "title": "Fix RangeOps::Multiply to handle dependent ranges", + "url": "https://github.com/dotnet/runtime/pull/124533", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b268dec", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@00e753c", + "repo": "runtime", + "title": "[HTTP] Re-enable Http3 nginx interop test", + "url": "https://github.com/dotnet/runtime/pull/124591", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@00e753c", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@c667ebc", + "repo": "runtime", + "title": "Skip SocketsHttpHandler_Http1_TrailingHeaders_Test on Browser", + "url": "https://github.com/dotnet/runtime/pull/124466", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c667ebc", + "labels": [ + "area-System.Net.Http", + "os-browser" + ] + }, + { + "id": "runtime@d9747b7", + "repo": "runtime", + "title": "SPMI: Fix relocs into new RO data section", + "url": "https://github.com/dotnet/runtime/pull/124383", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d9747b7", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@f937645", + "repo": "runtime", + "title": "Improve performance-benchmark/SKILL.md", + "url": "https://github.com/dotnet/runtime/pull/124574", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f937645", + "labels": [ + "area-skills" + ] + }, + { + "id": "runtime@f84f009", + "repo": "runtime", + "title": "[browser] Marshalling support float[], Span\u003Cfloat\u003E and ArraySegment\u003Cfloat\u003E", + "url": "https://github.com/dotnet/runtime/pull/123642", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f84f009", + "labels": [ + "arch-wasm", + "area-System.Runtime.InteropServices.JavaScript", + "community-contribution", + "os-browser" + ] + }, + { + "id": "runtime@960dca4", + "repo": "runtime", + "title": "[wasm][coreclr] runtime tests on CI", + "url": "https://github.com/dotnet/runtime/pull/123377", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@960dca4", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr", + "os-browser" + ] + }, + { + "id": "runtime@3e35839", + "repo": "runtime", + "title": "[RyuJit] Remove the \u0060gtCallCookie\u0060 operand from calls", + "url": "https://github.com/dotnet/runtime/pull/124572", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3e35839", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@f475ab8", + "repo": "runtime", + "title": "Fix memory leak in ICorDebugEnum::Clone on CordbEnumerator", + "url": "https://github.com/dotnet/runtime/pull/124580", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f475ab8", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@f8ac08f", + "repo": "runtime", + "title": "Skip unloadable-type tests under ReadyToRun; update ActiveIssue to #124031", + "url": "https://github.com/dotnet/runtime/pull/124619", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f8ac08f", + "labels": [ + "area-TypeSystem-coreclr" + ] + }, + { + "id": "runtime@075204c", + "repo": "runtime", + "title": "Fix FromBase64Transform.TransformFinalBlock to consistently reset state", + "url": "https://github.com/dotnet/runtime/pull/124480", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@075204c", + "labels": [ + "area-System.Security" + ] + }, + { + "id": "runtime@c14a194", + "repo": "runtime", + "title": "Publish AOT managed-ilasm and include in Core_Root", + "url": "https://github.com/dotnet/runtime/pull/124600", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c14a194", + "labels": [ + "area-ILTools-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@c8f006d", + "repo": "runtime", + "title": "[r2r] Don\u0027t skip methods with AggressiveOptimization attribute on ios", + "url": "https://github.com/dotnet/runtime/pull/124549", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c8f006d", + "labels": [ + "area-ReadyToRun-coreclr" + ] + }, + { + "id": "runtime@ab11a45", + "repo": "runtime", + "title": "Remove unused PInvokeTransitionFrame_MAX_SIZE and PInvokeTransitionFrame_SaveRegs_count macros", + "url": "https://github.com/dotnet/runtime/pull/124627", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ab11a45", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@29e53cc", + "repo": "runtime", + "title": "[r2r] Fix verbose logging", + "url": "https://github.com/dotnet/runtime/pull/124622", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@29e53cc", + "labels": [ + "area-ReadyToRun-coreclr" + ] + }, + { + "id": "runtime@fca6e86", + "repo": "runtime", + "title": "[browser] move loader JS code", + "url": "https://github.com/dotnet/runtime/pull/124606", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fca6e86", + "labels": [ + "arch-wasm", + "area-Host", + "os-browser" + ] + }, + { + "id": "runtime@e7b2a9b", + "repo": "runtime", + "title": "[clr-ios] Run full test suite on Apple mobile platforms", + "url": "https://github.com/dotnet/runtime/pull/123033", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e7b2a9b", + "labels": [ + "os-ios", + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@cef61f9", + "repo": "runtime", + "title": "Replace HashMap COOP transitions with Epoch-Based Reclamation (EBR)", + "url": "https://github.com/dotnet/runtime/pull/124307", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cef61f9", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@503a82e", + "repo": "runtime", + "title": "Fix P/Invoke IL stub race in DoPrestub", + "url": "https://github.com/dotnet/runtime/pull/124579", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@503a82e", + "labels": [ + "area-Interop-coreclr" + ] + }, + { + "id": "runtime@8f2cee4", + "repo": "runtime", + "title": "Add host tests for resolving serviceable assets", + "url": "https://github.com/dotnet/runtime/pull/119109", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8f2cee4", + "labels": [ + "test-enhancement", + "area-Host" + ] + }, + { + "id": "runtime@d97a9c1", + "repo": "runtime", + "title": "Move diagnostic generation from LibraryImportGenerator to LibraryImportDiagnosticsAnalyzer", + "url": "https://github.com/dotnet/runtime/pull/123780", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d97a9c1", + "labels": [ + "area-System.Runtime.InteropServices" + ] + }, + { + "id": "runtime@d6ea462", + "repo": "runtime", + "title": "Update OneCollect.RecordTrace to 0.1.33304 and re-enable UserEvents NativeAOT tests", + "url": "https://github.com/dotnet/runtime/pull/124616", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d6ea462", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@c802860", + "repo": "runtime", + "title": "[cDAC] UEWatsonBucketTrackerBuckets is not available on non-windows platforms", + "url": "https://github.com/dotnet/runtime/pull/124657", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c802860", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@f7fc065", + "repo": "runtime", + "title": "Fix abandoned jit regression tests", + "url": "https://github.com/dotnet/runtime/pull/124605", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f7fc065", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@27cda88", + "repo": "runtime", + "title": "renames to IsMultithreadingSupported", + "url": "https://github.com/dotnet/runtime/pull/124653", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@27cda88", + "labels": [ + "area-System.Threading" + ] + }, + { + "id": "runtime@44e21b7", + "repo": "runtime", + "title": "Run ILC after ComputeResolvedFilesToPublishList", + "url": "https://github.com/dotnet/runtime/pull/111514", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@44e21b7", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@127fe2d", + "repo": "runtime", + "title": "Write ExpectedExitCode marker in GenerateMarkerFiles", + "url": "https://github.com/dotnet/runtime/pull/124582", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@127fe2d", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@07e1dcc", + "repo": "runtime", + "title": "Remove unused \u0060src/native/managed/cdacreader\u0060 directory", + "url": "https://github.com/dotnet/runtime/pull/124675", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@07e1dcc", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@0601ec7", + "repo": "runtime", + "title": "Clarify wording for suppressing CI failure modes", + "url": "https://github.com/dotnet/runtime/pull/124681", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0601ec7", + "labels": [ + "area-Meta" + ] + }, + { + "id": "runtime@213a41d", + "repo": "runtime", + "title": "[Wasm RyuJit] Null checks for calls, overflow checks for int to int casts, resolve stack ordering, more", + "url": "https://github.com/dotnet/runtime/pull/124534", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@213a41d", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@c5d5be4", + "repo": "runtime", + "title": "JIT: Add a \u0022default value analysis\u0022 for async hoisting", + "url": "https://github.com/dotnet/runtime/pull/124514", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c5d5be4", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@c5c9ddd", + "repo": "runtime", + "title": "[Wasm RyuJit] fix issue in RewriteLocalStackStore", + "url": "https://github.com/dotnet/runtime/pull/124673", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c5c9ddd", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@e2a94a1", + "repo": "runtime", + "title": "[Wasm RyuJit] codegen for some intrinsics", + "url": "https://github.com/dotnet/runtime/pull/124575", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e2a94a1", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@5302011", + "repo": "runtime", + "title": "Add \u0060CORINFO_RUNTIME_LOOKUP::helperEntryPoint\u0060", + "url": "https://github.com/dotnet/runtime/pull/124683", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5302011", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@2fbf43f", + "repo": "runtime", + "title": "Refine PersistedAssemblyBuilder test coverage per review feedback, helper deduplication, and AssemblyNameInfo-based identity validation", + "url": "https://github.com/dotnet/runtime/pull/124626", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2fbf43f", + "labels": [ + "area-System.Reflection.Emit" + ] + }, + { + "id": "runtime@4349c24", + "repo": "runtime", + "title": "[Wasm RyuJit] fix some issues with calls", + "url": "https://github.com/dotnet/runtime/pull/124679", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4349c24", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@f4d21a8", + "repo": "runtime", + "title": "[wasm][coreclr] Use 4GB limit for corerun", + "url": "https://github.com/dotnet/runtime/pull/124633", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f4d21a8", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@a48fa8e", + "repo": "runtime", + "title": "[RyuJit/WASM] Rewrite SP references into PHYSREGs", + "url": "https://github.com/dotnet/runtime/pull/124710", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a48fa8e", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@0ff5be7", + "repo": "runtime", + "title": "Remove duplicate typeof(decimal) check in IsKnownComparable\u003CT\u003E", + "url": "https://github.com/dotnet/runtime/pull/124737", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0ff5be7", + "labels": [ + "area-System.Collections", + "community-contribution" + ] + }, + { + "id": "runtime@1b3a93f", + "repo": "runtime", + "title": "Fix Uri.GetHashCode hash/equality contract violation for file: URIs", + "url": "https://github.com/dotnet/runtime/pull/124652", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1b3a93f", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@711e2aa", + "repo": "runtime", + "title": "Add remarks docs to DI Add*/TryAdd* methods in DependencyInjection.Abstractions", + "url": "https://github.com/dotnet/runtime/pull/124592", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@711e2aa", + "labels": [ + "documentation", + "area-Extensions-DependencyInjection" + ] + }, + { + "id": "runtime@2012f26", + "repo": "runtime", + "title": "[HTTP] Re-enable AuthProxy__ValidCreds_ProxySendsRequestToServer test", + "url": "https://github.com/dotnet/runtime/pull/124595", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2012f26", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@6e15912", + "repo": "runtime", + "title": "[HTTP] Re-enable PostAsync_Cancel_CancellationTokenPassedToContent test", + "url": "https://github.com/dotnet/runtime/pull/124597", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6e15912", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@23bc7e3", + "repo": "runtime", + "title": "More AP-related optimizations", + "url": "https://github.com/dotnet/runtime/pull/124711", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@23bc7e3", + "labels": [ + "area-CodeGen-coreclr", + "reduce-unsafe" + ] + }, + { + "id": "runtime@93d49b4", + "repo": "runtime", + "title": "Propagate _abortException in Http2Connection.SetupAsync", + "url": "https://github.com/dotnet/runtime/pull/119022", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@93d49b4" + }, + { + "id": "runtime@bd273d0", + "repo": "runtime", + "title": "Allow range check cloning for BBJ_RETURN blocks", + "url": "https://github.com/dotnet/runtime/pull/124705", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@bd273d0", + "labels": [ + "area-CodeGen-coreclr", + "reduce-unsafe" + ] + }, + { + "id": "runtime@84057bb", + "repo": "runtime", + "title": "Fix ManagedNtlm on big-endian architectures", + "url": "https://github.com/dotnet/runtime/pull/124598", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@84057bb", + "labels": [ + "area-System.Net.Security", + "community-contribution" + ] + }, + { + "id": "runtime@0548fed", + "repo": "runtime", + "title": "[HTTP] Re-enable GetAsync_CancelDuringResponseBodyReceived_Buffered test", + "url": "https://github.com/dotnet/runtime/pull/124594", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0548fed", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@cb26605", + "repo": "runtime", + "title": "[browser][CoreCLR] smoke test libraries on V8 and Firefox", + "url": "https://github.com/dotnet/runtime/pull/124641", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cb26605", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr", + "os-browser" + ] + }, + { + "id": "runtime@1ece45f", + "repo": "runtime", + "title": "Disable localhost subdomain AddressFamily tests on Android", + "url": "https://github.com/dotnet/runtime/pull/124752", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1ece45f", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@a7094a3", + "repo": "runtime", + "title": "[HTTP] Remove GetAsync_UnicodeHostName_SuccessStatusCodeInResponse test", + "url": "https://github.com/dotnet/runtime/pull/124596", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a7094a3", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@884a44c", + "repo": "runtime", + "title": "[HTTP] Re-disable quic.nginx.org interop test", + "url": "https://github.com/dotnet/runtime/pull/124743", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@884a44c", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@b1f031d", + "repo": "runtime", + "title": "Improve jit-regression-test skill with structured description and stop signals", + "url": "https://github.com/dotnet/runtime/pull/124734", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b1f031d", + "labels": [ + "area-skills" + ] + }, + { + "id": "runtime@e5f7893", + "repo": "runtime", + "title": "[Wasm RyuJIT] Block stores", + "url": "https://github.com/dotnet/runtime/pull/123738", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e5f7893", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@ec52b77", + "repo": "runtime", + "title": "JIT: minor cleanups in RBO", + "url": "https://github.com/dotnet/runtime/pull/124759", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ec52b77", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@202f33c", + "repo": "runtime", + "title": "[browser][CoreCLR] Loading Webcil - JS part", + "url": "https://github.com/dotnet/runtime/pull/124758", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@202f33c", + "labels": [ + "arch-wasm", + "area-Host", + "os-browser" + ] + }, + { + "id": "runtime@66f3596", + "repo": "runtime", + "title": "Managed fixes for async task tracking", + "url": "https://github.com/dotnet/runtime/pull/123727", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@66f3596", + "labels": [ + "area-Diagnostics-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@c7ba7f9", + "repo": "runtime", + "title": "Don\u0027t build managed ilasm in the VMR yet", + "url": "https://github.com/dotnet/runtime/pull/124762", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c7ba7f9", + "labels": [ + "area-ILTools-coreclr" + ] + }, + { + "id": "runtime@2dac4d5", + "repo": "runtime", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/runtime/pull/124532", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2dac4d5", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@4594a58", + "repo": "runtime", + "title": "[cDAC] Add infrastructure to run cDAC tests using CLRMD and dumps", + "url": "https://github.com/dotnet/runtime/pull/124564", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4594a58", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@ca778ae", + "repo": "runtime", + "title": "Don\u0027t crash when walking callstack roots in the debugger", + "url": "https://github.com/dotnet/runtime/pull/124402", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ca778ae", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@58f1455", + "repo": "runtime", + "title": "[Wasm RyuJit] Crossgen fixes", + "url": "https://github.com/dotnet/runtime/pull/124763", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@58f1455", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@ae967fe", + "repo": "runtime", + "title": "[cDAC] Compute MethodDesc size directly to support more heap dump scenarios", + "url": "https://github.com/dotnet/runtime/pull/124772", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ae967fe", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@df9f260", + "repo": "runtime", + "title": "Use Requires.Range in LastIndexOf", + "url": "https://github.com/dotnet/runtime/pull/124560", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@df9f260", + "labels": [ + "area-System.Collections", + "community-contribution" + ] + }, + { + "id": "runtime@dad73ab", + "repo": "runtime", + "title": "Strip ARM64 TBI tag byte from addresses before pread on /proc/\u003Cpid\u003E/mem", + "url": "https://github.com/dotnet/runtime/pull/124709", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@dad73ab", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@3b61bfa", + "repo": "runtime", + "title": "JIT: Less optimistic checking for const vector to pattern checks", + "url": "https://github.com/dotnet/runtime/pull/124599", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3b61bfa", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@904ecbb", + "repo": "runtime", + "title": "Move Zstandard APIs from System.IO.Compression.Zstandard to System.IO.Compression", + "url": "https://github.com/dotnet/runtime/pull/124634", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@904ecbb", + "labels": [ + "area-System.IO.Compression" + ] + }, + { + "id": "runtime@3b504c5", + "repo": "runtime", + "title": "Process Iri_UnicodePlane3_13 test in 0x10000-character chunks", + "url": "https://github.com/dotnet/runtime/pull/124486", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3b504c5", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@81c46c6", + "repo": "runtime", + "title": "Fix debug assert in Uri.CreateThisFromUri when combining UNC base with \u0022file:\u0022 relative URI", + "url": "https://github.com/dotnet/runtime/pull/124660", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@81c46c6", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@132599d", + "repo": "runtime", + "title": "Update API review meeting frequency to once a week", + "url": "https://github.com/dotnet/runtime/pull/124793", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@132599d", + "labels": [ + "area-Meta" + ] + }, + { + "id": "runtime@f714f86", + "repo": "runtime", + "title": "Set __NumProc on OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/124775", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f714f86", + "labels": [ + "area-Infrastructure-coreclr", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@a7a54a5", + "repo": "runtime", + "title": "Add OpenBSD target", + "url": "https://github.com/dotnet/runtime/pull/124776", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a7a54a5", + "labels": [ + "area-Infrastructure", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@0339995", + "repo": "runtime", + "title": "Fix native aot outerloop", + "url": "https://github.com/dotnet/runtime/pull/124773", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0339995", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@97de220", + "repo": "runtime", + "title": "Publish Uri and UriBuilder threat models", + "url": "https://github.com/dotnet/runtime/pull/124273", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@97de220", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@c94ed87", + "repo": "runtime", + "title": "JIT: Convert multi-target switches to branchless checks", + "url": "https://github.com/dotnet/runtime/pull/124567", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c94ed87", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@d203c6c", + "repo": "runtime", + "title": "Build mscordac on OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/124774", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d203c6c", + "labels": [ + "area-Infrastructure-coreclr", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@27689b6", + "repo": "runtime", + "title": "[r2r] Add helpers for class init", + "url": "https://github.com/dotnet/runtime/pull/124649", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@27689b6", + "labels": [ + "area-ReadyToRun-coreclr" + ] + }, + { + "id": "runtime@19db7ab", + "repo": "runtime", + "title": "Fail inner build when running coreclr tests", + "url": "https://github.com/dotnet/runtime/pull/124767", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@19db7ab", + "labels": [ + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@da4894b", + "repo": "runtime", + "title": "Fix Uri.TryUnescapeDataString throwing instead of returning false with small destination buffers", + "url": "https://github.com/dotnet/runtime/pull/124655", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@da4894b", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@a90eed2", + "repo": "runtime", + "title": "Add GetStackLimits cDAC API", + "url": "https://github.com/dotnet/runtime/pull/124682", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a90eed2", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@689ceb6", + "repo": "runtime", + "title": "Improve exception message for empty assembly loading", + "url": "https://github.com/dotnet/runtime/pull/124301", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@689ceb6", + "labels": [ + "area-AssemblyLoader-coreclr" + ] + }, + { + "id": "runtime@1c7e395", + "repo": "runtime", + "title": "Fix NRange.GetOffsetAndLength truncation: cast to nuint instead of uint", + "url": "https://github.com/dotnet/runtime/pull/124300", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1c7e395", + "labels": [ + "area-System.Numerics.Tensors" + ] + }, + { + "id": "runtime@52114b6", + "repo": "runtime", + "title": "Fix LoadExactInterfaceMap for sub-interfaces with complex type arguments under special marker parents", + "url": "https://github.com/dotnet/runtime/pull/124684", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@52114b6", + "labels": [ + "area-TypeSystem-coreclr" + ] + }, + { + "id": "runtime@619214e", + "repo": "runtime", + "title": "fix: CreateSubdirectory failing for root directories", + "url": "https://github.com/dotnet/runtime/pull/121906", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@619214e", + "labels": [ + "area-System.IO", + "community-contribution" + ] + }, + { + "id": "runtime@b613202", + "repo": "runtime", + "title": "Enable case-sensitive LeadingStrings with frequency-based heuristic", + "url": "https://github.com/dotnet/runtime/pull/124736", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b613202", + "labels": [ + "area-System.Text.RegularExpressions" + ] + }, + { + "id": "runtime@46d35c2", + "repo": "runtime", + "title": "Delete CORINFO_HELP_ENDCATCH", + "url": "https://github.com/dotnet/runtime/pull/124820", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@46d35c2", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@6e58274", + "repo": "runtime", + "title": "[Wasm RyuJit] more fixes from crossgen2 of spc", + "url": "https://github.com/dotnet/runtime/pull/124837", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6e58274", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@9511672", + "repo": "runtime", + "title": "Fix premature returns for argument/pointer checks in SOSDacImpl.cs", + "url": "https://github.com/dotnet/runtime/pull/124814", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9511672", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@fdc3e49", + "repo": "runtime", + "title": "Fix hijacking on arm32", + "url": "https://github.com/dotnet/runtime/pull/124831", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fdc3e49", + "labels": [ + "area-NativeAOT-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@f5ba5f6", + "repo": "runtime", + "title": "[Wasm RyuJit] internal registers, integer binop overflow checks", + "url": "https://github.com/dotnet/runtime/pull/124731", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f5ba5f6", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@85b9bc5", + "repo": "runtime", + "title": "Allow box_this pattern on composite r2r", + "url": "https://github.com/dotnet/runtime/pull/124519", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@85b9bc5", + "labels": [ + "area-ReadyToRun-coreclr" + ] + }, + { + "id": "runtime@33e63ad", + "repo": "runtime", + "title": "Remove calls to ToArray because string.Join already has overload for ROS\u003Cstring\u003E.", + "url": "https://github.com/dotnet/runtime/pull/124792", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@33e63ad", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@9b312a6", + "repo": "runtime", + "title": "LoggerMessage source generator: preserve \u0060ref readonly\u0060; forbid \u0060params\u0060, \u0060scoped\u0060, and ref struct parameters", + "url": "https://github.com/dotnet/runtime/pull/124589", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9b312a6", + "labels": [ + "area-Extensions-Logging" + ] + }, + { + "id": "runtime@40f1da5", + "repo": "runtime", + "title": "Fix Arm64: for 124357", + "url": "https://github.com/dotnet/runtime/pull/124765", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@40f1da5", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@b08387a", + "repo": "runtime", + "title": "Add CoreCLR runtime build for browser-wasm performance benchmarks", + "url": "https://github.com/dotnet/runtime/pull/124786", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b08387a", + "labels": [ + "area-VM-coreclr", + "perf-pipeline" + ] + }, + { + "id": "runtime@0f12574", + "repo": "runtime", + "title": "Fix ALPN protocol list size field type and add boundary tests", + "url": "https://github.com/dotnet/runtime/pull/124590", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0f12574", + "labels": [ + "area-System.Net.Security" + ] + }, + { + "id": "runtime@adc1912", + "repo": "runtime", + "title": "Add missing GC.KeepAlives to WMIInterop", + "url": "https://github.com/dotnet/runtime/pull/124796", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@adc1912", + "labels": [ + "area-System.Management" + ] + }, + { + "id": "runtime@77b5f2f", + "repo": "runtime", + "title": "Use ConditionalFact/ConditionalTheory ctor that passes type", + "url": "https://github.com/dotnet/runtime/pull/124791", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@77b5f2f", + "labels": [ + "area-Meta" + ] + }, + { + "id": "runtime@b5f00c7", + "repo": "runtime", + "title": "[cDAC] GetCodeHeaderData fork", + "url": "https://github.com/dotnet/runtime/pull/120275", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b5f00c7", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@e4a99ce", + "repo": "runtime", + "title": "Implement ISOSDacInterface::GetRegisterName in cDAC SOSDacImpl", + "url": "https://github.com/dotnet/runtime/pull/124803", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e4a99ce", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@df19ee7", + "repo": "runtime", + "title": "Implement ISOSDacInterface12::GetGlobalAllocationContext in cDAC SOSDacImpl", + "url": "https://github.com/dotnet/runtime/pull/124805", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@df19ee7", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@4a31f31", + "repo": "runtime", + "title": "Mono: increase default stack size on s390x/ppc64le; support DOTNET_Thread_DefaultStackSize for setting stack size.", + "url": "https://github.com/dotnet/runtime/pull/124588", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4a31f31", + "labels": [ + "area-VM-meta-mono", + "community-contribution" + ] + }, + { + "id": "runtime@78222e6", + "repo": "runtime", + "title": "Fix reachable Debug.Assert in SubReadStream.Read when seeked past end", + "url": "https://github.com/dotnet/runtime/pull/124813", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@78222e6", + "labels": [ + "area-System.IO.Compression" + ] + }, + { + "id": "runtime@770d929", + "repo": "runtime", + "title": "[runtime-diagnostics] Publish test dumps on failure", + "url": "https://github.com/dotnet/runtime/pull/124821", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@770d929", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@bdf19d3", + "repo": "runtime", + "title": "Add SSH and Copilot CLI features to devcontainer", + "url": "https://github.com/dotnet/runtime/pull/124855", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@bdf19d3", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@69e4ae5", + "repo": "runtime", + "title": "[cDAC] Fix AMD64 epilogue unwinder reading register number from wrong byte offset", + "url": "https://github.com/dotnet/runtime/pull/124845", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@69e4ae5", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@7b14f37", + "repo": "runtime", + "title": "Fix three cDAC managed AMD64/X86 unwinder bugs found by native audit", + "url": "https://github.com/dotnet/runtime/pull/124848", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7b14f37", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@0fe50ea", + "repo": "runtime", + "title": "[cDAC] Fix DebugInfo error codes for methods without debug metadata and add P/Invoke dump tests", + "url": "https://github.com/dotnet/runtime/pull/124783", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0fe50ea", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@68be26b", + "repo": "runtime", + "title": "Backport XML doc comments for DispatchProxy from dotnet-api-docs", + "url": "https://github.com/dotnet/runtime/pull/124361", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@68be26b", + "labels": [ + "area-System.Reflection" + ] + }, + { + "id": "runtime@3390dc8", + "repo": "runtime", + "title": "Fix inverted IsNull check in RangeSectionMap::EnumMemoryRangeSectionMapLevel", + "url": "https://github.com/dotnet/runtime/pull/124862", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3390dc8", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@d63c175", + "repo": "runtime", + "title": "Fuzz Json Deserializing", + "url": "https://github.com/dotnet/runtime/pull/117956", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d63c175", + "labels": [ + "area-System.Text.Json" + ] + }, + { + "id": "runtime@6a67552", + "repo": "runtime", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/runtime/pull/124778", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6a67552", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@133c7bd", + "repo": "runtime", + "title": "Arm64: Add SM4 and SHA3 instructions", + "url": "https://github.com/dotnet/runtime/pull/124504", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@133c7bd", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@cb7c257", + "repo": "runtime", + "title": "Delete unnecessary test", + "url": "https://github.com/dotnet/runtime/pull/124884", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cb7c257", + "labels": [ + "area-TypeSystem-coreclr" + ] + }, + { + "id": "runtime@a71427e", + "repo": "runtime", + "title": "Disable FileSystemWatcher_SymbolicLink_TargetsDirectory_Create_IncludeSubdirectories", + "url": "https://github.com/dotnet/runtime/pull/124849", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a71427e", + "labels": [ + "area-System.IO" + ] + }, + { + "id": "runtime@e5dde0c", + "repo": "runtime", + "title": "[browser][CoreCLR] lazy and satelite assemblies", + "url": "https://github.com/dotnet/runtime/pull/124853", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e5dde0c", + "labels": [ + "arch-wasm", + "area-Host", + "os-browser" + ] + }, + { + "id": "runtime@eae0a64", + "repo": "runtime", + "title": "JIT: Fix assert in JIT:new() during early initialization", + "url": "https://github.com/dotnet/runtime/pull/124715", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@eae0a64", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@4203f01", + "repo": "runtime", + "title": "Fix GC handle dac bug", + "url": "https://github.com/dotnet/runtime/pull/124875", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4203f01", + "labels": [ + "area-GC-coreclr" + ] + }, + { + "id": "runtime@c0a9bef", + "repo": "runtime", + "title": "[browser] Add chrome provisioning on macos/arm64", + "url": "https://github.com/dotnet/runtime/pull/124852", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c0a9bef", + "labels": [ + "arch-wasm", + "area-Infrastructure" + ] + }, + { + "id": "runtime@7a5e8fc", + "repo": "runtime", + "title": "Fix memory leak in Assembler::EmitGenericParamConstraints", + "url": "https://github.com/dotnet/runtime/pull/124586", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7a5e8fc", + "labels": [ + "area-ILTools-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@0cc4cf9", + "repo": "runtime", + "title": "JIT: SVE2 Scatters need a temp register for indices", + "url": "https://github.com/dotnet/runtime/pull/124865", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0cc4cf9", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@c746487", + "repo": "runtime", + "title": "Implement ISOSDacInterface::GetThreadAllocData in cDAC SOSDacImpl", + "url": "https://github.com/dotnet/runtime/pull/124817", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c746487", + "labels": [ + "area-System.Threading" + ] + }, + { + "id": "runtime@fcff831", + "repo": "runtime", + "title": "[Wasm RyuJit] localloc", + "url": "https://github.com/dotnet/runtime/pull/124250", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fcff831", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@63bdcc4", + "repo": "runtime", + "title": "Tar: Only treat reparse points marked as junctions or symlinks as actual tar symlinks", + "url": "https://github.com/dotnet/runtime/pull/124753", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@63bdcc4", + "labels": [ + "area-System.Formats.Tar" + ] + }, + { + "id": "runtime@1be4689", + "repo": "runtime", + "title": "Cleanup EH / stackwalk interpreter frame handling", + "url": "https://github.com/dotnet/runtime/pull/124296", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1be4689", + "labels": [ + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@371aca3", + "repo": "runtime", + "title": "Handle single-node branches in ExtractCommonPrefixNode", + "url": "https://github.com/dotnet/runtime/pull/124881", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@371aca3", + "labels": [ + "area-System.Text.RegularExpressions" + ] + }, + { + "id": "runtime@7756d81", + "repo": "runtime", + "title": "Eliminate forwarder stubs by reusing method precodes for call counting indirection", + "url": "https://github.com/dotnet/runtime/pull/124664", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7756d81", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@a1df4fb", + "repo": "runtime", + "title": "Implement ISOSDacInterface::GetObjectClassName in cDAC SOSDacImpl", + "url": "https://github.com/dotnet/runtime/pull/124816", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a1df4fb", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@b04a3f5", + "repo": "runtime", + "title": "Fix reachable Debug.Assert in StreamPipeReader.AdvanceTo", + "url": "https://github.com/dotnet/runtime/pull/123810", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b04a3f5", + "labels": [ + "area-System.IO.Pipelines" + ] + }, + { + "id": "runtime@eeedc34", + "repo": "runtime", + "title": "Annotate \u0060ServiceDescriptor.IsKeyedService\u0060 for nullability flow and sync ref assembly", + "url": "https://github.com/dotnet/runtime/pull/124493", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@eeedc34", + "labels": [ + "area-Extensions-DependencyInjection" + ] + }, + { + "id": "runtime@c142b2a", + "repo": "runtime", + "title": "cDAC - fix ReJIT IsEnabled", + "url": "https://github.com/dotnet/runtime/pull/124441", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c142b2a", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@fc9084d", + "repo": "runtime", + "title": "JIT: Fix bugs and typos in objectalloc.cpp, extract AnalyzePseudoForCloning", + "url": "https://github.com/dotnet/runtime/pull/124809", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fc9084d", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@42b1679", + "repo": "runtime", + "title": "Backport XML documentation for WebProxy and IWebProxyScript", + "url": "https://github.com/dotnet/runtime/pull/124396", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@42b1679", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@ea5071e", + "repo": "runtime", + "title": "Vectorize Adler32", + "url": "https://github.com/dotnet/runtime/pull/124409", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ea5071e", + "labels": [ + "area-System.IO.Hashing" + ] + }, + { + "id": "runtime@c603c98", + "repo": "runtime", + "title": "Change Interpreter to share code with the JIT and use its CompAllocator", + "url": "https://github.com/dotnet/runtime/pull/123830", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c603c98", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@e99d522", + "repo": "runtime", + "title": "[Wasm RyuJit] Type Index Relocation Support in Wasm Object Writer", + "url": "https://github.com/dotnet/runtime/pull/124685", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e99d522", + "labels": [ + "arch-wasm", + "area-crossgen2-coreclr" + ] + }, + { + "id": "runtime@17ca03d", + "repo": "runtime", + "title": "Replace GCX_COOP with EBR for EEHashTable bucket reclamation", + "url": "https://github.com/dotnet/runtime/pull/124822", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@17ca03d", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@71ffd70", + "repo": "runtime", + "title": "Revert \u0022Increase number of assertions (GlobalAP) \u002B VN cache \u0022", + "url": "https://github.com/dotnet/runtime/pull/124132", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@71ffd70", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@9c52f8f", + "repo": "runtime", + "title": "Adding GetHandleEnum and GetHandleEnumForTypes cDAC APIs", + "url": "https://github.com/dotnet/runtime/pull/124760", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9c52f8f", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@de761a5", + "repo": "runtime", + "title": "Improve System.Reflection.Context.Tests code coverage from ~35% to 87%", + "url": "https://github.com/dotnet/runtime/pull/123026", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@de761a5", + "labels": [ + "area-System.Reflection" + ] + }, + { + "id": "runtime@8dc23df", + "repo": "runtime", + "title": "Enable runtime-async feature switch for NativeAOT System.Private.CoreLib", + "url": "https://github.com/dotnet/runtime/pull/123952", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8dc23df", + "labels": [ + "area-NativeAOT-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@25eb60e", + "repo": "runtime", + "title": "[API] RuntimeFeature.IsMultithreadingSupported", + "url": "https://github.com/dotnet/runtime/pull/124603", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@25eb60e", + "labels": [ + "arch-wasm", + "area-System.Threading", + "os-browser" + ] + }, + { + "id": "runtime@a7b56d0", + "repo": "runtime", + "title": "Implement \u0060AsyncHelpers.TailAwait\u0060 in the interpreter and use it for instantiating and unboxing stubs on CoreCLR", + "url": "https://github.com/dotnet/runtime/pull/124861", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a7b56d0", + "labels": [ + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@7b67779", + "repo": "runtime", + "title": "[browser] Webcil alignment", + "url": "https://github.com/dotnet/runtime/pull/124905", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7b67779", + "labels": [ + "arch-wasm", + "area-Host", + "os-browser" + ] + }, + { + "id": "runtime@b5fef80", + "repo": "runtime", + "title": "Bump actions/upload-artifact from 6 to 7", + "url": "https://github.com/dotnet/runtime/pull/124924", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b5fef80", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@e1c62a5", + "repo": "runtime", + "title": "Logging source generator: support generic methods (lift SYSLIB1011)", + "url": "https://github.com/dotnet/runtime/pull/124638", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e1c62a5", + "labels": [ + "area-Extensions-Logging" + ] + }, + { + "id": "runtime@03d7b4c", + "repo": "runtime", + "title": "Convert verbatim string literals to raw string literals in System.Text.Json tests", + "url": "https://github.com/dotnet/runtime/pull/124892", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@03d7b4c", + "labels": [ + "area-System.Text.Json" + ] + }, + { + "id": "runtime@c30eec2", + "repo": "runtime", + "title": "[wasm][coreclr] Fix prestub of methods with IL helper stubs", + "url": "https://github.com/dotnet/runtime/pull/124873", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c30eec2", + "labels": [ + "arch-wasm", + "area-VM-coreclr" + ] + }, + { + "id": "runtime@23855bf", + "repo": "runtime", + "title": "[browser][coreCLR] adopt new API for async main", + "url": "https://github.com/dotnet/runtime/pull/124909", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@23855bf", + "labels": [ + "arch-wasm", + "area-Host", + "os-browser" + ] + }, + { + "id": "runtime@f297dfb", + "repo": "runtime", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 679: Build ID 2914130", + "url": "https://github.com/dotnet/runtime/pull/124957", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f297dfb", + "labels": [ + "area-Extensions-Logging" + ] + }, + { + "id": "runtime@cdcb8f3", + "repo": "runtime", + "title": "Fix type formatting in logging source generator test", + "url": "https://github.com/dotnet/runtime/pull/124962", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cdcb8f3", + "labels": [ + "area-Extensions-Logging" + ] + }, + { + "id": "runtime@9b47894", + "repo": "runtime", + "title": "Bump rollup from 4.52.2 to 4.59.0 in /src/mono/browser/runtime", + "url": "https://github.com/dotnet/runtime/pull/124910", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9b47894", + "labels": [ + "area-Infrastructure", + "javascript", + "dependencies" + ] + }, + { + "id": "runtime@c69c476", + "repo": "runtime", + "title": "[cDAC] Fix EEClass validation corner case", + "url": "https://github.com/dotnet/runtime/pull/124780", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c69c476", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@3176283", + "repo": "runtime", + "title": "[cDAC] Strip collectible tag bit from RangeSectionFragment.Next pointer", + "url": "https://github.com/dotnet/runtime/pull/124929", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3176283", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@7356734", + "repo": "runtime", + "title": "[runtime-diagnostics] Workaround for publish test results regression", + "url": "https://github.com/dotnet/runtime/pull/124859", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7356734", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@b6a3e78", + "repo": "runtime", + "title": "[cDAC] Add managed definitions for IXCLRData COM interfaces", + "url": "https://github.com/dotnet/runtime/pull/124922", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b6a3e78", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@06d5e82", + "repo": "runtime", + "title": "Enclose keywords in quotes in logging generator messages, to improve translation quality", + "url": "https://github.com/dotnet/runtime/pull/124960", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@06d5e82", + "labels": [ + "area-Extensions-Logging" + ] + }, + { + "id": "runtime@6ef43c5", + "repo": "runtime", + "title": "Fix copy-paste error in \u0060is\u0060 check for character base64 decoding", + "url": "https://github.com/dotnet/runtime/pull/124936", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6ef43c5", + "labels": [ + "area-System.Buffers" + ] + }, + { + "id": "runtime@d7362ec", + "repo": "runtime", + "title": "Cleanup flowgraph files", + "url": "https://github.com/dotnet/runtime/pull/124882", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d7362ec", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@aede44d", + "repo": "runtime", + "title": "[cDAC] Fix com lifetime bug in GetHandleEnum", + "url": "https://github.com/dotnet/runtime/pull/124983", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@aede44d", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@b41bbea", + "repo": "runtime", + "title": "Introduce DOTNET_JitReportMetrics", + "url": "https://github.com/dotnet/runtime/pull/124975", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b41bbea", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@09865a9", + "repo": "runtime", + "title": "Move diagnostics out of DownlevelLibraryImportGenerator into a separate analyzer", + "url": "https://github.com/dotnet/runtime/pull/124670", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@09865a9", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@e191851", + "repo": "runtime", + "title": "Fix pal_error_common.h on OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/124991", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e191851", + "labels": [ + "area-PAL-coreclr", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@50f4fec", + "repo": "runtime", + "title": "Fix StackOverflowException from deeply nested character class subtractions", + "url": "https://github.com/dotnet/runtime/pull/124995", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@50f4fec", + "labels": [ + "area-System.Text.RegularExpressions" + ] + }, + { + "id": "runtime@aba6825", + "repo": "runtime", + "title": "JIT: Refactor async-to-sync call optimization", + "url": "https://github.com/dotnet/runtime/pull/124798", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@aba6825", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@6aa153f", + "repo": "runtime", + "title": "Remove ActiveIssue from src/tests/JIT/jit64/regress/vsw/373472/test.il", + "url": "https://github.com/dotnet/runtime/pull/124953", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6aa153f", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@e756eed", + "repo": "runtime", + "title": "Add GetSyncBlockData cDAC API", + "url": "https://github.com/dotnet/runtime/pull/124933", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e756eed", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@a064f10", + "repo": "runtime", + "title": "Fix Directory.Delete(path, recursive: true) failing on directories containing junctions", + "url": "https://github.com/dotnet/runtime/pull/124830", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a064f10", + "labels": [ + "area-ExceptionHandling-coreclr" + ] + }, + { + "id": "runtime@9eeb791", + "repo": "runtime", + "title": "Bump rollup from 4.52.2 to 4.59.0 in /src/native", + "url": "https://github.com/dotnet/runtime/pull/124987", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9eeb791", + "labels": [ + "area-Infrastructure", + "javascript", + "dependencies" + ] + }, + { + "id": "runtime@1c94b86", + "repo": "runtime", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 679: Build ID 2914804", + "url": "https://github.com/dotnet/runtime/pull/124988", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1c94b86", + "labels": [ + "area-Extensions-Logging" + ] + }, + { + "id": "runtime@faf542a", + "repo": "runtime", + "title": "Delete ArrayEEClass - compute multidim array rank from BaseSize", + "url": "https://github.com/dotnet/runtime/pull/124944", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@faf542a", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@1d9d70a", + "repo": "runtime", + "title": "MachObjectWriter: Fix calculation of segment file offset and size", + "url": "https://github.com/dotnet/runtime/pull/125006", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1d9d70a", + "labels": [ + "area-crossgen2-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@de40d80", + "repo": "runtime", + "title": "Adjust how we access thread ID for header thin locks", + "url": "https://github.com/dotnet/runtime/pull/124878", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@de40d80", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@d78ab5a", + "repo": "runtime", + "title": "Link pthread on OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/125011", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d78ab5a", + "labels": [ + "area-System.Threading", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@4353591", + "repo": "runtime", + "title": "Fix operator precedence bug in SystemNative_FSync causing silent fsync errors on macOS SMB shares", + "url": "https://github.com/dotnet/runtime/pull/124725", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4353591", + "labels": [ + "area-System.IO" + ] + }, + { + "id": "runtime@6c9a038", + "repo": "runtime", + "title": "Fix src/minipal/thread.h on OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/124999", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6c9a038", + "labels": [ + "area-System.Threading", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@5306ee8", + "repo": "runtime", + "title": "Fix browser-targeting builds: move \u0060declare global\u0060 from public-api.ts to export-api.ts", + "url": "https://github.com/dotnet/runtime/pull/125014", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5306ee8", + "labels": [ + "arch-wasm", + "area-System.Runtime.InteropServices.JavaScript" + ] + }, + { + "id": "runtime@348ad67", + "repo": "runtime", + "title": "Update EncodingTable to use ConcurrentDictionary for performance", + "url": "https://github.com/dotnet/runtime/pull/125001", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@348ad67", + "labels": [ + "area-System.Globalization" + ] + }, + { + "id": "runtime@23cced9", + "repo": "runtime", + "title": "Fix TypeLoadException in GetMarshalAs when SafeArray has zero-length user-defined type name", + "url": "https://github.com/dotnet/runtime/pull/124408", + "commit": "dotnet@370cba6", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@23cced9", + "labels": [ + "area-Interop-coreclr" + ] + }, + { + "id": "runtime@a659059", + "repo": "runtime", + "title": "[WBT] enable coreCLR", + "url": "https://github.com/dotnet/runtime/pull/124850", + "commit": "dotnet@370cba6", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a659059", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr", + "os-browser" + ] + }, + { + "id": "runtime@f1b1b93", + "repo": "runtime", + "title": "Reduce lock contention in socket on Windows", + "url": "https://github.com/dotnet/runtime/pull/124997", + "commit": "dotnet@370cba6", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f1b1b93", + "labels": [ + "area-System.Net.Sockets" + ] + }, + { + "id": "runtime@9b46e58", + "repo": "runtime", + "title": "Skip NonBacktracking CharClassSubtraction_DeepNesting on browser-wasm", + "url": "https://github.com/dotnet/runtime/pull/125021", + "commit": "dotnet@370cba6", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9b46e58", + "labels": [ + "area-System.Text.RegularExpressions" + ] + }, + { + "id": "runtime@07ad470", + "repo": "runtime", + "title": "Make \u0060CustomizeTrimming\u0060 virtual", + "url": "https://github.com/dotnet/runtime/pull/124973", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@07ad470", + "labels": [ + "linkable-framework", + "community-contribution", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@2afb4c5", + "repo": "runtime", + "title": "Clean up \u0060SkipUnresolved\u0060 handling in linker test framework.", + "url": "https://github.com/dotnet/runtime/pull/124972", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2afb4c5", + "labels": [ + "linkable-framework", + "community-contribution", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@97f4414", + "repo": "runtime", + "title": "Drop RequiresProcessIsolation from Loader tests", + "url": "https://github.com/dotnet/runtime/pull/124883", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@97f4414", + "labels": [ + "area-TypeSystem-coreclr" + ] + }, + { + "id": "runtime@fdd418a", + "repo": "runtime", + "title": "Add blittable color types Argb\u003CT\u003E and Rgba\u003CT\u003E to System.Numerics.Vectors", + "url": "https://github.com/dotnet/runtime/pull/124663", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fdd418a", + "labels": [ + "area-System.Numerics" + ] + }, + { + "id": "runtime@1fd4dda", + "repo": "runtime", + "title": "[wasm] Bump chrome for testing - linux: 145.0.7632.109, windows: 145.0.7632.77", + "url": "https://github.com/dotnet/runtime/pull/124714", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1fd4dda", + "labels": [ + "arch-wasm", + "area-Infrastructure-mono" + ] + }, + { + "id": "runtime@56ed396", + "repo": "runtime", + "title": "[wasm][coreclr] Make run.cmd work with wasm arch", + "url": "https://github.com/dotnet/runtime/pull/124795", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@56ed396", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@ad33dab", + "repo": "runtime", + "title": "Convert IDacDbiInterface to return HRESULT to fix cross-DSO exception handling on mobile platforms", + "url": "https://github.com/dotnet/runtime/pull/124836", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ad33dab", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@a550606", + "repo": "runtime", + "title": "[clr-interp] Support for breakpoints and stepping", + "url": "https://github.com/dotnet/runtime/pull/123251", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a550606", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@ab91a5c", + "repo": "runtime", + "title": "[wasm][coreclr] Re-enable runtime tests", + "url": "https://github.com/dotnet/runtime/pull/125043", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ab91a5c", + "labels": [ + "arch-wasm", + "area-ExceptionHandling-coreclr" + ] + }, + { + "id": "runtime@44451f3", + "repo": "runtime", + "title": "Fix pal_io.c on OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/124992", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@44451f3", + "labels": [ + "area-System.IO.Compression", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@96bb371", + "repo": "runtime", + "title": "Add an api-proposal Copilot skill", + "url": "https://github.com/dotnet/runtime/pull/124808", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@96bb371", + "labels": [ + "area-skills" + ] + }, + { + "id": "runtime@e014236", + "repo": "runtime", + "title": "Disable stackoverflowtester on unix-x64", + "url": "https://github.com/dotnet/runtime/pull/125048", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e014236", + "labels": [ + "area-ExceptionHandling-coreclr" + ] + }, + { + "id": "runtime@77f0e35", + "repo": "runtime", + "title": "Convert exception-related MethodDescCallSite calls to UnmanagedCallersOnly", + "url": "https://github.com/dotnet/runtime/pull/124834", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@77f0e35", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@64d10ef", + "repo": "runtime", + "title": "Replace string.Compare == 0 patterns with Equals/StartsWith/AsSpan calls", + "url": "https://github.com/dotnet/runtime/pull/124566", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@64d10ef", + "labels": [ + "area-Meta" + ] + }, + { + "id": "runtime@e0d7d73", + "repo": "runtime", + "title": "Disable superpmi tests on Mono", + "url": "https://github.com/dotnet/runtime/pull/125007", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e0d7d73", + "labels": [ + "os-linux", + "area-Infrastructure-mono" + ] + }, + { + "id": "runtime@4a0bfed", + "repo": "runtime", + "title": "JIT: Fix reordering of inlinee return expression with async save/restore", + "url": "https://github.com/dotnet/runtime/pull/125044", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4a0bfed", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@20650a9", + "repo": "runtime", + "title": "Fix StreamPipeReader.CopyToAsync not advancing past buffered data", + "url": "https://github.com/dotnet/runtime/pull/124989", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@20650a9", + "labels": [ + "bug", + "area-System.IO.Pipelines" + ] + }, + { + "id": "runtime@8277247", + "repo": "runtime", + "title": "Cleanup basic block", + "url": "https://github.com/dotnet/runtime/pull/124915", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8277247", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@e01d40a", + "repo": "runtime", + "title": "Array stack iterators", + "url": "https://github.com/dotnet/runtime/pull/125027", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e01d40a", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@12dbdb7", + "repo": "runtime", + "title": "[browser][coreCLR] throttling \u002B WBT", + "url": "https://github.com/dotnet/runtime/pull/124969", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@12dbdb7", + "labels": [ + "arch-wasm", + "area-Host", + "os-browser" + ] + }, + { + "id": "runtime@b0bc48e", + "repo": "runtime", + "title": "[Wasm RyuJIT] Block Stores pt. 2", + "url": "https://github.com/dotnet/runtime/pull/124846", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b0bc48e", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@3a04c26", + "repo": "runtime", + "title": "[RISC-V] Enable instruction printing for the \u0060Generate code\u0060 phase in JIT dumps", + "url": "https://github.com/dotnet/runtime/pull/122485", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3a04c26", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution", + "arch-riscv" + ] + }, + { + "id": "runtime@0b62fdf", + "repo": "runtime", + "title": "[cDAC] Fix NonVirtualEntry2MethodDesc to handle invalid precode addresses", + "url": "https://github.com/dotnet/runtime/pull/124986", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0b62fdf", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@daa66d1", + "repo": "runtime", + "title": "Add guidelines for RequiresProcessIsolation in tests", + "url": "https://github.com/dotnet/runtime/pull/125034", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@daa66d1", + "labels": [ + "area-System.Diagnostics.Process" + ] + }, + { + "id": "runtime@371f3c3", + "repo": "runtime", + "title": "Switch ilasm to Antlr4BuildTasks", + "url": "https://github.com/dotnet/runtime/pull/124764", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@371f3c3", + "labels": [ + "area-ILTools-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@264cff6", + "repo": "runtime", + "title": "Fix WASM boot config ContentRoot to use IntermediateOutputPath", + "url": "https://github.com/dotnet/runtime/pull/124125", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@264cff6", + "labels": [ + "arch-wasm", + "area-Meta", + "os-browser" + ] + }, + { + "id": "runtime@442f29b", + "repo": "runtime", + "title": "JIT: Fix late devirtualization debug info for inlining", + "url": "https://github.com/dotnet/runtime/pull/125045", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@442f29b", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@3f4b0c5", + "repo": "runtime", + "title": "fix SupportsWasmIntrinsics", + "url": "https://github.com/dotnet/runtime/pull/125046", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3f4b0c5", + "labels": [ + "arch-wasm", + "os-browser", + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@b4cf4e4", + "repo": "runtime", + "title": "JIT: Normalize optimizations for ConditionalSelect and BlendVariable", + "url": "https://github.com/dotnet/runtime/pull/123146", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b4cf4e4", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@5fcfea1", + "repo": "runtime", + "title": "Move diagnostics out of JSImportGenerator and JSExportGenerator into a separate analyzer", + "url": "https://github.com/dotnet/runtime/pull/124671", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5fcfea1", + "labels": [ + "area-System.Runtime.InteropServices.JavaScript" + ] + }, + { + "id": "runtime@f3ee269", + "repo": "runtime", + "title": "Move diagnostics from ComInterfaceGenerator and VtableIndexStubGenerator into separate analyzers", + "url": "https://github.com/dotnet/runtime/pull/124669", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f3ee269", + "labels": [ + "area-System.Runtime.InteropServices" + ] + }, + { + "id": "runtime@a155715", + "repo": "runtime", + "title": "[Tests][UserEvents] Improve test timing and re-enable tests", + "url": "https://github.com/dotnet/runtime/pull/124919", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a155715", + "labels": [ + "area-Tracing-coreclr" + ] + }, + { + "id": "runtime@0f01e11", + "repo": "runtime", + "title": "Implement TraverseRCWCleanupList cDAC API", + "url": "https://github.com/dotnet/runtime/pull/124938", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0f01e11", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@56ddfa0", + "repo": "runtime", + "title": "[Wasm RyuJit] annotate (some) local accesses with var nums", + "url": "https://github.com/dotnet/runtime/pull/124880", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@56ddfa0", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@9766d74", + "repo": "runtime", + "title": "Convert PREPARE_SIMPLE_VIRTUAL_CALLSITE usages to use the UCO pattern", + "url": "https://github.com/dotnet/runtime/pull/124921", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9766d74", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@39403ad", + "repo": "runtime", + "title": "Fix DuplicateRootAssembly assert failure", + "url": "https://github.com/dotnet/runtime/pull/125032", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@39403ad", + "labels": [ + "linkable-framework", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@df1ab13", + "repo": "runtime", + "title": "[wasm][coreclr] Disable tests which need native relinking in Pri1", + "url": "https://github.com/dotnet/runtime/pull/125062", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@df1ab13", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@744234e", + "repo": "runtime", + "title": "[clr-interp] Add reverse P/Invoke support for the Swift calling convention to the CoreCLR interpreter on arm64", + "url": "https://github.com/dotnet/runtime/pull/124927", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@744234e", + "labels": [ + "os-ios", + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@d5cfd7b", + "repo": "runtime", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 679: Build ID 2917025", + "url": "https://github.com/dotnet/runtime/pull/125081", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d5cfd7b", + "labels": [ + "area-Extensions-Logging" + ] + }, + { + "id": "runtime@ce7caaf", + "repo": "runtime", + "title": "Fixed some potential null derefs in coreclr", + "url": "https://github.com/dotnet/runtime/pull/123939", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ce7caaf", + "labels": [ + "area-PAL-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@17b089f", + "repo": "runtime", + "title": "Fix incorrect \u0060excludeAgent\u0060 identifier in copilot-instructions.md", + "url": "https://github.com/dotnet/runtime/pull/125082", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@17b089f", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@a964328", + "repo": "runtime", + "title": "[wasm][coreclr] Improve method portable entrypoints lifecycle", + "url": "https://github.com/dotnet/runtime/pull/124868", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a964328", + "labels": [ + "arch-wasm", + "area-VM-coreclr" + ] + }, + { + "id": "runtime@0a4a347", + "repo": "runtime", + "title": "[HTTP] Small comment", + "url": "https://github.com/dotnet/runtime/pull/125106", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0a4a347", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@4d392de", + "repo": "runtime", + "title": "Fix Copilot not working in forks", + "url": "https://github.com/dotnet/runtime/pull/125112", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4d392de", + "labels": [ + "area-Infrastructure", + "community-contribution" + ] + }, + { + "id": "runtime@cc61b18", + "repo": "runtime", + "title": "Remove Debug.Assert in SetSslCertificate that aborts process during dispose-during-handshake race", + "url": "https://github.com/dotnet/runtime/pull/124631", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cc61b18", + "labels": [ + "area-System.Net.Security" + ] + }, + { + "id": "runtime@f2abb7c", + "repo": "runtime", + "title": "Use SetValueTruncating instead of SetIconValue", + "url": "https://github.com/dotnet/runtime/pull/125055", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f2abb7c", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@0e73bdc", + "repo": "runtime", + "title": "Fix max_slots in DacHandleTableMemoryEnumerator::Init() to use g_totalCpuCount", + "url": "https://github.com/dotnet/runtime/pull/125067", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0e73bdc", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@a8a0309", + "repo": "runtime", + "title": "Fix variable shadowing bug in DacFreeRegionEnumerator::AddServerRegions", + "url": "https://github.com/dotnet/runtime/pull/125068", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a8a0309", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@8af6d06", + "repo": "runtime", + "title": "arm64: Fixed using ands/bics to compare against static unsigned constant 0", + "url": "https://github.com/dotnet/runtime/pull/124601", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8af6d06", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@ee282ee", + "repo": "runtime", + "title": "Implement ISOSDacInterface::GetJitManagerList in cDAC SOSDacImpl", + "url": "https://github.com/dotnet/runtime/pull/124815", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ee282ee", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@b18bf5e", + "repo": "runtime", + "title": "[Wasm RyuJIT] Block Stores follow-ups", + "url": "https://github.com/dotnet/runtime/pull/125078", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b18bf5e", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@df927b5", + "repo": "runtime", + "title": "Revert \u0022[HTTP] Small comment\u0022", + "url": "https://github.com/dotnet/runtime/pull/125120", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@df927b5", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@d8aa6be", + "repo": "runtime", + "title": "Prefer partial declarations with commented-out existing APIs in api-proposal skill", + "url": "https://github.com/dotnet/runtime/pull/125104", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d8aa6be", + "labels": [ + "area-skills" + ] + }, + { + "id": "runtime@9524c93", + "repo": "runtime", + "title": "Code review skill: support verifying approved APIs when new APIs are added.", + "url": "https://github.com/dotnet/runtime/pull/125130", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9524c93", + "labels": [ + "area-skills" + ] + }, + { + "id": "runtime@0034033", + "repo": "runtime", + "title": "Remove stale information in ArrayPool.Shared remarks", + "url": "https://github.com/dotnet/runtime/pull/125109", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0034033", + "labels": [ + "area-System.Buffers", + "community-contribution" + ] + }, + { + "id": "runtime@523aab9", + "repo": "runtime", + "title": "cDAC: implement GetSyncBlockCleanupData", + "url": "https://github.com/dotnet/runtime/pull/125009", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@523aab9", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@60ed188", + "repo": "runtime", + "title": "Pass \u0060MessageOrigin\u0060 to the \u0060DoAdditional*Processing\u0060 methods.", + "url": "https://github.com/dotnet/runtime/pull/124971", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@60ed188", + "labels": [ + "linkable-framework", + "community-contribution", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@92dc544", + "repo": "runtime", + "title": "Wasm loop aware rpo compute last block in loop quickly", + "url": "https://github.com/dotnet/runtime/pull/125101", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@92dc544", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@6bd4752", + "repo": "runtime", + "title": "Add metric usage diff to SPMI reports", + "url": "https://github.com/dotnet/runtime/pull/124943", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6bd4752", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@3bd006f", + "repo": "runtime", + "title": "JIT: Accelerate uint-\u003Efloating casts on pre-AVX-512 x86", + "url": "https://github.com/dotnet/runtime/pull/124114", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3bd006f", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution", + "avx512" + ] + }, + { + "id": "runtime@4172d0e", + "repo": "runtime", + "title": "[RyuJit] Add \u0060VisitOperandUses\u0060", + "url": "https://github.com/dotnet/runtime/pull/125073", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4172d0e", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@f62984c", + "repo": "runtime", + "title": "Add AVX512 BMM API", + "url": "https://github.com/dotnet/runtime/pull/124804", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f62984c", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@9f2179d", + "repo": "runtime", + "title": "New function pointer APIs", + "url": "https://github.com/dotnet/runtime/pull/123819", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9f2179d", + "labels": [ + "area-System.Reflection", + "community-contribution" + ] + }, + { + "id": "runtime@4fa917e", + "repo": "runtime", + "title": "Add a regression test to validate sample profiling events", + "url": "https://github.com/dotnet/runtime/pull/124410", + "commit": "dotnet@c722a3a", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4fa917e", + "labels": [ + "area-Tracing-coreclr" + ] + }, + { + "id": "runtime@9515659", + "repo": "runtime", + "title": "Fix JIT \u0060assert\u0060 resolving to C runtime assert after jitshared introduction", + "url": "https://github.com/dotnet/runtime/pull/124977", + "commit": "dotnet@c722a3a", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9515659", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@e524be6", + "repo": "runtime", + "title": "Use a platform-neutral name for \u0060Microsoft.DiaSymReader.Native\u0060", + "url": "https://github.com/dotnet/runtime/pull/125165", + "commit": "dotnet@c722a3a", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e524be6", + "labels": [ + "area-crossgen2-coreclr" + ] + }, + { + "id": "runtime@350951d", + "repo": "runtime", + "title": "docs: document that ServiceProvider.Dispose() throws for async-only disposables, recommend DisposeAsync()", + "url": "https://github.com/dotnet/runtime/pull/124966", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@350951d", + "labels": [ + "area-Extensions-DependencyInjection" + ] + }, + { + "id": "runtime@e4c1aa0", + "repo": "runtime", + "title": "Align HttpListener.GetContext() exception across platforms for Stop/Abort/Close", + "url": "https://github.com/dotnet/runtime/pull/123360", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e4c1aa0", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@4895491", + "repo": "runtime", + "title": "Add cDAC tests and implementation for GetGenerationTable and GetFinalizationFillPointers", + "url": "https://github.com/dotnet/runtime/pull/124674", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4895491", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@334619b", + "repo": "runtime", + "title": "JIT: Lower aggressiveRefCnt minimum threshold for CSE promotion", + "url": "https://github.com/dotnet/runtime/pull/125028", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@334619b", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@3a74e2a", + "repo": "runtime", + "title": "Improve range analysis for checked bounds in GlobalAP", + "url": "https://github.com/dotnet/runtime/pull/125056", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3a74e2a", + "labels": [ + "area-CodeGen-coreclr", + "reduce-unsafe" + ] + }, + { + "id": "runtime@39fda2c", + "repo": "runtime", + "title": "Disable System.Net.Http.Functional.Tests on Android CoreCLR", + "url": "https://github.com/dotnet/runtime/pull/125171", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@39fda2c", + "labels": [ + "area-System.Net.Http", + "os-android" + ] + }, + { + "id": "runtime@917aa94", + "repo": "runtime", + "title": "Update copilot testing instructions", + "url": "https://github.com/dotnet/runtime/pull/124421", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@917aa94", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@ac68348", + "repo": "runtime", + "title": "Remove dead Windows 7 conditions and inline CheckKeyConsistency in PfxFormatTests", + "url": "https://github.com/dotnet/runtime/pull/125142", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ac68348", + "labels": [ + "area-System.Security", + "test-enhancement" + ] + }, + { + "id": "runtime@4417a32", + "repo": "runtime", + "title": "Add initial cross-build support for OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/125088", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4417a32", + "labels": [ + "area-Infrastructure", + "os-openbsd" + ] + }, + { + "id": "runtime@14c4360", + "repo": "runtime", + "title": "Ignore PhiArgs without matching actual preds", + "url": "https://github.com/dotnet/runtime/pull/125093", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@14c4360", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@4d77205", + "repo": "runtime", + "title": "Add tests for Volatile.ReadBarrier and Volatile.WriteBarrier", + "url": "https://github.com/dotnet/runtime/pull/124558", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4d77205", + "labels": [ + "area-System.Threading" + ] + }, + { + "id": "runtime@86a9fbf", + "repo": "runtime", + "title": "Fix native AOT test failures in System.Reflection.Context tests", + "url": "https://github.com/dotnet/runtime/pull/125080", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@86a9fbf", + "labels": [ + "area-System.Reflection" + ] + }, + { + "id": "runtime@96fbbc2", + "repo": "runtime", + "title": "More flowgraph cleanup", + "url": "https://github.com/dotnet/runtime/pull/125100", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@96fbbc2", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@8ffb906", + "repo": "runtime", + "title": "Fix locating files in \u0060GetCommonSourceFiles\u0060", + "url": "https://github.com/dotnet/runtime/pull/125123", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8ffb906", + "labels": [ + "linkable-framework", + "community-contribution", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@7603a59", + "repo": "runtime", + "title": "Detect circular dependencies in factory-based service registrations at runtime", + "url": "https://github.com/dotnet/runtime/pull/124331", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7603a59", + "labels": [ + "area-Extensions-DependencyInjection" + ] + }, + { + "id": "runtime@3ee5a25", + "repo": "runtime", + "title": "JIT: fix don\u0027t remove issue for loop/try split", + "url": "https://github.com/dotnet/runtime/pull/125188", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3ee5a25", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@fc40302", + "repo": "runtime", + "title": "Add CodeQL query exclusions for dangerous deserialization rules", + "url": "https://github.com/dotnet/runtime/pull/125016", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fc40302", + "labels": [ + "area-Meta" + ] + }, + { + "id": "runtime@ef560fa", + "repo": "runtime", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/runtime/pull/125030", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ef560fa", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@d906a29", + "repo": "runtime", + "title": "[browser][coreclr] Conditionally disable tests which need MT in Pri1", + "url": "https://github.com/dotnet/runtime/pull/125119", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d906a29", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@349bdb0", + "repo": "runtime", + "title": "Add RecommendedReaderVersion advisory mechanism to cDAC RuntimeInfo contract", + "url": "https://github.com/dotnet/runtime/pull/125029", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@349bdb0", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@8e672f4", + "repo": "runtime", + "title": "[RyuJit/WASM] Disable args sorting", + "url": "https://github.com/dotnet/runtime/pull/125187", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8e672f4", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@0a4314b", + "repo": "runtime", + "title": "SVE: truncate Extract results for small types", + "url": "https://github.com/dotnet/runtime/pull/125172", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0a4314b", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@79898c7", + "repo": "runtime", + "title": "[mono][sgen] Fix card scanning in LOS non-array objects", + "url": "https://github.com/dotnet/runtime/pull/125116", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@79898c7", + "labels": [ + "area-GC-mono" + ] + }, + { + "id": "runtime@e722f65", + "repo": "runtime", + "title": "Add visit budget checks to IsMonotonicallyIncreasing and ComputeDoesOverflow", + "url": "https://github.com/dotnet/runtime/pull/125156", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e722f65", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@1136c24", + "repo": "runtime", + "title": "Reduce custom operator behavior in the Volatile\u003CT\u003E structure", + "url": "https://github.com/dotnet/runtime/pull/124244", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1136c24", + "labels": [ + "area-PAL-coreclr" + ] + }, + { + "id": "runtime@fd34985", + "repo": "runtime", + "title": "[RyuJit/WASW] Insert temporaries when needed in the stackifier", + "url": "https://github.com/dotnet/runtime/pull/125146", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fd34985", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@b9d3bb8", + "repo": "runtime", + "title": "Add gap fill yaml for gap fill tool", + "url": "https://github.com/dotnet/runtime/pull/125154", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b9d3bb8", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@57b4485", + "repo": "runtime", + "title": "[cDAC] Implement GetCurrentAppDomain on IXCLRDataTask", + "url": "https://github.com/dotnet/runtime/pull/124996", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@57b4485", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@41437b2", + "repo": "runtime", + "title": "Remove mcs stuff from linker test framework.", + "url": "https://github.com/dotnet/runtime/pull/125223", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@41437b2", + "labels": [ + "linkable-framework", + "community-contribution", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@7023c7c", + "repo": "runtime", + "title": "Mark SampleProfilerSampleType.TestEntryPoint with [ActiveIssue] for Native AOT", + "url": "https://github.com/dotnet/runtime/pull/125218", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7023c7c", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@fbcde99", + "repo": "runtime", + "title": "Adjustments to how compiler generated types are ignored.", + "url": "https://github.com/dotnet/runtime/pull/125183", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fbcde99", + "labels": [ + "linkable-framework", + "community-contribution", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@d4a8aa2", + "repo": "runtime", + "title": "Make MarkAssembly virtual again", + "url": "https://github.com/dotnet/runtime/pull/125190", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d4a8aa2", + "labels": [ + "linkable-framework", + "community-contribution", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@51b1e92", + "repo": "runtime", + "title": "Revert \u0022A few fixes in the threadpool semaphore. Unify Windows/Unix implementation of LIFO policy.\u0022", + "url": "https://github.com/dotnet/runtime/pull/125193", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@51b1e92", + "labels": [ + "area-System.Threading" + ] + }, + { + "id": "runtime@c86ebf2", + "repo": "runtime", + "title": "Fix \u0060getAsyncOtherVariant\u0060 JIT-EE implementation in VM", + "url": "https://github.com/dotnet/runtime/pull/125225", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c86ebf2", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@b85f109", + "repo": "runtime", + "title": "Allocate all long-lived contents of interpreter memory via the jit interface allocation apis", + "url": "https://github.com/dotnet/runtime/pull/125091", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b85f109", + "labels": [ + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@7db8a8c", + "repo": "runtime", + "title": "Fix zstd install rules breaking clr.runtime clean build", + "url": "https://github.com/dotnet/runtime/pull/125063", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7db8a8c", + "labels": [ + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@289f5cd", + "repo": "runtime", + "title": "Remove Windows 7 support code from System.Net.Security", + "url": "https://github.com/dotnet/runtime/pull/124555", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@289f5cd", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@8b63bd2", + "repo": "runtime", + "title": "Expose HTTP.sys kernel response buffering control for HttpListener on Windows", + "url": "https://github.com/dotnet/runtime/pull/124720", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8b63bd2", + "labels": [ + "area-System.Net.Http", + "new-api-needs-documentation", + "community-contribution" + ] + }, + { + "id": "runtime@eab25ef", + "repo": "runtime", + "title": "Fix NTLM ProcessTargetInfo returning wrong buffer slice when skipping entries", + "url": "https://github.com/dotnet/runtime/pull/125201", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@eab25ef", + "labels": [ + "area-System.Net.Security" + ] + }, + { + "id": "runtime@a32dd4a", + "repo": "runtime", + "title": "Change bbAssertionOut if BBJ_COND was folded in morph", + "url": "https://github.com/dotnet/runtime/pull/125222", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a32dd4a", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@c863d2e", + "repo": "runtime", + "title": "Skip cross process mutex on OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/125089", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c863d2e", + "labels": [ + "area-System.Threading", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@b7a0ff8", + "repo": "runtime", + "title": "[wasm][coreclr] Re-enable few runtime tests", + "url": "https://github.com/dotnet/runtime/pull/125216", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b7a0ff8", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@d0118d9", + "repo": "runtime", + "title": "Fix bounds checks in #123085 repro", + "url": "https://github.com/dotnet/runtime/pull/125235", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d0118d9", + "labels": [ + "area-CodeGen-coreclr", + "reduce-unsafe" + ] + }, + { + "id": "runtime@dd20361", + "repo": "runtime", + "title": "[cDAC] Relax HRESULT validation to allow divergent failure codes", + "url": "https://github.com/dotnet/runtime/pull/125236", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@dd20361", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@dd2f6d3", + "repo": "runtime", + "title": "[Wasm RyuJit] More crossgen assert fixes", + "url": "https://github.com/dotnet/runtime/pull/125102", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@dd2f6d3", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@defb8dc", + "repo": "runtime", + "title": "[Tests][UserEvents] Bump tracee timeout and add logs", + "url": "https://github.com/dotnet/runtime/pull/125232", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@defb8dc", + "labels": [ + "area-Tracing-coreclr" + ] + }, + { + "id": "runtime@5794053", + "repo": "runtime", + "title": "[RyuJit] Remove dead code from \u0060genCallInstruction\u0060", + "url": "https://github.com/dotnet/runtime/pull/125239", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5794053", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@fa46e22", + "repo": "runtime", + "title": "Remove obsolete ILLink dependency analyzer project and references", + "url": "https://github.com/dotnet/runtime/pull/125242", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fa46e22", + "labels": [ + "linkable-framework", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@64efb69", + "repo": "runtime", + "title": "Convert priority 3 MethodDescCallSite calls to UnmanagedCallersOnly", + "url": "https://github.com/dotnet/runtime/pull/124854", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@64efb69", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@df0800e", + "repo": "runtime", + "title": "Remove resolved ActiveIssue skip attributes from IO.FileSystem tests", + "url": "https://github.com/dotnet/runtime/pull/14378", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@df0800e" + }, + { + "id": "runtime@6bf2076", + "repo": "runtime", + "title": "[cDAC] Add custom marshallers for COM interface parameters", + "url": "https://github.com/dotnet/runtime/pull/125132", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6bf2076", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@87a63e2", + "repo": "runtime", + "title": "[cDAC] Add continuation support to RuntimeTypeSystem", + "url": "https://github.com/dotnet/runtime/pull/124918", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@87a63e2", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@54bc18d", + "repo": "runtime", + "title": "Remove some unnecessary EventSource suppressions", + "url": "https://github.com/dotnet/runtime/pull/125258", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@54bc18d", + "labels": [ + "area-System.Diagnostics.Tracing" + ] + }, + { + "id": "runtime@703be08", + "repo": "runtime", + "title": "JIT: Handle some def/use conflicts less conservatively in LSRA", + "url": "https://github.com/dotnet/runtime/pull/125214", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@703be08", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@777eae3", + "repo": "runtime", + "title": "Fix interpreter async suspend DiagnosticIP calculation", + "url": "https://github.com/dotnet/runtime/pull/125282", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@777eae3", + "labels": [ + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@f25f0e2", + "repo": "runtime", + "title": "Fix BOL anchor not writing back updated position in TryFindNextPossibleStartingPosition", + "url": "https://github.com/dotnet/runtime/pull/125280", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f25f0e2", + "labels": [ + "area-System.Text.RegularExpressions" + ] + }, + { + "id": "runtime@5db8084", + "repo": "runtime", + "title": "Revert \u0022Eliminate forwarder stubs by reusing method precodes for call counting indirection\u0022", + "url": "https://github.com/dotnet/runtime/pull/125285", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5db8084", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@72e6a29", + "repo": "runtime", + "title": "Implement cDAC API GetCCWInterfaces", + "url": "https://github.com/dotnet/runtime/pull/124940", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@72e6a29", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@f09bc75", + "repo": "runtime", + "title": "Replace MemoryBarrier with Volatile operations in HashMap", + "url": "https://github.com/dotnet/runtime/pull/125259", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f09bc75", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@28baa45", + "repo": "runtime", + "title": "Fix GetModule_ReturnsModule test failure on browser-wasm", + "url": "https://github.com/dotnet/runtime/pull/125286", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@28baa45", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@8151eb1", + "repo": "runtime", + "title": "Issue 125270", + "url": "https://github.com/dotnet/runtime/pull/125271", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8151eb1", + "labels": [ + "area-Meta", + "community-contribution" + ] + }, + { + "id": "runtime@363f8a1", + "repo": "runtime", + "title": "Fix interpreting baud rate bitmask as decimal value", + "url": "https://github.com/dotnet/runtime/pull/123348", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@363f8a1", + "labels": [ + "community-contribution", + "area-System.IO.Ports" + ] + }, + { + "id": "runtime@d36b8cc", + "repo": "runtime", + "title": "Add missing Invalidate() calls to FileInfo state-changing methods", + "url": "https://github.com/dotnet/runtime/pull/124429", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d36b8cc", + "labels": [ + "area-System.IO", + "community-contribution" + ] + }, + { + "id": "runtime@9e13695", + "repo": "runtime", + "title": "Binary writer fix", + "url": "https://github.com/dotnet/runtime/pull/107369", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9e13695", + "labels": [ + "area-System.IO", + "community-contribution" + ] + }, + { + "id": "runtime@cd38a58", + "repo": "runtime", + "title": "Refactor C# DIM resolution to match C\u002B\u002B structure and fix static virtual dispatch", + "url": "https://github.com/dotnet/runtime/pull/125205", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cd38a58", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@e9ec642", + "repo": "runtime", + "title": "Ensure DAC volatile globals included in mini dump", + "url": "https://github.com/dotnet/runtime/pull/125310", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e9ec642", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@2255eec", + "repo": "runtime", + "title": "[wasm][coreclr] Fix call delegate with IL stubs", + "url": "https://github.com/dotnet/runtime/pull/125138", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2255eec", + "labels": [ + "arch-wasm", + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@bd3fd16", + "repo": "runtime", + "title": "Disable AIA certificate downloads for server client-cert validation by default", + "url": "https://github.com/dotnet/runtime/pull/125049", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@bd3fd16", + "labels": [ + "area-System.Net.Security", + "breaking-change" + ] + }, + { + "id": "runtime@a962f34", + "repo": "runtime", + "title": "Pre-compute and cache boundary delimiter in MultipartContent", + "url": "https://github.com/dotnet/runtime/pull/124963", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a962f34", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@0d0e129", + "repo": "runtime", + "title": "JIT: Disallow partial compilation of runtime async functions", + "url": "https://github.com/dotnet/runtime/pull/125267", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0d0e129", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@d7c26f7", + "repo": "runtime", + "title": "Add FileHandleType enum and SafeFileHandle.Type property", + "url": "https://github.com/dotnet/runtime/pull/124561", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d7c26f7", + "labels": [ + "area-System.IO" + ] + }, + { + "id": "runtime@da21ce4", + "repo": "runtime", + "title": "Re-enable PlatformHandlerTest_Cookies_Http2 for WinHttpHandler", + "url": "https://github.com/dotnet/runtime/pull/125261", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@da21ce4", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@4694968", + "repo": "runtime", + "title": "JIT: Clean up comments and remove redundancy in flowgraph.cpp", + "url": "https://github.com/dotnet/runtime/pull/125292", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4694968", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@1b78ef7", + "repo": "runtime", + "title": "Implement SVE2 Counting APIs", + "url": "https://github.com/dotnet/runtime/pull/122602", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1b78ef7", + "labels": [ + "area-System.Runtime.Intrinsics", + "community-contribution" + ] + }, + { + "id": "runtime@fdb01f4", + "repo": "runtime", + "title": "Re-enable Manual_CertificateOnlySentWhenValid_Success for WinHttpHandler", + "url": "https://github.com/dotnet/runtime/pull/125262", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fdb01f4", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@9641dda", + "repo": "runtime", + "title": "Bump serialize-javascript and @rollup/plugin-terser in /src/native", + "url": "https://github.com/dotnet/runtime/pull/125230", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9641dda", + "labels": [ + "area-codeflow", + "javascript", + "dependencies" + ] + }, + { + "id": "runtime@8d8e749", + "repo": "runtime", + "title": "[Wasm RyuJIT] Fix classifier embiggening small structs that are being passed-as a wasm primitive", + "url": "https://github.com/dotnet/runtime/pull/125278", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8d8e749", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@c1db431", + "repo": "runtime", + "title": "Revert \u0022Bump serialize-javascript and @rollup/plugin-terser in /src/native\u0022", + "url": "https://github.com/dotnet/runtime/pull/125340", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c1db431", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@6b6bfe3", + "repo": "runtime", + "title": "Move NullableBool to Common with sbyte backing; replace scattered tri-state int/sbyte patterns", + "url": "https://github.com/dotnet/runtime/pull/125307", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6b6bfe3", + "labels": [ + "area-Meta" + ] + }, + { + "id": "runtime@e717462", + "repo": "runtime", + "title": "Stop ilasm from printing warnings when -ERR option is specified", + "url": "https://github.com/dotnet/runtime/pull/125320", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e717462", + "labels": [ + "area-ILTools-coreclr" + ] + }, + { + "id": "runtime@1709ae0", + "repo": "runtime", + "title": "[wasm] Bump chrome for testing - linux: 145.0.7632.116, windows: 146.0.7680.31", + "url": "https://github.com/dotnet/runtime/pull/125017", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1709ae0", + "labels": [ + "arch-wasm", + "area-Infrastructure-mono" + ] + }, + { + "id": "runtime@a6a3b3d", + "repo": "runtime", + "title": "Implement ISOSDacInterface::GetLoaderAllocatorHeapNames and GetLoaderAllocatorHeaps in cDAC SOSDacImpl", + "url": "https://github.com/dotnet/runtime/pull/124818", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a6a3b3d", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@376038b", + "repo": "runtime", + "title": "SVE: Match, NoMatch", + "url": "https://github.com/dotnet/runtime/pull/125163", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@376038b", + "labels": [ + "area-System.Runtime.Intrinsics" + ] + }, + { + "id": "runtime@919358b", + "repo": "runtime", + "title": "[X86][APX] Update the CPUID check logics for APX.", + "url": "https://github.com/dotnet/runtime/pull/124624", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@919358b", + "labels": [ + "area-Infrastructure", + "community-contribution" + ] + }, + { + "id": "runtime@d19b7ca", + "repo": "runtime", + "title": "[Wasm RyuJIT] Call signatures", + "url": "https://github.com/dotnet/runtime/pull/125153", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d19b7ca", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@0f023aa", + "repo": "runtime", + "title": "[Wasm RyuJIT] Handle case where a TYP_STRUCT return has had its type information erased and we are trying to write it to a TYP_STRUCT local", + "url": "https://github.com/dotnet/runtime/pull/125279", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0f023aa", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@e3b528c", + "repo": "runtime", + "title": "JIT: Expand simple stfld addresses early and spill data nodes to retain evaluation order", + "url": "https://github.com/dotnet/runtime/pull/125141", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e3b528c", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@535c5de", + "repo": "runtime", + "title": "Rework and simplify initial versioning and tiering rules", + "url": "https://github.com/dotnet/runtime/pull/125243", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@535c5de", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@173bdac", + "repo": "runtime", + "title": "Do not AOT compile ilc/crossgen2 twice", + "url": "https://github.com/dotnet/runtime/pull/125316", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@173bdac", + "labels": [ + "area-crossgen2-coreclr" + ] + }, + { + "id": "runtime@8a0eb39", + "repo": "runtime", + "title": "[wasm][coreclr] Improve reverse thunk lookup", + "url": "https://github.com/dotnet/runtime/pull/124730", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8a0eb39", + "labels": [ + "arch-wasm", + "area-VM-coreclr" + ] + }, + { + "id": "runtime@68de53c", + "repo": "runtime", + "title": "JIT: Disallow op2 for \u0060mulx\u0060 to be in \u0060edx\u0060", + "url": "https://github.com/dotnet/runtime/pull/125331", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@68de53c", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@78af167", + "repo": "runtime", + "title": "Read USTAR prefix field for PAX format entries in TarReader", + "url": "https://github.com/dotnet/runtime/pull/125344", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@78af167", + "labels": [ + "area-System.Formats.Tar" + ] + }, + { + "id": "runtime@aa40c57", + "repo": "runtime", + "title": "Improve documentation for ServiceProvider.DisposeAsync.", + "url": "https://github.com/dotnet/runtime/pull/125369", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@aa40c57", + "labels": [ + "area-Extensions-DependencyInjection" + ] + }, + { + "id": "runtime@2e14703", + "repo": "runtime", + "title": "[browser][coreclr] Fix corerun to run in browser again", + "url": "https://github.com/dotnet/runtime/pull/125322", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2e14703", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@59dc3d0", + "repo": "runtime", + "title": "[Tests][UserEvents] Fix tracee discovery race and improve failure diagnostics", + "url": "https://github.com/dotnet/runtime/pull/125345", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@59dc3d0", + "labels": [ + "area-Tracing-coreclr" + ] + }, + { + "id": "runtime@b78173c", + "repo": "runtime", + "title": "Fix fatal sched_setaffinity EPERM failure during PAL initialization on restricted kernels", + "url": "https://github.com/dotnet/runtime/pull/125361", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b78173c", + "labels": [ + "area-PAL-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@3b580ea", + "repo": "runtime", + "title": "Adding _tls_index global pointer to DACVARs", + "url": "https://github.com/dotnet/runtime/pull/125318", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3b580ea", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@cebec3d", + "repo": "runtime", + "title": "Run CI for all copilot/* PRs", + "url": "https://github.com/dotnet/runtime/pull/125380", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cebec3d", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@e07aba4", + "repo": "runtime", + "title": "[coreclr] Fix LoadLibraryInitializer test", + "url": "https://github.com/dotnet/runtime/pull/125176", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e07aba4", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr", + "os-browser" + ] + }, + { + "id": "runtime@2a4ede4", + "repo": "runtime", + "title": "JIT: Fix patchpoint info out-of-bounds read for special OSR locals", + "url": "https://github.com/dotnet/runtime/pull/125378", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2a4ede4", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@5ed2d9b", + "repo": "runtime", + "title": "[RyuJIT] Add a JIT flag for Portable Entry Points and set it by default for Browser compilations", + "url": "https://github.com/dotnet/runtime/pull/125284", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5ed2d9b", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@3b64f3d", + "repo": "runtime", + "title": "[main] Update dependencies from dotnet/icu, dotnet/runtime-assets", + "url": "https://github.com/dotnet/runtime/pull/125390", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3b64f3d", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@65b2bc1", + "repo": "runtime", + "title": "Emit runtime-async methods in crossgen2", + "url": "https://github.com/dotnet/runtime/pull/124203", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@65b2bc1", + "labels": [ + "area-crossgen2-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@85149f3", + "repo": "runtime", + "title": "[Wasm RyuJIT] Disable multireg ret assert on Wasm because we don\u0027t have multireg rets there", + "url": "https://github.com/dotnet/runtime/pull/125342", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@85149f3", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@093df0c", + "repo": "runtime", + "title": "Extract diagnostic reporting out of COM class generator", + "url": "https://github.com/dotnet/runtime/pull/125308", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@093df0c", + "labels": [ + "area-System.Runtime.InteropServices", + "community-contribution" + ] + }, + { + "id": "runtime@f5a27eb", + "repo": "runtime", + "title": "Implement SVE2 non-temporal gather loads", + "url": "https://github.com/dotnet/runtime/pull/123890", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f5a27eb", + "labels": [ + "area-System.Runtime.Intrinsics", + "community-contribution" + ] + }, + { + "id": "runtime@4466dad", + "repo": "runtime", + "title": "Fix Ping RoundtripTime returning 0 for TtlExpired replies", + "url": "https://github.com/dotnet/runtime/pull/124424", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4466dad", + "labels": [ + "area-System.Net", + "community-contribution" + ] + }, + { + "id": "runtime@338e288", + "repo": "runtime", + "title": "[Wasm RyuJIT] Move genHomeRegisterParams\u0027 output out of the prolog", + "url": "https://github.com/dotnet/runtime/pull/125398", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@338e288", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@85e141e", + "repo": "runtime", + "title": "JIT: Stop treating GT_LCLHEAP as inherently exceptional and remove dead StackOverflowException flag", + "url": "https://github.com/dotnet/runtime/pull/125362", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@85e141e", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@1e1bbed", + "repo": "runtime", + "title": "[main] Update dependencies from dotnet/xharness", + "url": "https://github.com/dotnet/runtime/pull/124164", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1e1bbed", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@ab6d333", + "repo": "runtime", + "title": "Update copilot-instructions with git confirmation and code-review skip rules", + "url": "https://github.com/dotnet/runtime/pull/125414", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ab6d333", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@9a9b322", + "repo": "runtime", + "title": "[cDAC] Implement SOSDacImpl.GetRCWInterfaces", + "url": "https://github.com/dotnet/runtime/pull/124939", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9a9b322", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@de40271", + "repo": "runtime", + "title": "Fix Directory_Delete_MountVolume test: guard Unmount calls with Directory.Exists check", + "url": "https://github.com/dotnet/runtime/pull/125348", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@de40271", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@12d9fad", + "repo": "runtime", + "title": "Add Antlr license in THIRD-PARTY-NOTICES.TXT", + "url": "https://github.com/dotnet/runtime/pull/125387", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@12d9fad", + "labels": [ + "area-Setup", + "community-contribution" + ] + }, + { + "id": "runtime@f827a66", + "repo": "runtime", + "title": "[wasm][coreclr] Fix vtable issue and interpreter I4/I8 arithmetic", + "url": "https://github.com/dotnet/runtime/pull/125376", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f827a66", + "labels": [ + "arch-wasm", + "area-VM-coreclr" + ] + }, + { + "id": "runtime@3090433", + "repo": "runtime", + "title": "[LoongArch64] Place async resumption info in read-write section which reference #123433", + "url": "https://github.com/dotnet/runtime/pull/124213", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3090433", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution", + "arch-loongarch64" + ] + }, + { + "id": "runtime@a6d3a3e", + "repo": "runtime", + "title": "[LoongArch64] Enable Runtime Async. (issue#124935)", + "url": "https://github.com/dotnet/runtime/pull/125114", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a6d3a3e", + "labels": [ + "area-VM-coreclr", + "community-contribution", + "arch-loongarch64", + "runtime-async" + ] + }, + { + "id": "runtime@6b49b5c", + "repo": "runtime", + "title": "JIT: Fix invalid IR and weights in if-conversion", + "url": "https://github.com/dotnet/runtime/pull/125072", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6b49b5c", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@2aef513", + "repo": "runtime", + "title": "[LoongArch64] Fix the risk of boundary overflow for Unsigned GT_LE in CodeGen::genCodeForCompare().", + "url": "https://github.com/dotnet/runtime/pull/125382", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2aef513", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution", + "arch-loongarch64" + ] + }, + { + "id": "runtime@2c7ee19", + "repo": "runtime", + "title": "Fix source generator diagnostics to support #pragma warning disable", + "url": "https://github.com/dotnet/runtime/pull/124994", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2c7ee19", + "labels": [ + "area-System.Text.Json", + "source-generator" + ] + }, + { + "id": "runtime@07dc6fa", + "repo": "runtime", + "title": "[wasm] Bump chrome for testing - linux: 145.0.7632.159, windows: 146.0.7680.66", + "url": "https://github.com/dotnet/runtime/pull/125297", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@07dc6fa", + "labels": [ + "arch-wasm", + "area-Infrastructure-mono" + ] + }, + { + "id": "runtime@c346735", + "repo": "runtime", + "title": "[wasm][coreclr] Enable async v2 in tests", + "url": "https://github.com/dotnet/runtime/pull/125430", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c346735", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr", + "os-browser" + ] + }, + { + "id": "runtime@32a7ecb", + "repo": "runtime", + "title": "[RyuJit Wasm] Fix Signature Generation Bug with Un-called methods", + "url": "https://github.com/dotnet/runtime/pull/125090", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@32a7ecb", + "labels": [ + "arch-wasm", + "area-crossgen2-coreclr" + ] + }, + { + "id": "runtime@3f56fbb", + "repo": "runtime", + "title": "[cDAC] Implement GetContext and GetAppDomain on ClrDataFrame", + "url": "https://github.com/dotnet/runtime/pull/125064", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3f56fbb", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@a1b5da1", + "repo": "runtime", + "title": "Remove duplicated SVE GatherVector APIs", + "url": "https://github.com/dotnet/runtime/pull/124033", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a1b5da1", + "labels": [ + "area-System.Runtime.Intrinsics", + "community-contribution" + ] + }, + { + "id": "runtime@eb47fb6", + "repo": "runtime", + "title": "Fix TOCTOU race in AppDomain::LoadAssembly fast-path", + "url": "https://github.com/dotnet/runtime/pull/125408", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@eb47fb6", + "labels": [ + "area-AssemblyLoader-coreclr" + ] + }, + { + "id": "runtime@b27a8d2", + "repo": "runtime", + "title": "arm64: Remove widening casts before truncating", + "url": "https://github.com/dotnet/runtime/pull/123546", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b27a8d2", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@c77d32c", + "repo": "runtime", + "title": "Align final section to file alignment, not to virtual image size", + "url": "https://github.com/dotnet/runtime/pull/124984", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c77d32c", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@f5407bd", + "repo": "runtime", + "title": "Mark Runtime_76219 GC regression test as CLRTestTargetUnsupported", + "url": "https://github.com/dotnet/runtime/pull/125249", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f5407bd", + "labels": [ + "area-System.Runtime" + ] + }, + { + "id": "runtime@83573d2", + "repo": "runtime", + "title": "Fix a regression to collection asserting in \u0060AssemblyChecker\u0060", + "url": "https://github.com/dotnet/runtime/pull/125443", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@83573d2", + "labels": [ + "linkable-framework", + "community-contribution", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@34547f7", + "repo": "runtime", + "title": "Fix running native aot testing locally", + "url": "https://github.com/dotnet/runtime/pull/125354", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@34547f7", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@1f6255e", + "repo": "runtime", + "title": "Add html.escape to func_name in superpmi diffs report", + "url": "https://github.com/dotnet/runtime/pull/125442", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1f6255e", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@6e762f5", + "repo": "runtime", + "title": "Support for variable sized locals in morph and lclmorph", + "url": "https://github.com/dotnet/runtime/pull/124516", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6e762f5", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@8f06b3c", + "repo": "runtime", + "title": "Enable devirtualization of async methods in crossgen2", + "url": "https://github.com/dotnet/runtime/pull/125420", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8f06b3c", + "labels": [ + "area-crossgen2-coreclr" + ] + }, + { + "id": "runtime@b797348", + "repo": "runtime", + "title": "fix #125301 (NOL bug for partial loads/stores)", + "url": "https://github.com/dotnet/runtime/pull/125425", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b797348", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@b36efcf", + "repo": "runtime", + "title": "arm64: Fix and/bic issue when bailing early", + "url": "https://github.com/dotnet/runtime/pull/125428", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b36efcf", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@92969f4", + "repo": "runtime", + "title": "Fix crossgen2 crash on Apple mobile for InstantiatedType token resolution in async methods", + "url": "https://github.com/dotnet/runtime/pull/125444", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@92969f4", + "labels": [ + "area-crossgen2-coreclr", + "os-ios", + "runtime-async" + ] + }, + { + "id": "runtime@807db36", + "repo": "runtime", + "title": "[browser][CoreCLR] startup helpers cleanup", + "url": "https://github.com/dotnet/runtime/pull/125429", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@807db36", + "labels": [ + "arch-wasm", + "area-Host", + "os-browser" + ] + }, + { + "id": "runtime@8236b65", + "repo": "runtime", + "title": "Add TraverseEHInfo cDAC API", + "url": "https://github.com/dotnet/runtime/pull/125198", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8236b65", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@d391453", + "repo": "runtime", + "title": "Streamline \u0060SystemIPGlobalProperties\u0060", + "url": "https://github.com/dotnet/runtime/pull/125002", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d391453", + "labels": [ + "area-System.Net", + "community-contribution" + ] + }, + { + "id": "runtime@1f98758", + "repo": "runtime", + "title": "Convert some COM interop to UCO", + "url": "https://github.com/dotnet/runtime/pull/125326", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1f98758", + "labels": [ + "area-VM-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@e7daed6", + "repo": "runtime", + "title": "[clr-interp] Fix Swift error handling for marshaled P/Invokes in interpreter", + "url": "https://github.com/dotnet/runtime/pull/125177", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e7daed6", + "labels": [ + "os-ios", + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@8f762a2", + "repo": "runtime", + "title": "Add \u0060SafeFileHandle.CreateAnonymousPipe\u0060 with per-end async support, non-blocking I/O support, and \u0060Process.Windows\u0060 adoption", + "url": "https://github.com/dotnet/runtime/pull/125220", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8f762a2", + "labels": [ + "area-System.IO", + "breaking-change", + "needs-breaking-change-doc-created" + ] + }, + { + "id": "runtime@dca0fe3", + "repo": "runtime", + "title": "Sync cDAC\u0027s RV64/LA64 implementations with ARM64", + "url": "https://github.com/dotnet/runtime/pull/125353", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@dca0fe3", + "labels": [ + "area-Diagnostics-coreclr", + "community-contribution", + "arch-loongarch64", + "arch-riscv" + ] + }, + { + "id": "runtime@9af7d04", + "repo": "runtime", + "title": "Feature and ifdef FEATURE_MULTITHREADING", + "url": "https://github.com/dotnet/runtime/pull/124959", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9af7d04", + "labels": [ + "arch-wasm", + "area-Infrastructure-libraries", + "os-browser" + ] + }, + { + "id": "runtime@f7be6d5", + "repo": "runtime", + "title": "Fix memory overwrites in SystemNative_GetNetworkInterfaces", + "url": "https://github.com/dotnet/runtime/pull/125022", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f7be6d5", + "labels": [ + "area-System.Net", + "community-contribution" + ] + }, + { + "id": "runtime@b4b0bdc", + "repo": "runtime", + "title": "Fix missing big-endian conversions for multi-byte NTLM wire fields", + "url": "https://github.com/dotnet/runtime/pull/125039", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b4b0bdc", + "labels": [ + "area-System.Net.Security" + ] + }, + { + "id": "runtime@860eddb", + "repo": "runtime", + "title": "Prepare for xunit.v3.assert migration: forward-compatibility changes", + "url": "https://github.com/dotnet/runtime/pull/125413", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@860eddb", + "labels": [ + "area-Infrastructure", + "linkable-framework" + ] + }, + { + "id": "runtime@bc449db", + "repo": "runtime", + "title": "Add tests for lazy quantifier inside optional group", + "url": "https://github.com/dotnet/runtime/pull/125474", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@bc449db", + "labels": [ + "area-System.Text.RegularExpressions" + ] + }, + { + "id": "runtime@7d664a9", + "repo": "runtime", + "title": "Fix clang -Walloc-size error in CloseHandle test by removing unused WriteBuffer", + "url": "https://github.com/dotnet/runtime/pull/125360", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7d664a9", + "labels": [ + "area-PAL-coreclr" + ] + }, + { + "id": "runtime@540910d", + "repo": "runtime", + "title": "Fix race condition leak in RegisterResumptionStub", + "url": "https://github.com/dotnet/runtime/pull/125407", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@540910d", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@12bcd5d", + "repo": "runtime", + "title": "[wasm] Restore net472 multi-targeting for WasmAppBuilder", + "url": "https://github.com/dotnet/runtime/pull/125373", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@12bcd5d", + "labels": [ + "area-Build-mono" + ] + }, + { + "id": "runtime@281d01c", + "repo": "runtime", + "title": "Fix Tensor stride computation for single-element (length \u003C= 1) tensors", + "url": "https://github.com/dotnet/runtime/pull/125403", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@281d01c", + "labels": [ + "area-System.Numerics.Tensors" + ] + }, + { + "id": "runtime@6def7ef", + "repo": "runtime", + "title": "Fix RhpThrowImpl on ARM32", + "url": "https://github.com/dotnet/runtime/pull/125253", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6def7ef", + "labels": [ + "area-System.Diagnostics" + ] + }, + { + "id": "runtime@9a2c40b", + "repo": "runtime", + "title": "Remove redundant NULL check for pDir in ClrDataAccess::GetMetaDataFileInfoFromPEFile", + "url": "https://github.com/dotnet/runtime/pull/125502", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9a2c40b", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@959957c", + "repo": "runtime", + "title": "[HTTP] Stress fix for the new Windows VM", + "url": "https://github.com/dotnet/runtime/pull/125125", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@959957c", + "labels": [ + "area-Build-mono" + ] + }, + { + "id": "runtime@2110077", + "repo": "runtime", + "title": "Propagate BackgroundService exceptions from the host", + "url": "https://github.com/dotnet/runtime/pull/124863", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2110077", + "labels": [ + "breaking-change", + "area-Extensions-Hosting" + ] + }, + { + "id": "runtime@0b874d8", + "repo": "runtime", + "title": "Support reload in ChainedConfigurationSource", + "url": "https://github.com/dotnet/runtime/pull/125122", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0b874d8", + "labels": [ + "area-Extensions-Configuration", + "community-contribution" + ] + }, + { + "id": "runtime@aaf2994", + "repo": "runtime", + "title": "Fix CallSiteFactoryResolvesIEnumerableOfOpenGenericServiceAfterResolvingClosedImplementation test for issue #57333", + "url": "https://github.com/dotnet/runtime/pull/124326", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@aaf2994", + "labels": [ + "area-Extensions-DependencyInjection" + ] + }, + { + "id": "runtime@755fa8f", + "repo": "runtime", + "title": "[tvOS] Skip symlink and named pipe tests that fail on iOS/tvOS", + "url": "https://github.com/dotnet/runtime/pull/125503", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@755fa8f", + "labels": [ + "area-System.IO" + ] + }, + { + "id": "runtime@e1feb1b", + "repo": "runtime", + "title": "JIT: Bump JIT-EE GUID after removal of hardware intrinsics", + "url": "https://github.com/dotnet/runtime/pull/125515", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e1feb1b", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@41ac7d5", + "repo": "runtime", + "title": "[browser][coreCLR] Loading WebCIL", + "url": "https://github.com/dotnet/runtime/pull/124904", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@41ac7d5", + "labels": [ + "arch-wasm", + "area-AssemblyLoader-coreclr", + "os-browser" + ] + }, + { + "id": "runtime@9b1347c", + "repo": "runtime", + "title": "Simplify ILLink/ILC root assembly handling: TrimmerRootAssembly assembly names only", + "url": "https://github.com/dotnet/runtime/pull/125365", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9b1347c", + "labels": [ + "area-AssemblyLoader-coreclr", + "linkable-framework" + ] + }, + { + "id": "runtime@11c5b17", + "repo": "runtime", + "title": "Add curl retry flags to wasi-sdk Linux download", + "url": "https://github.com/dotnet/runtime/pull/125488", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@11c5b17", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@2517f63", + "repo": "runtime", + "title": "[cDAC] Implement GetCurrentExceptionState on IXCLRDataTask", + "url": "https://github.com/dotnet/runtime/pull/125161", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2517f63", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@8cf2e90", + "repo": "runtime", + "title": "Exclude noisy crypto rules from the repo\u0027s CodeQL runs", + "url": "https://github.com/dotnet/runtime/pull/125364", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8cf2e90", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@ac8e763", + "repo": "runtime", + "title": "cDAC: Implement ISOSDacInterface::GetRCWData", + "url": "https://github.com/dotnet/runtime/pull/125426", + "commit": "dotnet@5568120", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ac8e763", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@c9b272f", + "repo": "runtime", + "title": "Convert constructor invocations from the runtime to use UnmanagedCallersOnly", + "url": "https://github.com/dotnet/runtime/pull/124920", + "commit": "dotnet@5568120", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c9b272f", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@98e3338", + "repo": "runtime", + "title": "Fix gssapi headers on OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/125546", + "commit": "dotnet@5568120", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@98e3338", + "labels": [ + "area-Infrastructure", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@0d6db56", + "repo": "runtime", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/runtime/pull/125419", + "commit": "dotnet@5568120", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0d6db56", + "labels": [ + "linkable-framework", + "area-codeflow" + ] + }, + { + "id": "runtime@e429373", + "repo": "runtime", + "title": "Fix wasm Playwright TargetClosedException caused by wrong Helix queue", + "url": "https://github.com/dotnet/runtime/pull/125548", + "commit": "dotnet@5568120", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e429373", + "labels": [ + "area-Infrastructure-mono" + ] + }, + { + "id": "runtime@28009ec", + "repo": "runtime", + "title": "Fix some CMake definitions on OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/125294", + "commit": "dotnet@5568120", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@28009ec", + "labels": [ + "area-PAL-coreclr", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@9f85e5d", + "repo": "runtime", + "title": "Replace fixed buffers with InlineArray", + "url": "https://github.com/dotnet/runtime/pull/125514", + "commit": "dotnet@5568120", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9f85e5d", + "labels": [ + "area-System.Runtime.InteropServices", + "reduce-unsafe" + ] + }, + { + "id": "runtime@388a7c4", + "repo": "runtime", + "title": "Cache debugger patches to speed up x64 stackwalk epilogue/prologue scanning", + "url": "https://github.com/dotnet/runtime/pull/125459", + "commit": "dotnet@5568120", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@388a7c4", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@c38f37a", + "repo": "runtime", + "title": "Remove unnecessary volatile from fields in Libraries", + "url": "https://github.com/dotnet/runtime/pull/125274", + "commit": "dotnet@5568120", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c38f37a", + "labels": [ + "area-Meta" + ] + }, + { + "id": "runtime@da46c68", + "repo": "runtime", + "title": "Fix XmlReader ArgumentOutOfRangeException for malformed UTF-8 in XML \u2026", + "url": "https://github.com/dotnet/runtime/pull/124428", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@da46c68", + "labels": [ + "area-System.Xml", + "community-contribution" + ] + }, + { + "id": "runtime@8e05ac9", + "repo": "runtime", + "title": "Fix flaky TestResourceManagerIsSafeForConcurrentAccessAndEnumeration timeout", + "url": "https://github.com/dotnet/runtime/pull/125573", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8e05ac9", + "labels": [ + "area-System.Resources" + ] + }, + { + "id": "runtime@1cfdd48", + "repo": "runtime", + "title": "[wasm][coreclr] Enable passing coreclr tests", + "url": "https://github.com/dotnet/runtime/pull/125496", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1cfdd48", + "labels": [ + "arch-wasm", + "area-Infrastructure-libraries", + "os-browser" + ] + }, + { + "id": "runtime@64021d8", + "repo": "runtime", + "title": "Use PF_LINK on SunOS", + "url": "https://github.com/dotnet/runtime/pull/124728", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@64021d8", + "labels": [ + "area-System.Net.Sockets", + "os-SunOS", + "community-contribution" + ] + }, + { + "id": "runtime@85b61ab", + "repo": "runtime", + "title": "Include propertyName in KeyNotFoundException thrown by JsonElement.GetProperty", + "url": "https://github.com/dotnet/runtime/pull/124965", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@85b61ab", + "labels": [ + "area-System.Text.Json" + ] + }, + { + "id": "runtime@f27c573", + "repo": "runtime", + "title": "JIT: Preference SDSU intervals away from killed registers", + "url": "https://github.com/dotnet/runtime/pull/125219", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f27c573", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@95f2498", + "repo": "runtime", + "title": "Fix missing call to write barrier in static constructors of ref structs", + "url": "https://github.com/dotnet/runtime/pull/125418", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@95f2498", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@6992c24", + "repo": "runtime", + "title": "Fix Mono AOT crash on struct fields with unsupported marshal conversion", + "url": "https://github.com/dotnet/runtime/pull/125575", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6992c24", + "labels": [ + "area-VM-meta-mono" + ] + }, + { + "id": "runtime@7a7c166", + "repo": "runtime", + "title": "[mono] Fix jit_mm mismatch in delegate trampoline creation for dynamic methods", + "url": "https://github.com/dotnet/runtime/pull/125583", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7a7c166", + "labels": [ + "area-VM-meta-mono" + ] + }, + { + "id": "runtime@0f80728", + "repo": "runtime", + "title": "JIT: Create suspensions/resumptions separately from processing calls in async transformation", + "url": "https://github.com/dotnet/runtime/pull/125497", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0f80728", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@ffdfb26", + "repo": "runtime", + "title": "Add cdac.slnx solution file for cDAC development", + "url": "https://github.com/dotnet/runtime/pull/125614", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ffdfb26", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@eee3c7c", + "repo": "runtime", + "title": "Update create-pull-request action version", + "url": "https://github.com/dotnet/runtime/pull/125620", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@eee3c7c", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@bb542bd", + "repo": "runtime", + "title": "[browser] Fix WasmEmitTypeScriptDefinitions making builds non-incremental", + "url": "https://github.com/dotnet/runtime/pull/125509", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@bb542bd", + "labels": [ + "arch-wasm", + "area-Build-mono", + "os-browser" + ] + }, + { + "id": "runtime@d1f028f", + "repo": "runtime", + "title": "Fix aspnetcore-sync.yml", + "url": "https://github.com/dotnet/runtime/pull/125622", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d1f028f", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@933c5e8", + "repo": "runtime", + "title": "Sync shared HPack/QPack changes from aspnetcore", + "url": "https://github.com/dotnet/runtime/pull/125526", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@933c5e8", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@b48ada0", + "repo": "runtime", + "title": "Fix racy mvid tests.", + "url": "https://github.com/dotnet/runtime/pull/125537", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b48ada0", + "labels": [ + "linkable-framework", + "community-contribution", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@611b2cb", + "repo": "runtime", + "title": "CodeQL ilasm fixes", + "url": "https://github.com/dotnet/runtime/pull/125152", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@611b2cb", + "labels": [ + "area-ILTools-coreclr" + ] + }, + { + "id": "runtime@84ebfcd", + "repo": "runtime", + "title": "Add pipeline legs for crossgen2 with --large_version_bubble", + "url": "https://github.com/dotnet/runtime/pull/125538", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@84ebfcd", + "labels": [ + "area-crossgen2-coreclr" + ] + }, + { + "id": "runtime@15da421", + "repo": "runtime", + "title": "Decouple ILC from ManagedAssemblyToLink", + "url": "https://github.com/dotnet/runtime/pull/124801", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@15da421", + "labels": [ + "linkable-framework", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@585f70d", + "repo": "runtime", + "title": "Initialize WebProxy credentials from URI UserInfo", + "url": "https://github.com/dotnet/runtime/pull/125384", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@585f70d", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@934cd4d", + "repo": "runtime", + "title": "[cDAC] Implement GetLastExceptionState on IXCLRDataTask", + "url": "https://github.com/dotnet/runtime/pull/125540", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@934cd4d", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@930edb9", + "repo": "runtime", + "title": "NativeAOT: Use \u0060lib\u0060 prefix by default on Unix for native library outputs", + "url": "https://github.com/dotnet/runtime/pull/124611", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@930edb9", + "labels": [ + "breaking-change", + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@902b10f", + "repo": "runtime", + "title": "Port \u0060ComClassGenerator\u0060 to string writing instead of constructing syntax nodes", + "url": "https://github.com/dotnet/runtime/pull/125527", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@902b10f", + "labels": [ + "area-System.Runtime.InteropServices", + "community-contribution" + ] + }, + { + "id": "runtime@e2f9257", + "repo": "runtime", + "title": "Fix libs.native subset on OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/125562", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e2f9257", + "labels": [ + "area-PAL-coreclr", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@b954bd7", + "repo": "runtime", + "title": "Do not store result of cast in IDynIntfCastable scenarios", + "url": "https://github.com/dotnet/runtime/pull/125605", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b954bd7", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@e2322af", + "repo": "runtime", + "title": "Fix UdpClient.EnableBroadcast not preventing broadcast sends", + "url": "https://github.com/dotnet/runtime/pull/124482", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e2322af", + "labels": [ + "area-System.Net.Sockets", + "community-contribution" + ] + }, + { + "id": "runtime@133f6a8", + "repo": "runtime", + "title": "Remove more fixed buffers and replace them with InlineArray", + "url": "https://github.com/dotnet/runtime/pull/125574", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@133f6a8", + "labels": [ + "area-System.Net", + "reduce-unsafe" + ] + }, + { + "id": "runtime@28c5a4d", + "repo": "runtime", + "title": "Fix GCHandle double-free race in WinHttpRequestState", + "url": "https://github.com/dotnet/runtime/pull/125293", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@28c5a4d", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@9e58389", + "repo": "runtime", + "title": "switch to AZL as build platform to avoid disk problems", + "url": "https://github.com/dotnet/runtime/pull/125628", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9e58389", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@ab699a4", + "repo": "runtime", + "title": "[cDAC]: Flush contract caches", + "url": "https://github.com/dotnet/runtime/pull/125627", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ab699a4", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@7fdd64e", + "repo": "runtime", + "title": "Fix crossgen2 JitHost OOM crash: throw on allocation failure", + "url": "https://github.com/dotnet/runtime/pull/125422", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7fdd64e", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@fc52927", + "repo": "runtime", + "title": "Add RegexOptions.AnyNewLine via parser lowering", + "url": "https://github.com/dotnet/runtime/pull/124701", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fc52927", + "labels": [ + "area-System.Text.RegularExpressions" + ] + }, + { + "id": "runtime@6fd3636", + "repo": "runtime", + "title": "[r2r] Fix rule for skipping compilation of methods with CompExactlyDependsOn", + "url": "https://github.com/dotnet/runtime/pull/125372", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6fd3636", + "labels": [ + "area-crossgen2-coreclr" + ] + }, + { + "id": "runtime@fcddb04", + "repo": "runtime", + "title": "[Wasm RyuJIT] Generate element section and populate function pointer table", + "url": "https://github.com/dotnet/runtime/pull/125531", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fcddb04", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@8d88e2b", + "repo": "runtime", + "title": "Fix race condition in BackgroundServiceExceptionTests", + "url": "https://github.com/dotnet/runtime/pull/125570", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8d88e2b", + "labels": [ + "area-Extensions-Hosting" + ] + }, + { + "id": "runtime@05cc2d0", + "repo": "runtime", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/runtime/pull/125593", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@05cc2d0", + "labels": [ + "Servicing-approved", + "area-codeflow" + ] + }, + { + "id": "runtime@31aee70", + "repo": "runtime", + "title": "Add missing XML documentation for Microsoft.Extensions.FileSystemGlobbing APIs", + "url": "https://github.com/dotnet/runtime/pull/125447", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@31aee70", + "labels": [ + "area-Extensions-FileSystem" + ] + }, + { + "id": "runtime@e1b5a1d", + "repo": "runtime", + "title": "Re-enable generator tests on big endian architectures", + "url": "https://github.com/dotnet/runtime/pull/125228", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e1b5a1d", + "labels": [ + "area-Extensions-Configuration" + ] + }, + { + "id": "runtime@8f7b6b5", + "repo": "runtime", + "title": "Add missing API documentation for Microsoft.Extensions.FileProvider", + "url": "https://github.com/dotnet/runtime/pull/125445", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8f7b6b5", + "labels": [ + "area-Extensions-FileSystem" + ] + }, + { + "id": "runtime@c9def27", + "repo": "runtime", + "title": "Fix race in BackgroundService exception aggregation during Host shutdown", + "url": "https://github.com/dotnet/runtime/pull/125590", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c9def27", + "labels": [ + "area-Extensions-Hosting" + ] + }, + { + "id": "runtime@39368f6", + "repo": "runtime", + "title": "Improve api-proposal skill using skill-creator analysis", + "url": "https://github.com/dotnet/runtime/pull/125494", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@39368f6", + "labels": [ + "area-skills" + ] + }, + { + "id": "runtime@c5c184a", + "repo": "runtime", + "title": "Fix non-dense TensorSpan handling in SequenceEqual, Fill*, Resize*, IndexOf*, and ConcatenateOnDimension", + "url": "https://github.com/dotnet/runtime/pull/124225", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c5c184a", + "labels": [ + "area-System.Numerics.Tensors" + ] + }, + { + "id": "runtime@d4189be", + "repo": "runtime", + "title": "Port coreclr interpreter to loongarch64", + "url": "https://github.com/dotnet/runtime/pull/125591", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d4189be", + "labels": [ + "community-contribution", + "arch-loongarch64", + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@e2415a7", + "repo": "runtime", + "title": "Fix getdomainname for SunOS", + "url": "https://github.com/dotnet/runtime/pull/125053", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e2415a7", + "labels": [ + "area-System.Net", + "os-SunOS", + "community-contribution" + ] + }, + { + "id": "runtime@7e7296d", + "repo": "runtime", + "title": "Add issue-triage Copilot skill with type-specific guides", + "url": "https://github.com/dotnet/runtime/pull/125273", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7e7296d", + "labels": [ + "area-skills" + ] + }, + { + "id": "runtime@2ae0bc7", + "repo": "runtime", + "title": "Add support for pre-compiling interop type maps in crossgen2", + "url": "https://github.com/dotnet/runtime/pull/124352", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2ae0bc7", + "labels": [ + "area-crossgen2-coreclr", + "linkable-framework" + ] + }, + { + "id": "runtime@93ec72d", + "repo": "runtime", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/runtime/pull/125649", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@93ec72d", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@5b3d729", + "repo": "runtime", + "title": "[cDAC] Use BinaryThenLinearSearch in GetExceptionClauses", + "url": "https://github.com/dotnet/runtime/pull/125667", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5b3d729", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@c31475e", + "repo": "runtime", + "title": "Restore blocking mode after successful ConnectAsync on Unix", + "url": "https://github.com/dotnet/runtime/pull/124200", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c31475e", + "labels": [ + "area-System.Net.Sockets" + ] + }, + { + "id": "runtime@db3c54c", + "repo": "runtime", + "title": "[runtime tests] Make 2 tests conditional on MT enabled", + "url": "https://github.com/dotnet/runtime/pull/125658", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@db3c54c", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@cf53805", + "repo": "runtime", + "title": "Handle Capture nodes in TryGetOrdinalCaseInsensitiveString", + "url": "https://github.com/dotnet/runtime/pull/124842", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cf53805", + "labels": [ + "area-System.Text.RegularExpressions" + ] + }, + { + "id": "runtime@0389510", + "repo": "runtime", + "title": "Fix CrstILStubGen/CrstLoaderAllocatorReferences lock level violation", + "url": "https://github.com/dotnet/runtime/pull/125675", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0389510", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@8614f78", + "repo": "runtime", + "title": "Switch to azurelinux 3 build image in public as well", + "url": "https://github.com/dotnet/runtime/pull/125686", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8614f78", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@c89371d", + "repo": "runtime", + "title": "[QUIC] Disable Quic tests on AzL3 VM", + "url": "https://github.com/dotnet/runtime/pull/125665", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c89371d", + "labels": [ + "area-System.Net.Quic" + ] + }, + { + "id": "runtime@fe555be", + "repo": "runtime", + "title": "Enable linux_arm64 coreclr build for SVE perf benchmarks.", + "url": "https://github.com/dotnet/runtime/pull/125719", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fe555be", + "labels": [ + "arch-wasm", + "area-Infrastructure", + "perf-pipeline" + ] + }, + { + "id": "runtime@36b4d74", + "repo": "runtime", + "title": "Fix most of the diagnostic EH tests with interpreter", + "url": "https://github.com/dotnet/runtime/pull/125525", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@36b4d74", + "labels": [ + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@cc9f348", + "repo": "runtime", + "title": "[clr-ios] Add options to strip inlining and debug info in Crossgen2 on Apple mobile", + "url": "https://github.com/dotnet/runtime/pull/124604", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cc9f348", + "labels": [ + "area-crossgen2-coreclr", + "os-ios" + ] + }, + { + "id": "runtime@c5ad69e", + "repo": "runtime", + "title": "[wasm][interpreter] Defer managed calli cookie resolution to execution time", + "url": "https://github.com/dotnet/runtime/pull/125455", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c5ad69e", + "labels": [ + "arch-wasm", + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@dfc0377", + "repo": "runtime", + "title": "Fix \u0060ConnectAsync_WithBuffer_Succeeds\u0060 test to include Apple mobile platforms", + "url": "https://github.com/dotnet/runtime/pull/125717", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@dfc0377", + "labels": [ + "area-System.Net.Sockets", + "os-ios" + ] + }, + { + "id": "runtime@fdbedda", + "repo": "runtime", + "title": "Re-enable the WhenDiskIsFullTheErrorMessageContainsAllDetails test on Windows", + "url": "https://github.com/dotnet/runtime/pull/125707", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fdbedda", + "labels": [ + "area-System.IO", + "test-enhancement" + ] + }, + { + "id": "runtime@ca1a734", + "repo": "runtime", + "title": "Unify SECURITY_ATTRIBUTES code across the codebase", + "url": "https://github.com/dotnet/runtime/pull/125709", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ca1a734", + "labels": [ + "area-System.IO" + ] + }, + { + "id": "runtime@4c78a14", + "repo": "runtime", + "title": "Optimize Version JSON deserialization with UTF-8 parsing", + "url": "https://github.com/dotnet/runtime/pull/118207", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4c78a14", + "labels": [ + "area-System.Text.Json" + ] + }, + { + "id": "runtime@1ab6d1d", + "repo": "runtime", + "title": "Fix GetValue\u003Cobject\u003E() and TryGetValue\u003CJsonElement?\u003E on JsonValueOfJsonPrimitive types", + "url": "https://github.com/dotnet/runtime/pull/125139", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1ab6d1d", + "labels": [ + "area-System.Text.Json" + ] + }, + { + "id": "runtime@593e566", + "repo": "runtime", + "title": "Fix: Allow inline regex options in conditional expression branches", + "url": "https://github.com/dotnet/runtime/pull/124699", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@593e566", + "labels": [ + "area-System.Text.RegularExpressions" + ] + }, + { + "id": "runtime@165a653", + "repo": "runtime", + "title": "[main] Update dependencies from dotnet/hotreload-utils, dotnet/icu, dotnet/runtime-assets", + "url": "https://github.com/dotnet/runtime/pull/125571", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@165a653", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@636d736", + "repo": "runtime", + "title": "[main] Update dependencies from dotnet/xharness", + "url": "https://github.com/dotnet/runtime/pull/125482", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@636d736", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@9351b38", + "repo": "runtime", + "title": "[cDAC] Remove reflection from register access in ContextHolder", + "url": "https://github.com/dotnet/runtime/pull/125621", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9351b38", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@2d26dce", + "repo": "runtime", + "title": "Add a directive to asm files to manually inject a .note.GNU-stack section when using clang 22", + "url": "https://github.com/dotnet/runtime/pull/125471", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2d26dce", + "labels": [ + "area-PAL-coreclr" + ] + }, + { + "id": "runtime@4683d7f", + "repo": "runtime", + "title": "Add property and event parent lookup table entries in AddPropertyToPropertyMap and AddEventToEventMap", + "url": "https://github.com/dotnet/runtime/pull/125536", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4683d7f", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@bf23c95", + "repo": "runtime", + "title": "Migrate Windows build pools from VS2026 preview scout to production VS2026 image", + "url": "https://github.com/dotnet/runtime/pull/124902", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@bf23c95", + "labels": [ + "area-Infrastructure-libraries" + ] + }, + { + "id": "runtime@4687f9a", + "repo": "runtime", + "title": "Process: use overlapped I/O for parent end of stdout/stderr pipes on Windows", + "url": "https://github.com/dotnet/runtime/pull/125643", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4687f9a", + "labels": [ + "area-System.Diagnostics.Process" + ] + }, + { + "id": "runtime@c05c6a4", + "repo": "runtime", + "title": "Reduce backtracking for greedy loops followed by subsumed literals", + "url": "https://github.com/dotnet/runtime/pull/125636", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c05c6a4", + "labels": [ + "area-System.Text.RegularExpressions" + ] + }, + { + "id": "runtime@0d2f781", + "repo": "runtime", + "title": "Increase FileSystemWatcher test event timeout to 1000ms", + "url": "https://github.com/dotnet/runtime/pull/125744", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0d2f781", + "labels": [ + "area-System.IO" + ] + }, + { + "id": "runtime@12cdada", + "repo": "runtime", + "title": "[Wasm RyuJIT] Insert r2r ind cell at the end of the args list instead of after \u0027this\u0027", + "url": "https://github.com/dotnet/runtime/pull/125669", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@12cdada", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@3e79783", + "repo": "runtime", + "title": "Partially revert PR #125326: revert ComActivator/LicenseInteropProxy changes", + "url": "https://github.com/dotnet/runtime/pull/125706", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3e79783", + "labels": [ + "area-Interop-coreclr" + ] + }, + { + "id": "runtime@b93ce19", + "repo": "runtime", + "title": "Add CRC32 validation when reading zip archive entries", + "url": "https://github.com/dotnet/runtime/pull/124766", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b93ce19", + "labels": [ + "area-System.IO.Compression", + "breaking-change" + ] + }, + { + "id": "runtime@1f751da", + "repo": "runtime", + "title": "Add runtime async support for saving and reusing continuation instances", + "url": "https://github.com/dotnet/runtime/pull/125556", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1f751da", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@34dd74d", + "repo": "runtime", + "title": "Configure FileStreamOptions with PreallocationSize and async access in ZipArchiveEntry extract methods", + "url": "https://github.com/dotnet/runtime/pull/125260", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@34dd74d", + "labels": [ + "area-System.IO.Compression" + ] + }, + { + "id": "runtime@a348be8", + "repo": "runtime", + "title": "Filter out SPMI metric diffs smaller than \u00B10.001%", + "url": "https://github.com/dotnet/runtime/pull/125684", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a348be8", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@613eb19", + "repo": "runtime", + "title": "Refactor System.Net.* AppContextSwitch usage to LocalAppContextSwitches", + "url": "https://github.com/dotnet/runtime/pull/125385", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@613eb19", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@c88b2b6", + "repo": "runtime", + "title": "Support type-level JsonIgnoreCondition via [JsonIgnore] on classes, structs, and interfaces", + "url": "https://github.com/dotnet/runtime/pull/124646", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c88b2b6", + "labels": [ + "area-System.Text.Json" + ] + }, + { + "id": "runtime@cad7369", + "repo": "runtime", + "title": "Add TSF_SuspensionTrapped flag to NativeAOT for accurate sample profiler reporting", + "url": "https://github.com/dotnet/runtime/pull/125764", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cad7369", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@a65919d", + "repo": "runtime", + "title": "Disable iOS and tvOS jobs until infra issue is fixed", + "url": "https://github.com/dotnet/runtime/pull/125771", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a65919d", + "labels": [ + "area-Infrastructure-mono" + ] + }, + { + "id": "runtime@7bd64cb", + "repo": "runtime", + "title": "Fix flaky FileSystemWatcher_SymbolicLink_TargetsDirectory_Create_IncludeSubdirectories test", + "url": "https://github.com/dotnet/runtime/pull/125682", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7bd64cb", + "labels": [ + "area-System.IO" + ] + }, + { + "id": "runtime@876f7e8", + "repo": "runtime", + "title": "Fix \u0060WebWorker\u0060 hang when debugging Blazor WASM apps in Visual Studio", + "url": "https://github.com/dotnet/runtime/pull/125617", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@876f7e8", + "labels": [ + "area-Debugger-mono" + ] + }, + { + "id": "runtime@9955df2", + "repo": "runtime", + "title": "Improve regex optimizer through investigation of regex optimizer passes", + "url": "https://github.com/dotnet/runtime/pull/125289", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9955df2", + "labels": [ + "area-System.Text.RegularExpressions" + ] + }, + { + "id": "runtime@97cc027", + "repo": "runtime", + "title": "[cDAC] Convert cDAC dump tests to run on Helix", + "url": "https://github.com/dotnet/runtime/pull/124782", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@97cc027", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@7c0f7cf", + "repo": "runtime", + "title": "Support generic converters on generic types with JsonConverterAttribute", + "url": "https://github.com/dotnet/runtime/pull/123209", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7c0f7cf", + "labels": [ + "area-System.Text.Json" + ] + }, + { + "id": "runtime@29faf6d", + "repo": "runtime", + "title": "[Wasm RyuJit] Add JIT config JitWasmNyiToR2RUnsupported", + "url": "https://github.com/dotnet/runtime/pull/125752", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@29faf6d", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@b96f3cc", + "repo": "runtime", + "title": "Remove Homebrew LLVM during macOS CI setup", + "url": "https://github.com/dotnet/runtime/pull/125763", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b96f3cc", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@72b5321", + "repo": "runtime", + "title": "Split gc.cpp to multiple files based on the functionality - part 1", + "url": "https://github.com/dotnet/runtime/pull/125703", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@72b5321", + "labels": [ + "NO-SQUASH", + "area-GC-coreclr" + ] + }, + { + "id": "runtime@64350da", + "repo": "runtime", + "title": "Ensure the Thumb bit is set for resumption stub relocs", + "url": "https://github.com/dotnet/runtime/pull/125421", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@64350da", + "labels": [ + "arch-arm32", + "area-crossgen2-coreclr" + ] + }, + { + "id": "runtime@02f7316", + "repo": "runtime", + "title": "Remove redundant directory separator normalization in deps.json parsing", + "url": "https://github.com/dotnet/runtime/pull/125251", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@02f7316", + "labels": [ + "area-Host" + ] + }, + { + "id": "runtime@2066293", + "repo": "runtime", + "title": "Delete WebHeaderEncoding.cs and replace usages with Encoding.Latin1", + "url": "https://github.com/dotnet/runtime/pull/125592", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2066293", + "labels": [ + "area-System.Net.Http", + "reduce-unsafe" + ] + }, + { + "id": "runtime@37c9693", + "repo": "runtime", + "title": "Add analyzer\u002Bcodefix for applying RequiresUnsafe to pointer methods", + "url": "https://github.com/dotnet/runtime/pull/125196", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@37c9693", + "labels": [ + "area-Infrastructure-libraries", + "linkable-framework" + ] + }, + { + "id": "runtime@aeffb4c", + "repo": "runtime", + "title": "Fix Dataflow test timeouts under JIT stress: add timeouts to SpinWait.SpinUntil calls", + "url": "https://github.com/dotnet/runtime/pull/125677", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@aeffb4c", + "labels": [ + "area-System.Threading" + ] + }, + { + "id": "runtime@f194942", + "repo": "runtime", + "title": "Simplify RegexInterpreter", + "url": "https://github.com/dotnet/runtime/pull/124628", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f194942", + "labels": [ + "area-System.Text.RegularExpressions" + ] + }, + { + "id": "runtime@dcde84a", + "repo": "runtime", + "title": "Fix bug in TraverseEhInfo", + "url": "https://github.com/dotnet/runtime/pull/125796", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@dcde84a", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@fec5107", + "repo": "runtime", + "title": "Avoid writing jitdump code for block data", + "url": "https://github.com/dotnet/runtime/pull/122274", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fec5107", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@83f84b6", + "repo": "runtime", + "title": "Add support for async thunk methods in GetNativeCodeInfo", + "url": "https://github.com/dotnet/runtime/pull/124354", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@83f84b6", + "labels": [ + "area-Diagnostics-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@6a815e8", + "repo": "runtime", + "title": "Add retry for StackTraceTests.ToString_ShowILOffset AMSI hang", + "url": "https://github.com/dotnet/runtime/pull/125814", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6a815e8", + "labels": [ + "area-System.Diagnostics" + ] + }, + { + "id": "runtime@43502e5", + "repo": "runtime", + "title": "Improve UnwindInfoTable\u0027s performance", + "url": "https://github.com/dotnet/runtime/pull/125545", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@43502e5", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@86e3d03", + "repo": "runtime", + "title": "Add JsonNamingPolicyAttribute for member-level naming policies in System.Text.Json", + "url": "https://github.com/dotnet/runtime/pull/124645", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@86e3d03", + "labels": [ + "area-System.Text.Json" + ] + }, + { + "id": "runtime@55f8bdb", + "repo": "runtime", + "title": "Fix emcc version parsing failure on clean WASM builds", + "url": "https://github.com/dotnet/runtime/pull/125822", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@55f8bdb", + "labels": [ + "arch-wasm", + "area-Build-mono" + ] + }, + { + "id": "runtime@b03b4f9", + "repo": "runtime", + "title": "[QUIC] Disable platform tests as well", + "url": "https://github.com/dotnet/runtime/pull/125772", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b03b4f9", + "labels": [ + "area-System.Net.Quic" + ] + }, + { + "id": "runtime@1253ff8", + "repo": "runtime", + "title": "Fix inner build of community archs", + "url": "https://github.com/dotnet/runtime/pull/125653", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1253ff8", + "labels": [ + "area-Infrastructure-coreclr", + "community-contribution", + "arch-loongarch64", + "arch-riscv" + ] + }, + { + "id": "runtime@4e54117", + "repo": "runtime", + "title": "Fix ProcessThreadTests.TestStartTimeProperty flakiness due to /proc visibility race", + "url": "https://github.com/dotnet/runtime/pull/125811", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4e54117", + "labels": [ + "area-System.Diagnostics.Process" + ] + }, + { + "id": "runtime@16c2ce3", + "repo": "runtime", + "title": "[Wasm RyuJit] eh flow", + "url": "https://github.com/dotnet/runtime/pull/125594", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@16c2ce3", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@68df930", + "repo": "runtime", + "title": "Fix possible deadlocks on PosixSignalRegistration disposal on Windows", + "url": "https://github.com/dotnet/runtime/pull/124893", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@68df930", + "labels": [ + "area-System.Runtime.InteropServices" + ] + }, + { + "id": "runtime@9908b08", + "repo": "runtime", + "title": "JIT: Disable continuation reuse temporarily", + "url": "https://github.com/dotnet/runtime/pull/125831", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9908b08", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@0723cf0", + "repo": "runtime", + "title": "Update EgorBot skill note about content between command and code block", + "url": "https://github.com/dotnet/runtime/pull/125843", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0723cf0", + "labels": [ + "area-skills" + ] + }, + { + "id": "runtime@9366374", + "repo": "runtime", + "title": "Enable GC regions on macOS", + "url": "https://github.com/dotnet/runtime/pull/125416", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9366374", + "labels": [ + "area-GC-coreclr" + ] + }, + { + "id": "runtime@919e1b2", + "repo": "runtime", + "title": "Require AI-generated content disclosure in copilot instructions and skills", + "url": "https://github.com/dotnet/runtime/pull/125842", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@919e1b2", + "labels": [ + "area-skills" + ] + }, + { + "id": "runtime@9096b69", + "repo": "runtime", + "title": "Support constructors with byref parameters (in/ref/out) in System.Text.Json", + "url": "https://github.com/dotnet/runtime/pull/122950", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9096b69", + "labels": [ + "area-System.Text.Json" + ] + }, + { + "id": "runtime@1a7eb82", + "repo": "runtime", + "title": "Fix issue where i32.trunc_sat_f32_s wasn\u0027t properly encoded", + "url": "https://github.com/dotnet/runtime/pull/125812", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1a7eb82", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@36739a3", + "repo": "runtime", + "title": "Remove ProcessStartOptions type, update ref, src and tests", + "url": "https://github.com/dotnet/runtime/pull/125839", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@36739a3", + "labels": [ + "area-System.Diagnostics.Process" + ] + }, + { + "id": "runtime@4c7d197", + "repo": "runtime", + "title": "Fix cDAC dump tests on 32-bit ARM targets", + "url": "https://github.com/dotnet/runtime/pull/125841", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4c7d197", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@80f39c5", + "repo": "runtime", + "title": "Consolidate overlapped I/O non-Windows stubs; remove stale ILLink workaround; remove incorrect [RequiresUnsafe] annotations", + "url": "https://github.com/dotnet/runtime/pull/125507", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@80f39c5", + "labels": [ + "area-System.Threading", + "linkable-framework" + ] + }, + { + "id": "runtime@56ff888", + "repo": "runtime", + "title": "Fix broadcast output shape computation in tensor binary operations", + "url": "https://github.com/dotnet/runtime/pull/125582", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@56ff888", + "labels": [ + "area-System.Numerics.Tensors" + ] + }, + { + "id": "runtime@c626461", + "repo": "runtime", + "title": "Add cDAC API GetCCWData", + "url": "https://github.com/dotnet/runtime/pull/125288", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c626461", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@4521881", + "repo": "runtime", + "title": "Fix OleTxTests.Recovery CI timeout by bounding remote process wall-clock time", + "url": "https://github.com/dotnet/runtime/pull/125813", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4521881", + "labels": [ + "area-System.Transactions" + ] + }, + { + "id": "runtime@5ab4f9b", + "repo": "runtime", + "title": "Fix IndexOutOfRangeException in FrozenHashTable when creating from huge collections", + "url": "https://github.com/dotnet/runtime/pull/125555", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5ab4f9b", + "labels": [ + "area-System.Collections" + ] + }, + { + "id": "runtime@15c9f8d", + "repo": "runtime", + "title": "Use SHash as DAC instance hash", + "url": "https://github.com/dotnet/runtime/pull/125631", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@15c9f8d", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@b38cc2a", + "repo": "runtime", + "title": "Don\u0027t build native host tests when building clr subset", + "url": "https://github.com/dotnet/runtime/pull/125861", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b38cc2a", + "labels": [ + "area-Host" + ] + }, + { + "id": "runtime@f01e41d", + "repo": "runtime", + "title": "Fix handling invalid type map states", + "url": "https://github.com/dotnet/runtime/pull/125870", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f01e41d", + "labels": [ + "area-crossgen2-coreclr" + ] + }, + { + "id": "runtime@edd2a2a", + "repo": "runtime", + "title": "fix SafeFileHandle.CanSeek performance regression", + "url": "https://github.com/dotnet/runtime/pull/125807", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@edd2a2a", + "labels": [ + "area-System.IO", + "tenet-performance" + ] + }, + { + "id": "runtime@ea02e22", + "repo": "runtime", + "title": "Clear RCW cache entries when releasing wrapper objects", + "url": "https://github.com/dotnet/runtime/pull/125754", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ea02e22", + "labels": [ + "area-System.Runtime.InteropServices", + "partner-impact" + ] + }, + { + "id": "runtime@9ddca1d", + "repo": "runtime", + "title": "Properly escape Helix queue parameters in runtime-diagnostics", + "url": "https://github.com/dotnet/runtime/pull/125877", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9ddca1d", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@814f1ae", + "repo": "runtime", + "title": "Fix flaky TestWindowStyle: check only STARTF_USESHOWWINDOW bit, remove ShellExecute cases", + "url": "https://github.com/dotnet/runtime/pull/125847", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@814f1ae", + "labels": [ + "area-System.Diagnostics.Process" + ] + }, + { + "id": "runtime@df18262", + "repo": "runtime", + "title": "Upgrade Ubuntu helix queues from 22.04 VMs to containers", + "url": "https://github.com/dotnet/runtime/pull/125535", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@df18262", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@03b08f5", + "repo": "runtime", + "title": "Disable attribute trimming android 124958", + "url": "https://github.com/dotnet/runtime/pull/125863", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@03b08f5", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@d7f2aa6", + "repo": "runtime", + "title": "[Wasm RyuJit] Debug SPC Wasm Validation Fixes", + "url": "https://github.com/dotnet/runtime/pull/125852", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d7f2aa6", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@6648305", + "repo": "runtime", + "title": "Cleaning up codepaths for DAC_HASHTABLE", + "url": "https://github.com/dotnet/runtime/pull/125886", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6648305", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@b8509e6", + "repo": "runtime", + "title": "Fix pal_memory.c on OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/125010", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b8509e6", + "labels": [ + "area-PAL-coreclr", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@f416dc4", + "repo": "runtime", + "title": "Adding GetObjectComWrappers cDAC API", + "url": "https://github.com/dotnet/runtime/pull/125846", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f416dc4", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@ebb0dea", + "repo": "runtime", + "title": "JIT: Null out exceptions in reused continuations and reenable continuation reuse", + "url": "https://github.com/dotnet/runtime/pull/125869", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ebb0dea", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@d577b7a", + "repo": "runtime", + "title": "Bump flatted from 3.3.3 to 3.4.2 in /src/native", + "url": "https://github.com/dotnet/runtime/pull/125823", + "commit": "dotnet@c15a55e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d577b7a", + "labels": [ + "area-DependencyModel", + "javascript", + "dependencies" + ] + }, + { + "id": "runtime@b2bba6d", + "repo": "runtime", + "title": "Improve HashSet\u003CT\u003E performance by enabling JIT bounds check elimination", + "url": "https://github.com/dotnet/runtime/pull/125893", + "commit": "dotnet@c15a55e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b2bba6d", + "labels": [ + "area-System.Collections" + ] + }, + { + "id": "runtime@6260db3", + "repo": "runtime", + "title": "Fix multithreaded browser-wasm build: CS0102 errors in PortableThreadPool; remove redundant ThreadPoolBoundHandle.Browser.Threads.cs; regenerate WASM call helpers", + "url": "https://github.com/dotnet/runtime/pull/125887", + "commit": "dotnet@c15a55e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6260db3", + "labels": [ + "area-System.Threading" + ] + }, + { + "id": "runtime@f6d4ffd", + "repo": "runtime", + "title": "Add null check ImmutableArray\u003CT\u003E.Builder.RemoveAll", + "url": "https://github.com/dotnet/runtime/pull/125920", + "commit": "dotnet@c15a55e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f6d4ffd", + "labels": [ + "area-System.Collections", + "community-contribution" + ] + }, + { + "id": "runtime@9dd9f6f", + "repo": "runtime", + "title": "Relax RandomAccess type requirements: make Read/Write methods work with non-seekable files", + "url": "https://github.com/dotnet/runtime/pull/125512", + "commit": "dotnet@c15a55e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9dd9f6f", + "labels": [ + "area-System.IO" + ] + }, + { + "id": "runtime@eb68339", + "repo": "runtime", + "title": "Convert remaining PREPARE_NONVIRTUAL_CALLSITE call sites to UnmanagedCallersOnly", + "url": "https://github.com/dotnet/runtime/pull/125697", + "commit": "dotnet@c15a55e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@eb68339", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@be2631f", + "repo": "runtime", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/runtime/pull/125762", + "commit": "dotnet@c15a55e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@be2631f", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@f8e0698", + "repo": "runtime", + "title": "Improve runtime-async support on linux-riscv64", + "url": "https://github.com/dotnet/runtime/pull/125446", + "commit": "dotnet@7c48c5b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f8e0698", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution", + "arch-riscv", + "runtime-async" + ] + }, + { + "id": "runtime@bfd735b", + "repo": "runtime", + "title": "[SRM] Optimize \u0060MetadataBuilder.GetOrAddConstantBlob\u0060.", + "url": "https://github.com/dotnet/runtime/pull/121223", + "commit": "dotnet@7c48c5b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@bfd735b", + "labels": [ + "area-System.Reflection.Metadata", + "tenet-performance", + "community-contribution" + ] + }, + { + "id": "runtime@443d53e", + "repo": "runtime", + "title": "Fix flaky NonPowerOfTwoKeySizeOaepRoundtrip test with retry on transient CryptographicException", + "url": "https://github.com/dotnet/runtime/pull/125911", + "commit": "dotnet@7c48c5b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@443d53e", + "labels": [ + "area-System.Security" + ] + }, + { + "id": "runtime@162722d", + "repo": "runtime", + "title": "Fix TestNativeDigits for ur-IN on Apple platforms", + "url": "https://github.com/dotnet/runtime/pull/125934", + "commit": "dotnet@4f7fd39", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@162722d", + "labels": [ + "area-System.Globalization", + "os-mac-os-x", + "os-ios", + "os-maccatalyst" + ] + }, + { + "id": "runtime@982dc8a", + "repo": "runtime", + "title": "Disable EnsureEnvironmentExitDoesntHang on .NET Framework", + "url": "https://github.com/dotnet/runtime/pull/125912", + "commit": "dotnet@8a523a7", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@982dc8a", + "labels": [ + "area-Extensions-Hosting" + ] + }, + { + "id": "runtime@7c58a24", + "repo": "runtime", + "title": "JIT: Fix fgFoldCondToReturnBlock for multi-statement return blocks", + "url": "https://github.com/dotnet/runtime/pull/124642", + "commit": "dotnet@8a523a7", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7c58a24", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@af3bd85", + "repo": "runtime", + "title": "Annotate \u0060System.Speech\u0060 for nullable reference types", + "url": "https://github.com/dotnet/runtime/pull/119564", + "commit": "dotnet@8a523a7", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@af3bd85", + "labels": [ + "area-System.Speech", + "community-contribution" + ] + }, + { + "id": "runtime@c53804f", + "repo": "runtime", + "title": "Fix localization of ExtendedPropertyDescriptor.DisplayName", + "url": "https://github.com/dotnet/runtime/pull/124771", + "commit": "dotnet@8a523a7", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c53804f", + "labels": [ + "area-System.ComponentModel", + "community-contribution" + ] + }, + { + "id": "runtime@baa4920", + "repo": "runtime", + "title": "Synchronize PaxTarEntry ExtendedAttributes with property setters", + "url": "https://github.com/dotnet/runtime/pull/123990", + "commit": "dotnet@8a523a7", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@baa4920", + "labels": [ + "area-System.Formats.Tar" + ] + }, + { + "id": "runtime@4a6399a", + "repo": "runtime", + "title": "Fix memory leaks from mono_type_full_name in marshal-shared.c error paths", + "url": "https://github.com/dotnet/runtime/pull/125616", + "commit": "dotnet@8a523a7", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4a6399a", + "labels": [ + "area-VM-meta-mono" + ] + }, + { + "id": "runtime@14b90e1", + "repo": "runtime", + "title": "arm64: Fold negative variable eq/ne to 0", + "url": "https://github.com/dotnet/runtime/pull/124332", + "commit": "dotnet@8a523a7", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@14b90e1", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@875672f", + "repo": "runtime", + "title": "Fix dotnet-pgo dump crash when CallWeights are present", + "url": "https://github.com/dotnet/runtime/pull/125936", + "commit": "dotnet@8a523a7", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@875672f", + "labels": [ + "area-VM-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@2509dcb", + "repo": "runtime", + "title": "Fix CS4007: ReadOnlySpan across await in TrailingHeadersTest", + "url": "https://github.com/dotnet/runtime/pull/125946", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2509dcb", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@f226c29", + "repo": "runtime", + "title": "Bump WaitOne timeouts in StartCanBeCancelled test from 5s to 30s", + "url": "https://github.com/dotnet/runtime/pull/125940", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f226c29", + "labels": [ + "area-Extensions-Hosting" + ] + }, + { + "id": "runtime@a9b578e", + "repo": "runtime", + "title": "JIT: Fix jit-format break", + "url": "https://github.com/dotnet/runtime/pull/125962", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a9b578e", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@5daf9dc", + "repo": "runtime", + "title": "arm64: Small fixes to GenerateHWIntrinsicTests_Arm.cs", + "url": "https://github.com/dotnet/runtime/pull/125954", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5daf9dc", + "labels": [ + "area-System.Runtime.Intrinsics", + "community-contribution" + ] + }, + { + "id": "runtime@509a2f1", + "repo": "runtime", + "title": "Refactor loader heap backout adapter to remove multiple inheritance", + "url": "https://github.com/dotnet/runtime/pull/125867", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@509a2f1", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@47655ce", + "repo": "runtime", + "title": "Add support for generalized variable length wasm instructions to the emitter", + "url": "https://github.com/dotnet/runtime/pull/125862", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@47655ce", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@fbf31b6", + "repo": "runtime", + "title": "Add hint for trimming System.Runtime in test109242", + "url": "https://github.com/dotnet/runtime/pull/125948", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fbf31b6", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@e861dc8", + "repo": "runtime", + "title": "Fix 4 bugs in TypePreinit IL interpreter", + "url": "https://github.com/dotnet/runtime/pull/125947", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e861dc8", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@3d83c4f", + "repo": "runtime", + "title": "[cDAC] Loosen EHInfo test to account for possible optimization of \u0060finally\u0060 clause into \u0060fault\u0060 clause", + "url": "https://github.com/dotnet/runtime/pull/125892", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3d83c4f", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@d017a1e", + "repo": "runtime", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/runtime/pull/125961", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d017a1e", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@21630d9", + "repo": "runtime", + "title": "Shorten thread names exceeding the 15-char Linux pthread_setname_np limit", + "url": "https://github.com/dotnet/runtime/pull/125928", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@21630d9", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@45ef48e", + "repo": "runtime", + "title": "Remove unnecessary RequiresProcessIsolation from 172 tests and update comments on 18 that need it", + "url": "https://github.com/dotnet/runtime/pull/125460", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@45ef48e", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@ec68eee", + "repo": "runtime", + "title": "Remove ByValueMarshalKindSupport.Unnecessary and move ByValueContentsMarshalKindValidator to analyzers only", + "url": "https://github.com/dotnet/runtime/pull/125458", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ec68eee", + "labels": [ + "area-System.Runtime.InteropServices" + ] + }, + { + "id": "runtime@63e88d1", + "repo": "runtime", + "title": "Convert more COM interop MethodDescCallSite to UnmanagedCallersOnly (UCO)", + "url": "https://github.com/dotnet/runtime/pull/125849", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@63e88d1", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@686d074", + "repo": "runtime", + "title": "[wasm][coreclr] Enable more libraries tests", + "url": "https://github.com/dotnet/runtime/pull/125824", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@686d074", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@2daca20", + "repo": "runtime", + "title": "JIT: Add a runtime async optimization to skip saving unmutated locals into reused continuations", + "url": "https://github.com/dotnet/runtime/pull/125615", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2daca20", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@fc579fd", + "repo": "runtime", + "title": "Fix flaky signal handler test on mono on Linux", + "url": "https://github.com/dotnet/runtime/pull/125969", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fc579fd", + "labels": [ + "area-System.Diagnostics.Process" + ] + }, + { + "id": "runtime@d5c384f", + "repo": "runtime", + "title": "Increase TTL in SendPingWithLowTtl_RoundtripTimeIsNonZero to fix macOS flakiness", + "url": "https://github.com/dotnet/runtime/pull/125774", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d5c384f", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@6cbc8ed", + "repo": "runtime", + "title": "Add global:: qualifier to System namespaces in OptionsValidatorGenerator", + "url": "https://github.com/dotnet/runtime/pull/125882", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6cbc8ed", + "labels": [ + "area-Extensions-Options", + "community-contribution" + ] + }, + { + "id": "runtime@f3a96ce", + "repo": "runtime", + "title": "[browser][coreCLR] instantiate webCIL in corerun", + "url": "https://github.com/dotnet/runtime/pull/125983", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f3a96ce", + "labels": [ + "arch-wasm", + "area-Host", + "os-browser" + ] + }, + { + "id": "runtime@12e83ca", + "repo": "runtime", + "title": "Convert IDacDbiInterface to COM interface", + "url": "https://github.com/dotnet/runtime/pull/125074", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@12e83ca", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@53928dd", + "repo": "runtime", + "title": "improve error handling in OpenSSL init code", + "url": "https://github.com/dotnet/runtime/pull/125324", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@53928dd", + "labels": [ + "area-System.Net.Security" + ] + }, + { + "id": "runtime@2f18157", + "repo": "runtime", + "title": "[wasm][coreclr] Fix tpa list population in corerun.html", + "url": "https://github.com/dotnet/runtime/pull/126021", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2f18157", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@cb908b0", + "repo": "runtime", + "title": "Fix OOM in BinHexDecoder, Base64Decoder, and XmlSchemaValidator when throwing on large invalid input", + "url": "https://github.com/dotnet/runtime/pull/125930", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cb908b0", + "labels": [ + "area-System.Xml" + ] + }, + { + "id": "runtime@4412aa7", + "repo": "runtime", + "title": "Add BarrierPostPhaseException to Barrier XML doc comments", + "url": "https://github.com/dotnet/runtime/pull/125635", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4412aa7", + "labels": [ + "area-System.Threading" + ] + }, + { + "id": "runtime@d4cc2d9", + "repo": "runtime", + "title": "Fix NativeAOT publish including satellite assemblies despite embedding them", + "url": "https://github.com/dotnet/runtime/pull/124192", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d4cc2d9", + "labels": [ + "linkable-framework", + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@bfaa2d8", + "repo": "runtime", + "title": "[Wasm RyuJIT] initblk fix for #125756", + "url": "https://github.com/dotnet/runtime/pull/125836", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@bfaa2d8", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@3844be7", + "repo": "runtime", + "title": "Fix SingleConsumerUnboundedChannel WaitToReadAsync returning exception instead of false", + "url": "https://github.com/dotnet/runtime/pull/125745", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3844be7", + "labels": [ + "area-System.Threading.Channels" + ] + }, + { + "id": "runtime@1a2f6f9", + "repo": "runtime", + "title": "[ios-clr] Resolve throw helpers to managed methods in R2R compilation", + "url": "https://github.com/dotnet/runtime/pull/125646", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1a2f6f9", + "labels": [ + "area-crossgen2-coreclr" + ] + }, + { + "id": "runtime@8b810a6", + "repo": "runtime", + "title": "Add unsafe evolution attributes", + "url": "https://github.com/dotnet/runtime/pull/125721", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8b810a6", + "labels": [ + "area-System.Runtime.CompilerServices" + ] + }, + { + "id": "runtime@8c86f67", + "repo": "runtime", + "title": "Revert \u0022Refactor loader heap backout adapter to remove multiple inheritance\u0022", + "url": "https://github.com/dotnet/runtime/pull/126033", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8c86f67", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@5794faa", + "repo": "runtime", + "title": "Add JsonNamingPolicy.PascalCase and JsonKnownNamingPolicy.PascalCase", + "url": "https://github.com/dotnet/runtime/pull/124644", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5794faa", + "labels": [ + "area-System.Text.Json" + ] + }, + { + "id": "runtime@d69ff06", + "repo": "runtime", + "title": "[cDAC] : Implement ClrDataModule GetName", + "url": "https://github.com/dotnet/runtime/pull/125942", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d69ff06", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@9105b47", + "repo": "runtime", + "title": "Defer GetServiceInfo initialization in ActivatorUtilities", + "url": "https://github.com/dotnet/runtime/pull/126005", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9105b47", + "labels": [ + "area-Extensions-DependencyInjection" + ] + }, + { + "id": "runtime@e5f6bf5", + "repo": "runtime", + "title": "Set up GitHub Agentic Workflows", + "url": "https://github.com/dotnet/runtime/pull/126057", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e5f6bf5", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@210efc0", + "repo": "runtime", + "title": "Use Framework SourceType for WASM pass-through assets in multi-client solutions", + "url": "https://github.com/dotnet/runtime/pull/125329", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@210efc0", + "labels": [ + "area-Build-mono" + ] + }, + { + "id": "runtime@243d211", + "repo": "runtime", + "title": "Fix EPERM when killing sudo-launched createdump process in CollectCrashDumpWithCreateDump", + "url": "https://github.com/dotnet/runtime/pull/125916", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@243d211", + "labels": [ + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@52896ab", + "repo": "runtime", + "title": "Make the PeriodicTimer.WaitForNextTickAsync description more descriptive", + "url": "https://github.com/dotnet/runtime/pull/119637", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@52896ab", + "labels": [ + "documentation", + "area-System.Threading", + "community-contribution" + ] + }, + { + "id": "runtime@7877ab1", + "repo": "runtime", + "title": "Add dotnet/extensions to contributing guidelines", + "url": "https://github.com/dotnet/runtime/pull/126069", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7877ab1", + "labels": [ + "area-Meta" + ] + }, + { + "id": "runtime@6d3044d", + "repo": "runtime", + "title": "Add Wasm import thunks", + "url": "https://github.com/dotnet/runtime/pull/125542", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6d3044d", + "labels": [ + "arch-wasm", + "area-crossgen2-coreclr" + ] + }, + { + "id": "runtime@5caa14b", + "repo": "runtime", + "title": "Fix for 125246", + "url": "https://github.com/dotnet/runtime/pull/125747", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5caa14b", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@b5c98ef", + "repo": "runtime", + "title": "[main] Update dependencies from dotnet/xharness", + "url": "https://github.com/dotnet/runtime/pull/125944", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b5c98ef", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@18a940b", + "repo": "runtime", + "title": "Allow null arguments in ProcessStartInfo constructor and Process.Start", + "url": "https://github.com/dotnet/runtime/pull/126076", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@18a940b", + "labels": [ + "area-System.Diagnostics.Process" + ] + }, + { + "id": "runtime@979b490", + "repo": "runtime", + "title": "[wasm][coreclr] Run only libs smoketest on Firefox and V8", + "url": "https://github.com/dotnet/runtime/pull/126084", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@979b490", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@9d8d3e2", + "repo": "runtime", + "title": "Fix ErrorOnUnknownConfiguration to respect ConfigurationKeyNameAttribute", + "url": "https://github.com/dotnet/runtime/pull/125876", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9d8d3e2", + "labels": [ + "area-Extensions-Configuration", + "community-contribution" + ] + }, + { + "id": "runtime@7b5e3d3", + "repo": "runtime", + "title": "[Wasm RyuJit] codegen for loading a register-sized struct local", + "url": "https://github.com/dotnet/runtime/pull/126059", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7b5e3d3", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@c8917ea", + "repo": "runtime", + "title": "[cDAC] Implement GetArgumentByIndex and GetLocalVariableByIndex on ClrDataFrame", + "url": "https://github.com/dotnet/runtime/pull/125463", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c8917ea", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@8f33bcb", + "repo": "runtime", + "title": "Fix: wrap AssignCopy with IfFailThrow in GetMetaDataFileInfoFromPEFile", + "url": "https://github.com/dotnet/runtime/pull/125798", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8f33bcb", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@d6c493d", + "repo": "runtime", + "title": "Revert forwarding activation signal", + "url": "https://github.com/dotnet/runtime/pull/124877", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d6c493d", + "labels": [ + "area-PAL-coreclr" + ] + }, + { + "id": "runtime@a4207f4", + "repo": "runtime", + "title": "Add VectorXx.Asin and use it to vectorize TensorPrimitives.Asin", + "url": "https://github.com/dotnet/runtime/pull/126052", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a4207f4", + "labels": [ + "area-System.Runtime.Intrinsics" + ] + }, + { + "id": "runtime@deb317e", + "repo": "runtime", + "title": "Add linux_arm and windows_x86 to cDAC dump test platforms", + "url": "https://github.com/dotnet/runtime/pull/125793", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@deb317e", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@44cd131", + "repo": "runtime", + "title": "TarWriter: when writing entries for the same hard-linked file use HardLink entries.", + "url": "https://github.com/dotnet/runtime/pull/123874", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@44cd131", + "labels": [ + "breaking-change", + "community-contribution", + "area-System.Formats.Tar" + ] + }, + { + "id": "runtime@803560f", + "repo": "runtime", + "title": "[interpreter] Fix crash on empty switch instruction", + "url": "https://github.com/dotnet/runtime/pull/126017", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@803560f", + "labels": [ + "arch-wasm", + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@f15e049", + "repo": "runtime", + "title": "Fix possible integer overflow", + "url": "https://github.com/dotnet/runtime/pull/125500", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f15e049", + "labels": [ + "area-System.Data", + "community-contribution" + ] + }, + { + "id": "runtime@cdddcee", + "repo": "runtime", + "title": "arm64: Refactor mov/movprfx for unmasked operations", + "url": "https://github.com/dotnet/runtime/pull/123717", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cdddcee", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution", + "arm-sve" + ] + }, + { + "id": "runtime@bde19aa", + "repo": "runtime", + "title": "Move remaining Linux build pools from Ubuntu 22.04 to Azure Linux 3", + "url": "https://github.com/dotnet/runtime/pull/125995", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@bde19aa", + "labels": [ + "area-Infrastructure-libraries" + ] + }, + { + "id": "runtime@93b87b2", + "repo": "runtime", + "title": "Update EOL OS versions in helix-platforms.yml", + "url": "https://github.com/dotnet/runtime/pull/125991", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@93b87b2", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@d5e1f9e", + "repo": "runtime", + "title": "Disable MonoAPI tests on Mono Windows (dotnet/runtime#67047)", + "url": "https://github.com/dotnet/runtime/pull/125987", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d5e1f9e", + "labels": [ + "area-Build-mono" + ] + }, + { + "id": "runtime@2d7b256", + "repo": "runtime", + "title": "Include declaring type name in assembly loading handler tracing events", + "url": "https://github.com/dotnet/runtime/pull/125881", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2d7b256", + "labels": [ + "area-AssemblyLoader-coreclr" + ] + }, + { + "id": "runtime@9bab625", + "repo": "runtime", + "title": "Add r2 r composite", + "url": "https://github.com/dotnet/runtime/pull/125845", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9bab625", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@eafeb92", + "repo": "runtime", + "title": "Add adoption catalog requirement to api-proposal skill", + "url": "https://github.com/dotnet/runtime/pull/125903", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@eafeb92", + "labels": [ + "area-skills" + ] + }, + { + "id": "runtime@91557f5", + "repo": "runtime", + "title": "[cDAC] Fix GetLocalVariableCount to return E_FAIL for missing local signatures", + "url": "https://github.com/dotnet/runtime/pull/126115", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@91557f5", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@6f8b227", + "repo": "runtime", + "title": "Fix OperIs(GT_CNS_INT, GT_CNS_LNG) assertion during import", + "url": "https://github.com/dotnet/runtime/pull/126064", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6f8b227", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@d343974", + "repo": "runtime", + "title": "Fix reentrant Monitor wait", + "url": "https://github.com/dotnet/runtime/pull/126071", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d343974", + "labels": [ + "area-System.Threading" + ] + }, + { + "id": "runtime@e7c4426", + "repo": "runtime", + "title": "Enable runtime-async for shared framework source projects in net11.0\u002B\u2026", + "url": "https://github.com/dotnet/runtime/pull/126343", + "commit": "dotnet@7f78202", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e7c4426", + "labels": [ + "Servicing-approved", + "area-VM-coreclr" + ] + }, + { + "id": "runtime@d23e53a", + "repo": "runtime", + "title": "[release/11.0-preview3] Fix publish-time Framework materialization for multi-client WASM and add test", + "url": "https://github.com/dotnet/runtime/pull/126378", + "commit": "dotnet@fb047b2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d23e53a", + "labels": [ + "Servicing-approved", + "area-Build-mono" + ] + }, + { + "id": "sdk@bcb60ca", + "repo": "sdk", + "title": "[release/8.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52003", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@bcb60ca" + }, + { + "id": "sdk@84d3214", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52039", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@84d3214" + }, + { + "id": "sdk@63a7105", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/8.0.1xx\u0027 =\u003E \u0027release/8.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52041", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@63a7105" + }, + { + "id": "sdk@26ca00f", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/8.0.3xx\u0027 =\u003E \u0027release/8.0.4xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52049", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@26ca00f" + }, + { + "id": "sdk@6373e26", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/razor", + "url": "https://github.com/dotnet/sdk/pull/52067", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6373e26" + }, + { + "id": "sdk@368e128", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/razor", + "url": "https://github.com/dotnet/sdk/pull/52073", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@368e128" + }, + { + "id": "sdk@aa4cf6e", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/razor", + "url": "https://github.com/dotnet/sdk/pull/52075", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@aa4cf6e" + }, + { + "id": "sdk@48e7568", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52076", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@48e7568" + }, + { + "id": "sdk@ae318b2", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52079", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ae318b2" + }, + { + "id": "sdk@16f9ccf", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/8.0.1xx\u0027 =\u003E \u0027release/8.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52078", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@16f9ccf" + }, + { + "id": "sdk@b9d29f2", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.1xx\u0027 =\u003E \u0027release/9.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52080", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b9d29f2" + }, + { + "id": "sdk@d8f27e8", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52084", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d8f27e8" + }, + { + "id": "sdk@12760a3", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/msbuild", + "url": "https://github.com/dotnet/sdk/pull/52145", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@12760a3" + }, + { + "id": "sdk@5371752", + "repo": "sdk", + "title": "Update alpine and fedora versions used in SB CI", + "url": "https://github.com/dotnet/sdk/pull/52148", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5371752" + }, + { + "id": "sdk@583f680", + "repo": "sdk", + "title": "Update branding to 9.0.310", + "url": "https://github.com/dotnet/sdk/pull/52314", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@583f680" + }, + { + "id": "sdk@6c268d1", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/msbuild", + "url": "https://github.com/dotnet/sdk/pull/52100", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6c268d1" + }, + { + "id": "sdk@efd8fd2", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/roslyn-analyzers", + "url": "https://github.com/dotnet/sdk/pull/52317", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@efd8fd2" + }, + { + "id": "sdk@5f21c8b", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/roslyn", + "url": "https://github.com/dotnet/sdk/pull/52101", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5f21c8b" + }, + { + "id": "sdk@ca22991", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52321", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ca22991" + }, + { + "id": "sdk@f02a5eb", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52323", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f02a5eb" + }, + { + "id": "sdk@81f778f", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/razor", + "url": "https://github.com/dotnet/sdk/pull/52291", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@81f778f" + }, + { + "id": "sdk@72e7825", + "repo": "sdk", + "title": "Enable error logging in source-build tests", + "url": "https://github.com/dotnet/sdk/pull/52251", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@72e7825", + "labels": [ + "Branch Lockdown" + ] + }, + { + "id": "sdk@081c776", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52007", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@081c776" + }, + { + "id": "sdk@bdc3757", + "repo": "sdk", + "title": "Update branding to 8.0.124", + "url": "https://github.com/dotnet/sdk/pull/52311", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@bdc3757" + }, + { + "id": "sdk@70bdf41", + "repo": "sdk", + "title": "Update branding to 8.0.418", + "url": "https://github.com/dotnet/sdk/pull/52312", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@70bdf41" + }, + { + "id": "sdk@3ce7bd3", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/msbuild", + "url": "https://github.com/dotnet/sdk/pull/52180", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3ce7bd3" + }, + { + "id": "sdk@9be0a7d", + "repo": "sdk", + "title": "[release/8.0.4xx] Update dependencies from dotnet/source-build-reference-packages", + "url": "https://github.com/dotnet/sdk/pull/52175", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9be0a7d" + }, + { + "id": "sdk@4934c8f", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52322", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4934c8f" + }, + { + "id": "sdk@c34be85", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/roslyn-analyzers", + "url": "https://github.com/dotnet/sdk/pull/52318", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c34be85" + }, + { + "id": "sdk@209a34e", + "repo": "sdk", + "title": "[release/8.0.4xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52340", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@209a34e" + }, + { + "id": "sdk@14848ba", + "repo": "sdk", + "title": "[release/8.0.4xx] Update dependencies from dotnet/source-build-externals", + "url": "https://github.com/dotnet/sdk/pull/52341", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@14848ba" + }, + { + "id": "sdk@4e6fb9d", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/roslyn", + "url": "https://github.com/dotnet/sdk/pull/52360", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4e6fb9d" + }, + { + "id": "sdk@45f21b3", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52034", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@45f21b3" + }, + { + "id": "sdk@a7e90c8", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/razor", + "url": "https://github.com/dotnet/sdk/pull/52125", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a7e90c8" + }, + { + "id": "sdk@d346139", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/source-build-reference-packages", + "url": "https://github.com/dotnet/sdk/pull/52173", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d346139" + }, + { + "id": "sdk@e055a32", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/source-build-externals", + "url": "https://github.com/dotnet/sdk/pull/52328", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e055a32" + }, + { + "id": "sdk@0af14fa", + "repo": "sdk", + "title": "[release/8.0.4xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52036", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0af14fa", + "labels": [ + "vs22Image" + ] + }, + { + "id": "sdk@7a1703f", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/8.0.3xx\u0027 =\u003E \u0027release/8.0.4xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52083", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7a1703f" + }, + { + "id": "sdk@4c2926f", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/source-build-externals", + "url": "https://github.com/dotnet/sdk/pull/52345", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4c2926f" + }, + { + "id": "sdk@feeb179", + "repo": "sdk", + "title": "Update branding to 9.0.114", + "url": "https://github.com/dotnet/sdk/pull/52313", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@feeb179" + }, + { + "id": "sdk@193757a", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52099", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@193757a" + }, + { + "id": "sdk@e3808fd", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/roslyn-analyzers", + "url": "https://github.com/dotnet/sdk/pull/52366", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e3808fd" + }, + { + "id": "sdk@1f571f8", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/roslyn-analyzers", + "url": "https://github.com/dotnet/sdk/pull/52170", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1f571f8" + }, + { + "id": "sdk@c5fb73c", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/8.0.1xx\u0027 =\u003E \u0027release/8.0.4xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52373", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c5fb73c" + }, + { + "id": "sdk@ed11d35", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/razor", + "url": "https://github.com/dotnet/sdk/pull/52289", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ed11d35" + }, + { + "id": "sdk@cbb2c65", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.1xx\u0027 =\u003E \u0027release/9.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52364", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@cbb2c65" + }, + { + "id": "sdk@364c48a", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/source-build-reference-packages", + "url": "https://github.com/dotnet/sdk/pull/52177", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@364c48a" + }, + { + "id": "sdk@3a8c6cc", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/msbuild", + "url": "https://github.com/dotnet/sdk/pull/52098", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3a8c6cc" + }, + { + "id": "sdk@ffcf676", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/roslyn", + "url": "https://github.com/dotnet/sdk/pull/52097", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ffcf676" + }, + { + "id": "sdk@e6a495f", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/8.0.4xx\u0027 =\u003E \u0027release/9.0.1xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52374", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e6a495f" + }, + { + "id": "sdk@7ca3cac", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.1xx\u0027 =\u003E \u0027release/9.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52376", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7ca3cac" + }, + { + "id": "sdk@0337000", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52414", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0337000" + }, + { + "id": "sdk@8fbde9f", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52416", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8fbde9f" + }, + { + "id": "sdk@3582eea", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52417", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3582eea" + }, + { + "id": "sdk@d24aa91", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.1xx\u0027 =\u003E \u0027release/9.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52422", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d24aa91" + }, + { + "id": "sdk@c5e7703", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52424", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c5e7703" + }, + { + "id": "sdk@7e13368", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52443", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7e13368" + }, + { + "id": "sdk@e128c8a", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52444", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e128c8a" + }, + { + "id": "sdk@4c9e31c", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52446", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4c9e31c" + }, + { + "id": "sdk@0f8b0e3", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.1xx\u0027 =\u003E \u0027release/9.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52447", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0f8b0e3" + }, + { + "id": "sdk@1ba5960", + "repo": "sdk", + "title": "Fix OmniSharp tests silently passing on script execution failures", + "url": "https://github.com/dotnet/sdk/pull/52435", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1ba5960" + }, + { + "id": "sdk@7a5391d", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/razor", + "url": "https://github.com/dotnet/sdk/pull/52454", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7a5391d" + }, + { + "id": "sdk@1b6b76a", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/razor", + "url": "https://github.com/dotnet/sdk/pull/52455", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1b6b76a" + }, + { + "id": "sdk@dbc366b", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/roslyn", + "url": "https://github.com/dotnet/sdk/pull/52460", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@dbc366b" + }, + { + "id": "sdk@96dfed6", + "repo": "sdk", + "title": "Update branding to 9.0.311", + "url": "https://github.com/dotnet/sdk/pull/52461", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@96dfed6" + }, + { + "id": "sdk@43f4612", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/razor", + "url": "https://github.com/dotnet/sdk/pull/52475", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@43f4612" + }, + { + "id": "sdk@fff4134", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.1xx\u0027 =\u003E \u0027release/9.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52456", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@fff4134" + }, + { + "id": "sdk@8ce16af", + "repo": "sdk", + "title": "Merging internal commits for release/9.0.1xx", + "url": "https://github.com/dotnet/sdk/pull/52431", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8ce16af" + }, + { + "id": "sdk@ed16134", + "repo": "sdk", + "title": ".NET Source-Build 9.0.113 January 2026 Updates", + "url": "https://github.com/dotnet/sdk/pull/52437", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ed16134" + }, + { + "id": "sdk@1fd3502", + "repo": "sdk", + "title": "Merging internal commits for release/9.0.3xx", + "url": "https://github.com/dotnet/sdk/pull/52430", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1fd3502" + }, + { + "id": "sdk@2062568", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52498", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2062568" + }, + { + "id": "sdk@f95eda2", + "repo": "sdk", + "title": "Fix OmniSharp test failure", + "url": "https://github.com/dotnet/sdk/pull/52470", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f95eda2" + }, + { + "id": "sdk@8255399", + "repo": "sdk", + "title": "Merging internal commits for release/8.0.4xx", + "url": "https://github.com/dotnet/sdk/pull/52433", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8255399" + }, + { + "id": "sdk@cd3a71f", + "repo": "sdk", + "title": "Merging internal commits for release/8.0.1xx", + "url": "https://github.com/dotnet/sdk/pull/52432", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@cd3a71f" + }, + { + "id": "sdk@27dd11b", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52527", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@27dd11b" + }, + { + "id": "sdk@171977b", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52521", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@171977b" + }, + { + "id": "sdk@1e1cec6", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.1xx\u0027 =\u003E \u0027release/9.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52481", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1e1cec6" + }, + { + "id": "sdk@c08a02a", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52536", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c08a02a" + }, + { + "id": "sdk@d8aa6fd", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52522", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d8aa6fd" + }, + { + "id": "sdk@e41a21b", + "repo": "sdk", + "title": "[release/10.0.2xx] Adjust MTP exit code logic", + "url": "https://github.com/dotnet/sdk/pull/52543", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e41a21b", + "labels": [ + "Area-dotnet test", + "Area-dotnet test (MTP)" + ] + }, + { + "id": "sdk@9400f24", + "repo": "sdk", + "title": "[release/10.0.2xx] Handle assemblies gracefully", + "url": "https://github.com/dotnet/sdk/pull/52508", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9400f24", + "labels": [ + "Area-dotnet test", + "Area-dotnet test (MTP)" + ] + }, + { + "id": "sdk@70b0739", + "repo": "sdk", + "title": "[release/10.0.2xx] Refactor ANSI handling for better readability", + "url": "https://github.com/dotnet/sdk/pull/52548", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@70b0739", + "labels": [ + "Area-dotnet test", + "Area-dotnet test (MTP)" + ] + }, + { + "id": "sdk@1ac4527", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/razor", + "url": "https://github.com/dotnet/sdk/pull/52549", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1ac4527" + }, + { + "id": "sdk@74b28c0", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52546", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@74b28c0" + }, + { + "id": "sdk@1e311fe", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/msbuild", + "url": "https://github.com/dotnet/sdk/pull/52561", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1e311fe" + }, + { + "id": "sdk@a430e56", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.1xx\u0027 =\u003E \u0027release/9.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52559", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a430e56" + }, + { + "id": "sdk@99ed5a4", + "repo": "sdk", + "title": "[release/10.0.2xx] [dotnet test MTP]: Only use test progress when ANSI terminal", + "url": "https://github.com/dotnet/sdk/pull/52569", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@99ed5a4", + "labels": [ + "Area-dotnet test", + "Area-dotnet test (MTP)" + ] + }, + { + "id": "sdk@e6a41ba", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.3xx\u0027 =\u003E \u0027release/10.0.1xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52375", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e6a41ba" + }, + { + "id": "sdk@2f84158", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52573", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2f84158" + }, + { + "id": "sdk@26247c1", + "repo": "sdk", + "title": "[release/10.0.2xx] Bump analysislevel constants for .NET 10 release", + "url": "https://github.com/dotnet/sdk/pull/52487", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@26247c1", + "labels": [ + "Servicing-approved", + "Area-Infrastructure", + "Area-Microsoft.CodeAnalysis.NetAnalyzers" + ] + }, + { + "id": "sdk@0957156", + "repo": "sdk", + "title": "Workaround: Fix setting checksum algorithm when mapping projects", + "url": "https://github.com/dotnet/sdk/pull/52578", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0957156" + }, + { + "id": "sdk@1348752", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52538", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1348752" + }, + { + "id": "sdk@e216b09", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.3xx\u0027 =\u003E \u0027release/10.0.1xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52572", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e216b09" + }, + { + "id": "sdk@99ee676", + "repo": "sdk", + "title": "Update dependencies to the Jan release of the runtime", + "url": "https://github.com/dotnet/sdk/pull/52513", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@99ee676" + }, + { + "id": "sdk@7bcae52", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52595", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7bcae52" + }, + { + "id": "sdk@2fc1ed0", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52593", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2fc1ed0" + }, + { + "id": "sdk@6b83d8b", + "repo": "sdk", + "title": "Set working directory of dotnet test as env variable to child MTP test apps", + "url": "https://github.com/dotnet/sdk/pull/52570", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6b83d8b", + "labels": [ + "Area-dotnet test", + "Area-dotnet test (MTP)" + ] + }, + { + "id": "sdk@46f06ae", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52586", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@46f06ae" + }, + { + "id": "sdk@10b65e8", + "repo": "sdk", + "title": "Fix trusted root test layout", + "url": "https://github.com/dotnet/sdk/pull/52611", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@10b65e8" + }, + { + "id": "sdk@275e4bf", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52627", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@275e4bf" + }, + { + "id": "sdk@0b32584", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52626", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0b32584" + }, + { + "id": "sdk@da48935", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52629", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@da48935" + }, + { + "id": "sdk@2ea2c91", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52633", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2ea2c91" + }, + { + "id": "sdk@6a65951", + "repo": "sdk", + "title": "[release/10.0.1xx] Ignore trailing/leading whitespace when validating sarif files", + "url": "https://github.com/dotnet/sdk/pull/52638", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6a65951" + }, + { + "id": "sdk@bf06920", + "repo": "sdk", + "title": "Update VersionFeature80 and VersionFeature90 values to the Jan values", + "url": "https://github.com/dotnet/sdk/pull/52646", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@bf06920" + }, + { + "id": "sdk@cd44b29", + "repo": "sdk", + "title": "Do not assume ordering between stdout and stderr in tests", + "url": "https://github.com/dotnet/sdk/pull/52584", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@cd44b29" + }, + { + "id": "sdk@878d3e2", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52632", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@878d3e2" + }, + { + "id": "sdk@918016b", + "repo": "sdk", + "title": "[release/10.0.2xx] ProcessFrameworkReferences: use portable ILCompiler when RuntimeIdentifier is null.", + "url": "https://github.com/dotnet/sdk/pull/52486", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@918016b", + "labels": [ + "Servicing-approved", + "Area-NetSDK" + ] + }, + { + "id": "sdk@27df5c7", + "repo": "sdk", + "title": "\u0060workload repair\u0060 can recover from corrupt workload sets", + "url": "https://github.com/dotnet/sdk/pull/52434", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@27df5c7", + "labels": [ + "Servicing-consider" + ] + }, + { + "id": "sdk@46a4d29", + "repo": "sdk", + "title": "[release/10.0.2xx] Add escape hatch for not setting a default PublishRuntimeIdentifier value.", + "url": "https://github.com/dotnet/sdk/pull/52691", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@46a4d29", + "labels": [ + "Area-NetSDK" + ] + }, + { + "id": "sdk@61d729a", + "repo": "sdk", + "title": "[release/10.0.1xx] ProcessFrameworkReferences: use portable ILCompiler when RuntimeIdentifier is null.", + "url": "https://github.com/dotnet/sdk/pull/52485", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@61d729a", + "labels": [ + "Servicing-approved", + "Area-NetSDK" + ] + }, + { + "id": "sdk@3065905", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52657", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3065905" + }, + { + "id": "sdk@a2fbbf0", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52673", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a2fbbf0" + }, + { + "id": "sdk@92f957c", + "repo": "sdk", + "title": "[release/10.0.1xx] Fix -extra container variant check to support .NET 9\u002B", + "url": "https://github.com/dotnet/sdk/pull/52597", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@92f957c", + "labels": [ + "Servicing-approved", + "Area-Containers" + ] + }, + { + "id": "sdk@fab83c0", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52662", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@fab83c0" + }, + { + "id": "sdk@6afcec8", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52653", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6afcec8" + }, + { + "id": "sdk@1dc6008", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52703", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1dc6008" + }, + { + "id": "sdk@1db8003", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52652", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1db8003" + }, + { + "id": "sdk@321b67f", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52702", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@321b67f" + }, + { + "id": "sdk@e30dc41", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52723", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e30dc41" + }, + { + "id": "sdk@bc6b89b", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52725", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@bc6b89b" + }, + { + "id": "sdk@8a231e7", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52724", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8a231e7" + }, + { + "id": "sdk@f6e1cdd", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52726", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f6e1cdd" + }, + { + "id": "sdk@fb44937", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52728", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@fb44937" + }, + { + "id": "sdk@28580ca", + "repo": "sdk", + "title": "[release/10.0.2xx] Fix -extra container variant check to support .NET 9\u002B", + "url": "https://github.com/dotnet/sdk/pull/52598", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@28580ca", + "labels": [ + "Servicing-approved", + "Area-Containers" + ] + }, + { + "id": "sdk@af70221", + "repo": "sdk", + "title": "[dotnet watch] Make application of changes always async", + "url": "https://github.com/dotnet/sdk/pull/52469", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@af70221" + }, + { + "id": "sdk@fadbc3c", + "repo": "sdk", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52585", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@fadbc3c" + }, + { + "id": "sdk@f26b426", + "repo": "sdk", + "title": "Port sdk-diff-tests and license-scan pipelines to 1ES pipeline templates", + "url": "https://github.com/dotnet/sdk/pull/52735", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f26b426", + "labels": [ + "Branch Lockdown" + ] + }, + { + "id": "sdk@d30c5b5", + "repo": "sdk", + "title": "[release/10.0.2xx] Fix content publish path calculation", + "url": "https://github.com/dotnet/sdk/pull/52736", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d30c5b5", + "labels": [ + "Area-NetSDK" + ] + }, + { + "id": "sdk@28084a7", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52588", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@28084a7" + }, + { + "id": "sdk@6eaaea3", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52744", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6eaaea3" + }, + { + "id": "sdk@de7e4de", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52730", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@de7e4de" + }, + { + "id": "sdk@701e15b", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52745", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@701e15b" + }, + { + "id": "sdk@0b5cabd", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52746", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0b5cabd" + }, + { + "id": "sdk@6d57490", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52748", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6d57490" + }, + { + "id": "sdk@b40543f", + "repo": "sdk", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 140: Build ID 2891567", + "url": "https://github.com/dotnet/sdk/pull/52747", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b40543f" + }, + { + "id": "sdk@343044b", + "repo": "sdk", + "title": "Add support for creating and editing solution filter (.slnf) files from the CLI", + "url": "https://github.com/dotnet/sdk/pull/51156", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@343044b" + }, + { + "id": "sdk@ce2b7a5", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52760", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ce2b7a5" + }, + { + "id": "sdk@f8798d7", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52750", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f8798d7" + }, + { + "id": "sdk@688c757", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52754", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@688c757" + }, + { + "id": "sdk@7f7901c", + "repo": "sdk", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 140: Build ID 2893098", + "url": "https://github.com/dotnet/sdk/pull/52766", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7f7901c" + }, + { + "id": "sdk@5a22127", + "repo": "sdk", + "title": "Style cleanup", + "url": "https://github.com/dotnet/sdk/pull/52751", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5a22127" + }, + { + "id": "sdk@13f08d3", + "repo": "sdk", + "title": "Update branding to 9.0.115", + "url": "https://github.com/dotnet/sdk/pull/52781", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@13f08d3", + "labels": [ + "Branch Lockdown" + ] + }, + { + "id": "sdk@46f0350", + "repo": "sdk", + "title": "Update branding to 9.0.312", + "url": "https://github.com/dotnet/sdk/pull/52782", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@46f0350", + "labels": [ + "Branch Lockdown" + ] + }, + { + "id": "sdk@2efe80f", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52776", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2efe80f" + }, + { + "id": "sdk@3defff8", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52590", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3defff8" + }, + { + "id": "sdk@67631a2", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52769", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@67631a2" + }, + { + "id": "sdk@3a0afa4", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52797", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3a0afa4" + }, + { + "id": "sdk@b0cb010", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/scenario-tests", + "url": "https://github.com/dotnet/sdk/pull/52624", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b0cb010" + }, + { + "id": "sdk@c9aec7d", + "repo": "sdk", + "title": "Update branding to 8.0.419", + "url": "https://github.com/dotnet/sdk/pull/52780", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c9aec7d", + "labels": [ + "Branch Lockdown" + ] + }, + { + "id": "sdk@7b1f17a", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52798", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7b1f17a" + }, + { + "id": "sdk@6f25088", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52767", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6f25088" + }, + { + "id": "sdk@34884ac", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/scenario-tests", + "url": "https://github.com/dotnet/sdk/pull/52606", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@34884ac" + }, + { + "id": "sdk@3850bef", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52592", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3850bef" + }, + { + "id": "sdk@becbd7e", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/msbuild", + "url": "https://github.com/dotnet/sdk/pull/52594", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@becbd7e" + }, + { + "id": "sdk@7a2111b", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/roslyn-analyzers", + "url": "https://github.com/dotnet/sdk/pull/52667", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7a2111b" + }, + { + "id": "sdk@b9d31cb", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/8.0.1xx\u0027 =\u003E \u0027release/8.0.4xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52530", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b9d31cb" + }, + { + "id": "sdk@f46c335", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52801", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f46c335" + }, + { + "id": "sdk@22254e6", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/source-build-reference-packages", + "url": "https://github.com/dotnet/sdk/pull/52591", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@22254e6" + }, + { + "id": "sdk@cd783aa", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52799", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@cd783aa" + }, + { + "id": "sdk@1ed2c06", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52786", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1ed2c06" + }, + { + "id": "sdk@a27297b", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.1xx\u0027 =\u003E \u0027release/9.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52739", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a27297b" + }, + { + "id": "sdk@3d51db5", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52823", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3d51db5" + }, + { + "id": "sdk@672cd33", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/8.0.4xx\u0027 =\u003E \u0027release/9.0.1xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52529", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@672cd33" + }, + { + "id": "sdk@08c351c", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52827", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@08c351c" + }, + { + "id": "sdk@179cda2", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52826", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@179cda2" + }, + { + "id": "sdk@df91594", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.1xx\u0027 =\u003E \u0027release/9.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52828", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@df91594" + }, + { + "id": "sdk@f66d62e", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52830", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f66d62e" + }, + { + "id": "sdk@bd5d3af", + "repo": "sdk", + "title": "\u0060dotnet run -e FOO=BAR\u0060 passes \u0060@(RuntimeEnvironmentVariable)\u0060", + "url": "https://github.com/dotnet/sdk/pull/52664", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@bd5d3af" + }, + { + "id": "sdk@fdc6404", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52832", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@fdc6404" + }, + { + "id": "sdk@d8ba29e", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52831", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d8ba29e" + }, + { + "id": "sdk@cf2e5d6", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52844", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@cf2e5d6" + }, + { + "id": "sdk@8688b41", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52841", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8688b41" + }, + { + "id": "sdk@f7900e0", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52843", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f7900e0" + }, + { + "id": "sdk@e898f24", + "repo": "sdk", + "title": "[release/8.0.4xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52825", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e898f24" + }, + { + "id": "sdk@d74666a", + "repo": "sdk", + "title": "Fix DNX command casting error with DnxCommandDefinition", + "url": "https://github.com/dotnet/sdk/pull/52820", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d74666a", + "labels": [ + "Area-Tools" + ] + }, + { + "id": "sdk@b34aec9", + "repo": "sdk", + "title": "Increase mem alloc for license scanning container", + "url": "https://github.com/dotnet/sdk/pull/52857", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b34aec9" + }, + { + "id": "sdk@1819039", + "repo": "sdk", + "title": "Update locBranch to release/10.0.3xx", + "url": "https://github.com/dotnet/sdk/pull/52720", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1819039" + }, + { + "id": "sdk@7028695", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52842", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7028695" + }, + { + "id": "sdk@c9dc32c", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/scenario-tests", + "url": "https://github.com/dotnet/sdk/pull/52852", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c9dc32c" + }, + { + "id": "sdk@aeedfda", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52860", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@aeedfda" + }, + { + "id": "sdk@6bd81f1", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52868", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6bd81f1" + }, + { + "id": "sdk@2400fb7", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/scenario-tests", + "url": "https://github.com/dotnet/sdk/pull/52866", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2400fb7" + }, + { + "id": "sdk@f6c57fb", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52846", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f6c57fb" + }, + { + "id": "sdk@2cf45fe", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52869", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2cf45fe" + }, + { + "id": "sdk@8b46229", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.1xx\u0027 =\u003E \u0027release/9.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52848", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8b46229" + }, + { + "id": "sdk@4cd2fac", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52875", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4cd2fac" + }, + { + "id": "sdk@efe7617", + "repo": "sdk", + "title": "Refactor VSHostObject credential extraction for COM compatibility and out-of-process execution", + "url": "https://github.com/dotnet/sdk/pull/52856", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@efe7617", + "labels": [ + "Area-VS", + "Area-Containers" + ] + }, + { + "id": "sdk@e6fea27", + "repo": "sdk", + "title": "Update VersionFeature80 and VersionFeature90 calculations to Jan release", + "url": "https://github.com/dotnet/sdk/pull/52495", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e6fea27" + }, + { + "id": "sdk@166831f", + "repo": "sdk", + "title": "[release/10.0.1xx] Keep template_feed/../content/../.gitattributes in archives", + "url": "https://github.com/dotnet/sdk/pull/52771", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@166831f", + "labels": [ + "Servicing-approved", + "Area-Common templates" + ] + }, + { + "id": "sdk@8cef68e", + "repo": "sdk", + "title": "[release/10.0.2xx] Keep template_feed/../content/../.gitattributes in archives", + "url": "https://github.com/dotnet/sdk/pull/52772", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8cef68e", + "labels": [ + "Servicing-approved", + "Area-Common templates" + ] + }, + { + "id": "sdk@8a4a60a", + "repo": "sdk", + "title": "Update target framework visibility conditions and remove VS-specific error message", + "url": "https://github.com/dotnet/sdk/pull/52235", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8a4a60a", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "sdk@bb7d629", + "repo": "sdk", + "title": "Add .code-workspace files for all solutions", + "url": "https://github.com/dotnet/sdk/pull/52839", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@bb7d629" + }, + { + "id": "sdk@1eac263", + "repo": "sdk", + "title": "Lock around access to s_dynamicSymbols", + "url": "https://github.com/dotnet/sdk/pull/52887", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1eac263" + }, + { + "id": "sdk@5516079", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52892", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5516079" + }, + { + "id": "sdk@3249ae0", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52893", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3249ae0" + }, + { + "id": "sdk@6b09479", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52891", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6b09479" + }, + { + "id": "sdk@d0b6a66", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52890", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d0b6a66" + }, + { + "id": "sdk@d2f50cc", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52903", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d2f50cc" + }, + { + "id": "sdk@5ea71ae", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52902", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5ea71ae" + }, + { + "id": "sdk@9d5e578", + "repo": "sdk", + "title": "[release/8.0.4xx] Update dependencies from dotnet/razor", + "url": "https://github.com/dotnet/sdk/pull/52872", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9d5e578" + }, + { + "id": "sdk@de97864", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.1xx\u0027 =\u003E \u0027release/9.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52904", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@de97864" + }, + { + "id": "sdk@d71d920", + "repo": "sdk", + "title": "Fix vmr-license-scan pipeline for 1ES template compatibility", + "url": "https://github.com/dotnet/sdk/pull/52919", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d71d920" + }, + { + "id": "sdk@a087a43", + "repo": "sdk", + "title": "[release/10.0.3xx] [wasm] Embed HotReload in WebAssembly SDK", + "url": "https://github.com/dotnet/sdk/pull/52881", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a087a43" + }, + { + "id": "sdk@31812eb", + "repo": "sdk", + "title": "Improve MTP dotnet test error reporting", + "url": "https://github.com/dotnet/sdk/pull/52911", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@31812eb" + }, + { + "id": "sdk@5912358", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52927", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5912358" + }, + { + "id": "sdk@c63abe2", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52929", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c63abe2" + }, + { + "id": "sdk@acef1ca", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52931", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@acef1ca" + }, + { + "id": "sdk@1a3b359", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52921", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1a3b359" + }, + { + "id": "sdk@da5dcd2", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.1xx\u0027 =\u003E \u0027release/9.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52933", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@da5dcd2" + }, + { + "id": "sdk@3e70852", + "repo": "sdk", + "title": "Support boolean values for --self-contained flag", + "url": "https://github.com/dotnet/sdk/pull/52333", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3e70852" + }, + { + "id": "sdk@d6d1edd", + "repo": "sdk", + "title": "Merging internal commits for release/9.0.3xx", + "url": "https://github.com/dotnet/sdk/pull/52947", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d6d1edd" + }, + { + "id": "sdk@88dea37", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/source-build-reference-packages", + "url": "https://github.com/dotnet/sdk/pull/52928", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@88dea37", + "labels": [ + "Area-Containers" + ] + }, + { + "id": "sdk@d3ca184", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/scenario-tests", + "url": "https://github.com/dotnet/sdk/pull/52907", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d3ca184", + "labels": [ + "Area-Templates", + "Area-Watch" + ] + }, + { + "id": "sdk@d184b01", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52967", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d184b01" + }, + { + "id": "sdk@0e732ff", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52968", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0e732ff" + }, + { + "id": "sdk@ff55ce3", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52970", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ff55ce3" + }, + { + "id": "sdk@2d9da0a", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52971", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2d9da0a" + }, + { + "id": "sdk@8e95887", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/scenario-tests", + "url": "https://github.com/dotnet/sdk/pull/52925", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8e95887", + "labels": [ + "Area-Templates" + ] + }, + { + "id": "sdk@16fa16c", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52923", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@16fa16c" + }, + { + "id": "sdk@ab41bd5", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52969", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ab41bd5" + }, + { + "id": "sdk@9862ead", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52973", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9862ead" + }, + { + "id": "sdk@d50a67b", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52974", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d50a67b" + }, + { + "id": "sdk@971ea25", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/8.0.4xx\u0027 =\u003E \u0027release/9.0.1xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52849", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@971ea25", + "labels": [ + "Area-Containers" + ] + }, + { + "id": "sdk@7c7e0ac", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.1xx\u0027 =\u003E \u0027release/9.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52972", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7c7e0ac" + }, + { + "id": "sdk@e6a56a3", + "repo": "sdk", + "title": "Update VersionFeature80 and VersionFeature90 values for Feb release", + "url": "https://github.com/dotnet/sdk/pull/52957", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e6a56a3" + }, + { + "id": "sdk@5262ee1", + "repo": "sdk", + "title": "Update release branch version in CI configuration", + "url": "https://github.com/dotnet/sdk/pull/52922", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5262ee1" + }, + { + "id": "sdk@b015d8d", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52979", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b015d8d" + }, + { + "id": "sdk@d07da7f", + "repo": "sdk", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52941", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d07da7f", + "labels": [ + "Area-VMR" + ] + }, + { + "id": "sdk@081f309", + "repo": "sdk", + "title": "[dotnet-watch] Misc test and product reliability fixes", + "url": "https://github.com/dotnet/sdk/pull/52897", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@081f309" + }, + { + "id": "sdk@86a83ac", + "repo": "sdk", + "title": "Merging internal commits for release/9.0.1xx", + "url": "https://github.com/dotnet/sdk/pull/52946", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@86a83ac" + }, + { + "id": "sdk@e9c45e1", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52975", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e9c45e1" + }, + { + "id": "sdk@6c4d38d", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/scenario-tests", + "url": "https://github.com/dotnet/sdk/pull/52981", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6c4d38d" + }, + { + "id": "sdk@1e4c40c", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/scenario-tests", + "url": "https://github.com/dotnet/sdk/pull/52998", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1e4c40c" + }, + { + "id": "sdk@43549ea", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53000", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@43549ea" + }, + { + "id": "sdk@1175a14", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.1xx\u0027 =\u003E \u0027release/9.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52995", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1175a14" + }, + { + "id": "sdk@d88e7c6", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52999", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d88e7c6" + }, + { + "id": "sdk@075e8d7", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53003", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@075e8d7" + }, + { + "id": "sdk@7605d6f", + "repo": "sdk", + "title": "[MTP dotnet test]: Allow specifying project, solution, directory, or test modules as positional argument", + "url": "https://github.com/dotnet/sdk/pull/52449", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7605d6f", + "labels": [ + "Area-dotnet test", + "Area-dotnet test (MTP)" + ] + }, + { + "id": "sdk@a5af8d7", + "repo": "sdk", + "title": "Disable workspace-based development in settings", + "url": "https://github.com/dotnet/sdk/pull/52990", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a5af8d7" + }, + { + "id": "sdk@4fac7b7", + "repo": "sdk", + "title": "Update vmr-sync images to ubuntu 2204", + "url": "https://github.com/dotnet/sdk/pull/52992", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4fac7b7" + }, + { + "id": "sdk@c86db80", + "repo": "sdk", + "title": "Prevent Copilot from running dotnet format in PRs", + "url": "https://github.com/dotnet/sdk/pull/52989", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c86db80" + }, + { + "id": "sdk@54a8f45", + "repo": "sdk", + "title": "Merging internal commits for release/8.0.4xx", + "url": "https://github.com/dotnet/sdk/pull/52953", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@54a8f45" + }, + { + "id": "sdk@4d104f1", + "repo": "sdk", + "title": "Reject --add-source when package source mapping is enabled", + "url": "https://github.com/dotnet/sdk/pull/52863", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4d104f1", + "labels": [ + "Area-CLI" + ] + }, + { + "id": "sdk@4470296", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53011", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4470296" + }, + { + "id": "sdk@773768b", + "repo": "sdk", + "title": "Remove duplicate containers node", + "url": "https://github.com/dotnet/sdk/pull/53021", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@773768b" + }, + { + "id": "sdk@998e8be", + "repo": "sdk", + "title": "[release/9.0.3xx] Remove duplicate containers node", + "url": "https://github.com/dotnet/sdk/pull/53022", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@998e8be" + }, + { + "id": "sdk@788997e", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/8.0.4xx\u0027 =\u003E \u0027release/9.0.1xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53013", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@788997e" + }, + { + "id": "sdk@d37e536", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.1xx\u0027 =\u003E \u0027release/9.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53008", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d37e536" + }, + { + "id": "sdk@313a703", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53024", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@313a703" + }, + { + "id": "sdk@6e84e96", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53025", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6e84e96" + }, + { + "id": "sdk@695247b", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53026", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@695247b" + }, + { + "id": "sdk@780ab9a", + "repo": "sdk", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 140: Build ID 2902832", + "url": "https://github.com/dotnet/sdk/pull/53009", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@780ab9a" + }, + { + "id": "sdk@285eea9", + "repo": "sdk", + "title": "Cleans up test package references and global usings", + "url": "https://github.com/dotnet/sdk/pull/53019", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@285eea9" + }, + { + "id": "sdk@07d7aa4", + "repo": "sdk", + "title": "[dotnet run] \u0060$(Device)\u0060 global property missing during \u0060DeployToDevice\u0060 target", + "url": "https://github.com/dotnet/sdk/pull/53018", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@07d7aa4" + }, + { + "id": "sdk@fd8454b", + "repo": "sdk", + "title": "Workaround for NuGet restore bug", + "url": "https://github.com/dotnet/sdk/pull/53020", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@fd8454b" + }, + { + "id": "sdk@65c7913", + "repo": "sdk", + "title": ".NET Source-Build 9.0.114 February 2026 Updates", + "url": "https://github.com/dotnet/sdk/pull/52962", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@65c7913" + }, + { + "id": "sdk@d95b8d9", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53039", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d95b8d9" + }, + { + "id": "sdk@5b3917a", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53033", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5b3917a" + }, + { + "id": "sdk@9396d43", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53040", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9396d43" + }, + { + "id": "sdk@23179aa", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53031", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@23179aa" + }, + { + "id": "sdk@d963b10", + "repo": "sdk", + "title": "Cleans up test package references and global usings", + "url": "https://github.com/dotnet/sdk/pull/53035", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d963b10", + "labels": [ + "Area-dotnet test" + ] + }, + { + "id": "sdk@3f9704d", + "repo": "sdk", + "title": "Remove TestCommandLine and custom test CLI infrastructure", + "url": "https://github.com/dotnet/sdk/pull/53063", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3f9704d", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "sdk@a8ad585", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53041", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a8ad585" + }, + { + "id": "sdk@ad91287", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53043", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ad91287" + }, + { + "id": "sdk@5a9be96", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53069", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5a9be96" + }, + { + "id": "sdk@013b8b3", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53044", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@013b8b3" + }, + { + "id": "sdk@e5a1567", + "repo": "sdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53053", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e5a1567", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@b5a4051", + "repo": "sdk", + "title": "Consolidate duplicate VSHostObject implementations", + "url": "https://github.com/dotnet/sdk/pull/53028", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b5a4051" + }, + { + "id": "sdk@ff21843", + "repo": "sdk", + "title": "Remove accidentally committed build duty report", + "url": "https://github.com/dotnet/sdk/pull/53075", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ff21843" + }, + { + "id": "sdk@e90c441", + "repo": "sdk", + "title": "Produce Windows archive tarballs", + "url": "https://github.com/dotnet/sdk/pull/52910", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e90c441" + }, + { + "id": "sdk@6fc33a0", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53080", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6fc33a0" + }, + { + "id": "sdk@458ee8b", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53081", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@458ee8b" + }, + { + "id": "sdk@772465e", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53082", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@772465e" + }, + { + "id": "sdk@546f4be", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53083", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@546f4be" + }, + { + "id": "sdk@e9ee772", + "repo": "sdk", + "title": "Enable and fix WASM tests", + "url": "https://github.com/dotnet/sdk/pull/52960", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e9ee772" + }, + { + "id": "sdk@10359b4", + "repo": "sdk", + "title": "Refactor Hot Reload loop cancellation", + "url": "https://github.com/dotnet/sdk/pull/53048", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@10359b4" + }, + { + "id": "sdk@52e4ef1", + "repo": "sdk", + "title": "Remove failing assert from file-level directive parser", + "url": "https://github.com/dotnet/sdk/pull/53087", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@52e4ef1", + "labels": [ + "Area-run-file" + ] + }, + { + "id": "sdk@888e971", + "repo": "sdk", + "title": "[dotnet-watch] websocket transport for mobile", + "url": "https://github.com/dotnet/sdk/pull/52581", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@888e971" + }, + { + "id": "sdk@6e514f6", + "repo": "sdk", + "title": "Disable WASM tests on Linux", + "url": "https://github.com/dotnet/sdk/pull/53105", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6e514f6" + }, + { + "id": "sdk@f284d9f", + "repo": "sdk", + "title": "[release/10.0.3xx] Manual backflow of sdk release/10.0.3xx", + "url": "https://github.com/dotnet/sdk/pull/53090", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f284d9f" + }, + { + "id": "sdk@a17669f", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53095", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a17669f" + }, + { + "id": "sdk@dfa02f2", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53109", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@dfa02f2" + }, + { + "id": "sdk@7840886", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53110", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7840886" + }, + { + "id": "sdk@b6e2d4a", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53094", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b6e2d4a" + }, + { + "id": "sdk@6f97200", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53132", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6f97200" + }, + { + "id": "sdk@40b692f", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53131", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@40b692f" + }, + { + "id": "sdk@a104da2", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53130", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a104da2" + }, + { + "id": "sdk@32c9942", + "repo": "sdk", + "title": "File-based apps: add support for \u0060#:include\u0060", + "url": "https://github.com/dotnet/sdk/pull/52347", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@32c9942", + "labels": [ + "Area-run-file" + ] + }, + { + "id": "sdk@ba6ab4a", + "repo": "sdk", + "title": "Add DotNetSdkSupportsVSHostObjectRemoting property", + "url": "https://github.com/dotnet/sdk/pull/53100", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ba6ab4a" + }, + { + "id": "sdk@8cbac4a", + "repo": "sdk", + "title": "Clean up some file-based app APIs", + "url": "https://github.com/dotnet/sdk/pull/53056", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8cbac4a", + "labels": [ + "Area-run-file" + ] + }, + { + "id": "sdk@56e4fea", + "repo": "sdk", + "title": "Add flow from main to release/dnup", + "url": "https://github.com/dotnet/sdk/pull/53139", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@56e4fea" + }, + { + "id": "sdk@aad07f3", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53133", + "commit": "dotnet@e10ada3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@aad07f3" + }, + { + "id": "sdk@d40b218", + "repo": "sdk", + "title": "Move dotnet-format", + "url": "https://github.com/dotnet/sdk/pull/53138", + "commit": "dotnet@e10ada3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d40b218" + }, + { + "id": "sdk@18a5ef3", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53145", + "commit": "dotnet@e10ada3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@18a5ef3" + }, + { + "id": "sdk@f2f162f", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53146", + "commit": "dotnet@e10ada3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f2f162f" + }, + { + "id": "sdk@aa89ea0", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53147", + "commit": "dotnet@e10ada3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@aa89ea0" + }, + { + "id": "sdk@dd78739", + "repo": "sdk", + "title": "Refactor CliFolderPathCalculatorCore to support environment variable injection", + "url": "https://github.com/dotnet/sdk/pull/53124", + "commit": "dotnet@e10ada3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@dd78739", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "sdk@0cd3fa6", + "repo": "sdk", + "title": "Add agent definitions for reproducing SDK build-related issues, and analyzing reproduction binlogs", + "url": "https://github.com/dotnet/sdk/pull/52917", + "commit": "dotnet@e10ada3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0cd3fa6", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "sdk@a8c3d20", + "repo": "sdk", + "title": "Update RazorLangVersion to 10.0 in .NET 10.0.3xx", + "url": "https://github.com/dotnet/sdk/pull/53150", + "commit": "dotnet@e10ada3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a8c3d20" + }, + { + "id": "sdk@e720fab", + "repo": "sdk", + "title": "Desync CodeOwners for \u0060dnup\u0060 merge flow", + "url": "https://github.com/dotnet/sdk/pull/53160", + "commit": "dotnet@e10ada3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e720fab" + }, + { + "id": "sdk@b6ecfca", + "repo": "sdk", + "title": "Rename BuiltInTools dir to Dotnet.Watch", + "url": "https://github.com/dotnet/sdk/pull/53159", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b6ecfca" + }, + { + "id": "sdk@94308f9", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52753", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@94308f9" + }, + { + "id": "sdk@0e13177", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.3xx\u0027 =\u003E \u0027release/10.0.1xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/52794", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0e13177" + }, + { + "id": "sdk@bc1e346", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53002", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@bc1e346" + }, + { + "id": "sdk@0bc2b57", + "repo": "sdk", + "title": "[release/10.0.3xx] Add comprehensive LLM tool detection support (18 tools)", + "url": "https://github.com/dotnet/sdk/pull/52901", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0bc2b57" + }, + { + "id": "sdk@ec0dde2", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53166", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ec0dde2" + }, + { + "id": "sdk@716167b", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53167", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@716167b" + }, + { + "id": "sdk@4a8feb3", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53164", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4a8feb3" + }, + { + "id": "sdk@c5d7b4e", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53171", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c5d7b4e" + }, + { + "id": "sdk@db01067", + "repo": "sdk", + "title": "Fix dotnet host detection using GetFileNameWithoutExtension", + "url": "https://github.com/dotnet/sdk/pull/53157", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@db01067" + }, + { + "id": "sdk@64f31ca", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53168", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@64f31ca" + }, + { + "id": "sdk@722383a", + "repo": "sdk", + "title": "Split ApplyDeltaTests into multiple types", + "url": "https://github.com/dotnet/sdk/pull/53158", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@722383a" + }, + { + "id": "sdk@bdb5a2a", + "repo": "sdk", + "title": "Consolidate file-level directive manipulation", + "url": "https://github.com/dotnet/sdk/pull/53136", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@bdb5a2a", + "labels": [ + "Area-run-file" + ] + }, + { + "id": "sdk@9568598", + "repo": "sdk", + "title": "Disambiguate Helix test runs in AzDO", + "url": "https://github.com/dotnet/sdk/pull/53176", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9568598" + }, + { + "id": "sdk@449dad7", + "repo": "sdk", + "title": "Streamline web socket config, KestrelWebSocketServer impl", + "url": "https://github.com/dotnet/sdk/pull/53108", + "commit": "dotnet@d9d6b9c", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@449dad7" + }, + { + "id": "sdk@427fcd8", + "repo": "sdk", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 140: Build ID 2912121", + "url": "https://github.com/dotnet/sdk/pull/53123", + "commit": "dotnet@d9d6b9c", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@427fcd8" + }, + { + "id": "sdk@9b33c85", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53172", + "commit": "dotnet@d9d6b9c", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9b33c85" + }, + { + "id": "sdk@29dbf6c", + "repo": "sdk", + "title": "CA1708: Ignore \u0027extension\u0027 blocks for naming check.", + "url": "https://github.com/dotnet/sdk/pull/51838", + "commit": "dotnet@d9d6b9c", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@29dbf6c", + "labels": [ + "Area-Infrastructure", + "Area-Microsoft.CodeAnalysis.NetAnalyzers" + ] + }, + { + "id": "sdk@916b9a7", + "repo": "sdk", + "title": "Fix Locked comment tokens to include surrounding apostrophes in FileBasedProgramsResources.resx", + "url": "https://github.com/dotnet/sdk/pull/53180", + "commit": "dotnet@d9d6b9c", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@916b9a7", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "sdk@a583f95", + "repo": "sdk", + "title": "Fix tool install --source option not being respected for global and local tools", + "url": "https://github.com/dotnet/sdk/pull/52787", + "commit": "dotnet@d9d6b9c", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a583f95" + }, + { + "id": "sdk@bfa9395", + "repo": "sdk", + "title": "Migrate 5 MSBuild tasks to IMultiThreadableTask (Group 3: Package Assets \u0026 App Host)", + "url": "https://github.com/dotnet/sdk/pull/52938", + "commit": "dotnet@d9d6b9c", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@bfa9395" + }, + { + "id": "sdk@0fe9e20", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53186", + "commit": "dotnet@b892348", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0fe9e20" + }, + { + "id": "sdk@35ef523", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53185", + "commit": "dotnet@b892348", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@35ef523" + }, + { + "id": "sdk@8f293f2", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53184", + "commit": "dotnet@b892348", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8f293f2" + }, + { + "id": "sdk@e882731", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53188", + "commit": "dotnet@b892348", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e882731" + }, + { + "id": "sdk@166668d", + "repo": "sdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53190", + "commit": "dotnet@b892348", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@166668d", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@165cc52", + "repo": "sdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53208", + "commit": "dotnet@131a5cd", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@165cc52", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@efbdd02", + "repo": "sdk", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 140: Build ID 2914767", + "url": "https://github.com/dotnet/sdk/pull/53195", + "commit": "dotnet@131a5cd", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@efbdd02" + }, + { + "id": "sdk@9d64690", + "repo": "sdk", + "title": "Fix ExcludeList handling in composite R2R and correct entry-point assembly metadata", + "url": "https://github.com/dotnet/sdk/pull/53084", + "commit": "dotnet@131a5cd", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9d64690" + }, + { + "id": "sdk@35e9e55", + "repo": "sdk", + "title": "Add multithreading tests for 5 validation-check tasks (Group 4)", + "url": "https://github.com/dotnet/sdk/pull/52937", + "commit": "dotnet@131a5cd", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@35e9e55" + }, + { + "id": "sdk@c7310ca", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53211", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c7310ca" + }, + { + "id": "sdk@7f1449e", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53220", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7f1449e" + }, + { + "id": "sdk@abd1b4d", + "repo": "sdk", + "title": "[main] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53096", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@abd1b4d", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@352097b", + "repo": "sdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53221", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@352097b", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@c69da70", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53219", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c69da70" + }, + { + "id": "sdk@1f2c468", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53225", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1f2c468" + }, + { + "id": "sdk@fff6e54", + "repo": "sdk", + "title": "[release/9.0.3xx] Update branding to 9.0.313", + "url": "https://github.com/dotnet/sdk/pull/53230", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@fff6e54" + }, + { + "id": "sdk@5a484c0", + "repo": "sdk", + "title": "Rename ms.docs to ms-docs in mcp.json", + "url": "https://github.com/dotnet/sdk/pull/53237", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5a484c0" + }, + { + "id": "sdk@103e96d", + "repo": "sdk", + "title": "[release/9.0.1xx] Update branding to 9.0.116", + "url": "https://github.com/dotnet/sdk/pull/53231", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@103e96d" + }, + { + "id": "sdk@827ffaa", + "repo": "sdk", + "title": "Remove workarounds for a fixed issue in run-file tests", + "url": "https://github.com/dotnet/sdk/pull/53214", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@827ffaa", + "labels": [ + "Area-run-file" + ] + }, + { + "id": "sdk@0c83b23", + "repo": "sdk", + "title": "[release/8.0.4xx] Update branding to 8.0.420", + "url": "https://github.com/dotnet/sdk/pull/53233", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0c83b23" + }, + { + "id": "sdk@262bf9c", + "repo": "sdk", + "title": "Added --framework arg to \u0022dotnet format\u0022 to set TFM", + "url": "https://github.com/dotnet/sdk/pull/53202", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@262bf9c", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "sdk@b967128", + "repo": "sdk", + "title": "Remove approval prompt from \u0060dotnet tool exec\u0060 - running dnx is implicit approval", + "url": "https://github.com/dotnet/sdk/pull/52956", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b967128", + "labels": [ + "Area-CLI", + "Area-Tools" + ] + }, + { + "id": "sdk@9edfcdc", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53228", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9edfcdc" + }, + { + "id": "sdk@3ab1bc4", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/53239", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3ab1bc4" + }, + { + "id": "sdk@8e5cc2e", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53248", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8e5cc2e" + }, + { + "id": "sdk@5eec490", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53249", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5eec490" + }, + { + "id": "sdk@1f62394", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/source-build-reference-packages", + "url": "https://github.com/dotnet/sdk/pull/53067", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1f62394" + }, + { + "id": "sdk@cb6c03b", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/53128", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@cb6c03b" + }, + { + "id": "sdk@dd6c2af", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/53238", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@dd6c2af" + }, + { + "id": "sdk@252ae5a", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/53129", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@252ae5a" + }, + { + "id": "sdk@6c0056a", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/scenario-tests", + "url": "https://github.com/dotnet/sdk/pull/53155", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6c0056a" + }, + { + "id": "sdk@8467a15", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/scenario-tests", + "url": "https://github.com/dotnet/sdk/pull/53165", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8467a15" + }, + { + "id": "sdk@9bc68cc", + "repo": "sdk", + "title": "[main] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53247", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9bc68cc", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@a62bda4", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.1xx\u0027 =\u003E \u0027release/9.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53036", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a62bda4" + }, + { + "id": "sdk@14deca1", + "repo": "sdk", + "title": "Add a script that takes output of dotnet-watch tests and formats it to HTML that\u0027s easier to reason about", + "url": "https://github.com/dotnet/sdk/pull/53215", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@14deca1" + }, + { + "id": "sdk@ae9bd8c", + "repo": "sdk", + "title": "Fix ObjectDisposedException race condition in TimestampedFileLogger", + "url": "https://github.com/dotnet/sdk/pull/53241", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ae9bd8c" + }, + { + "id": "sdk@50f2f7f", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/53260", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@50f2f7f" + }, + { + "id": "sdk@dd9a9a8", + "repo": "sdk", + "title": "Add openbsd RID in SDK infra", + "url": "https://github.com/dotnet/sdk/pull/53227", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@dd9a9a8" + }, + { + "id": "sdk@49e2a87", + "repo": "sdk", + "title": "Port dotnet/runtime\u0027s ci-analysis skill", + "url": "https://github.com/dotnet/sdk/pull/53264", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@49e2a87", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "sdk@6765a47", + "repo": "sdk", + "title": "Publish Microsoft.DotNet.ProjectTools package", + "url": "https://github.com/dotnet/sdk/pull/53265", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6765a47" + }, + { + "id": "sdk@09fa7fa", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/53259", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@09fa7fa" + }, + { + "id": "sdk@98acb9a", + "repo": "sdk", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 140: Build ID 2918587", + "url": "https://github.com/dotnet/sdk/pull/53244", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@98acb9a" + }, + { + "id": "sdk@73c46a2", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53262", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@73c46a2" + }, + { + "id": "sdk@887959b", + "repo": "sdk", + "title": "Watch Aspire", + "url": "https://github.com/dotnet/sdk/pull/53192", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@887959b", + "labels": [ + "Area-Watch" + ] + }, + { + "id": "sdk@b21f089", + "repo": "sdk", + "title": "[main] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53273", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b21f089", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@beac916", + "repo": "sdk", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 140: Build ID 2918883", + "url": "https://github.com/dotnet/sdk/pull/53270", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@beac916" + }, + { + "id": "sdk@7986874", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/8.0.4xx\u0027 =\u003E \u0027release/9.0.1xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53245", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7986874" + }, + { + "id": "sdk@6cbef60", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53276", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6cbef60" + }, + { + "id": "sdk@436f454", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53275", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@436f454" + }, + { + "id": "sdk@dfc4679", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.1xx\u0027 =\u003E \u0027release/9.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53269", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@dfc4679" + }, + { + "id": "sdk@6a12dff", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53277", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6a12dff" + }, + { + "id": "sdk@e7eeb60", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53279", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e7eeb60" + }, + { + "id": "sdk@32ad88a", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/sdk/pull/53007", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@32ad88a" + }, + { + "id": "sdk@5f324eb", + "repo": "sdk", + "title": "Enable R2R crossgen for DotnetTools .NET Core assemblies", + "url": "https://github.com/dotnet/sdk/pull/53266", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5f324eb" + }, + { + "id": "sdk@94a9db1", + "repo": "sdk", + "title": "Use FrameworkList.xml instead of hard-coding references and analyzers in optimized CSC-only file-based app builds", + "url": "https://github.com/dotnet/sdk/pull/53205", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@94a9db1", + "labels": [ + "Area-run-file" + ] + }, + { + "id": "sdk@a0f0828", + "repo": "sdk", + "title": "Add --delete-source option and interactive prompt to project convert", + "url": "https://github.com/dotnet/sdk/pull/52802", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a0f0828", + "labels": [ + "Area-run-file" + ] + }, + { + "id": "sdk@0cafe54", + "repo": "sdk", + "title": "Refactor compatibility tools to use parameter objects instead of long parameter lists", + "url": "https://github.com/dotnet/sdk/pull/53213", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0cafe54" + }, + { + "id": "sdk@ad640d4", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53296", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ad640d4" + }, + { + "id": "sdk@f2ce0d8", + "repo": "sdk", + "title": "[main] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53294", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f2ce0d8", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@4e7db90", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53295", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4e7db90" + }, + { + "id": "sdk@5bb7e31", + "repo": "sdk", + "title": "Fix directory handling as positional argument for MTP dotnet test", + "url": "https://github.com/dotnet/sdk/pull/53302", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5bb7e31" + }, + { + "id": "sdk@4325a44", + "repo": "sdk", + "title": "[MTP dotnet test]: Allow specifying project, solution, directory, or test modules as positional argument", + "url": "https://github.com/dotnet/sdk/pull/53004", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4325a44" + }, + { + "id": "sdk@6f2f88e", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53223", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6f2f88e" + }, + { + "id": "sdk@a6819d6", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.3xx\u0027 =\u003E \u0027release/10.0.1xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53236", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a6819d6" + }, + { + "id": "sdk@7080cc0", + "repo": "sdk", + "title": "[dotnet run/watch] gracefully handle Ctrl\u002BC for Windows (WinForms, WPF, MAUI)", + "url": "https://github.com/dotnet/sdk/pull/53127", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7080cc0" + }, + { + "id": "sdk@9946ecd", + "repo": "sdk", + "title": "Fix stdout suppression in dotnet watch with --no-hot-reload", + "url": "https://github.com/dotnet/sdk/pull/52836", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9946ecd" + }, + { + "id": "sdk@e0cdbcb", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53310", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e0cdbcb" + }, + { + "id": "sdk@780271d", + "repo": "sdk", + "title": "[release/10.0.3xx] Fix dotnet test hang when the test app process exits but a child process of it remains alive", + "url": "https://github.com/dotnet/sdk/pull/53321", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@780271d" + }, + { + "id": "sdk@6b60ba3", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53316", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6b60ba3" + }, + { + "id": "sdk@3518f9c", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53317", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3518f9c" + }, + { + "id": "sdk@7af211a", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53320", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7af211a" + }, + { + "id": "sdk@b29023f", + "repo": "sdk", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 140: Build ID 2921244", + "url": "https://github.com/dotnet/sdk/pull/53323", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b29023f" + }, + { + "id": "sdk@86c075f", + "repo": "sdk", + "title": "[main] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53315", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@86c075f", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@de18352", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/sdk/pull/53288", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@de18352" + }, + { + "id": "sdk@986441e", + "repo": "sdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53250", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@986441e", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@d71a4a1", + "repo": "sdk", + "title": "Automatically generate embedded file contents for optimized run-file path", + "url": "https://github.com/dotnet/sdk/pull/53086", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d71a4a1", + "labels": [ + "Area-run-file" + ] + }, + { + "id": "sdk@b6ddae7", + "repo": "sdk", + "title": "[Static Web Assets] Add Framework SourceType for static web assets", + "url": "https://github.com/dotnet/sdk/pull/53135", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b6ddae7", + "labels": [ + "Area-AspNetCore" + ] + }, + { + "id": "sdk@f536e4b", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53312", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f536e4b" + }, + { + "id": "sdk@3420fd3", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53327", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3420fd3" + }, + { + "id": "sdk@f455dfc", + "repo": "sdk", + "title": "Fix static lock in TestApplicationActionQueue", + "url": "https://github.com/dotnet/sdk/pull/53304", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f455dfc" + }, + { + "id": "sdk@e3a5ef5", + "repo": "sdk", + "title": "Fix MTP message handling bugs in TestApplicationHandler", + "url": "https://github.com/dotnet/sdk/pull/53303", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e3a5ef5" + }, + { + "id": "sdk@159d81a", + "repo": "sdk", + "title": "Revert \u0022Disable macOS AMD64 TemplateEngine test leg\u0022", + "url": "https://github.com/dotnet/sdk/pull/53286", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@159d81a", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "sdk@8b2e64c", + "repo": "sdk", + "title": "Backport changes from main", + "url": "https://github.com/dotnet/sdk/pull/53293", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8b2e64c" + }, + { + "id": "sdk@81cc643", + "repo": "sdk", + "title": "Implement auto-relaunch on process crash", + "url": "https://github.com/dotnet/sdk/pull/53314", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@81cc643" + }, + { + "id": "sdk@1ebefc1", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53339", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1ebefc1" + }, + { + "id": "sdk@508508e", + "repo": "sdk", + "title": "[main] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53347", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@508508e", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@8fd528b", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53349", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8fd528b" + }, + { + "id": "sdk@c98d45a", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53348", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c98d45a" + }, + { + "id": "sdk@27e0106", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53351", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@27e0106" + }, + { + "id": "sdk@c40f47f", + "repo": "sdk", + "title": "Ensure csc.rsp is always written to disk with dotnet run and dotnet build", + "url": "https://github.com/dotnet/sdk/pull/53235", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c40f47f", + "labels": [ + "Area-run-file" + ] + }, + { + "id": "sdk@2a02bdf", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53352", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2a02bdf" + }, + { + "id": "sdk@027e1c8", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53346", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@027e1c8" + }, + { + "id": "sdk@9223f30", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53338", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9223f30" + }, + { + "id": "sdk@5dd4512", + "repo": "sdk", + "title": "Merging internal commits for release/9.0.3xx", + "url": "https://github.com/dotnet/sdk/pull/53363", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5dd4512" + }, + { + "id": "sdk@c182a90", + "repo": "sdk", + "title": "[main] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53373", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c182a90", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@07a6324", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53376", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@07a6324" + }, + { + "id": "sdk@f7585ed", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53372", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f7585ed" + }, + { + "id": "sdk@a616955", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53375", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a616955" + }, + { + "id": "sdk@e05d09b", + "repo": "sdk", + "title": "Add \u0060--artifacts-path\u0060 support to \u0060dotnet test\u0060 in MTP mode", + "url": "https://github.com/dotnet/sdk/pull/53353", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e05d09b" + }, + { + "id": "sdk@f593c0b", + "repo": "sdk", + "title": "Merging internal commits for release/9.0.1xx", + "url": "https://github.com/dotnet/sdk/pull/53362", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f593c0b" + }, + { + "id": "sdk@7f7422e", + "repo": "sdk", + "title": "Fix crash in VSTestForwardingApp when trace is enabled with empty args", + "url": "https://github.com/dotnet/sdk/pull/53307", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7f7422e" + }, + { + "id": "sdk@72febf2", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.3xx\u0027 =\u003E \u0027release/10.0.1xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53367", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@72febf2" + }, + { + "id": "sdk@5c9ff29", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53364", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5c9ff29" + }, + { + "id": "sdk@adccf6a", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53379", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@adccf6a" + }, + { + "id": "sdk@c08610f", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.1xx\u0027 =\u003E \u0027release/9.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53390", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c08610f" + }, + { + "id": "sdk@372de0d", + "repo": "sdk", + "title": "Support UTF-16 BOM in global.json", + "url": "https://github.com/dotnet/sdk/pull/53141", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@372de0d", + "labels": [ + "Area-Workloads" + ] + }, + { + "id": "sdk@f3f14ed", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/sdk/pull/53332", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f3f14ed" + }, + { + "id": "sdk@d9a3df1", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53381", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d9a3df1" + }, + { + "id": "sdk@7d19864", + "repo": "sdk", + "title": "Convert from NewtonSoft.Json to System.Text.Json", + "url": "https://github.com/dotnet/sdk/pull/53345", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7d19864", + "labels": [ + "Area-AspNetCore" + ] + }, + { + "id": "sdk@2ae259a", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53404", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2ae259a" + }, + { + "id": "sdk@2205c5b", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53403", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2205c5b" + }, + { + "id": "sdk@521bd74", + "repo": "sdk", + "title": "[main] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53402", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@521bd74", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@b98e0dd", + "repo": "sdk", + "title": "Fix dotnet remove package project argument not recognized", + "url": "https://github.com/dotnet/sdk/pull/53401", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b98e0dd", + "labels": [ + "Area-CLI" + ] + }, + { + "id": "sdk@d7500f5", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53394", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d7500f5" + }, + { + "id": "sdk@6ac4115", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53398", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6ac4115" + }, + { + "id": "sdk@b4670c6", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/9.0.3xx\u0027 =\u003E \u0027release/10.0.1xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53397", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b4670c6" + }, + { + "id": "sdk@0a4649b", + "repo": "sdk", + "title": "Adds backport label to backport workflow PRs", + "url": "https://github.com/dotnet/sdk/pull/53340", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0a4649b" + }, + { + "id": "sdk@fa5d8d2", + "repo": "sdk", + "title": "Use new .NET", + "url": "https://github.com/dotnet/sdk/pull/45637", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@fa5d8d2", + "labels": [ + "Area-Infrastructure", + "untriaged" + ] + }, + { + "id": "sdk@0a3db7f", + "repo": "sdk", + "title": "Update LLM telemetry to include a newer copilot env and an additional LLM", + "url": "https://github.com/dotnet/sdk/pull/53334", + "commit": "dotnet@bce25ed", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0a3db7f", + "labels": [ + "Area-Telemetry" + ] + }, + { + "id": "sdk@c61f174", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53432", + "commit": "dotnet@bce25ed", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c61f174" + }, + { + "id": "sdk@fd07f07", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53430", + "commit": "dotnet@bce25ed", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@fd07f07" + }, + { + "id": "sdk@85a42bd", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53433", + "commit": "dotnet@bce25ed", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@85a42bd" + }, + { + "id": "sdk@c37c9c7", + "repo": "sdk", + "title": "[main] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53431", + "commit": "dotnet@bce25ed", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c37c9c7", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@e4f6e1e", + "repo": "sdk", + "title": "Keep \u0060.cs\u0060 in file-based app virtual \u0060.csproj\u0060 file name", + "url": "https://github.com/dotnet/sdk/pull/53182", + "commit": "dotnet@bce25ed", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e4f6e1e", + "labels": [ + "Area-run-file" + ] + }, + { + "id": "sdk@7f56893", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53420", + "commit": "dotnet@bce25ed", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7f56893" + }, + { + "id": "sdk@e2c08c6", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53421", + "commit": "dotnet@bce25ed", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e2c08c6" + }, + { + "id": "sdk@57a4a8a", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/sdk/pull/53417", + "commit": "dotnet@bce25ed", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@57a4a8a" + }, + { + "id": "sdk@1179c9b", + "repo": "sdk", + "title": "Fix \u0060dotnet tool exec\u0060 / \u0060dnx\u0060 failing when tool exists in \u0060dotnet-tools.json\u0060 but not yet restored", + "url": "https://github.com/dotnet/sdk/pull/53361", + "commit": "dotnet@30bf7b3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1179c9b" + }, + { + "id": "sdk@33f0825", + "repo": "sdk", + "title": "[release/10.0.3xx] Fix dotnet remove package project argument", + "url": "https://github.com/dotnet/sdk/pull/53419", + "commit": "dotnet@30bf7b3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@33f0825" + }, + { + "id": "sdk@6caee54", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53435", + "commit": "dotnet@30bf7b3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6caee54" + }, + { + "id": "sdk@9cd9ee7", + "repo": "sdk", + "title": "Delete unused LibraryImport call", + "url": "https://github.com/dotnet/sdk/pull/53428", + "commit": "dotnet@30bf7b3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9cd9ee7" + }, + { + "id": "sdk@98200d0", + "repo": "sdk", + "title": "Strip fingerprint tokens from path in MaterializeFrameworkAsset", + "url": "https://github.com/dotnet/sdk/pull/53465", + "commit": "dotnet@8301b7f", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@98200d0", + "labels": [ + "StaticWebAssets", + "Area: StaticWebAssets" + ] + }, + { + "id": "sdk@4e14aaa", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53458", + "commit": "dotnet@56dbb5a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4e14aaa" + }, + { + "id": "sdk@9cc0024", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53462", + "commit": "dotnet@56dbb5a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9cc0024" + }, + { + "id": "sdk@5589967", + "repo": "sdk", + "title": "[main] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53456", + "commit": "dotnet@56dbb5a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5589967", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@4a08e99", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53457", + "commit": "dotnet@56dbb5a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4a08e99" + }, + { + "id": "sdk@a3fd4e6", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53477", + "commit": "dotnet@56dbb5a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a3fd4e6" + }, + { + "id": "sdk@a6af779", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/sdk/pull/53451", + "commit": "dotnet@56dbb5a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a6af779" + }, + { + "id": "sdk@e77dc28", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53445", + "commit": "dotnet@56dbb5a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e77dc28" + }, + { + "id": "sdk@554315e", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53459", + "commit": "dotnet@56dbb5a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@554315e" + }, + { + "id": "sdk@b50856e", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53284", + "commit": "dotnet@56dbb5a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b50856e" + }, + { + "id": "sdk@9ea900a", + "repo": "sdk", + "title": "Implements target framework selection for multi-targeted projects", + "url": "https://github.com/dotnet/sdk/pull/53466", + "commit": "dotnet@56dbb5a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9ea900a" + }, + { + "id": "sdk@31f158e", + "repo": "sdk", + "title": "Assert trusted roots relative path with respect to NuGet.Packaging", + "url": "https://github.com/dotnet/sdk/pull/53449", + "commit": "dotnet@56dbb5a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@31f158e", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "sdk@073bd0d", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53484", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@073bd0d" + }, + { + "id": "sdk@e0a6b80", + "repo": "sdk", + "title": "Improve shutdown sequence of Aspire service and fix race condition", + "url": "https://github.com/dotnet/sdk/pull/53271", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e0a6b80" + }, + { + "id": "sdk@245f8fa", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/sdk/pull/53482", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@245f8fa" + }, + { + "id": "sdk@e236a02", + "repo": "sdk", + "title": "Use new API for parsing binary logger parameter", + "url": "https://github.com/dotnet/sdk/pull/53492", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e236a02" + }, + { + "id": "sdk@cc1b30e", + "repo": "sdk", + "title": "Update VersionFeature80 and VersionFeature90 values for March releases", + "url": "https://github.com/dotnet/sdk/pull/53415", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@cc1b30e" + }, + { + "id": "sdk@d60ba8e", + "repo": "sdk", + "title": "Update version features for March releases", + "url": "https://github.com/dotnet/sdk/pull/53416", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d60ba8e", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@3f09f97", + "repo": "sdk", + "title": "Avoid crossgening dotnet-watch startup hooks", + "url": "https://github.com/dotnet/sdk/pull/53501", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3f09f97" + }, + { + "id": "sdk@93b4dfc", + "repo": "sdk", + "title": "Include localPath in deps.json for runtime assets", + "url": "https://github.com/dotnet/sdk/pull/50120", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@93b4dfc" + }, + { + "id": "sdk@53c99bb", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53483", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@53c99bb" + }, + { + "id": "sdk@40d4c60", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53493", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@40d4c60" + }, + { + "id": "sdk@9dfedf8", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53502", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9dfedf8" + }, + { + "id": "sdk@4adf9e6", + "repo": "sdk", + "title": "Fix output validation in LaunchesBrowserOnStart test", + "url": "https://github.com/dotnet/sdk/pull/53498", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4adf9e6" + }, + { + "id": "sdk@f062f1b", + "repo": "sdk", + "title": "Cleanup style: unused usings and file-scoped namespaces", + "url": "https://github.com/dotnet/sdk/pull/53491", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f062f1b" + }, + { + "id": "sdk@0f014ce", + "repo": "sdk", + "title": "Fix CA1825 false positive on collection expressions", + "url": "https://github.com/dotnet/sdk/pull/53521", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0f014ce", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "sdk@aa0ce65", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53506", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@aa0ce65" + }, + { + "id": "sdk@ba5bec9", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53507", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ba5bec9" + }, + { + "id": "sdk@330bcff", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/sdk/pull/53527", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@330bcff" + }, + { + "id": "sdk@1a55591", + "repo": "sdk", + "title": "Refactor MTP command", + "url": "https://github.com/dotnet/sdk/pull/53504", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1a55591" + }, + { + "id": "sdk@24d6259", + "repo": "sdk", + "title": "[Static Web Assets] Add SWA agent and skills for Static Web Assets development", + "url": "https://github.com/dotnet/sdk/pull/53496", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@24d6259", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "sdk@0e67373", + "repo": "sdk", + "title": "Do not include forwarded --target option in build arguments", + "url": "https://github.com/dotnet/sdk/pull/53503", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0e67373" + }, + { + "id": "sdk@edd676d", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/sdk/pull/53499", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@edd676d" + }, + { + "id": "sdk@6e321aa", + "repo": "sdk", + "title": "[dotnet run] Fix \u0060NETSDK1005\u0060 when project refs different TFMs", + "url": "https://github.com/dotnet/sdk/pull/53523", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6e321aa" + }, + { + "id": "sdk@b500038", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/sdk/pull/53541", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b500038" + }, + { + "id": "sdk@2122e7d", + "repo": "sdk", + "title": "Move SDK task unit test projects from src/ to test/ and rename to *.Tests", + "url": "https://github.com/dotnet/sdk/pull/53544", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2122e7d" + }, + { + "id": "sdk@756927a", + "repo": "sdk", + "title": "Avoid redirecting process output", + "url": "https://github.com/dotnet/sdk/pull/53539", + "commit": "dotnet@86f9e88", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@756927a" + }, + { + "id": "sdk@734412e", + "repo": "sdk", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/sdk/pull/53552", + "commit": "dotnet@86f9e88", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@734412e" + }, + { + "id": "sdk@f25f310", + "repo": "sdk", + "title": "Add --strip-inlining-info and --strip-debug-info crossgen2 args for Apple mobile RIDs", + "url": "https://github.com/dotnet/sdk/pull/53514", + "commit": "dotnet@86f9e88", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f25f310", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "sdk@1c98288", + "repo": "sdk", + "title": "[release/11.0.1xx-preview3] Copy HotReload dll to intermediate to avoid duplicate identity in multi-client WASM", + "url": "https://github.com/dotnet/sdk/pull/53664", + "commit": "dotnet@d38a3d8", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1c98288", + "labels": [ + "Servicing-approved", + "backport" + ] + }, + { + "id": "source-build-reference-packages@f9f00a7", + "repo": "source-build-reference-packages", + "title": "Remove non-standard clean.sh script", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1575", + "commit": "dotnet@4230e45", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@f9f00a7" + }, + { + "id": "source-build-reference-packages@d492faa", + "repo": "source-build-reference-packages", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1572", + "commit": "dotnet@4230e45", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@d492faa" + }, + { + "id": "source-build-reference-packages@79173d7", + "repo": "source-build-reference-packages", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1576", + "commit": "dotnet@e95736f", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@79173d7" + }, + { + "id": "source-build-reference-packages@53df2d8", + "repo": "source-build-reference-packages", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1578", + "commit": "dotnet@e95736f", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@53df2d8" + }, + { + "id": "source-build-reference-packages@fada075", + "repo": "source-build-reference-packages", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1580", + "commit": "dotnet@0b1d6b6", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@fada075" + }, + { + "id": "source-build-reference-packages@867c96d", + "repo": "source-build-reference-packages", + "title": "Update dependencies from build 304069", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1586", + "commit": "dotnet@4170dc2", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@867c96d" + }, + { + "id": "source-build-reference-packages@31d66da", + "repo": "source-build-reference-packages", + "title": "Update dependencies from build 304338", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1588", + "commit": "dotnet@4170dc2", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@31d66da" + }, + { + "id": "source-build-reference-packages@c2b75e4", + "repo": "source-build-reference-packages", + "title": "Update dependencies from build 304425", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1590", + "commit": "dotnet@4170dc2", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@c2b75e4" + }, + { + "id": "source-build-reference-packages@126ae71", + "repo": "source-build-reference-packages", + "title": "Add external antlr4 project", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1585", + "commit": "dotnet@4170dc2", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@126ae71" + }, + { + "id": "source-build-reference-packages@b83413a", + "repo": "source-build-reference-packages", + "title": "Build antlr4 nupkg", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1594", + "commit": "dotnet@be4d18a", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@b83413a" + }, + { + "id": "source-build-reference-packages@4b65ca1", + "repo": "source-build-reference-packages", + "title": "Update dependencies from build 304998", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1593", + "commit": "dotnet@5aace91", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@4b65ca1" + }, + { + "id": "source-build-reference-packages@5204ad3", + "repo": "source-build-reference-packages", + "title": "Update dependencies from build 305296", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1595", + "commit": "dotnet@5aace91", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@5204ad3" + }, + { + "id": "source-build-reference-packages@36e942f", + "repo": "source-build-reference-packages", + "title": "Set SourceRevisionId for external packages to match original repo commit", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1597", + "commit": "dotnet@5aace91", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@36e942f" + }, + { + "id": "source-build-reference-packages@88e2559", + "repo": "source-build-reference-packages", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1598", + "commit": "dotnet@5aace91", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@88e2559" + }, + { + "id": "source-build-reference-packages@ccbef8c", + "repo": "source-build-reference-packages", + "title": "Update dependencies from build 305927", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1600", + "commit": "dotnet@a650f55", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@ccbef8c" + }, + { + "id": "source-build-reference-packages@2b29460", + "repo": "source-build-reference-packages", + "title": "Use azurelinux 3 build image on Linux", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1603", + "commit": "dotnet@a650f55", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@2b29460" + }, + { + "id": "source-build-reference-packages@5711e1f", + "repo": "source-build-reference-packages", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1604", + "commit": "dotnet@747a8af", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@5711e1f" + }, + { + "id": "source-build-reference-packages@314d773", + "repo": "source-build-reference-packages", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1606", + "commit": "dotnet@747a8af", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@314d773" + }, + { + "id": "source-build-reference-packages@5037ba0", + "repo": "source-build-reference-packages", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1607", + "commit": "dotnet@81bdad2", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@5037ba0" + }, + { + "id": "source-build-reference-packages@d90fb2a", + "repo": "source-build-reference-packages", + "title": "Update dependencies from build 307311", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1608", + "commit": "dotnet@81bdad2", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@d90fb2a" + }, + { + "id": "source-build-reference-packages@31ef23e", + "repo": "source-build-reference-packages", + "title": "Set deterministic FileVersion for IdentityModel to match MSFT-shipped packages", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1610", + "commit": "dotnet@81bdad2", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@31ef23e" + }, + { + "id": "source-build-reference-packages@66ddf29", + "repo": "source-build-reference-packages", + "title": "Prevent VMR commit hash from being appended to Microsoft.Css.Parser InformationalVersion", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1612", + "commit": "dotnet@81bdad2", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@66ddf29" + }, + { + "id": "sourcelink@aac1618", + "repo": "sourcelink", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sourcelink/pull/1548", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@aac1618" + }, + { + "id": "sourcelink@b25d37e", + "repo": "sourcelink", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sourcelink/pull/1549", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@b25d37e" + }, + { + "id": "sourcelink@30a383d", + "repo": "sourcelink", + "title": "Update dependencies from https://github.com/dotnet/dotnet build 293404", + "url": "https://github.com/dotnet/sourcelink/pull/1555", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@30a383d" + }, + { + "id": "sourcelink@2061478", + "repo": "sourcelink", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sourcelink/pull/1557", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@2061478" + }, + { + "id": "sourcelink@8a4c758", + "repo": "sourcelink", + "title": "Update dependencies from https://github.com/dotnet/dotnet build 294071", + "url": "https://github.com/dotnet/sourcelink/pull/1561", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@8a4c758" + }, + { + "id": "sourcelink@2668313", + "repo": "sourcelink", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sourcelink/pull/1563", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@2668313" + }, + { + "id": "sourcelink@a7a2ddc", + "repo": "sourcelink", + "title": "Mark dotnet-sourcelink as non-shipping", + "url": "https://github.com/dotnet/sourcelink/pull/1568", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@a7a2ddc" + }, + { + "id": "sourcelink@494565b", + "repo": "sourcelink", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/sourcelink/pull/1562", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@494565b" + }, + { + "id": "sourcelink@98ac233", + "repo": "sourcelink", + "title": "Update dependencies", + "url": "https://github.com/dotnet/sourcelink/pull/1573", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@98ac233" + }, + { + "id": "sourcelink@dca38b9", + "repo": "sourcelink", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sourcelink/pull/1572", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@dca38b9" + }, + { + "id": "sourcelink@251760a", + "repo": "sourcelink", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sourcelink/pull/1575", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@251760a" + }, + { + "id": "sourcelink@7c50134", + "repo": "sourcelink", + "title": "Update dependencies", + "url": "https://github.com/dotnet/sourcelink/pull/1582", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@7c50134" + }, + { + "id": "sourcelink@c23996c", + "repo": "sourcelink", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/sourcelink/pull/1578", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@c23996c" + }, + { + "id": "sourcelink@6ae65fc", + "repo": "sourcelink", + "title": "Update dependencies from build 301941", + "url": "https://github.com/dotnet/sourcelink/pull/1592", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@6ae65fc" + }, + { + "id": "sourcelink@6ea6adb", + "repo": "sourcelink", + "title": "Remove ViktorHofer from CODEOWNERS", + "url": "https://github.com/dotnet/sourcelink/pull/1584", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@6ea6adb" + }, + { + "id": "symreader@01c0841", + "repo": "symreader", + "title": "Update dependencies from build 301941", + "url": "https://github.com/dotnet/symreader/pull/387", + "commit": "dotnet@7d1bae2", + "is_security": false, + "local_repo_commit": "symreader@01c0841" + }, + { + "id": "symreader@e5e9322", + "repo": "symreader", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/symreader/pull/390", + "commit": "dotnet@7d1bae2", + "is_security": false, + "local_repo_commit": "symreader@e5e9322" + }, + { + "id": "symreader@f106e2a", + "repo": "symreader", + "title": "Update dependencies from build 303883", + "url": "https://github.com/dotnet/symreader/pull/392", + "commit": "dotnet@7d1bae2", + "is_security": false, + "local_repo_commit": "symreader@f106e2a" + }, + { + "id": "symreader@029a1d1", + "repo": "symreader", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/symreader/pull/395", + "commit": "dotnet@7d1bae2", + "is_security": false, + "local_repo_commit": "symreader@029a1d1" + }, + { + "id": "symreader@e87544a", + "repo": "symreader", + "title": "Enable AOT and platform compatibility analyzers.", + "url": "https://github.com/dotnet/symreader/pull/340", + "commit": "dotnet@7d1bae2", + "is_security": false, + "local_repo_commit": "symreader@e87544a" + }, + { + "id": "templating@4f4c901", + "repo": "templating", + "title": "Update branding to 8.0.419", + "url": "https://github.com/dotnet/templating/pull/9791", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@4f4c901" + }, + { + "id": "templating@b7755a9", + "repo": "templating", + "title": "Update branding to 9.0.312", + "url": "https://github.com/dotnet/templating/pull/9793", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b7755a9" + }, + { + "id": "templating@7369111", + "repo": "templating", + "title": "Update branding to 9.0.115", + "url": "https://github.com/dotnet/templating/pull/9792", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7369111" + }, + { + "id": "templating@cdbf978", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/8.0.4xx\u0027 =\u003E \u0027release/9.0.1xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9794", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@cdbf978" + }, + { + "id": "templating@9212512", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9799", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@9212512" + }, + { + "id": "templating@7271f43", + "repo": "templating", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/templating/pull/9744", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7271f43" + }, + { + "id": "templating@e99d728", + "repo": "templating", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/templating/pull/9746", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e99d728" + }, + { + "id": "templating@5c37c89", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/9.0.1xx\u0027 =\u003E \u0027release/9.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9796", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@5c37c89" + }, + { + "id": "templating@fee905d", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/9.0.3xx\u0027 =\u003E \u0027release/10.0.1xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9795", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@fee905d" + }, + { + "id": "templating@4762e57", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9800", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@4762e57" + }, + { + "id": "templating@8f46f06", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9803", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@8f46f06" + }, + { + "id": "templating@3372f62", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9805", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@3372f62" + }, + { + "id": "templating@ae11760", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9806", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@ae11760" + }, + { + "id": "templating@e3b199e", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/9807", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e3b199e" + }, + { + "id": "templating@36694ea", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9809", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@36694ea" + }, + { + "id": "templating@b7a4f37", + "repo": "templating", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/templating/pull/9808", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b7a4f37" + }, + { + "id": "templating@0d134f4", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9810", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@0d134f4" + }, + { + "id": "templating@2e70b8b", + "repo": "templating", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/templating/pull/9811", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@2e70b8b" + }, + { + "id": "templating@121dd33", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/9.0.1xx\u0027 =\u003E \u0027release/9.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9815", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@121dd33" + }, + { + "id": "templating@bde0eb9", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9813", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@bde0eb9" + }, + { + "id": "templating@5f81707", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/9816", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@5f81707" + }, + { + "id": "templating@95ff3b7", + "repo": "templating", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/templating/pull/9820", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@95ff3b7" + }, + { + "id": "templating@20e5f50", + "repo": "templating", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/templating/pull/9821", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@20e5f50" + }, + { + "id": "templating@3048685", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9819", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@3048685" + }, + { + "id": "templating@7fb54f4", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9822", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7fb54f4" + }, + { + "id": "templating@74626d2", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/9.0.1xx\u0027 =\u003E \u0027release/9.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9823", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@74626d2" + }, + { + "id": "templating@a199b5a", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9824", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@a199b5a" + }, + { + "id": "templating@f598b06", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/9825", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f598b06" + }, + { + "id": "templating@f566be2", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9826", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f566be2" + }, + { + "id": "templating@e6f952e", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9827", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e6f952e" + }, + { + "id": "templating@321f539", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9828", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@321f539" + }, + { + "id": "templating@5e050ff", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/9829", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@5e050ff" + }, + { + "id": "templating@40d1aae", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9812", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@40d1aae" + }, + { + "id": "templating@a23d69a", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/9.0.3xx\u0027 =\u003E \u0027release/10.0.1xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9814", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@a23d69a" + }, + { + "id": "templating@7c5e34e", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9830", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7c5e34e" + }, + { + "id": "templating@7ff5d84", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9831", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7ff5d84" + }, + { + "id": "templating@0a9fd5d", + "repo": "templating", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/templating/pull/9833", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@0a9fd5d" + }, + { + "id": "templating@d138822", + "repo": "templating", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/templating/pull/9834", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@d138822" + }, + { + "id": "templating@7efe8ee", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9832", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7efe8ee" + }, + { + "id": "templating@50e77da", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9835", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@50e77da" + }, + { + "id": "templating@c9e4dfd", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/9.0.1xx\u0027 =\u003E \u0027release/9.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9838", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@c9e4dfd" + }, + { + "id": "templating@b342718", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/9.0.3xx\u0027 =\u003E \u0027release/10.0.1xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9837", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b342718" + }, + { + "id": "templating@1089dc7", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9839", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@1089dc7" + }, + { + "id": "templating@54fc969", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9836", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@54fc969" + }, + { + "id": "templating@6a3a5bd", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/9840", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@6a3a5bd" + }, + { + "id": "templating@c87e7bb", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9818", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@c87e7bb" + }, + { + "id": "templating@f651898", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9841", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f651898" + }, + { + "id": "templating@9076da7", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9842", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@9076da7" + }, + { + "id": "templating@7c6a967", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9843", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7c6a967" + }, + { + "id": "templating@d5cf2d1", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9844", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@d5cf2d1" + }, + { + "id": "templating@a29321b", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9845", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@a29321b" + }, + { + "id": "templating@8e0e26d", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9847", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@8e0e26d" + }, + { + "id": "templating@0ca09cb", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9846", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@0ca09cb" + }, + { + "id": "templating@b71253f", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9848", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b71253f" + }, + { + "id": "templating@9ad9b32", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/9849", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@9ad9b32" + }, + { + "id": "templating@c4d87f4", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9850", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@c4d87f4" + }, + { + "id": "templating@8213c24", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9851", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@8213c24" + }, + { + "id": "templating@2c875d3", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9852", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@2c875d3" + }, + { + "id": "templating@1d35c94", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9853", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@1d35c94" + }, + { + "id": "templating@6e31c69", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9856", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@6e31c69" + }, + { + "id": "templating@8eecb41", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9855", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@8eecb41" + }, + { + "id": "templating@5c04422", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/9854", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@5c04422" + }, + { + "id": "templating@d7ef40f", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9857", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@d7ef40f" + }, + { + "id": "templating@41eda11", + "repo": "templating", + "title": "[release/10.0.3xx] Backflow VMR 302154", + "url": "https://github.com/dotnet/templating/pull/9862", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@41eda11" + }, + { + "id": "templating@53fd3d4", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9858", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@53fd3d4", + "labels": [ + "area: template-content" + ] + }, + { + "id": "templating@2c0d3f8", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9865", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@2c0d3f8" + }, + { + "id": "templating@f69d4eb", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9866", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f69d4eb" + }, + { + "id": "templating@da99ace", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9871", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@da99ace" + }, + { + "id": "templating@7f918c8", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9870", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7f918c8" + }, + { + "id": "templating@b8604f8", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9872", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b8604f8" + }, + { + "id": "templating@47f3950", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9867", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@47f3950" + }, + { + "id": "templating@23f88df", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9868", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@23f88df" + }, + { + "id": "templating@2c0a5c7", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/9863", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@2c0a5c7" + }, + { + "id": "templating@6e3afb3", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9879", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@6e3afb3" + }, + { + "id": "templating@ea80dd1", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9880", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@ea80dd1" + }, + { + "id": "templating@7be4df5", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9881", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7be4df5" + }, + { + "id": "templating@fe60e19", + "repo": "templating", + "title": "Add xUnit V3 project variants for shared tests/tools other repos consume.", + "url": "https://github.com/dotnet/templating/pull/9876", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@fe60e19" + }, + { + "id": "templating@44ac461", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9882", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@44ac461" + }, + { + "id": "templating@ea66ab7", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9884", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@ea66ab7" + }, + { + "id": "templating@3d8a1e9", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/9883", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@3d8a1e9" + }, + { + "id": "templating@2bb4424", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9885", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@2bb4424" + }, + { + "id": "templating@e1f9198", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9886", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e1f9198" + }, + { + "id": "templating@2c1cef2", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9889", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@2c1cef2" + }, + { + "id": "templating@f6017ea", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9888", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f6017ea" + }, + { + "id": "templating@3e8acc7", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9890", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@3e8acc7" + }, + { + "id": "templating@af2466d", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/9887", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@af2466d" + }, + { + "id": "templating@1eee975", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9891", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@1eee975" + }, + { + "id": "templating@ffc0ac2", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9892", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@ffc0ac2" + }, + { + "id": "templating@30d3d38", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9893", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@30d3d38" + }, + { + "id": "templating@fa5b4ae", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9894", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@fa5b4ae" + }, + { + "id": "templating@ad0a7bf", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/9895", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@ad0a7bf" + }, + { + "id": "templating@998864e", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9896", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@998864e" + }, + { + "id": "templating@f0e416d", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9900", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f0e416d" + }, + { + "id": "templating@5ef30ec", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9901", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@5ef30ec" + }, + { + "id": "templating@839db8e", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9902", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@839db8e" + }, + { + "id": "templating@eb2e6db", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9904", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@eb2e6db" + }, + { + "id": "templating@b870186", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9903", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b870186" + }, + { + "id": "templating@87b3671", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/9898", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@87b3671" + }, + { + "id": "templating@705477b", + "repo": "templating", + "title": "[release/9.0.3xx] Update branding to 9.0.313", + "url": "https://github.com/dotnet/templating/pull/9905", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@705477b" + }, + { + "id": "templating@bd1b258", + "repo": "templating", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/templating/pull/9877", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@bd1b258" + }, + { + "id": "templating@fb9757b", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9915", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@fb9757b" + }, + { + "id": "templating@7ddf30b", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9914", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7ddf30b" + }, + { + "id": "templating@b3eb6ce", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9913", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b3eb6ce" + }, + { + "id": "templating@e19ccbd", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/9.0.3xx\u0027 =\u003E \u0027release/10.0.1xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9909", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e19ccbd" + }, + { + "id": "templating@d04e5bb", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9916", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@d04e5bb" + }, + { + "id": "templating@670bbf0", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9920", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@670bbf0" + }, + { + "id": "templating@4014047", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9919", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@4014047" + }, + { + "id": "templating@fac7fc4", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9923", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@fac7fc4" + }, + { + "id": "templating@602fee8", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9922", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@602fee8" + }, + { + "id": "templating@3be9060", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9924", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@3be9060" + }, + { + "id": "templating@31d5e94", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9926", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@31d5e94" + }, + { + "id": "templating@8f3233f", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9925", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@8f3233f" + }, + { + "id": "templating@09cce1b", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/9918", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@09cce1b" + }, + { + "id": "templating@ba9beb1", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9929", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@ba9beb1" + }, + { + "id": "templating@036e553", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9930", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@036e553" + }, + { + "id": "templating@7a5d7a5", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9931", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7a5d7a5" + }, + { + "id": "templating@ace6743", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9932", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@ace6743" + }, + { + "id": "templating@67a0a9c", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/9933", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@67a0a9c" + }, + { + "id": "templating@aa07580", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9935", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@aa07580" + }, + { + "id": "templating@db897f4", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9936", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@db897f4" + }, + { + "id": "templating@a10ed4b", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9937", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@a10ed4b" + }, + { + "id": "templating@cb565a7", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9941", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@cb565a7" + }, + { + "id": "templating@a223364", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9940", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@a223364" + }, + { + "id": "templating@84c018c", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9942", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@84c018c" + }, + { + "id": "templating@4822704", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9944", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@4822704" + }, + { + "id": "templating@8dd0c58", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/9945", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@8dd0c58" + }, + { + "id": "templating@79304c8", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9946", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@79304c8" + }, + { + "id": "templating@6550ecd", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9947", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@6550ecd" + }, + { + "id": "templating@b8d4b89", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9949", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b8d4b89" + }, + { + "id": "templating@8a73ffc", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9948", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@8a73ffc" + }, + { + "id": "templating@c166a63", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9953", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@c166a63" + }, + { + "id": "templating@98d6433", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9950", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@98d6433" + }, + { + "id": "templating@de6dbc7", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9955", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@de6dbc7" + }, + { + "id": "templating@39d232b", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9954", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@39d232b" + }, + { + "id": "templating@0d11bde", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/9951", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@0d11bde" + }, + { + "id": "templating@386e71a", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9961", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@386e71a" + }, + { + "id": "templating@e5bdff7", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9958", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e5bdff7" + }, + { + "id": "templating@c76b3f7", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9959", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@c76b3f7" + }, + { + "id": "templating@7fc381a", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9960", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7fc381a" + }, + { + "id": "templating@e667c11", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9962", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e667c11" + }, + { + "id": "templating@853b9b9", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9964", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@853b9b9" + }, + { + "id": "templating@8853660", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9965", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@8853660" + }, + { + "id": "templating@f37cdd6", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/9963", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f37cdd6" + }, + { + "id": "templating@e7aa5c8", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9966", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e7aa5c8" + }, + { + "id": "templating@e5bd434", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9971", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e5bd434" + }, + { + "id": "templating@dcd10ca", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9972", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@dcd10ca" + }, + { + "id": "templating@b34d25d", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9970", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b34d25d" + }, + { + "id": "templating@f1a9929", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9973", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f1a9929" + }, + { + "id": "templating@91a12be", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9974", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@91a12be" + }, + { + "id": "templating@b04e3aa", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/9968", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b04e3aa" + }, + { + "id": "templating@a91084c", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9975", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@a91084c" + }, + { + "id": "templating@f7733e1", + "repo": "templating", + "title": "Fix CI flakiness: async race conditions, disposal crash, and stdout truncation", + "url": "https://github.com/dotnet/templating/pull/9939", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f7733e1" + }, + { + "id": "templating@3942ccb", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9978", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@3942ccb" + }, + { + "id": "templating@000bfca", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9979", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@000bfca" + }, + { + "id": "templating@79351e9", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9980", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@79351e9" + }, + { + "id": "templating@e381e73", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9981", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e381e73" + }, + { + "id": "templating@c4af218", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9983", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@c4af218" + }, + { + "id": "templating@9b5ac70", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9982", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@9b5ac70" + }, + { + "id": "templating@f6ce6aa", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/9977", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f6ce6aa" + }, + { + "id": "templating@6a849d5", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9984", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@6a849d5" + }, + { + "id": "templating@d91bd6c", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9988", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@d91bd6c" + }, + { + "id": "templating@e1c12b5", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9989", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e1c12b5" + }, + { + "id": "templating@83a700d", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9990", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@83a700d" + }, + { + "id": "templating@62f5f31", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9993", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@62f5f31" + }, + { + "id": "templating@56695be", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9995", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@56695be" + }, + { + "id": "templating@987157f", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9994", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@987157f" + }, + { + "id": "templating@deb53e2", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9987", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@deb53e2" + }, + { + "id": "templating@c1a147c", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9992", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@c1a147c" + }, + { + "id": "templating@d196d3e", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/9991", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@d196d3e" + }, + { + "id": "templating@0756f96", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/9986", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@0756f96" + }, + { + "id": "templating@9419d16", + "repo": "templating", + "title": "Newtonsoft.Json \u2192 System.Text.Json Migration", + "url": "https://github.com/dotnet/templating/pull/9956", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@9419d16" + }, + { + "id": "templating@9a6a837", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9996", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@9a6a837" + }, + { + "id": "templating@122b363", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9999", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@122b363" + }, + { + "id": "templating@b7ec64f", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9998", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b7ec64f" + }, + { + "id": "templating@8b17d41", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10000", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@8b17d41" + }, + { + "id": "templating@6bf67e6", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10001", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@6bf67e6" + }, + { + "id": "templating@06f5915", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/10003", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@06f5915" + }, + { + "id": "templating@4811a95", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/10002", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@4811a95" + }, + { + "id": "templating@e34f843", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/9997", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e34f843" + }, + { + "id": "templating@af3486b", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10005", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@af3486b" + }, + { + "id": "templating@31d7490", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10008", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@31d7490" + }, + { + "id": "templating@f1dc072", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10009", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f1dc072" + }, + { + "id": "templating@0896113", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10010", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@0896113" + }, + { + "id": "templating@92877dd", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/10013", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@92877dd" + }, + { + "id": "templating@901881b", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10014", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@901881b" + }, + { + "id": "templating@258701a", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/10012", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@258701a" + }, + { + "id": "templating@7dce33e", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/10011", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7dce33e" + }, + { + "id": "templating@a861186", + "repo": "templating", + "title": "Fix search-cache-pipeline: use dotnet run and publish test results", + "url": "https://github.com/dotnet/templating/pull/10007", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@a861186" + }, + { + "id": "templating@7e39dc7", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10015", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7e39dc7" + }, + { + "id": "templating@a70b993", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10017", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@a70b993" + }, + { + "id": "templating@0c75dc9", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10021", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@0c75dc9" + }, + { + "id": "templating@2f661c8", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/10023", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@2f661c8" + }, + { + "id": "templating@34fffb5", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/10022", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@34fffb5" + }, + { + "id": "templating@b483bf5", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/10024", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b483bf5" + }, + { + "id": "templating@f957b13", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10026", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f957b13" + }, + { + "id": "templating@d913801", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10027", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@d913801" + }, + { + "id": "templating@a5cfe2f", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10029", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@a5cfe2f" + }, + { + "id": "templating@ba08e9c", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10028", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@ba08e9c" + }, + { + "id": "templating@853b858", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/10030", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@853b858" + }, + { + "id": "templating@4e8960a", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/10031", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@4e8960a" + }, + { + "id": "templating@953ad16", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/10032", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@953ad16" + }, + { + "id": "templating@97a3783", + "repo": "templating", + "title": "Make projects AOT compatible", + "url": "https://github.com/dotnet/templating/pull/10006", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@97a3783" + }, + { + "id": "templating@bcf27d1", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10034", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@bcf27d1" + }, + { + "id": "templating@1c7a76e", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10033", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@1c7a76e" + }, + { + "id": "templating@1309155", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10035", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@1309155" + }, + { + "id": "templating@4fd4718", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10038", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@4fd4718" + }, + { + "id": "templating@ab5efea", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.1xx\u0027 =\u003E \u0027release/10.0.2xx\u0027", + "url": "https://github.com/dotnet/templating/pull/10037", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@ab5efea" + }, + { + "id": "templating@5ed5ce8", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.2xx\u0027 =\u003E \u0027release/10.0.3xx\u0027", + "url": "https://github.com/dotnet/templating/pull/10039", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@5ed5ce8" + }, + { + "id": "templating@2995ec4", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/10036", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@2995ec4" + }, + { + "id": "templating@054e3da", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10040", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@054e3da" + }, + { + "id": "templating@1b8b725", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10041", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@1b8b725" + }, + { + "id": "templating@bbd8b09", + "repo": "templating", + "title": "[automated] Merge branch \u0027release/10.0.3xx\u0027 =\u003E \u0027main\u0027", + "url": "https://github.com/dotnet/templating/pull/10043", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@bbd8b09" + }, + { + "id": "templating@791a389", + "repo": "templating", + "title": "Fix duplicate key handling", + "url": "https://github.com/dotnet/templating/pull/10049", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@791a389" + }, + { + "id": "templating@80848b3", + "repo": "templating", + "title": "Fix Verify snapshot naming for xunit v3 compatibility", + "url": "https://github.com/dotnet/templating/pull/10052", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@80848b3" + }, + { + "id": "winforms@dc6c73b", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14294", + "commit": "dotnet@ebc8503", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@dc6c73b", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@e998107", + "repo": "winforms", + "title": "Updating build agent image to use VS2026", + "url": "https://github.com/dotnet/winforms/pull/14299", + "commit": "dotnet@ebc8503", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@e998107", + "labels": [ + "area-Infrastructure-CI" + ] + }, + { + "id": "winforms@fdb43c8", + "repo": "winforms", + "title": "Fix typo in codeql yml", + "url": "https://github.com/dotnet/winforms/pull/14300", + "commit": "dotnet@ebc8503", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@fdb43c8", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@d65e8b0", + "repo": "winforms", + "title": "Updating build agent image to VS 2026 Preview scout", + "url": "https://github.com/dotnet/winforms/pull/14321", + "commit": "dotnet@5902468", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@d65e8b0", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@7ea6398", + "repo": "winforms", + "title": "Move some usings to globals", + "url": "https://github.com/dotnet/winforms/pull/14331", + "commit": "dotnet@1967d7a", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@7ea6398", + "labels": [ + "area-Clipboard" + ] + }, + { + "id": "winforms@a4d6573", + "repo": "winforms", + "title": "Fix for OOM exception while running Analyzer tests on x86 platform", + "url": "https://github.com/dotnet/winforms/pull/14328", + "commit": "dotnet@1967d7a", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@a4d6573", + "labels": [ + "test-enhancement", + "area-Analyzers/CodeFixes" + ] + }, + { + "id": "winforms@2846f02", + "repo": "winforms", + "title": "Skipping Analyzer tests on x86 due to OOM exception.", + "url": "https://github.com/dotnet/winforms/pull/14348", + "commit": "dotnet@65db323", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@2846f02", + "labels": [ + "area-Analyzers/CodeFixes" + ] + }, + { + "id": "winforms@8e560d0", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14334", + "commit": "dotnet@65db323", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@8e560d0", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@6ff69e6", + "repo": "winforms", + "title": "Introduce Copilot Skills to the WinForms Runtime repo", + "url": "https://github.com/dotnet/winforms/pull/14353", + "commit": "dotnet@65db323", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@6ff69e6", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@9e5fbe8", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14355", + "commit": "dotnet@4a405d7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@9e5fbe8", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@d7b99bf", + "repo": "winforms", + "title": "Remove the central TargetFramework property", + "url": "https://github.com/dotnet/winforms/pull/14357", + "commit": "dotnet@4a405d7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@d7b99bf", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@290d8bb", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14361", + "commit": "dotnet@4a405d7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@290d8bb", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@82ed134", + "repo": "winforms", + "title": "Fix for intermittent test failure on x86 platform \u0027BindingContext_UpdateBinding_UpdateListBindingWithoutDataMember_Success\u0027", + "url": "https://github.com/dotnet/winforms/pull/14359", + "commit": "dotnet@4a405d7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@82ed134", + "labels": [ + "test-bug", + "area-Infrastructure" + ] + }, + { + "id": "winforms@c83a1bd", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14368", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@c83a1bd", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@e98325a", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14373", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@e98325a", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@1dfc02d", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14380", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@1dfc02d", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@f3422f9", + "repo": "winforms", + "title": "Add shared project for .NET Framework polyfills", + "url": "https://github.com/dotnet/winforms/pull/14371", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@f3422f9", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@94b12d1", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14387", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@94b12d1", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@7297dbc", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14391", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@7297dbc", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@88c709b", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14395", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@88c709b", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@4b63688", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14396", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@4b63688", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@065dd5f", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14399", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@065dd5f", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@f8ef19c", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14401", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@f8ef19c", + "labels": [ + "area-Infrastructure-CI" + ] + }, + { + "id": "winforms@86616a8", + "repo": "winforms", + "title": "Multi-target System.Private.Windows.Core", + "url": "https://github.com/dotnet/winforms/pull/14384", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@86616a8", + "labels": [ + "area-Clipboard" + ] + }, + { + "id": "winforms@6f9c433", + "repo": "winforms", + "title": "Fix issue 14071: ComboBox.ObjectCollection.CopyTo(Array destination, int index) copies Entry object, not inner item", + "url": "https://github.com/dotnet/winforms/pull/14075", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@6f9c433", + "labels": [ + "needs-area-label" + ] + }, + { + "id": "winforms@f75ac9a", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14405", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@f75ac9a", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@6735caf", + "repo": "winforms", + "title": "Fix InvalidCastException in Control.OnHandleDestroyed for non-ControlAccessibleObject", + "url": "https://github.com/dotnet/winforms/pull/14295", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@6735caf", + "labels": [ + "needs-area-label" + ] + }, + { + "id": "winforms@1082ecc", + "repo": "winforms", + "title": "[release/11.0-preview3] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14445", + "commit": "dotnet@5bcf877", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@1082ecc", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "wpf@cdd7f11", + "repo": "wpf", + "title": "Update dependencies", + "url": "https://github.com/dotnet/wpf/pull/11424", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@cdd7f11", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@d943aee", + "repo": "wpf", + "title": "Update dependencies", + "url": "https://github.com/dotnet/wpf/pull/11432", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@d943aee", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@f407361", + "repo": "wpf", + "title": "Update dependencies from build 300976", + "url": "https://github.com/dotnet/wpf/pull/11438", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@f407361", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@9e5051a", + "repo": "wpf", + "title": "Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int build 20260208.2", + "url": "https://github.com/dotnet/wpf/pull/11435", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@9e5051a", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@4fd3660", + "repo": "wpf", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/wpf/pull/11445", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@4fd3660", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@55362c4", + "repo": "wpf", + "title": "Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int build 20260209.2", + "url": "https://github.com/dotnet/wpf/pull/11439", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@55362c4", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@24e938e", + "repo": "wpf", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/wpf/pull/11450", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@24e938e", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@7b906fa", + "repo": "wpf", + "title": "Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int build 20260211.1", + "url": "https://github.com/dotnet/wpf/pull/11447", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@7b906fa", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@a9a1b14", + "repo": "wpf", + "title": "Update dependencies from build 302061", + "url": "https://github.com/dotnet/wpf/pull/11453", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@a9a1b14", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@3eeab6e", + "repo": "wpf", + "title": "Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int build 20260215.1", + "url": "https://github.com/dotnet/wpf/pull/11451", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@3eeab6e", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@6972bbc", + "repo": "wpf", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/wpf/pull/11459", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@6972bbc", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@8b3b0b3", + "repo": "wpf", + "title": "[main] Update dependencies from dnceng/internal/dotnet-wpf-int", + "url": "https://github.com/dotnet/wpf/pull/11454", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@8b3b0b3", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@2e982f6", + "repo": "wpf", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/wpf/pull/11469", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@2e982f6", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@6e3b3d9", + "repo": "wpf", + "title": "Update dependencies from build 303072", + "url": "https://github.com/dotnet/wpf/pull/11479", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@6e3b3d9", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@a56320a", + "repo": "wpf", + "title": "[main] Update dependencies from dnceng/internal/dotnet-wpf-int", + "url": "https://github.com/dotnet/wpf/pull/11473", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@a56320a", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@9484c1c", + "repo": "wpf", + "title": "Removing extra space in Sdk.props to avoid MSB4281 issue when using new arcade package in wpf-int", + "url": "https://github.com/dotnet/wpf/pull/11470", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@9484c1c", + "labels": [ + "PR" + ] + } + ], + "commits": { + "arcade@7db333e": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "7db333e4a411694073963937fe192cac478b7847", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/7db333e4a411694073963937fe192cac478b7847.diff" + }, + "arcade@620febd": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "620febda818e050eb7ef8951e04347defa8a1a5e", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/620febda818e050eb7ef8951e04347defa8a1a5e.diff" + }, + "arcade@ae9439c": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "ae9439cb1eebbb1b400155be193f82fcfd07aa41", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/ae9439cb1eebbb1b400155be193f82fcfd07aa41.diff" + }, + "arcade@90215a0": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "90215a077f841615b6c6e6c7b2272aa0eef1492a", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/90215a077f841615b6c6e6c7b2272aa0eef1492a.diff" + }, + "arcade@973af93": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "973af93a9b8380170914c7b91e0d5143a20640ab", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/973af93a9b8380170914c7b91e0d5143a20640ab.diff" + }, + "arcade@da9054c": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "da9054cb63ed8ff9767986c7285d3268c0c80470", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/da9054cb63ed8ff9767986c7285d3268c0c80470.diff" + }, + "arcade@4055041": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "4055041d210cca368f2f59bff55ff8debb9eeac5", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/4055041d210cca368f2f59bff55ff8debb9eeac5.diff" + }, + "arcade@c5560fb": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "c5560fb4d30b184c1873563bd49bc606d682b460", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/c5560fb4d30b184c1873563bd49bc606d682b460.diff" + }, + "arcade@88c8808": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "88c88084abfa1e379f54933af89e43fa774e323c", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/88c88084abfa1e379f54933af89e43fa774e323c.diff" + }, + "arcade@55a078a": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "55a078a15ed32378341c7a1f1caf5fc063dd8d5d", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/55a078a15ed32378341c7a1f1caf5fc063dd8d5d.diff" + }, + "arcade@0831f9c": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "0831f9c135e88dd09993903ed5ac1a950285ac96", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/0831f9c135e88dd09993903ed5ac1a950285ac96.diff" + }, + "arcade@9ebf1ae": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "9ebf1ae63a9b6274ce0c1a5c340581b2e33471db", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/9ebf1ae63a9b6274ce0c1a5c340581b2e33471db.diff" + }, + "arcade@e95f9ba": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "e95f9ba53ea7de7f36fb651b633967ca54dbcacc", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/e95f9ba53ea7de7f36fb651b633967ca54dbcacc.diff" + }, + "arcade@4e3c44c": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "4e3c44cdc39c8d94b7cd3c25453ec1f996665a3a", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/4e3c44cdc39c8d94b7cd3c25453ec1f996665a3a.diff" + }, + "arcade@5ce557e": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "5ce557ec1023c17ff5c77ba08c74bfe174286dc7", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/5ce557ec1023c17ff5c77ba08c74bfe174286dc7.diff" + }, + "arcade@38eefc1": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "38eefc128dd14be8b34e4835bf624aeb832934c1", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/38eefc128dd14be8b34e4835bf624aeb832934c1.diff" + }, + "arcade@13e9f77": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "13e9f7793f0fda33cb5fbf07e4f7c50287c8e5dd", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/13e9f7793f0fda33cb5fbf07e4f7c50287c8e5dd.diff" + }, + "arcade@55c97a4": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "55c97a45af8fd75bc87e9e4b4f61aef3fead254d", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/55c97a45af8fd75bc87e9e4b4f61aef3fead254d.diff" + }, + "arcade@31161de": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "31161dea6f7289f8457ccb59e2970b109a55af37", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/31161dea6f7289f8457ccb59e2970b109a55af37.diff" + }, + "arcade@a27769f": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "a27769f306adb2efd8f3089377b384c54414a484", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/a27769f306adb2efd8f3089377b384c54414a484.diff" + }, + "arcade@0392c5d": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "0392c5d8cb77ff6ac2b2b24dab0cb81875a82e87", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/0392c5d8cb77ff6ac2b2b24dab0cb81875a82e87.diff" + }, + "arcade@d531dad": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "d531dadab520b06c318347fe40696d15dc070053", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/d531dadab520b06c318347fe40696d15dc070053.diff" + }, + "arcade@0560b9e": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "0560b9e86e559d592c2ba418983c6413dd8ee473", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/0560b9e86e559d592c2ba418983c6413dd8ee473.diff" + }, + "arcade@a2dd169": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "a2dd1695ed7cacdb1c3507540defda6deb64779d", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/a2dd1695ed7cacdb1c3507540defda6deb64779d.diff" + }, + "arcade@139fa4e": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "139fa4e6f6acb2c2714f01f948416429dbf05161", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/139fa4e6f6acb2c2714f01f948416429dbf05161.diff" + }, + "arcade@c62e947": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "c62e947751f24c34e078a7b0393c71e5ed55c6d7", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/c62e947751f24c34e078a7b0393c71e5ed55c6d7.diff" + }, + "arcade@c70a2fb": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "c70a2fbdb42d7332ea7e7d504cf8fac64356f255", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/c70a2fbdb42d7332ea7e7d504cf8fac64356f255.diff" + }, + "arcade@539e874": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "539e8742ff635bd8b0ae8a7b3a6a02aa60b72c8b", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/539e8742ff635bd8b0ae8a7b3a6a02aa60b72c8b.diff" + }, + "arcade@d6da516": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "d6da5160336775ff8c410a1b0d947291ba3e9028", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/d6da5160336775ff8c410a1b0d947291ba3e9028.diff" + }, + "arcade@e100c45": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "e100c45900aa1f8acf15f444d38c2740f4de3542", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/e100c45900aa1f8acf15f444d38c2740f4de3542.diff" + }, + "arcade@3a872e7": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "3a872e7f1dc8fcbf6b5b5110cb154bf558f668a3", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/3a872e7f1dc8fcbf6b5b5110cb154bf558f668a3.diff" + }, + "arcade@97f5d8a": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "97f5d8a035dff194dbff22a3d21b163e6b768fa9", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/97f5d8a035dff194dbff22a3d21b163e6b768fa9.diff" + }, + "arcade@2e8c949": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "2e8c949b4e75b05c3a33e848f36cf5b263707338", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/2e8c949b4e75b05c3a33e848f36cf5b263707338.diff" + }, + "arcade@763f00f": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "763f00f88ed4142b49c7ba46457597a69964707a", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/763f00f88ed4142b49c7ba46457597a69964707a.diff" + }, + "arcade@566903f": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "566903f851da66960e2f99c912ffdcc8845598d9", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/566903f851da66960e2f99c912ffdcc8845598d9.diff" + }, + "arcade@12f2683": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "12f2683a31816498f287092ecc99f43640cf8b8d", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/12f2683a31816498f287092ecc99f43640cf8b8d.diff" + }, + "arcade@9c14c8e": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "9c14c8e4b0d040769905f195146bdfbb8cfaf01d", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/9c14c8e4b0d040769905f195146bdfbb8cfaf01d.diff" + }, + "arcade@f7f177c": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "f7f177c538265a255c415b9ec75f2cf2471187d2", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/f7f177c538265a255c415b9ec75f2cf2471187d2.diff" + }, + "arcade@b536294": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "b536294e70dec68be8d0a000f5b04f497841618e", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/b536294e70dec68be8d0a000f5b04f497841618e.diff" + }, + "arcade@bcbb938": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "bcbb938d7e69bdc06ee2ebb9fd8b13725aa43a2d", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/bcbb938d7e69bdc06ee2ebb9fd8b13725aa43a2d.diff" + }, + "arcade@eab76e0": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "eab76e088ac137bb1ec61920d3adc0271dbe3691", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/eab76e088ac137bb1ec61920d3adc0271dbe3691.diff" + }, + "arcade@3290ea9": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "3290ea9c86a58d83fb56e43865295b44f68fb11b", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/3290ea9c86a58d83fb56e43865295b44f68fb11b.diff" + }, + "arcade@f7f7469": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "f7f74693341330c5de1f6ff065a6ad6a5816ed74", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/f7f74693341330c5de1f6ff065a6ad6a5816ed74.diff" + }, + "arcade@b7e0a87": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "b7e0a87d5befa2bb54870ecaf84dd87058462ea0", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/b7e0a87d5befa2bb54870ecaf84dd87058462ea0.diff" + }, + "arcade@0512309": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "05123097649061f9b77e8305d69980efb720f09e", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/05123097649061f9b77e8305d69980efb720f09e.diff" + }, + "arcade@edfa48e": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "edfa48ec6f9e7e8677bf2a7382dd32309d3f1ef3", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/edfa48ec6f9e7e8677bf2a7382dd32309d3f1ef3.diff" + }, + "arcade@0e34dd8": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "0e34dd8c0400107b2fd2945e7a340ad9d3467015", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/0e34dd8c0400107b2fd2945e7a340ad9d3467015.diff" + }, + "arcade@853171a": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "853171ab0e41ac80e2bd8f80056e281c191a6a01", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/853171ab0e41ac80e2bd8f80056e281c191a6a01.diff" + }, + "arcade@e385506": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "e385506c3dcbeea64fa1aae811e0ff9232815666", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/e385506c3dcbeea64fa1aae811e0ff9232815666.diff" + }, + "arcade@feffa5f": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "feffa5f3de223dafc91b349fc8f7ea83e218734b", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/feffa5f3de223dafc91b349fc8f7ea83e218734b.diff" + }, + "arcade@291fa08": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "291fa0852f49d984f72da872f52e9b492447d179", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/291fa0852f49d984f72da872f52e9b492447d179.diff" + }, + "aspnetcore@bb01877": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "bb018776c48fce5b0638208d41c27110171c3608", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/bb018776c48fce5b0638208d41c27110171c3608.diff" + }, + "aspnetcore@3a973a5": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "3a973a5f4d28242262f27c86eb3f14299fe712ba", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/3a973a5f4d28242262f27c86eb3f14299fe712ba.diff" + }, + "aspnetcore@18b430f": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "18b430f31d41ac58f18a1a719cdcabb21d342ad7", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/18b430f31d41ac58f18a1a719cdcabb21d342ad7.diff" + }, + "aspnetcore@e626393": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "e626393585e941844b1036563dd21fd95409bd1e", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/e626393585e941844b1036563dd21fd95409bd1e.diff" + }, + "aspnetcore@e356396": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "e356396175df06e1373013e732e8e522fe8ba140", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/e356396175df06e1373013e732e8e522fe8ba140.diff" + }, + "aspnetcore@423a70f": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "423a70f3d0177e4a55380b0045e64e1580b9af65", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/423a70f3d0177e4a55380b0045e64e1580b9af65.diff" + }, + "aspnetcore@6bf45a7": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "6bf45a7f29db639c1eac5c84c70deac7334b3bdf", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/6bf45a7f29db639c1eac5c84c70deac7334b3bdf.diff" + }, + "aspnetcore@9ea8e2c": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9ea8e2c28c695650c619a89b1edf2d6d6a75da67", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/9ea8e2c28c695650c619a89b1edf2d6d6a75da67.diff" + }, + "aspnetcore@105e935": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "105e93515399737f84b35e9746432de751836912", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/105e93515399737f84b35e9746432de751836912.diff" + }, + "aspnetcore@cb0202b": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "cb0202b20c7d8c7948970aeaddc1f6c97a401a64", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/cb0202b20c7d8c7948970aeaddc1f6c97a401a64.diff" + }, + "aspnetcore@f90e099": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f90e099e8e36785e648037d9f67493af0ff7d53f", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/f90e099e8e36785e648037d9f67493af0ff7d53f.diff" + }, + "aspnetcore@2027040": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "2027040473104293479ed99b421a749c0db2b95c", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/2027040473104293479ed99b421a749c0db2b95c.diff" + }, + "aspnetcore@9bf9db6": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9bf9db65896431392c881b22d76ed2259925268f", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/9bf9db65896431392c881b22d76ed2259925268f.diff" + }, + "aspnetcore@45f8aea": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "45f8aea27cef1b52f2237d17f54839c54b5f9a71", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/45f8aea27cef1b52f2237d17f54839c54b5f9a71.diff" + }, + "aspnetcore@16198d1": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "16198d132d524cef11525842509e9d8260f95ea4", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/16198d132d524cef11525842509e9d8260f95ea4.diff" + }, + "aspnetcore@7426595": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "7426595df10e975e58f7e171557627b31d6a03ec", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/7426595df10e975e58f7e171557627b31d6a03ec.diff" + }, + "aspnetcore@06efb5f": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "06efb5f8ccecd3e815b4e73b79a692e29a22fd84", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/06efb5f8ccecd3e815b4e73b79a692e29a22fd84.diff" + }, + "aspnetcore@af25746": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "af2574666375946b3dba796db8b904d4a2696afb", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/af2574666375946b3dba796db8b904d4a2696afb.diff" + }, + "aspnetcore@637a267": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "637a267be130a378c575452a4c31b28ec769cccb", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/637a267be130a378c575452a4c31b28ec769cccb.diff" + }, + "aspnetcore@df6c8e9": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "df6c8e9b585928bc3956a2e5096bf359332da8cd", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/df6c8e9b585928bc3956a2e5096bf359332da8cd.diff" + }, + "aspnetcore@5967f89": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5967f89a6b102e79b142d8ea86bb10309447e068", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/5967f89a6b102e79b142d8ea86bb10309447e068.diff" + }, + "aspnetcore@74725c1": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "74725c1b3a8325922c3ac54be21240d54024cecb", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/74725c1b3a8325922c3ac54be21240d54024cecb.diff" + }, + "aspnetcore@6e3747e": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "6e3747e42c5be98dae7ed17989fe6dd86598327d", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/6e3747e42c5be98dae7ed17989fe6dd86598327d.diff" + }, + "aspnetcore@97c3db9": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "97c3db9ecd289e5f2cee0c9ac6224760c81f3216", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/97c3db9ecd289e5f2cee0c9ac6224760c81f3216.diff" + }, + "aspnetcore@5ad0444": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5ad0444a79f776e8169233f87a878f6ab2b5c151", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/5ad0444a79f776e8169233f87a878f6ab2b5c151.diff" + }, + "aspnetcore@13dcbb4": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "13dcbb43d173070ffe207e8a63c222c798da393a", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/13dcbb43d173070ffe207e8a63c222c798da393a.diff" + }, + "aspnetcore@c0c593c": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "c0c593cc5f155b36e3dbfe068728de74cb0f36a8", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/c0c593cc5f155b36e3dbfe068728de74cb0f36a8.diff" + }, + "aspnetcore@ae50886": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ae5088602017bddedba0d1cd3b606d416310f8e5", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/ae5088602017bddedba0d1cd3b606d416310f8e5.diff" + }, + "aspnetcore@e742462": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "e742462cfbe457e627ad95a9d47e90d8372e43cb", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/e742462cfbe457e627ad95a9d47e90d8372e43cb.diff" + }, + "aspnetcore@53bb265": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "53bb2652f5db2d9e021e2671d46bd5abf3e3523c", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/53bb2652f5db2d9e021e2671d46bd5abf3e3523c.diff" + }, + "aspnetcore@01bf0df": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "01bf0df5fafabb1764947b8c53e6c0a0b3e4dd12", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/01bf0df5fafabb1764947b8c53e6c0a0b3e4dd12.diff" + }, + "aspnetcore@8cf6a95": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "8cf6a9599a26b6c419a2cb1a30e8ed72ba941359", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/8cf6a9599a26b6c419a2cb1a30e8ed72ba941359.diff" + }, + "aspnetcore@162a1f7": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "162a1f76f0ac5037db55de6d08b57a177686431e", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/162a1f76f0ac5037db55de6d08b57a177686431e.diff" + }, + "aspnetcore@7a2262d": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "7a2262da483f193a7bb1cb1f82289983fe4a1461", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/7a2262da483f193a7bb1cb1f82289983fe4a1461.diff" + }, + "aspnetcore@93830e4": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "93830e4d20eb800101f745a6247a9b85d37859f1", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/93830e4d20eb800101f745a6247a9b85d37859f1.diff" + }, + "aspnetcore@db50e77": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "db50e779170fafdbb43953a3316ddfb4ff604288", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/db50e779170fafdbb43953a3316ddfb4ff604288.diff" + }, + "aspnetcore@2cf27e2": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "2cf27e22c52c218ada23d8b24b40bc3e2a894e5c", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/2cf27e22c52c218ada23d8b24b40bc3e2a894e5c.diff" + }, + "aspnetcore@072d32a": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "072d32a7b3064d1b2dc4e82e5f22ca75ee1fbbc2", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/072d32a7b3064d1b2dc4e82e5f22ca75ee1fbbc2.diff" + }, + "aspnetcore@eec80e1": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "eec80e1c63963802a215d58b3907d6e46090fc28", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/eec80e1c63963802a215d58b3907d6e46090fc28.diff" + }, + "aspnetcore@c2ea7d8": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "c2ea7d85fd7d6d0a534583ba508fed7e85d81b63", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/c2ea7d85fd7d6d0a534583ba508fed7e85d81b63.diff" + }, + "aspnetcore@eb9e4b5": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "eb9e4b53009e8174e917fbe73695e6ebaca5b5dd", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/eb9e4b53009e8174e917fbe73695e6ebaca5b5dd.diff" + }, + "aspnetcore@8dc0b08": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "8dc0b08f3cc5ad2acacb242745b68bf52257a63d", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/8dc0b08f3cc5ad2acacb242745b68bf52257a63d.diff" + }, + "aspnetcore@eec60ba": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "eec60baad474562943a4537494d91702cfc4c8b4", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/eec60baad474562943a4537494d91702cfc4c8b4.diff" + }, + "aspnetcore@0f4a109": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0f4a109664bf5443ced8715a2abe9d59cc1c9d42", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/0f4a109664bf5443ced8715a2abe9d59cc1c9d42.diff" + }, + "aspnetcore@7350993": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "735099310de4437142d6b632827e18cd2eac1331", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/735099310de4437142d6b632827e18cd2eac1331.diff" + }, + "aspnetcore@83c5b49": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "83c5b4906cc68f9e1f57240015312d853e7e8df3", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/83c5b4906cc68f9e1f57240015312d853e7e8df3.diff" + }, + "aspnetcore@680a049": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "680a04978e9c352df9c792d833e4107ef0f0606b", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/680a04978e9c352df9c792d833e4107ef0f0606b.diff" + }, + "aspnetcore@01129f7": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "01129f701f04f772fca4a07b6dce096359c4724f", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/01129f701f04f772fca4a07b6dce096359c4724f.diff" + }, + "aspnetcore@888d231": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "888d23173b3d5ead9f39168a95784882c6d88ee4", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/888d23173b3d5ead9f39168a95784882c6d88ee4.diff" + }, + "aspnetcore@9dbfe9d": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9dbfe9d749bc48421aee7248240d9e11ad618e72", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/9dbfe9d749bc48421aee7248240d9e11ad618e72.diff" + }, + "aspnetcore@5f2a8c6": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5f2a8c66ade1d6e171be089d0d01cdc6d54a41a7", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/5f2a8c66ade1d6e171be089d0d01cdc6d54a41a7.diff" + }, + "aspnetcore@9f6184c": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9f6184c4506e1c86ce4038b6028ee83467691d5e", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/9f6184c4506e1c86ce4038b6028ee83467691d5e.diff" + }, + "aspnetcore@07f13c1": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "07f13c1553ace296f26236eeab6f5e5ec3bd6e9a", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/07f13c1553ace296f26236eeab6f5e5ec3bd6e9a.diff" + }, + "aspnetcore@9857de8": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9857de8eb1d78a04ce7e4f3cc9ebd8597634efc5", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/9857de8eb1d78a04ce7e4f3cc9ebd8597634efc5.diff" + }, + "aspnetcore@2fbb3f3": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "2fbb3f34f85af31672ac130920d0767deabbdc45", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/2fbb3f34f85af31672ac130920d0767deabbdc45.diff" + }, + "aspnetcore@69f3533": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "69f35330cfd13d62c9d0157134632a23d3c0c3f4", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/69f35330cfd13d62c9d0157134632a23d3c0c3f4.diff" + }, + "aspnetcore@4e6e8eb": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "4e6e8ebba46d7c000ca8cfef4272da77fe36ca62", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/4e6e8ebba46d7c000ca8cfef4272da77fe36ca62.diff" + }, + "aspnetcore@51f852f": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "51f852f60257c270f3bfae6fd90d120af457ad1c", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/51f852f60257c270f3bfae6fd90d120af457ad1c.diff" + }, + "aspnetcore@0fcd46b": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0fcd46b50a97182b1b3841c2689809d6b25b5a6c", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/0fcd46b50a97182b1b3841c2689809d6b25b5a6c.diff" + }, + "aspnetcore@d17d872": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d17d8723266943988c3434a628a157176b7f74a2", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/d17d8723266943988c3434a628a157176b7f74a2.diff" + }, + "aspnetcore@5c76285": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5c76285463c41978c900696841ab0a32a42d893d", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/5c76285463c41978c900696841ab0a32a42d893d.diff" + }, + "aspnetcore@552c986": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "552c986d27a1b0fc01a4dfe635a5621f7e672037", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/552c986d27a1b0fc01a4dfe635a5621f7e672037.diff" + }, + "aspnetcore@4e3592e": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "4e3592ece07e752de22e7d2cc79d475d0de514a5", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/4e3592ece07e752de22e7d2cc79d475d0de514a5.diff" + }, + "aspnetcore@ab5185d": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ab5185dd07d70b8880d9ee7316366fa2c10f716d", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/ab5185dd07d70b8880d9ee7316366fa2c10f716d.diff" + }, + "aspnetcore@6dd7f70": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "6dd7f70048be48975f8e9fd9b0331bd30002a059", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/6dd7f70048be48975f8e9fd9b0331bd30002a059.diff" + }, + "aspnetcore@5df2824": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5df28248e9d34d3a82721c49ad7dfe7febfdf638", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/5df28248e9d34d3a82721c49ad7dfe7febfdf638.diff" + }, + "aspnetcore@e3bebf7": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "e3bebf742b3f5e5d1cfb38b782adb2ba38de7348", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/e3bebf742b3f5e5d1cfb38b782adb2ba38de7348.diff" + }, + "aspnetcore@708d724": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "708d724c6257d8d16d8367421fb9aa7df176af64", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/708d724c6257d8d16d8367421fb9aa7df176af64.diff" + }, + "aspnetcore@0b12e6f": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0b12e6f18f1f22a103d09d254c8579f9d5d47422", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/0b12e6f18f1f22a103d09d254c8579f9d5d47422.diff" + }, + "aspnetcore@1c8ced0": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1c8ced05378e3501eeff1ecc4d10f2fd79042e56", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/1c8ced05378e3501eeff1ecc4d10f2fd79042e56.diff" + }, + "aspnetcore@7390100": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "739010000384e924a653e4708e07b3cdd79c27dc", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/739010000384e924a653e4708e07b3cdd79c27dc.diff" + }, + "aspnetcore@07cd5f8": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "07cd5f86a5f17af584e84dfaa45369d4f84ef66c", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/07cd5f86a5f17af584e84dfaa45369d4f84ef66c.diff" + }, + "aspnetcore@865dc41": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "865dc4141fce7777cf1aa8bd40750703f946197c", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/865dc4141fce7777cf1aa8bd40750703f946197c.diff" + }, + "aspnetcore@ea6182a": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ea6182a90d92b23368c9db9a212bc85ff63ff3aa", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/ea6182a90d92b23368c9db9a212bc85ff63ff3aa.diff" + }, + "aspnetcore@42a65bf": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "42a65bf63e9c4e37358290ab38d9e99c93fbf770", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/42a65bf63e9c4e37358290ab38d9e99c93fbf770.diff" + }, + "aspnetcore@2b1cb0a": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "2b1cb0a7ae862ba622fd172a960ed937063c5f08", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/2b1cb0a7ae862ba622fd172a960ed937063c5f08.diff" + }, + "aspnetcore@4ca3d71": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "4ca3d715db42e7eb96c330ab51083e120b2951aa", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/4ca3d715db42e7eb96c330ab51083e120b2951aa.diff" + }, + "aspnetcore@086f563": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "086f563efb6390553ef079a5622f9ae5fb9284cd", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/086f563efb6390553ef079a5622f9ae5fb9284cd.diff" + }, + "aspnetcore@3d53504": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "3d5350450c7639f24fe8889cf653faa2e0eb4b76", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/3d5350450c7639f24fe8889cf653faa2e0eb4b76.diff" + }, + "aspnetcore@cb2bd84": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "cb2bd848a873903324e292cf9168a0048681acf2", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/cb2bd848a873903324e292cf9168a0048681acf2.diff" + }, + "aspnetcore@e55796c": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "e55796c6188a4b94f79129aa0a4eb7dafd2b31f6", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/e55796c6188a4b94f79129aa0a4eb7dafd2b31f6.diff" + }, + "aspnetcore@c2daa92": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "c2daa92d10c0fcc833fa4ca058a7786f8d94508d", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/c2daa92d10c0fcc833fa4ca058a7786f8d94508d.diff" + }, + "aspnetcore@1fd3d6a": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1fd3d6a1b857aa774ec957c41909600f05c89624", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/1fd3d6a1b857aa774ec957c41909600f05c89624.diff" + }, + "aspnetcore@2a414e9": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "2a414e979054c424c5f6a30760ab008859f85a2f", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/2a414e979054c424c5f6a30760ab008859f85a2f.diff" + }, + "aspnetcore@8842e08": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "8842e08e87b6bbb67cd82338311db7665d52ba69", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/8842e08e87b6bbb67cd82338311db7665d52ba69.diff" + }, + "aspnetcore@ae31b22": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ae31b22278392015250b3c53666991058cd1138c", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/ae31b22278392015250b3c53666991058cd1138c.diff" + }, + "aspnetcore@0efd832": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0efd8323d5304414e968186608020d0b3b8be4c2", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/0efd8323d5304414e968186608020d0b3b8be4c2.diff" + }, + "aspnetcore@8338afb": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "8338afbb3021b7e6d7a71e121203bc95d0c8adff", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/8338afbb3021b7e6d7a71e121203bc95d0c8adff.diff" + }, + "aspnetcore@c892018": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "c892018e71177e3b42023f1d0e27fa2a72a6e4ec", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/c892018e71177e3b42023f1d0e27fa2a72a6e4ec.diff" + }, + "aspnetcore@810928e": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "810928e0bbf3df4ece4f245e6e386f9ec2953c13", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/810928e0bbf3df4ece4f245e6e386f9ec2953c13.diff" + }, + "aspnetcore@f8410f8": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f8410f812a2a76401468a78a4f776586c3af498c", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/f8410f812a2a76401468a78a4f776586c3af498c.diff" + }, + "aspnetcore@773e0c2": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "773e0c2b8690e13166da211ca08f8b0507fd9f82", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/773e0c2b8690e13166da211ca08f8b0507fd9f82.diff" + }, + "aspnetcore@a200b84": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a200b84d4fe140d2ec41a2653cf0e3fb3bc5b4f6", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/a200b84d4fe140d2ec41a2653cf0e3fb3bc5b4f6.diff" + }, + "aspnetcore@d77c401": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d77c4013bbdedb8857bc7ccdd588736f9e5f9ac7", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/d77c4013bbdedb8857bc7ccdd588736f9e5f9ac7.diff" + }, + "aspnetcore@245440c": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "245440c3afd1d655984be7d3ee6adb35dabcfcb5", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/245440c3afd1d655984be7d3ee6adb35dabcfcb5.diff" + }, + "aspnetcore@dedf040": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "dedf040fe68bb5de3b8c769e87aa5502d0df0a68", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/dedf040fe68bb5de3b8c769e87aa5502d0df0a68.diff" + }, + "aspnetcore@ff3ea50": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ff3ea50b573fbc5396f2c50fa13f27f443c97f27", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/ff3ea50b573fbc5396f2c50fa13f27f443c97f27.diff" + }, + "aspnetcore@5bc9780": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5bc97805e5d46471ce44a7e67ff5f28873950fd0", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/5bc97805e5d46471ce44a7e67ff5f28873950fd0.diff" + }, + "aspnetcore@7c53dac": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "7c53dac57386a1a286b4d382f4aa36bbcf5829a1", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/7c53dac57386a1a286b4d382f4aa36bbcf5829a1.diff" + }, + "aspnetcore@0fba831": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0fba831f527e706d9a420f2b40741339ff038938", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/0fba831f527e706d9a420f2b40741339ff038938.diff" + }, + "aspnetcore@ab2e33a": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ab2e33a05f53406a5125b8971a6e5af6b35ff448", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/ab2e33a05f53406a5125b8971a6e5af6b35ff448.diff" + }, + "aspnetcore@0807dd9": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0807dd9ac2bd17a6a82c8713be76d63de3cb2bcf", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/0807dd9ac2bd17a6a82c8713be76d63de3cb2bcf.diff" + }, + "aspnetcore@8288f56": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "8288f56446508b22d011428ab2d4c082076a2543", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/8288f56446508b22d011428ab2d4c082076a2543.diff" + }, + "aspnetcore@5b89273": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5b892736c24f973adbdc8a36542609dc403ed92d", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/5b892736c24f973adbdc8a36542609dc403ed92d.diff" + }, + "aspnetcore@f7c186e": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f7c186e94f7853eb90ff600f3486a1d6733a1de8", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/f7c186e94f7853eb90ff600f3486a1d6733a1de8.diff" + }, + "aspnetcore@81dc76b": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "81dc76b452744da25cff1f3f3b76ea7e91021c44", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/81dc76b452744da25cff1f3f3b76ea7e91021c44.diff" + }, + "aspnetcore@50fe923": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "50fe92347cbfa633b0aedc363deefbc2b90fff43", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/50fe92347cbfa633b0aedc363deefbc2b90fff43.diff" + }, + "aspnetcore@cad82f1": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "cad82f1aafd1c90c882eae2842235c96a6533702", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/cad82f1aafd1c90c882eae2842235c96a6533702.diff" + }, + "aspnetcore@659206f": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "659206f31e57885081e6f48850ce0382b2bfed93", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/659206f31e57885081e6f48850ce0382b2bfed93.diff" + }, + "aspnetcore@65ae876": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "65ae87611fc63915a10b951dbdfb0e1a3df38531", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/65ae87611fc63915a10b951dbdfb0e1a3df38531.diff" + }, + "aspnetcore@27a9115": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "27a91158e25c57c942c00203c5d6774395a421d4", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/27a91158e25c57c942c00203c5d6774395a421d4.diff" + }, + "aspnetcore@9657193": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9657193890de6140d48b258d4a8870950cb1ca41", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/9657193890de6140d48b258d4a8870950cb1ca41.diff" + }, + "aspnetcore@b571f34": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "b571f34a86c5ddb9cf4119f292fbd0d662c19aec", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/b571f34a86c5ddb9cf4119f292fbd0d662c19aec.diff" + }, + "aspnetcore@d984f78": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d984f78946af0090c5c5ced437fe95b58639fc77", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/d984f78946af0090c5c5ced437fe95b58639fc77.diff" + }, + "aspnetcore@d601f7c": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d601f7c7f19e2fb50f329b9d34f69a83f03cf701", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/d601f7c7f19e2fb50f329b9d34f69a83f03cf701.diff" + }, + "aspnetcore@7c63bad": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "7c63bad435c42792fe63e902f4f02a857f908fbd", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/7c63bad435c42792fe63e902f4f02a857f908fbd.diff" + }, + "aspnetcore@0c878b3": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0c878b3bdc746aeeeda75105206ed71f109ebdcf", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/0c878b3bdc746aeeeda75105206ed71f109ebdcf.diff" + }, + "aspnetcore@37375a8": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "37375a865704d876581cad4129953599a519d99d", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/37375a865704d876581cad4129953599a519d99d.diff" + }, + "aspnetcore@7b5aa5e": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "7b5aa5ec5d53da25b5a0dc9d155e8d1c08fc351e", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/7b5aa5ec5d53da25b5a0dc9d155e8d1c08fc351e.diff" + }, + "aspnetcore@0289caa": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0289caac825a8a027a27b44abe8b824c640aaf41", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/0289caac825a8a027a27b44abe8b824c640aaf41.diff" + }, + "aspnetcore@d4edb13": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d4edb1310d7a1e26f306285ad18883a2fd8ca0a3", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/d4edb1310d7a1e26f306285ad18883a2fd8ca0a3.diff" + }, + "aspnetcore@01549b2": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "01549b2f430576b3652eee1720dbfa892ecdb07c", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/01549b2f430576b3652eee1720dbfa892ecdb07c.diff" + }, + "aspnetcore@706ce53": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "706ce530c1a73d818954287ba8c75ac349239c76", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/706ce530c1a73d818954287ba8c75ac349239c76.diff" + }, + "aspnetcore@1855c53": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1855c53140e5254d54078ccea41e2b21bd264309", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/1855c53140e5254d54078ccea41e2b21bd264309.diff" + }, + "aspnetcore@d375204": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d375204d3804918d73924caf3c701509361ee2b9", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/d375204d3804918d73924caf3c701509361ee2b9.diff" + }, + "aspnetcore@ca7652f": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ca7652fd719aeed70c3962c432984b8134ef2343", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/ca7652fd719aeed70c3962c432984b8134ef2343.diff" + }, + "aspnetcore@83662b1": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "83662b13f2dc641f46f8444c8d62c2bc6b1a4a8b", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/83662b13f2dc641f46f8444c8d62c2bc6b1a4a8b.diff" + }, + "aspnetcore@abda9bd": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "abda9bdce57c863f024775a311f8b7492478ec91", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/abda9bdce57c863f024775a311f8b7492478ec91.diff" + }, + "aspnetcore@606caee": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "606caee4be854a66074a5d421ec1ea7f156222cd", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/606caee4be854a66074a5d421ec1ea7f156222cd.diff" + }, + "aspnetcore@e9e6afa": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "e9e6afad4b4b220ebad323095c0282652b30a633", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/e9e6afad4b4b220ebad323095c0282652b30a633.diff" + }, + "aspnetcore@faf0ea0": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "faf0ea036dac4c02bbc0fd46e6e3a5039d08e1a5", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/faf0ea036dac4c02bbc0fd46e6e3a5039d08e1a5.diff" + }, + "aspnetcore@3dafd5c": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "3dafd5c3322983c6240ef6c53c58d75bcb31db95", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/3dafd5c3322983c6240ef6c53c58d75bcb31db95.diff" + }, + "aspnetcore@8bba19e": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "8bba19e82be93ec1deb1cd9e254f6b236c836c43", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/8bba19e82be93ec1deb1cd9e254f6b236c836c43.diff" + }, + "aspnetcore@41822ee": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "41822eeedb4a240e411a6b54d50585f9b7674d28", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/41822eeedb4a240e411a6b54d50585f9b7674d28.diff" + }, + "aspnetcore@472d942": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "472d94239f27f92a7aefd142b5d59e12b2b5a37f", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/472d94239f27f92a7aefd142b5d59e12b2b5a37f.diff" + }, + "aspnetcore@3741588": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "3741588081b33934bb7f9dd9e4fd28b7752b7d57", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/3741588081b33934bb7f9dd9e4fd28b7752b7d57.diff" + }, + "aspnetcore@bf7d552": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "bf7d55227c682550d6066b869cd584d23b299e29", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/bf7d55227c682550d6066b869cd584d23b299e29.diff" + }, + "aspnetcore@5b7bc39": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5b7bc39bedcc7f56eb13af737171b1d2f6484045", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/5b7bc39bedcc7f56eb13af737171b1d2f6484045.diff" + }, + "aspnetcore@e0f509f": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "e0f509f0836799bc7e6331983eba9bb8ad5211da", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/e0f509f0836799bc7e6331983eba9bb8ad5211da.diff" + }, + "aspnetcore@ece07c5": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ece07c5f20e90e3bfa6630a3507063f1f361f9a7", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/ece07c5f20e90e3bfa6630a3507063f1f361f9a7.diff" + }, + "aspnetcore@1d9cbfa": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1d9cbfaba0c6efdc2f2e5fc666d6df1acda9976b", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/1d9cbfaba0c6efdc2f2e5fc666d6df1acda9976b.diff" + }, + "aspnetcore@a2abc03": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a2abc038f0d4ef210550371e14b8aba01bd00ae3", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/a2abc038f0d4ef210550371e14b8aba01bd00ae3.diff" + }, + "aspnetcore@7ee3019": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "7ee3019308c266c38e9b09bec6c8b1f715c20d08", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/7ee3019308c266c38e9b09bec6c8b1f715c20d08.diff" + }, + "aspnetcore@cac95fb": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "cac95fb4ecf5a82e5117b7fd94fae053463e33bf", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/cac95fb4ecf5a82e5117b7fd94fae053463e33bf.diff" + }, + "aspnetcore@2fdaffc": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "2fdaffc08129ae523aa40e4065bb80407b753d82", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/2fdaffc08129ae523aa40e4065bb80407b753d82.diff" + }, + "aspnetcore@d8491f4": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d8491f4280195c83ad27e1550b648ea2d77d9569", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/d8491f4280195c83ad27e1550b648ea2d77d9569.diff" + }, + "aspnetcore@d14f00b": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d14f00b80b7f54dff8b68bb2be16e208f9205fda", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/d14f00b80b7f54dff8b68bb2be16e208f9205fda.diff" + }, + "aspnetcore@7e307f4": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "7e307f4bc78a384e95b7dc93dbaa846457ff6b32", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/7e307f4bc78a384e95b7dc93dbaa846457ff6b32.diff" + }, + "aspnetcore@ff787d9": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ff787d9d2f0dfda251696a9cb78ea89e0148afa5", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/ff787d9d2f0dfda251696a9cb78ea89e0148afa5.diff" + }, + "aspnetcore@379c93b": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "379c93b4b75a6a7f52268cbd4e95f3a0b50a1c4b", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/379c93b4b75a6a7f52268cbd4e95f3a0b50a1c4b.diff" + }, + "aspnetcore@4b53b87": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "4b53b87f0d7e2e5549c6628a5ba318770665a84b", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/4b53b87f0d7e2e5549c6628a5ba318770665a84b.diff" + }, + "aspnetcore@6aad0fa": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "6aad0fa78b6de2032df49f49b9a14594ebfe25e6", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/6aad0fa78b6de2032df49f49b9a14594ebfe25e6.diff" + }, + "aspnetcore@002e2fd": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "002e2fddf589f9d9e8d430c4c6be0d5e53897ac5", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/002e2fddf589f9d9e8d430c4c6be0d5e53897ac5.diff" + }, + "aspnetcore@7de8efd": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "7de8efdb71f0ffe3e2739f910ffb0a69e43ab0cc", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/7de8efdb71f0ffe3e2739f910ffb0a69e43ab0cc.diff" + }, + "aspnetcore@5f25968": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5f25968a3c497fb4447ee9ddb1ab68324f67ec86", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/5f25968a3c497fb4447ee9ddb1ab68324f67ec86.diff" + }, + "aspnetcore@cc983ac": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "cc983ac5273998e3cb4d76088529a86fada8d980", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/cc983ac5273998e3cb4d76088529a86fada8d980.diff" + }, + "aspnetcore@70329cf": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "70329cf972f4ed3239134189d9336b850cfe3322", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/70329cf972f4ed3239134189d9336b850cfe3322.diff" + }, + "aspnetcore@5c96464": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5c964642f7cf28b50c716b988a73bd8d5007cadf", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/5c964642f7cf28b50c716b988a73bd8d5007cadf.diff" + }, + "aspnetcore@a6285e2": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a6285e2438ecb3e63b46255a90780279d97d8e02", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/a6285e2438ecb3e63b46255a90780279d97d8e02.diff" + }, + "aspnetcore@43bf870": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "43bf870e2cf24349b4a784aea531082235845c8b", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/43bf870e2cf24349b4a784aea531082235845c8b.diff" + }, + "aspnetcore@53559dd": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "53559ddd9f193ffe004f27ec6ccc1c88a8529033", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/53559ddd9f193ffe004f27ec6ccc1c88a8529033.diff" + }, + "aspnetcore@9d746bd": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9d746bd1fa42178150bf480cf7c86a7e6e0c5ea2", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/9d746bd1fa42178150bf480cf7c86a7e6e0c5ea2.diff" + }, + "aspnetcore@e0d31d9": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "e0d31d9fb90de374424f555ab58e5bfec86d46e6", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/e0d31d9fb90de374424f555ab58e5bfec86d46e6.diff" + }, + "aspnetcore@5d3e13d": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5d3e13dc31bfc1c0f75cb4cae95d38f5b00d4e0e", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/5d3e13dc31bfc1c0f75cb4cae95d38f5b00d4e0e.diff" + }, + "aspnetcore@8feb203": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "8feb20305ee22be790c06b4ca4883afcb6aee089", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/8feb20305ee22be790c06b4ca4883afcb6aee089.diff" + }, + "aspnetcore@17fb030": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "17fb03031a75cacf18bf3fd09d645aefeb5af9a6", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/17fb03031a75cacf18bf3fd09d645aefeb5af9a6.diff" + }, + "aspnetcore@1e4711c": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1e4711cab99afd309947f565b521bdd2f017dacf", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/1e4711cab99afd309947f565b521bdd2f017dacf.diff" + }, + "aspnetcore@cdea7e1": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "cdea7e1df07e81acb7ee2689b99ea5f4644a6ea8", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/cdea7e1df07e81acb7ee2689b99ea5f4644a6ea8.diff" + }, + "aspnetcore@20cea47": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "20cea471eff75b1bd6a0321c670152de5760526b", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/20cea471eff75b1bd6a0321c670152de5760526b.diff" + }, + "aspnetcore@ade5151": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ade51513d4660e0ab6beb8cd18342208efb37629", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/ade51513d4660e0ab6beb8cd18342208efb37629.diff" + }, + "aspnetcore@655f41d": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "655f41d52f2fc75992eac41496b8e9cc119e1b54", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/655f41d52f2fc75992eac41496b8e9cc119e1b54.diff" + }, + "command-line-api@a3bae7d": { + "repo": "command-line-api", + "branch": "release/11.0.1xx-preview3", + "hash": "a3bae7d667e367376f4eb3edb579bf7e9c81cc10", + "org": "dotnet", + "url": "https://github.com/dotnet/command-line-api/commit/a3bae7d667e367376f4eb3edb579bf7e9c81cc10.diff" + }, + "command-line-api@0b720d0": { + "repo": "command-line-api", + "branch": "release/11.0.1xx-preview3", + "hash": "0b720d0399197e9a8d9684f26bc6fd82d0da83b2", + "org": "dotnet", + "url": "https://github.com/dotnet/command-line-api/commit/0b720d0399197e9a8d9684f26bc6fd82d0da83b2.diff" + }, + "deployment-tools@e83794f": { + "repo": "deployment-tools", + "branch": "release/11.0.1xx-preview3", + "hash": "e83794f40888403908364746216a5c271c6fcf29", + "org": "dotnet", + "url": "https://github.com/dotnet/deployment-tools/commit/e83794f40888403908364746216a5c271c6fcf29.diff" + }, + "deployment-tools@71f5b36": { + "repo": "deployment-tools", + "branch": "release/11.0.1xx-preview3", + "hash": "71f5b36ee98b2d81c699d99e6d8f4f09106b130f", + "org": "dotnet", + "url": "https://github.com/dotnet/deployment-tools/commit/71f5b36ee98b2d81c699d99e6d8f4f09106b130f.diff" + }, + "deployment-tools@24caf42": { + "repo": "deployment-tools", + "branch": "release/11.0.1xx-preview3", + "hash": "24caf42a0c54ac05ab64628c435bdbc1cba52e93", + "org": "dotnet", + "url": "https://github.com/dotnet/deployment-tools/commit/24caf42a0c54ac05ab64628c435bdbc1cba52e93.diff" + }, + "deployment-tools@bdad519": { + "repo": "deployment-tools", + "branch": "release/11.0.1xx-preview3", + "hash": "bdad519667c16190f5fc06b27e201dd092b194f8", + "org": "dotnet", + "url": "https://github.com/dotnet/deployment-tools/commit/bdad519667c16190f5fc06b27e201dd092b194f8.diff" + }, + "deployment-tools@73e2836": { + "repo": "deployment-tools", + "branch": "release/11.0.1xx-preview3", + "hash": "73e2836a5d7397d203c12809f1f9ee7a09beac8d", + "org": "dotnet", + "url": "https://github.com/dotnet/deployment-tools/commit/73e2836a5d7397d203c12809f1f9ee7a09beac8d.diff" + }, + "efcore@88ad5f0": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "88ad5f0025a2ad63a22812dcace1792034158a73", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/88ad5f0025a2ad63a22812dcace1792034158a73.diff" + }, + "efcore@fe8711d": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "fe8711df6170aebd9206fb4cc1f2686beb52c3ea", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/fe8711df6170aebd9206fb4cc1f2686beb52c3ea.diff" + }, + "efcore@ce4c061": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ce4c061ceb07518ad3bdcbf87f1a9051113b2421", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/ce4c061ceb07518ad3bdcbf87f1a9051113b2421.diff" + }, + "efcore@2171920": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "217192044824d6d81e6765dab6c429e95153f6e8", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/217192044824d6d81e6765dab6c429e95153f6e8.diff" + }, + "efcore@05a2ee4": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "05a2ee483e5f2cb47e86dd6b60481947adea4dbb", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/05a2ee483e5f2cb47e86dd6b60481947adea4dbb.diff" + }, + "efcore@c214374": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "c214374f16d2d76932ece40d4b31b257691c4d70", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/c214374f16d2d76932ece40d4b31b257691c4d70.diff" + }, + "efcore@c413a34": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "c413a348f995d49416160838f97f0ac22f44e75d", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/c413a348f995d49416160838f97f0ac22f44e75d.diff" + }, + "efcore@f2d8cf2": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f2d8cf2a1b56f33134e1fdd8d3214aac7fbfce47", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/f2d8cf2a1b56f33134e1fdd8d3214aac7fbfce47.diff" + }, + "efcore@272a411": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "272a4117ca4b60febc041046b53e837ad77f1112", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/272a4117ca4b60febc041046b53e837ad77f1112.diff" + }, + "efcore@b215568": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "b215568672b3c74bfdbe87216fde89dfd382952e", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/b215568672b3c74bfdbe87216fde89dfd382952e.diff" + }, + "efcore@f0533e3": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f0533e3c9f3e8871c0d7e51ed21e71393f1f18d7", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/f0533e3c9f3e8871c0d7e51ed21e71393f1f18d7.diff" + }, + "efcore@fa02541": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "fa02541b2f8d6383604d58d704971814e86d17a3", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/fa02541b2f8d6383604d58d704971814e86d17a3.diff" + }, + "efcore@13b022a": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "13b022af32dfe9ad711f4b9b83637d13cd5bebe9", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/13b022af32dfe9ad711f4b9b83637d13cd5bebe9.diff" + }, + "efcore@0d5f479": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0d5f4795c82658e821ef622f470d5935df2fb188", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/0d5f4795c82658e821ef622f470d5935df2fb188.diff" + }, + "efcore@9db9403": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9db94035836a745f83dacdf14d2a7871c01f9900", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/9db94035836a745f83dacdf14d2a7871c01f9900.diff" + }, + "efcore@ae8da6d": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ae8da6d7d710057e29971a8514508334a3227245", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/ae8da6d7d710057e29971a8514508334a3227245.diff" + }, + "efcore@197e23b": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "197e23b1cdde7b1f0fa085912df15210e58eecf2", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/197e23b1cdde7b1f0fa085912df15210e58eecf2.diff" + }, + "efcore@a1198d4": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a1198d4bc574c7e71453117a87ffc009c2c75b60", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/a1198d4bc574c7e71453117a87ffc009c2c75b60.diff" + }, + "efcore@4740247": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "474024704557b928260b2c383d6b34a5a27fc494", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/474024704557b928260b2c383d6b34a5a27fc494.diff" + }, + "efcore@239465b": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "239465b27dbe3f46b089bab60598f7fb28f3000c", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/239465b27dbe3f46b089bab60598f7fb28f3000c.diff" + }, + "efcore@0e146f5": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0e146f554523a0e3fa7bdb1be7857d9729029de1", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/0e146f554523a0e3fa7bdb1be7857d9729029de1.diff" + }, + "efcore@9dae88e": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9dae88ee8afe88ac03286758b568d628fe05e5c6", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/9dae88ee8afe88ac03286758b568d628fe05e5c6.diff" + }, + "efcore@35514be": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "35514bea42895748cddabb20545b4d4a6811d9d8", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/35514bea42895748cddabb20545b4d4a6811d9d8.diff" + }, + "efcore@35089f2": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "35089f2bb71762acd2620b3ddb1ee341f3657938", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/35089f2bb71762acd2620b3ddb1ee341f3657938.diff" + }, + "efcore@04fc72c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "04fc72cb6225c9d81222ecf404b11e36647e4d24", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/04fc72cb6225c9d81222ecf404b11e36647e4d24.diff" + }, + "efcore@fb96b4a": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "fb96b4a64b254497d9c871e5c0b4af34de3aec7f", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/fb96b4a64b254497d9c871e5c0b4af34de3aec7f.diff" + }, + "efcore@6f19809": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "6f19809475ddd9bb666c2f2d3735ba4de1758e38", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/6f19809475ddd9bb666c2f2d3735ba4de1758e38.diff" + }, + "efcore@48dc694": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "48dc694668bff33499db4b0c71bb26e6022ed5d4", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/48dc694668bff33499db4b0c71bb26e6022ed5d4.diff" + }, + "efcore@9f06179": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9f06179fc8c2b8e90a7ec770f0a5aeb0145840d2", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/9f06179fc8c2b8e90a7ec770f0a5aeb0145840d2.diff" + }, + "efcore@56a682a": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "56a682abd8a25fe1db78048282e28d85dac4febc", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/56a682abd8a25fe1db78048282e28d85dac4febc.diff" + }, + "efcore@f74c457": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f74c457a5b831c781f007af6f72811be98151848", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/f74c457a5b831c781f007af6f72811be98151848.diff" + }, + "efcore@31e3250": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "31e325069128ad5e13fc40049e9170eaa9cfffb1", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/31e325069128ad5e13fc40049e9170eaa9cfffb1.diff" + }, + "efcore@a00f52a": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a00f52a961c28f76c051240dda0658e98fabb62d", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/a00f52a961c28f76c051240dda0658e98fabb62d.diff" + }, + "efcore@4797ba9": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "4797ba9f177f64a3d87653775744ea3340497491", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/4797ba9f177f64a3d87653775744ea3340497491.diff" + }, + "efcore@4707794": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "4707794d69bf26f6a0fc06dba8852193b85db425", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/4707794d69bf26f6a0fc06dba8852193b85db425.diff" + }, + "efcore@5f9c2c3": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5f9c2c334af1e4fbbb88ba12c950143ba2495214", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/5f9c2c334af1e4fbbb88ba12c950143ba2495214.diff" + }, + "efcore@5740ed8": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5740ed871ae4489b5a22fa459bcf7efeb6d9e4ed", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/5740ed871ae4489b5a22fa459bcf7efeb6d9e4ed.diff" + }, + "efcore@ac1a32c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ac1a32c874433fc1649db6dc7944b53b751787dc", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/ac1a32c874433fc1649db6dc7944b53b751787dc.diff" + }, + "efcore@59291da": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "59291da895d07af6dda730fce89363f780d7ecf8", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/59291da895d07af6dda730fce89363f780d7ecf8.diff" + }, + "efcore@0c22a71": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0c22a71d670164bd9116da585fe51fe270fec5e8", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/0c22a71d670164bd9116da585fe51fe270fec5e8.diff" + }, + "efcore@873db19": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "873db19e4f3a435e4557ec87e5175d84388a44f1", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/873db19e4f3a435e4557ec87e5175d84388a44f1.diff" + }, + "efcore@fb11d70": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "fb11d70a30a5ccbb2004875f656a0ecc981e5454", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/fb11d70a30a5ccbb2004875f656a0ecc981e5454.diff" + }, + "efcore@a06277e": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a06277e837d630931f90e5b0ca3ebd262456a270", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/a06277e837d630931f90e5b0ca3ebd262456a270.diff" + }, + "efcore@62b0941": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "62b0941887426a2d64867ad4908c7e3a6f410ea7", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/62b0941887426a2d64867ad4908c7e3a6f410ea7.diff" + }, + "efcore@5ccb348": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5ccb348ec1c4e7b16995c673a8d67529dbbe65ca", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/5ccb348ec1c4e7b16995c673a8d67529dbbe65ca.diff" + }, + "efcore@6b4f383": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "6b4f383610e247737253e03a90c722ab91ba83e4", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/6b4f383610e247737253e03a90c722ab91ba83e4.diff" + }, + "efcore@45d3267": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "45d32675c7d6c306c80742660df39c0fb47db0bc", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/45d32675c7d6c306c80742660df39c0fb47db0bc.diff" + }, + "efcore@fc6f21d": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "fc6f21de852845da01783712edbcfe48c44e98ca", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/fc6f21de852845da01783712edbcfe48c44e98ca.diff" + }, + "efcore@4957f0e": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "4957f0ed312a041d103422cd2d8690b3c42b62a9", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/4957f0ed312a041d103422cd2d8690b3c42b62a9.diff" + }, + "efcore@f69c365": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f69c3653a04b4ff3ca9da8271125673d07872059", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/f69c3653a04b4ff3ca9da8271125673d07872059.diff" + }, + "efcore@ebc7591": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ebc75910e051061b501e6d05f5e86825626df2f5", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/ebc75910e051061b501e6d05f5e86825626df2f5.diff" + }, + "efcore@1460789": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1460789aae6faac334fb69dd0f7d883b508bfd01", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/1460789aae6faac334fb69dd0f7d883b508bfd01.diff" + }, + "efcore@8a06ad4": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "8a06ad4b11439ad3a437a2cb0248e1db1c051f53", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/8a06ad4b11439ad3a437a2cb0248e1db1c051f53.diff" + }, + "efcore@1d245f3": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1d245f36ea1d20183ed39567975a2e1e2c8899e0", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/1d245f36ea1d20183ed39567975a2e1e2c8899e0.diff" + }, + "efcore@1d6294e": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1d6294e74eeccf25951b6b4f718c18e3af229209", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/1d6294e74eeccf25951b6b4f718c18e3af229209.diff" + }, + "efcore@0cc9a4b": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0cc9a4b1bc78b38933d93eb39c41fd0e41df2c2c", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/0cc9a4b1bc78b38933d93eb39c41fd0e41df2c2c.diff" + }, + "efcore@4077099": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "4077099f071fa2ce8ac068502cebf59d8b2efc89", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/4077099f071fa2ce8ac068502cebf59d8b2efc89.diff" + }, + "efcore@bbba406": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "bbba4061e760af2bf8282855bc7c0d8b103ee3ab", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/bbba4061e760af2bf8282855bc7c0d8b103ee3ab.diff" + }, + "efcore@fbf051c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "fbf051c00b62329e7a6efbac9740545778a4bc47", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/fbf051c00b62329e7a6efbac9740545778a4bc47.diff" + }, + "efcore@aa10d1d": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "aa10d1dad819ef7bc16d7b3c40757a4eec7ddbca", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/aa10d1dad819ef7bc16d7b3c40757a4eec7ddbca.diff" + }, + "efcore@150afc9": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "150afc9b7487c2b2b566ccea49afb850dcbd1ca0", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/150afc9b7487c2b2b566ccea49afb850dcbd1ca0.diff" + }, + "efcore@3eabbaf": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "3eabbafaa3b5e1e2973c7449bfab71f74708da21", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/3eabbafaa3b5e1e2973c7449bfab71f74708da21.diff" + }, + "efcore@2f5c7f3": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "2f5c7f30c4cddd789057c54ea59cdedeccc01ec5", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/2f5c7f30c4cddd789057c54ea59cdedeccc01ec5.diff" + }, + "efcore@8132028": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "81320285967025ecb8132235a7d540b6455212fe", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/81320285967025ecb8132235a7d540b6455212fe.diff" + }, + "efcore@1c16df9": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1c16df97e41df76a6e523db9e6239fe443152096", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/1c16df97e41df76a6e523db9e6239fe443152096.diff" + }, + "efcore@0518708": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0518708e0485aa3acc700fdc431250662bb5e9c5", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/0518708e0485aa3acc700fdc431250662bb5e9c5.diff" + }, + "efcore@209f088": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "209f0884ef5e1431c93d54a8ed4cb07382f00930", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/209f0884ef5e1431c93d54a8ed4cb07382f00930.diff" + }, + "efcore@39531c8": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "39531c8c2f36f12abf468d1e16fc4a3340e01fb3", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/39531c8c2f36f12abf468d1e16fc4a3340e01fb3.diff" + }, + "efcore@f254706": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f254706c50785c70694262fb4551949e2388ee70", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/f254706c50785c70694262fb4551949e2388ee70.diff" + }, + "efcore@a707320": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a7073200a938a1bc1e9351c2d78d5993252f6304", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/a7073200a938a1bc1e9351c2d78d5993252f6304.diff" + }, + "efcore@15af73b": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "15af73b210697cf8d0faa35d59ebaa77727ddcca", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/15af73b210697cf8d0faa35d59ebaa77727ddcca.diff" + }, + "efcore@a5a6356": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a5a63566ee771d6feec010877c65b325400cd024", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/a5a63566ee771d6feec010877c65b325400cd024.diff" + }, + "efcore@9c4450c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9c4450cac6b7b434d089c0ff84367bd7b16334d4", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/9c4450cac6b7b434d089c0ff84367bd7b16334d4.diff" + }, + "efcore@d0d82d2": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d0d82d27ea0f400fd7a37617216540375434a618", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/d0d82d27ea0f400fd7a37617216540375434a618.diff" + }, + "efcore@76c0497": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "76c04978f29f605b619b8e398385a2c2b3cf869a", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/76c04978f29f605b619b8e398385a2c2b3cf869a.diff" + }, + "efcore@39c16b2": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "39c16b23e8527b7dd55669fae51fe8ed4958aa29", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/39c16b23e8527b7dd55669fae51fe8ed4958aa29.diff" + }, + "efcore@e006093": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "e0060933b6d93d2b555fb3fb87c301fd17f4e542", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/e0060933b6d93d2b555fb3fb87c301fd17f4e542.diff" + }, + "efcore@c2941e7": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "c2941e740120acc0fa3782d75564ecbde59b9b4f", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/c2941e740120acc0fa3782d75564ecbde59b9b4f.diff" + }, + "efcore@d072427": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d072427012186855f64d089b4c420eed2aac0fb3", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/d072427012186855f64d089b4c420eed2aac0fb3.diff" + }, + "efcore@41811eb": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "41811ebde2fbd5a22bb357f7467833fb3e4f6e87", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/41811ebde2fbd5a22bb357f7467833fb3e4f6e87.diff" + }, + "efcore@fdf01ed": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "fdf01edf7a92b6926798c99c67fe534d9a4b3487", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/fdf01edf7a92b6926798c99c67fe534d9a4b3487.diff" + }, + "efcore@a24cf33": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a24cf33dbdf2afc6c37c23d8004cd1e6bb302105", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/a24cf33dbdf2afc6c37c23d8004cd1e6bb302105.diff" + }, + "efcore@f0fd83c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f0fd83cf5b767b785dead117dcaed5b96a7cfc9e", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/f0fd83cf5b767b785dead117dcaed5b96a7cfc9e.diff" + }, + "efcore@8f03289": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "8f03289d41b063712e875f5b65bb1912279ccaff", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/8f03289d41b063712e875f5b65bb1912279ccaff.diff" + }, + "efcore@28fec6b": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "28fec6bbc81e8f37ba65e74b6c35e3e5f170bb6b", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/28fec6bbc81e8f37ba65e74b6c35e3e5f170bb6b.diff" + }, + "efcore@c538920": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "c53892024475301165995e39cc8492e28bd03d15", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/c53892024475301165995e39cc8492e28bd03d15.diff" + }, + "efcore@1ade1a4": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1ade1a44564d0e0d5bada39e9d7da1a59e6386d2", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/1ade1a44564d0e0d5bada39e9d7da1a59e6386d2.diff" + }, + "efcore@b75d148": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "b75d148db4f5283265f0c4549a149d60c67386f6", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/b75d148db4f5283265f0c4549a149d60c67386f6.diff" + }, + "efcore@1422c65": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1422c65e180e2f27c5bb44bbb5cda0fde87e9d00", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/1422c65e180e2f27c5bb44bbb5cda0fde87e9d00.diff" + }, + "efcore@251f5d3": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "251f5d3979f0c9eae989d21d659d78e9649dada8", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/251f5d3979f0c9eae989d21d659d78e9649dada8.diff" + }, + "efcore@9bad67c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9bad67c62a79d8c3582d5b5b152f493044212898", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/9bad67c62a79d8c3582d5b5b152f493044212898.diff" + }, + "efcore@a6f77af": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a6f77af52457d5405b00d80661ee327bd7bfa3de", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/a6f77af52457d5405b00d80661ee327bd7bfa3de.diff" + }, + "efcore@6a7fa61": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "6a7fa6163f38cd2c55984a03c6019c3f37486048", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/6a7fa6163f38cd2c55984a03c6019c3f37486048.diff" + }, + "efcore@59aa0ae": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "59aa0ae13028b0889c57b414b9a505fc35ac6c0e", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/59aa0ae13028b0889c57b414b9a505fc35ac6c0e.diff" + }, + "efcore@253f08d": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "253f08d9298ca72fc779270a2980898a4f58f3fc", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/253f08d9298ca72fc779270a2980898a4f58f3fc.diff" + }, + "efcore@d3e476b": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d3e476b49cf07c7ffc387dcf3e4d12525bd4f2a7", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/d3e476b49cf07c7ffc387dcf3e4d12525bd4f2a7.diff" + }, + "efcore@a75602c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a75602c4c3a0be424264f332fb15ed1f30a19364", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/a75602c4c3a0be424264f332fb15ed1f30a19364.diff" + }, + "efcore@ddea54e": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ddea54eef47e79112c286aa916f70868b7fe38fc", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/ddea54eef47e79112c286aa916f70868b7fe38fc.diff" + }, + "efcore@df4e613": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "df4e6137c184c7f32005d76e7fd12096aaf08231", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/df4e6137c184c7f32005d76e7fd12096aaf08231.diff" + }, + "efcore@9f8fd9c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9f8fd9c99f44bf292bc0882ab662dfd677387fd0", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/9f8fd9c99f44bf292bc0882ab662dfd677387fd0.diff" + }, + "efcore@462bcf0": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "462bcf0dc7164a83f8e1868d0f8d2d54caebc736", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/462bcf0dc7164a83f8e1868d0f8d2d54caebc736.diff" + }, + "efcore@d34c72b": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d34c72badcb1b7301b39da63bcbcd2272ce877fb", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/d34c72badcb1b7301b39da63bcbcd2272ce877fb.diff" + }, + "efcore@20d5fef": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "20d5fefef6233f65889189e7e114a674ea0bada3", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/20d5fefef6233f65889189e7e114a674ea0bada3.diff" + }, + "efcore@9141489": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "914148900ad6093b6eaf385e34efc67b62f283fd", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/914148900ad6093b6eaf385e34efc67b62f283fd.diff" + }, + "efcore@63f9baa": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "63f9baa106eb737bba2da4cd49dd14fd33fc23b6", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/63f9baa106eb737bba2da4cd49dd14fd33fc23b6.diff" + }, + "efcore@1b36259": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1b36259fae7c7c305fc70f6e8e57e5a6852b93d1", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/1b36259fae7c7c305fc70f6e8e57e5a6852b93d1.diff" + }, + "efcore@94f0b72": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "94f0b72cd66d82ae1db74cb641c6aad9d42bfa3c", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/94f0b72cd66d82ae1db74cb641c6aad9d42bfa3c.diff" + }, + "efcore@11a0a69": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "11a0a691203db84e849ab934602d1bfbf4bd6730", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/11a0a691203db84e849ab934602d1bfbf4bd6730.diff" + }, + "efcore@589a82f": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "589a82fb3c0e47313bf8c72707abdffa6774e0b5", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/589a82fb3c0e47313bf8c72707abdffa6774e0b5.diff" + }, + "efcore@35c6d03": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "35c6d03c8aae8e075f81b06aa54b9e5859f922b8", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/35c6d03c8aae8e075f81b06aa54b9e5859f922b8.diff" + }, + "efcore@b3caffb": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "b3caffb41e091cc5950abebbf414c778b7d296e7", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/b3caffb41e091cc5950abebbf414c778b7d296e7.diff" + }, + "efcore@69db2b6": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "69db2b6d0ff7076cc4cd4512b192ba2dc07676ae", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/69db2b6d0ff7076cc4cd4512b192ba2dc07676ae.diff" + }, + "efcore@82f974b": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "82f974bc1067612a6ef86a82327f78970d655a84", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/82f974bc1067612a6ef86a82327f78970d655a84.diff" + }, + "efcore@3817d73": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "3817d73e752c3d5f5d0ab9bdaf03cafd97bdaed2", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/3817d73e752c3d5f5d0ab9bdaf03cafd97bdaed2.diff" + }, + "efcore@017b6f1": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "017b6f1f0976bf59120c260c942af00220d9c987", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/017b6f1f0976bf59120c260c942af00220d9c987.diff" + }, + "efcore@45eaef0": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "45eaef017ea29a75046bfe15b76b4f2d155335c3", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/45eaef017ea29a75046bfe15b76b4f2d155335c3.diff" + }, + "efcore@a4a91fb": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a4a91fbe0aa860a4f6c379912a8348fabc9ce4c9", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/a4a91fbe0aa860a4f6c379912a8348fabc9ce4c9.diff" + }, + "efcore@3781593": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "3781593673169f93c329ae36c20530d96ffb5668", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/3781593673169f93c329ae36c20530d96ffb5668.diff" + }, + "efcore@356ecab": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "356ecab0e1429a7e36b7f7d8155a73a5d8d6fdef", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/356ecab0e1429a7e36b7f7d8155a73a5d8d6fdef.diff" + }, + "efcore@2277164": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "2277164a74b8d37b1021536657581ade5dd69a60", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/2277164a74b8d37b1021536657581ade5dd69a60.diff" + }, + "efcore@f29112a": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f29112a8f95dd80a4b5adcfaa7e6f800c7d150f2", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/f29112a8f95dd80a4b5adcfaa7e6f800c7d150f2.diff" + }, + "efcore@ecc3936": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ecc3936d55adcb162b9f97dcc19d12fb73fe5817", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/ecc3936d55adcb162b9f97dcc19d12fb73fe5817.diff" + }, + "efcore@be6a920": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "be6a9208b09b33b831d558d5ff48606db2dd0c27", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/be6a9208b09b33b831d558d5ff48606db2dd0c27.diff" + }, + "efcore@79c8ce7": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "79c8ce77076dd5cb24e96971a6ef5dd587777104", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/79c8ce77076dd5cb24e96971a6ef5dd587777104.diff" + }, + "efcore@b48ea4d": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "b48ea4d1c75372cdafb6670b0b88129847e6f10b", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/b48ea4d1c75372cdafb6670b0b88129847e6f10b.diff" + }, + "efcore@b20350a": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "b20350aa8912ee5c579d18025c3b1d601c25ce91", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/b20350aa8912ee5c579d18025c3b1d601c25ce91.diff" + }, + "efcore@92de1c1": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "92de1c13623742f1805ff524b0bdf5aa55362a2a", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/92de1c13623742f1805ff524b0bdf5aa55362a2a.diff" + }, + "efcore@31144c5": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "31144c5b106aa952cb8a9fd672c0442802a39841", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/31144c5b106aa952cb8a9fd672c0442802a39841.diff" + }, + "efcore@3a8fcc4": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "3a8fcc4844f93c49dacacc8b36768dcbd7306c0c", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/3a8fcc4844f93c49dacacc8b36768dcbd7306c0c.diff" + }, + "efcore@50d0a10": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "50d0a108b3f8db74745c8320848750417127510f", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/50d0a108b3f8db74745c8320848750417127510f.diff" + }, + "efcore@0cdfa6e": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0cdfa6e6c2c845a9ddf5f497d3c6249b0fcc1fdf", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/0cdfa6e6c2c845a9ddf5f497d3c6249b0fcc1fdf.diff" + }, + "efcore@8bf0f7f": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "8bf0f7f2a920e697fffe3c2c9945321859fb550e", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/8bf0f7f2a920e697fffe3c2c9945321859fb550e.diff" + }, + "efcore@5117a26": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5117a262f147897ef9e748e4719fda7ff89a14f5", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/5117a262f147897ef9e748e4719fda7ff89a14f5.diff" + }, + "efcore@d06927c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d06927c4b91b1c671c7a793e5cd40cabd8cde3a1", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/d06927c4b91b1c671c7a793e5cd40cabd8cde3a1.diff" + }, + "efcore@79fdc9f": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "79fdc9ff449c624ae74f4b7fa783400cf079c320", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/79fdc9ff449c624ae74f4b7fa783400cf079c320.diff" + }, + "efcore@1af4e91": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1af4e919c4c4a92d9e67a220c9ea8f6c8476ba89", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/1af4e919c4c4a92d9e67a220c9ea8f6c8476ba89.diff" + }, + "efcore@3031b80": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "3031b80b2cdcc1c64cca3aca8abf5b01c7aa8778", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/3031b80b2cdcc1c64cca3aca8abf5b01c7aa8778.diff" + }, + "efcore@397179c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "397179c2ff5efe4d9ab9f29cba03973b139ef214", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/397179c2ff5efe4d9ab9f29cba03973b139ef214.diff" + }, + "efcore@8bfecfd": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "8bfecfd8ae2af6eaec917ba6484d1c351a286dd3", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/8bfecfd8ae2af6eaec917ba6484d1c351a286dd3.diff" + }, + "efcore@3b8b5b8": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "3b8b5b8b4f12d6f0e9f098120a7f9e58d0a34051", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/3b8b5b8b4f12d6f0e9f098120a7f9e58d0a34051.diff" + }, + "efcore@39beebf": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "39beebf8fa4226d79a0e93c0f0fba00e39389469", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/39beebf8fa4226d79a0e93c0f0fba00e39389469.diff" + }, + "efcore@f1817b2": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f1817b293b233415bbc8a10e942956ee1cec96d4", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/f1817b293b233415bbc8a10e942956ee1cec96d4.diff" + }, + "efcore@41d1ffd": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "41d1ffdc536c4bfac0c177484fb378db0048c32a", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/41d1ffdc536c4bfac0c177484fb378db0048c32a.diff" + }, + "efcore@1ff287c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1ff287c0ebf17d312ce7f88f37988a13e78ea383", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/1ff287c0ebf17d312ce7f88f37988a13e78ea383.diff" + }, + "efcore@8416688": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "841668899a2848761718456ea9455a1ee40832ac", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/841668899a2848761718456ea9455a1ee40832ac.diff" + }, + "efcore@3441962": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "344196262f9c0a19a10353b6906d80798bcb1c13", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/344196262f9c0a19a10353b6906d80798bcb1c13.diff" + }, + "efcore@b2174cf": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "b2174cfaf64e90005adb5d549ed4843365dae8ed", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/b2174cfaf64e90005adb5d549ed4843365dae8ed.diff" + }, + "efcore@6f682a4": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "6f682a441428430aa1c35e4d6d4b285663932a64", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/6f682a441428430aa1c35e4d6d4b285663932a64.diff" + }, + "efcore@f9393e7": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f9393e713ec0780675b06f942a5c88756be75487", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/f9393e713ec0780675b06f942a5c88756be75487.diff" + }, + "efcore@d08003c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d08003cc909e5c5e981862730630b7ffa4901f5b", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/d08003cc909e5c5e981862730630b7ffa4901f5b.diff" + }, + "efcore@aeda6f5": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "aeda6f513a12ac5f34a18f647670e389a607499c", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/aeda6f513a12ac5f34a18f647670e389a607499c.diff" + }, + "efcore@a81cc59": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a81cc59eeb24ed59cff4c4e4611bc53e04ed3656", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/a81cc59eeb24ed59cff4c4e4611bc53e04ed3656.diff" + }, + "efcore@c5a0f6b": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "c5a0f6b0fd7d694de6aff85463c06a0b92f4975e", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/c5a0f6b0fd7d694de6aff85463c06a0b92f4975e.diff" + }, + "efcore@9817145": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9817145b2914a465dcfea1f5ec985949e473fd1f", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/9817145b2914a465dcfea1f5ec985949e473fd1f.diff" + }, + "efcore@97db209": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "97db209242c1b8c704ca2a98a68fff8026b0a0de", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/97db209242c1b8c704ca2a98a68fff8026b0a0de.diff" + }, + "efcore@f8d2760": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f8d276066cfb1fa6a7542564e91050863d264aad", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/f8d276066cfb1fa6a7542564e91050863d264aad.diff" + }, + "efcore@68bb873": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "68bb8733921ea7a2243f780788147a40a21b0fd1", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/68bb8733921ea7a2243f780788147a40a21b0fd1.diff" + }, + "efcore@7f484b1": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "7f484b16c0260143b2b51d2afeb94941dde1a8f5", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/7f484b16c0260143b2b51d2afeb94941dde1a8f5.diff" + }, + "efcore@30dca55": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "30dca55b57c4c2dcfc301acdcb1fca6010397d95", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/30dca55b57c4c2dcfc301acdcb1fca6010397d95.diff" + }, + "efcore@ba4ebfe": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ba4ebfead3bc91eb1e1fe341a5727618435a1298", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/ba4ebfead3bc91eb1e1fe341a5727618435a1298.diff" + }, + "efcore@365cbc3": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "365cbc30b1b74ac191fe3adeddc0701dade44b6b", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/365cbc30b1b74ac191fe3adeddc0701dade44b6b.diff" + }, + "efcore@bfad1f2": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "bfad1f247175252b02f017831b68ee2c6150cb04", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/bfad1f247175252b02f017831b68ee2c6150cb04.diff" + }, + "efcore@0842c55": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0842c557655bbcdfd1b745abebdfce7abca38fc2", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/0842c557655bbcdfd1b745abebdfce7abca38fc2.diff" + }, + "efcore@3445554": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "34455545b3880af6a2461ff468e10b62b001bb86", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/34455545b3880af6a2461ff468e10b62b001bb86.diff" + }, + "emsdk@62354f3": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "62354f35260dcf1c6a47ba743abde34823e4bb8b", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/62354f35260dcf1c6a47ba743abde34823e4bb8b.diff" + }, + "emsdk@8ac03c2": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8ac03c25b4d1851006496c701ad8e3c85061928b", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/8ac03c25b4d1851006496c701ad8e3c85061928b.diff" + }, + "emsdk@394c283": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "394c283e513008b3b6a08a7056cbf135ef88852b", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/394c283e513008b3b6a08a7056cbf135ef88852b.diff" + }, + "emsdk@1adfd1f": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1adfd1f97abbcfe01542771ff83fb211a8888393", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/1adfd1f97abbcfe01542771ff83fb211a8888393.diff" + }, + "emsdk@5ff7edc": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5ff7edcc22b3086ea8ac470156f87aa663b7703e", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/5ff7edcc22b3086ea8ac470156f87aa663b7703e.diff" + }, + "emsdk@afe7a79": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "afe7a7992f15336bc89699fba33e6d6babae4ccb", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/afe7a7992f15336bc89699fba33e6d6babae4ccb.diff" + }, + "emsdk@9994979": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "99949795bb2c3e4fa1d1f0e6428e748f60f9af26", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/99949795bb2c3e4fa1d1f0e6428e748f60f9af26.diff" + }, + "emsdk@20e1677": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "20e16771c7b330c4e2747451a0ab8f618b1ffcea", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/20e16771c7b330c4e2747451a0ab8f618b1ffcea.diff" + }, + "emsdk@1cf2cba": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1cf2cba15a02dd26cef0de36d0ec45bdf8e9f0c5", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/1cf2cba15a02dd26cef0de36d0ec45bdf8e9f0c5.diff" + }, + "emsdk@4c20000": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4c20000439a080d8e0256c3fee606a0cd7c752f6", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/4c20000439a080d8e0256c3fee606a0cd7c752f6.diff" + }, + "emsdk@f801db5": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f801db502d095b33c51145089351a45b42b9579f", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/f801db502d095b33c51145089351a45b42b9579f.diff" + }, + "emsdk@062d1d8": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "062d1d875fab62bf4eb558138405ce993a989f3e", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/062d1d875fab62bf4eb558138405ce993a989f3e.diff" + }, + "emsdk@113a4b4": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "113a4b46ad5ff9ebd5cb675643a4f22435412950", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/113a4b46ad5ff9ebd5cb675643a4f22435412950.diff" + }, + "emsdk@90915b7": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "90915b7a5a7caadb380a602acaea650d1a73d3df", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/90915b7a5a7caadb380a602acaea650d1a73d3df.diff" + }, + "emsdk@08d0c10": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "08d0c101f25790181c1a56bd76295f587bf7115b", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/08d0c101f25790181c1a56bd76295f587bf7115b.diff" + }, + "emsdk@ee4b2f7": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ee4b2f7662f46e409d2beba0740c0f03c40789d1", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/ee4b2f7662f46e409d2beba0740c0f03c40789d1.diff" + }, + "emsdk@5a0edd4": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5a0edd4ac5cc3b75ebb7b4f262ab7026f7f9d89b", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/5a0edd4ac5cc3b75ebb7b4f262ab7026f7f9d89b.diff" + }, + "emsdk@112bfc2": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "112bfc2b53410c502f5eb74d8dea80f216e2acb6", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/112bfc2b53410c502f5eb74d8dea80f216e2acb6.diff" + }, + "emsdk@22404dd": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "22404ddedcab4587e499adc41fae4a3cff36cfce", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/22404ddedcab4587e499adc41fae4a3cff36cfce.diff" + }, + "emsdk@d3326da": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d3326da7088849767306ce41ebe388b8671b8b9b", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/d3326da7088849767306ce41ebe388b8671b8b9b.diff" + }, + "emsdk@2a18dd9": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2a18dd982536d9a0f8099fbab71860ef1b7060a5", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/2a18dd982536d9a0f8099fbab71860ef1b7060a5.diff" + }, + "emsdk@79dafee": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "79dafee2d917cf72cec493cd382809e10cda3018", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/79dafee2d917cf72cec493cd382809e10cda3018.diff" + }, + "emsdk@b06720c": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b06720c05aa4a0f044cdbb099551bc8fb93532d9", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/b06720c05aa4a0f044cdbb099551bc8fb93532d9.diff" + }, + "emsdk@2ac1a6e": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2ac1a6e9fe35dd390956a0510ce6990aa861a202", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/2ac1a6e9fe35dd390956a0510ce6990aa861a202.diff" + }, + "emsdk@c70f075": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c70f075671bf19f8e4036fa53cf456e13ebbf170", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/c70f075671bf19f8e4036fa53cf456e13ebbf170.diff" + }, + "emsdk@776fcb4": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "776fcb4606527b8f608452b1a4bf1ea676d1c92d", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/776fcb4606527b8f608452b1a4bf1ea676d1c92d.diff" + }, + "emsdk@ef73528": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ef735282795de71b7124d356202751f999bf42c2", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/ef735282795de71b7124d356202751f999bf42c2.diff" + }, + "emsdk@3e71182": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3e71182dbe7beab5026ac047feda0f050f3df4f1", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/3e71182dbe7beab5026ac047feda0f050f3df4f1.diff" + }, + "emsdk@bc4c4fb": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "bc4c4fbbd8dc0be5b07ee4a9e44da940c0b655be", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/bc4c4fbbd8dc0be5b07ee4a9e44da940c0b655be.diff" + }, + "emsdk@c0a0f5f": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c0a0f5f2b29cda7aaa2f61b89661f1dc212938e5", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/c0a0f5f2b29cda7aaa2f61b89661f1dc212938e5.diff" + }, + "emsdk@35f3868": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "35f3868067a19b828ec26536858940d2e293d144", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/35f3868067a19b828ec26536858940d2e293d144.diff" + }, + "emsdk@0426e0c": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0426e0c7db6ed0769b4e8748223f54b7c5ccff04", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/0426e0c7db6ed0769b4e8748223f54b7c5ccff04.diff" + }, + "emsdk@41bf542": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "41bf542514fcfa91f15dbeb4ce450f6079f941e8", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/41bf542514fcfa91f15dbeb4ce450f6079f941e8.diff" + }, + "emsdk@506ea9f": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "506ea9f39d14e8ddba87e4dee4eb7b56295bff29", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/506ea9f39d14e8ddba87e4dee4eb7b56295bff29.diff" + }, + "fsharp@1890128": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "189012832158c3046f729f34f10dade9e4305707", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/189012832158c3046f729f34f10dade9e4305707.diff" + }, + "fsharp@87dc60c": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "87dc60c6661a80ed32ccd52730cb0cff9c6059fe", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/87dc60c6661a80ed32ccd52730cb0cff9c6059fe.diff" + }, + "fsharp@1c0cc5e": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "1c0cc5e781f83565c281be9d4a2ae932bc25868e", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/1c0cc5e781f83565c281be9d4a2ae932bc25868e.diff" + }, + "fsharp@761162d": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "761162d808de3a3cb05354a2d99e430a5402c802", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/761162d808de3a3cb05354a2d99e430a5402c802.diff" + }, + "fsharp@6479611": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "64796117bf609b752495a9cd005695e7f3aba5ed", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/64796117bf609b752495a9cd005695e7f3aba5ed.diff" + }, + "fsharp@966cb0c": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "966cb0cea91d07b8f8d6ea365b94636b9e2bfda2", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/966cb0cea91d07b8f8d6ea365b94636b9e2bfda2.diff" + }, + "fsharp@8b46242": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "8b462422a8856822bdc937958baf1938696cc65a", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/8b462422a8856822bdc937958baf1938696cc65a.diff" + }, + "fsharp@68373f5": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "68373f5bb3aec4c2364b344d3d01981e5f6ba876", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/68373f5bb3aec4c2364b344d3d01981e5f6ba876.diff" + }, + "fsharp@635a57e": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "635a57ec6fded32b2dbe5b36e2d3c527d71b7039", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/635a57ec6fded32b2dbe5b36e2d3c527d71b7039.diff" + }, + "fsharp@3b1218b": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "3b1218bfe5e73df49f7d8892d234fa2eef07bc8b", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/3b1218bfe5e73df49f7d8892d234fa2eef07bc8b.diff" + }, + "fsharp@56d1363": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "56d1363949e3d2c979c063ae9ce245d16f449404", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/56d1363949e3d2c979c063ae9ce245d16f449404.diff" + }, + "fsharp@66c4f0f": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "66c4f0f765891a49142e38b086d15f671c2c2c21", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/66c4f0f765891a49142e38b086d15f671c2c2c21.diff" + }, + "fsharp@3f33dbb": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "3f33dbb07e817f916beaa433aa87930ba99d2d92", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/3f33dbb07e817f916beaa433aa87930ba99d2d92.diff" + }, + "fsharp@2bfd488": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "2bfd4883d0e7ac79930ada96b862173207c8c58c", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/2bfd4883d0e7ac79930ada96b862173207c8c58c.diff" + }, + "fsharp@afd9294": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "afd9294a86ab64070a148f3e465d8d591502bbd2", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/afd9294a86ab64070a148f3e465d8d591502bbd2.diff" + }, + "fsharp@6f1cc37": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "6f1cc377f42cdbf8f4829b29e0d4a0a3516da3fa", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/6f1cc377f42cdbf8f4829b29e0d4a0a3516da3fa.diff" + }, + "fsharp@c80d142": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "c80d142a24027fd2933e22649f53639907bf7553", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/c80d142a24027fd2933e22649f53639907bf7553.diff" + }, + "fsharp@a5baeaa": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "a5baeaa0b18df03423bc14ede9d1234fff46e511", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/a5baeaa0b18df03423bc14ede9d1234fff46e511.diff" + }, + "fsharp@5111aeb": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "5111aebe02fe8940eb792e553349780c19735203", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/5111aebe02fe8940eb792e553349780c19735203.diff" + }, + "fsharp@a581d51": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "a581d5135afe598e533b67b3f2030076dc1663b6", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/a581d5135afe598e533b67b3f2030076dc1663b6.diff" + }, + "fsharp@6609928": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "66099288ae991b277ccb8f89b10324ff43fc7c98", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/66099288ae991b277ccb8f89b10324ff43fc7c98.diff" + }, + "fsharp@7424154": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "7424154245452ff1d813929c2b88476ede9ab299", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/7424154245452ff1d813929c2b88476ede9ab299.diff" + }, + "fsharp@ab1f6ce": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "ab1f6ceaaec997d2854ac1c07a6c0f107675d95c", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/ab1f6ceaaec997d2854ac1c07a6c0f107675d95c.diff" + }, + "fsharp@4b36640": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "4b3664004ca689e0e4adb3fceadcb60bccb616d9", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/4b3664004ca689e0e4adb3fceadcb60bccb616d9.diff" + }, + "fsharp@e199206": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "e1992062f6beaa6b28764baa025df83222b88553", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/e1992062f6beaa6b28764baa025df83222b88553.diff" + }, + "fsharp@66beb38": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "66beb3879399b0baa26d90117f5eedb218f5bc84", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/66beb3879399b0baa26d90117f5eedb218f5bc84.diff" + }, + "fsharp@7981cb5": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "7981cb5fcd56382b012299e0420ba19a26b1411c", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/7981cb5fcd56382b012299e0420ba19a26b1411c.diff" + }, + "fsharp@e6f00ee": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "e6f00ee0f621f89dbaa129f1afffb585fc82fd3b", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/e6f00ee0f621f89dbaa129f1afffb585fc82fd3b.diff" + }, + "fsharp@b54ff0a": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "b54ff0ab407514caa4cff5414302c3da43747629", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/b54ff0ab407514caa4cff5414302c3da43747629.diff" + }, + "fsharp@7a075f3": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "7a075f331517235d5c097cab2830923f529b13d7", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/7a075f331517235d5c097cab2830923f529b13d7.diff" + }, + "fsharp@20aa5a4": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "20aa5a4fa92e61f62157b3d0e515c3346cacc0fc", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/20aa5a4fa92e61f62157b3d0e515c3346cacc0fc.diff" + }, + "fsharp@71c0951": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "71c09517f5f60596dfa0ae50b6e7e40eb52a0d16", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/71c09517f5f60596dfa0ae50b6e7e40eb52a0d16.diff" + }, + "fsharp@4a7df88": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "4a7df888e4eb96d220fb8174d9f91d27bf348db1", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/4a7df888e4eb96d220fb8174d9f91d27bf348db1.diff" + }, + "fsharp@1dd1db0": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "1dd1db0d7264ab4b6543a93a90e347ba6514c1a3", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/1dd1db0d7264ab4b6543a93a90e347ba6514c1a3.diff" + }, + "fsharp@1b1deba": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "1b1debafe6f023849e429eb500d42f7edce58017", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/1b1debafe6f023849e429eb500d42f7edce58017.diff" + }, + "fsharp@5a0255a": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "5a0255a103c4d568fbfe7d5f94ca70ec9c42cfac", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/5a0255a103c4d568fbfe7d5f94ca70ec9c42cfac.diff" + }, + "fsharp@3f5a346": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "3f5a346b1058c0f13e5632b66396169726e94ed6", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/3f5a346b1058c0f13e5632b66396169726e94ed6.diff" + }, + "fsharp@552ef9d": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "552ef9da3db980667b05119315b9783a38c3c975", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/552ef9da3db980667b05119315b9783a38c3c975.diff" + }, + "fsharp@487aa8b": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "487aa8b58e3b6aefb9f40a4c5f3b83fdde14aa88", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/487aa8b58e3b6aefb9f40a4c5f3b83fdde14aa88.diff" + }, + "fsharp@67a56a4": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "67a56a4d6ed5123780f8a4c01fe7eaa615187ec0", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/67a56a4d6ed5123780f8a4c01fe7eaa615187ec0.diff" + }, + "fsharp@afdccf9": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "afdccf98e7b0b7d68a49865bf77d083586ca36d5", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/afdccf98e7b0b7d68a49865bf77d083586ca36d5.diff" + }, + "fsharp@6f6440a": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "6f6440a943bc8a9439c282ce84acf4e9d06849ae", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/6f6440a943bc8a9439c282ce84acf4e9d06849ae.diff" + }, + "fsharp@f80d20f": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "f80d20f8858929bcd9cb9c7143526c46510c4aee", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/f80d20f8858929bcd9cb9c7143526c46510c4aee.diff" + }, + "fsharp@0a710a8": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "0a710a84f4f070c1640335ba30048e85ee3f2e65", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/0a710a84f4f070c1640335ba30048e85ee3f2e65.diff" + }, + "fsharp@4a2c294": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "4a2c294ce1241ccfe2e1fe350ae0ad03c487e8b5", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/4a2c294ce1241ccfe2e1fe350ae0ad03c487e8b5.diff" + }, + "fsharp@ff81858": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "ff81858ea7eaa4631e1d1ad6aa4f61d7b8967139", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/ff81858ea7eaa4631e1d1ad6aa4f61d7b8967139.diff" + }, + "fsharp@f00319f": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "f00319f6dc1550d397c4f054def741abe40e2aee", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/f00319f6dc1550d397c4f054def741abe40e2aee.diff" + }, + "fsharp@0fe04d0": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "0fe04d056dc85913059184c24a5ff4ee5b8c0895", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/0fe04d056dc85913059184c24a5ff4ee5b8c0895.diff" + }, + "fsharp@9c01f26": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "9c01f26f2a9c7120c6b2e5674dab1c47d8c15bad", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/9c01f26f2a9c7120c6b2e5674dab1c47d8c15bad.diff" + }, + "fsharp@6908bca": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "6908bca2cb9b6aaf9eac5fad0ee3f4916f2ef654", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/6908bca2cb9b6aaf9eac5fad0ee3f4916f2ef654.diff" + }, + "fsharp@d04f46f": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "d04f46f4d3c2db8ee8dcd050dc56c6987f445e60", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/d04f46f4d3c2db8ee8dcd050dc56c6987f445e60.diff" + }, + "fsharp@be84684": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "be84684d803d92d063b826bc9124acc41170e732", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/be84684d803d92d063b826bc9124acc41170e732.diff" + }, + "fsharp@fdea689": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "fdea689730fdbc2d8648cd8f034a2667baedd037", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/fdea689730fdbc2d8648cd8f034a2667baedd037.diff" + }, + "fsharp@38f78a9": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "38f78a9889a48d39b01044f5b543e956d5f33890", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/38f78a9889a48d39b01044f5b543e956d5f33890.diff" + }, + "fsharp@64e384d": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "64e384dee7c8bedb51a70b924e4475373921e5dc", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/64e384dee7c8bedb51a70b924e4475373921e5dc.diff" + }, + "fsharp@38b455d": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "38b455d2dd853638659f5995dca5727a625435cb", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/38b455d2dd853638659f5995dca5727a625435cb.diff" + }, + "fsharp@59581dc": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "59581dcbfdac984a048979d1d8d912a61841b1fe", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/59581dcbfdac984a048979d1d8d912a61841b1fe.diff" + }, + "fsharp@f915353": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "f91535329a8d07d8873ac953de122eec79ad66aa", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/f91535329a8d07d8873ac953de122eec79ad66aa.diff" + }, + "fsharp@9e37b2c": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "9e37b2cff2c46b505fb54ae27730caab6507faef", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/9e37b2cff2c46b505fb54ae27730caab6507faef.diff" + }, + "fsharp@1cd0ca0": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "1cd0ca0c3d7afae13ae861c0ecc836efee881c59", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/1cd0ca0c3d7afae13ae861c0ecc836efee881c59.diff" + }, + "fsharp@5ee6d09": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "5ee6d09413808696f763b4e2f94d423e990bc516", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/5ee6d09413808696f763b4e2f94d423e990bc516.diff" + }, + "fsharp@632a0ab": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "632a0ab8daf07f3a331a01b3469c693444367f46", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/632a0ab8daf07f3a331a01b3469c693444367f46.diff" + }, + "fsharp@fb1ca7e": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "fb1ca7e07e3fe174a8c2a2437ad1683318a4a87b", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/fb1ca7e07e3fe174a8c2a2437ad1683318a4a87b.diff" + }, + "fsharp@0db49dd": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "0db49dd664638b225d76b38b16708bec8073e66d", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/0db49dd664638b225d76b38b16708bec8073e66d.diff" + }, + "fsharp@251aaf2": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "251aaf25da198ded2e520f6d54f98e7d4475fe2f", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/251aaf25da198ded2e520f6d54f98e7d4475fe2f.diff" + }, + "msbuild@28e6097": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "28e6097a5fb37178a0392f48e8dfc613cb5b7117", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/28e6097a5fb37178a0392f48e8dfc613cb5b7117.diff" + }, + "msbuild@885e1bb": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "885e1bba46ccb692a5e5ac3d0c2de3d977d8a2d8", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/885e1bba46ccb692a5e5ac3d0c2de3d977d8a2d8.diff" + }, + "msbuild@6fdc193": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "6fdc193fc1175af3e3257f9c773871a24ee7fad6", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/6fdc193fc1175af3e3257f9c773871a24ee7fad6.diff" + }, + "msbuild@9cc6c63": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "9cc6c63aea770c250c3a6c1838e785ab4954fc1e", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/9cc6c63aea770c250c3a6c1838e785ab4954fc1e.diff" + }, + "msbuild@1a818e7": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "1a818e7b93b44788d5ca0f3967c366159b14777b", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/1a818e7b93b44788d5ca0f3967c366159b14777b.diff" + }, + "msbuild@a2c1035": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "a2c1035b63dac965b6f0787c486c52b08202a44e", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/a2c1035b63dac965b6f0787c486c52b08202a44e.diff" + }, + "msbuild@b781c76": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "b781c76e29a52dac38836f98328cee9737993de9", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/b781c76e29a52dac38836f98328cee9737993de9.diff" + }, + "msbuild@c48fb46": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "c48fb46ac1a2cc22ed2605b58ea04e3347a27b9f", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/c48fb46ac1a2cc22ed2605b58ea04e3347a27b9f.diff" + }, + "msbuild@326f6a7": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "326f6a7ab21090d2938f4c791928056c007afc7e", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/326f6a7ab21090d2938f4c791928056c007afc7e.diff" + }, + "msbuild@b8f5ea0": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "b8f5ea02a1a54a2bb3409909d79751da601c9bf1", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/b8f5ea02a1a54a2bb3409909d79751da601c9bf1.diff" + }, + "msbuild@ab7dbb6": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "ab7dbb6fd2eaa55470da996a1c508fe72949fa56", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/ab7dbb6fd2eaa55470da996a1c508fe72949fa56.diff" + }, + "msbuild@5ac8ab0": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "5ac8ab02e5bc7243327e98282a87f1962243f0cb", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/5ac8ab02e5bc7243327e98282a87f1962243f0cb.diff" + }, + "msbuild@414f0ac": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "414f0acf7486ff8b4887ddbba5717b030c2f92a3", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/414f0acf7486ff8b4887ddbba5717b030c2f92a3.diff" + }, + "msbuild@074bba0": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "074bba0ef36d6386e022c27a37a8dc61372eea37", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/074bba0ef36d6386e022c27a37a8dc61372eea37.diff" + }, + "msbuild@77c8e1f": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "77c8e1f60c451dcd1267200d870c265c93524bd9", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/77c8e1f60c451dcd1267200d870c265c93524bd9.diff" + }, + "msbuild@ec66ab6": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "ec66ab6f7bacb4614826c7808aa16ad388604cb5", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/ec66ab6f7bacb4614826c7808aa16ad388604cb5.diff" + }, + "msbuild@7d3313c": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "7d3313c23556427139a4edb33418783d52fe3c06", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/7d3313c23556427139a4edb33418783d52fe3c06.diff" + }, + "msbuild@ac21192": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "ac211928a0181e2374412cab0832a1a11c40d257", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/ac211928a0181e2374412cab0832a1a11c40d257.diff" + }, + "msbuild@98231a0": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "98231a0f9d8ee91c0a974d20375d17708958a598", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/98231a0f9d8ee91c0a974d20375d17708958a598.diff" + }, + "msbuild@c8011cb": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "c8011cb094504f903a73a2e7d690faf2f64798fb", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/c8011cb094504f903a73a2e7d690faf2f64798fb.diff" + }, + "msbuild@8b542c4": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "8b542c432904d460d7e1ef9b0ca5d6346e9fa79a", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/8b542c432904d460d7e1ef9b0ca5d6346e9fa79a.diff" + }, + "msbuild@4b59b45": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "4b59b45a52a9196852cb1a5184e10bc79ecf8926", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/4b59b45a52a9196852cb1a5184e10bc79ecf8926.diff" + }, + "msbuild@9f3a7a5": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "9f3a7a56583f496a9713a0da2381194a4fee58d3", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/9f3a7a56583f496a9713a0da2381194a4fee58d3.diff" + }, + "msbuild@3477e49": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "3477e49ea400d3fcae00dad9370b20fa88dfd86a", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/3477e49ea400d3fcae00dad9370b20fa88dfd86a.diff" + }, + "msbuild@b481c50": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "b481c50980677f430d6f617b3093969267c09713", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/b481c50980677f430d6f617b3093969267c09713.diff" + }, + "msbuild@b93059c": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "b93059caee3e3eef947a863966545b65ff8b4834", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/b93059caee3e3eef947a863966545b65ff8b4834.diff" + }, + "msbuild@399d597": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "399d597f7499d230f71c809ebd659538deed6246", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/399d597f7499d230f71c809ebd659538deed6246.diff" + }, + "msbuild@676f32c": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "676f32c6c3099efbfcecc313b4f8e91325006ede", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/676f32c6c3099efbfcecc313b4f8e91325006ede.diff" + }, + "msbuild@9d58c2f": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "9d58c2fa848d9048e4d947c705c25529af0ea087", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/9d58c2fa848d9048e4d947c705c25529af0ea087.diff" + }, + "msbuild@0b2773e": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "0b2773ead1e5f53eee687786dee46c168a876b56", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/0b2773ead1e5f53eee687786dee46c168a876b56.diff" + }, + "msbuild@986a951": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "986a951032a2461db8098ae0d57a53a4e27f49a4", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/986a951032a2461db8098ae0d57a53a4e27f49a4.diff" + }, + "msbuild@6500dd2": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "6500dd278aed2749db445942790934e3c0d8c729", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/6500dd278aed2749db445942790934e3c0d8c729.diff" + }, + "msbuild@bf9f757": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "bf9f75751faf2a2686214b8dc42072013f0eb3f3", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/bf9f75751faf2a2686214b8dc42072013f0eb3f3.diff" + }, + "msbuild@fee9971": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "fee99710e8eebe315804cb99e0f017cac8fcb3b4", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/fee99710e8eebe315804cb99e0f017cac8fcb3b4.diff" + }, + "msbuild@0655967": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "06559675ae88a402186b5f5df7f0336f652bce06", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/06559675ae88a402186b5f5df7f0336f652bce06.diff" + }, + "msbuild@fd46d4a": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "fd46d4abc314a054dc91b2690ae23c012771bf3b", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/fd46d4abc314a054dc91b2690ae23c012771bf3b.diff" + }, + "msbuild@ef957b7": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "ef957b7daa9e0ea5339305953e2c1fdefeb8a14c", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/ef957b7daa9e0ea5339305953e2c1fdefeb8a14c.diff" + }, + "msbuild@6fa57bb": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "6fa57bb29bf7f21419daa099d06b19c727b53dd1", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/6fa57bb29bf7f21419daa099d06b19c727b53dd1.diff" + }, + "msbuild@e2b57d0": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "e2b57d063337acb396de02fc0c3909293d0c9dbd", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/e2b57d063337acb396de02fc0c3909293d0c9dbd.diff" + }, + "msbuild@6a4c26f": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "6a4c26f403d07cadd207d027005e7f5f74fd3830", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/6a4c26f403d07cadd207d027005e7f5f74fd3830.diff" + }, + "msbuild@7d73e8e": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "7d73e8e9074fe9a4420e38cd22d45645b28a11f7", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/7d73e8e9074fe9a4420e38cd22d45645b28a11f7.diff" + }, + "msbuild@8cee1da": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "8cee1da9a6b89b6779b31e4c542bd2ae7a841471", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/8cee1da9a6b89b6779b31e4c542bd2ae7a841471.diff" + }, + "msbuild@df3c977": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "df3c977425e16a17b54b80ec687f312afea7ba81", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/df3c977425e16a17b54b80ec687f312afea7ba81.diff" + }, + "msbuild@aac4696": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "aac4696915ee1d6f7bba62824a693ecbfe912fea", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/aac4696915ee1d6f7bba62824a693ecbfe912fea.diff" + }, + "msbuild@5215c7e": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "5215c7eb64194afd88c4bbea0a38df1dddc0898e", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/5215c7eb64194afd88c4bbea0a38df1dddc0898e.diff" + }, + "msbuild@4ca2875": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "4ca2875effff39aa479ba01125a969ae6ed07504", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/4ca2875effff39aa479ba01125a969ae6ed07504.diff" + }, + "msbuild@337c123": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "337c1237984c11add49298f8682b1ab1a3a7db12", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/337c1237984c11add49298f8682b1ab1a3a7db12.diff" + }, + "msbuild@1cbd743": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "1cbd743941a65106daa31974d0236dad55b72c14", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/1cbd743941a65106daa31974d0236dad55b72c14.diff" + }, + "msbuild@1f15113": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "1f15113a63aca3fa28c03b9db6df3c7cc0c43c77", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/1f15113a63aca3fa28c03b9db6df3c7cc0c43c77.diff" + }, + "msbuild@72d89ab": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "72d89ab5c80b2154eb8985f542cde6a690d64fb1", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/72d89ab5c80b2154eb8985f542cde6a690d64fb1.diff" + }, + "msbuild@f2213b0": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "f2213b00860c0835fd1f20e4d0ba87857f468e24", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/f2213b00860c0835fd1f20e4d0ba87857f468e24.diff" + }, + "msbuild@1688a71": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "1688a711f9ec4e84cc001f8d2cdf03fd30c2cd3b", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/1688a711f9ec4e84cc001f8d2cdf03fd30c2cd3b.diff" + }, + "msbuild@0bd8bb3": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "0bd8bb358d86af024d4adfed592014343f21968b", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/0bd8bb358d86af024d4adfed592014343f21968b.diff" + }, + "msbuild@52f1e9d": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "52f1e9d2d70daaa89d020376839ddef20a24c774", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/52f1e9d2d70daaa89d020376839ddef20a24c774.diff" + }, + "msbuild@18baac8": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "18baac818bc0f26c21450f07265b6c79394beade", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/18baac818bc0f26c21450f07265b6c79394beade.diff" + }, + "msbuild@17e89c7": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "17e89c7e6a534e2ae5331232782d09b00bbc7ae9", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/17e89c7e6a534e2ae5331232782d09b00bbc7ae9.diff" + }, + "msbuild@cb266c7": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "cb266c792d2f1d2b18b7a1695e073cb8fa79e7d5", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/cb266c792d2f1d2b18b7a1695e073cb8fa79e7d5.diff" + }, + "msbuild@2a728a3": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "2a728a3f6d7fd640c3497c0506944bcfcb29ce05", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/2a728a3f6d7fd640c3497c0506944bcfcb29ce05.diff" + }, + "msbuild@32d344d": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "32d344d3244dae8c22c7d3429fa49f97d405c34c", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/32d344d3244dae8c22c7d3429fa49f97d405c34c.diff" + }, + "msbuild@960ca3c": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "960ca3c6de4f31772372166bfb2c11ed4850fe47", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/960ca3c6de4f31772372166bfb2c11ed4850fe47.diff" + }, + "msbuild@6bde8dc": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "6bde8dc7139b87d0034c6bd2c5cb2d1320dd17f7", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/6bde8dc7139b87d0034c6bd2c5cb2d1320dd17f7.diff" + }, + "msbuild@8d5ad98": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "8d5ad98986a55aeaa1a19b22f56544fa53375082", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/8d5ad98986a55aeaa1a19b22f56544fa53375082.diff" + }, + "msbuild@673ef31": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "673ef312c9a101c3303a917bd896529bb481c5af", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/673ef312c9a101c3303a917bd896529bb481c5af.diff" + }, + "msbuild@b717f6f": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "b717f6f704d23ae4d7d7770b06174ef9df2d0b9c", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/b717f6f704d23ae4d7d7770b06174ef9df2d0b9c.diff" + }, + "msbuild@05668ef": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "05668efeb9eba3bfaddb6ffa176b1f0ca69b7c26", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/05668efeb9eba3bfaddb6ffa176b1f0ca69b7c26.diff" + }, + "msbuild@82c3923": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "82c39230b22cba0703bc8054597ee51c72c992ce", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/82c39230b22cba0703bc8054597ee51c72c992ce.diff" + }, + "msbuild@6e04068": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "6e04068ff025bc78202114fa00ecb4c54b909b3c", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/6e04068ff025bc78202114fa00ecb4c54b909b3c.diff" + }, + "msbuild@dfe5370": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "dfe53707a4d9caf08db0235112e5f4bcd9302d65", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/dfe53707a4d9caf08db0235112e5f4bcd9302d65.diff" + }, + "msbuild@5071b11": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "5071b11439964a74583693723fc0db70405e30a1", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/5071b11439964a74583693723fc0db70405e30a1.diff" + }, + "msbuild@ec15050": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "ec150504ad686b826eae50cd9357972a8d4e84b3", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/ec150504ad686b826eae50cd9357972a8d4e84b3.diff" + }, + "msbuild@6c499a7": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "6c499a72be37b21dbc32e8b03685aeec3092f599", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/6c499a72be37b21dbc32e8b03685aeec3092f599.diff" + }, + "msbuild@37cc8b7": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "37cc8b7fb0576239595d71de4eeb98604d8c4a92", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/37cc8b7fb0576239595d71de4eeb98604d8c4a92.diff" + }, + "msbuild@168763b": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "168763bdf8e2ed0722471a325ae420360401d069", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/168763bdf8e2ed0722471a325ae420360401d069.diff" + }, + "msbuild@d84a0dc": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "d84a0dc9f7cfcfe95cd1d594bf27edb73fdc2edf", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/d84a0dc9f7cfcfe95cd1d594bf27edb73fdc2edf.diff" + }, + "msbuild@1b923e2": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "1b923e2e8344af9183a26c2f4bd5ddf757c7a344", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/1b923e2e8344af9183a26c2f4bd5ddf757c7a344.diff" + }, + "msbuild@0f7f8dd": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "0f7f8dd1e6f0f8a5cac5e41b53c6f41436e41718", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/0f7f8dd1e6f0f8a5cac5e41b53c6f41436e41718.diff" + }, + "msbuild@ce6d7a5": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "ce6d7a5bb2bd69ac88b7b1683e47eccb72855795", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/ce6d7a5bb2bd69ac88b7b1683e47eccb72855795.diff" + }, + "msbuild@5065de5": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "5065de527bc5c8ae1d98c7bd229de643ec2124cc", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/5065de527bc5c8ae1d98c7bd229de643ec2124cc.diff" + }, + "msbuild@db5eca3": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "db5eca3d0f2c02edc7caf5ceb64ee01547e360b5", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/db5eca3d0f2c02edc7caf5ceb64ee01547e360b5.diff" + }, + "msbuild@161d626": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "161d62626cacbca6656e03e11e22571fb313f10d", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/161d62626cacbca6656e03e11e22571fb313f10d.diff" + }, + "msbuild@ee7d635": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "ee7d635c3c4db1eba47585cdf211e46a740aeb06", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/ee7d635c3c4db1eba47585cdf211e46a740aeb06.diff" + }, + "msbuild@9ff77d7": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "9ff77d728e271cb019d5478d7d5ea038c1481cb5", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/9ff77d728e271cb019d5478d7d5ea038c1481cb5.diff" + }, + "msbuild@fa130f6": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "fa130f6afb038842b1eca1934ac1e9ce3f5a3b39", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/fa130f6afb038842b1eca1934ac1e9ce3f5a3b39.diff" + }, + "msbuild@66645d8": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "66645d843376a82a36c67c8535689a991c531d02", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/66645d843376a82a36c67c8535689a991c531d02.diff" + }, + "msbuild@f851364": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "f85136446c600ea9818d588d942c0ae9f2dccbed", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/f85136446c600ea9818d588d942c0ae9f2dccbed.diff" + }, + "msbuild@4fde89a": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "4fde89a8519bc2ddb04078a82a2082a7071cbfb7", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/4fde89a8519bc2ddb04078a82a2082a7071cbfb7.diff" + }, + "msbuild@8a330c4": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "8a330c4406f03bafa3006d1e1213ec5c62252640", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/8a330c4406f03bafa3006d1e1213ec5c62252640.diff" + }, + "msbuild@d34fb86": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "d34fb8643d3c0ab318245b62398660d9c81aee68", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/d34fb8643d3c0ab318245b62398660d9c81aee68.diff" + }, + "msbuild@926e304": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "926e3049c39731c9614015609923315dece78ddb", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/926e3049c39731c9614015609923315dece78ddb.diff" + }, + "nuget-client@88c27a6": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "88c27a6caf1124db7a5f21c485457db83d02cca7", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/88c27a6caf1124db7a5f21c485457db83d02cca7.diff" + }, + "nuget-client@f826ad4": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "f826ad4d9dd1893527a93c78f83630ba9cfe75e1", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/f826ad4d9dd1893527a93c78f83630ba9cfe75e1.diff" + }, + "nuget-client@1158132": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "115813246d3f60f133e2d58fc7240c1c98f8a279", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/115813246d3f60f133e2d58fc7240c1c98f8a279.diff" + }, + "nuget-client@d4425db": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "d4425db531b7bd34d4d7cb19a7e9c65fbcf4705b", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/d4425db531b7bd34d4d7cb19a7e9c65fbcf4705b.diff" + }, + "nuget-client@c041177": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "c04117726d78f94966f0dfc85004c52842a05d66", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/c04117726d78f94966f0dfc85004c52842a05d66.diff" + }, + "nuget-client@2ba46c4": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "2ba46c449e088398864187201125a57c3dde1cd6", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/2ba46c449e088398864187201125a57c3dde1cd6.diff" + }, + "nuget-client@76b9210": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "76b921046f03a1e4e269603ae72d444c73ed6277", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/76b921046f03a1e4e269603ae72d444c73ed6277.diff" + }, + "nuget-client@a561a5b": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "a561a5b16437cd7e7c413b3629362959ce77524f", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/a561a5b16437cd7e7c413b3629362959ce77524f.diff" + }, + "nuget-client@a52c5c1": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "a52c5c16c4c267bc8d63a39fa6e2a10bba980b8b", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/a52c5c16c4c267bc8d63a39fa6e2a10bba980b8b.diff" + }, + "nuget-client@3534a18": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "3534a187a6b2126ea950f6dcbcd88a8a2a76206b", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/3534a187a6b2126ea950f6dcbcd88a8a2a76206b.diff" + }, + "nuget-client@8a9eabb": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "8a9eabb4379e90764ef3fd03b782709ba66cde27", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/8a9eabb4379e90764ef3fd03b782709ba66cde27.diff" + }, + "nuget-client@a4675d8": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "a4675d8cf49e9af295656ed06f872cff70a42d83", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/a4675d8cf49e9af295656ed06f872cff70a42d83.diff" + }, + "nuget-client@c0c368a": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "c0c368afb766d6653523366116af3519093ea595", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/c0c368afb766d6653523366116af3519093ea595.diff" + }, + "nuget-client@a3f6e96": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "a3f6e966e935476773a92b2ba7429fc7a06e9dd1", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/a3f6e966e935476773a92b2ba7429fc7a06e9dd1.diff" + }, + "nuget-client@8deb76a": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "8deb76a20811f7b78531b66a1024cfe9e650cc69", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/8deb76a20811f7b78531b66a1024cfe9e650cc69.diff" + }, + "nuget-client@ab7d0d6": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "ab7d0d6574a3509715c698682cbb744cf79414b7", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/ab7d0d6574a3509715c698682cbb744cf79414b7.diff" + }, + "nuget-client@a553524": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "a553524087bd97de4425ad913c5b513153751a6a", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/a553524087bd97de4425ad913c5b513153751a6a.diff" + }, + "nuget-client@f424430": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "f42443048a1c0016673852254bb5d9fc80abc645", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/f42443048a1c0016673852254bb5d9fc80abc645.diff" + }, + "nuget-client@3619c9f": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "3619c9f4f3baaf4de98b19735fcf8b7390167e20", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/3619c9f4f3baaf4de98b19735fcf8b7390167e20.diff" + }, + "nuget-client@b761098": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "b761098d4c1b08bf1fb082d7dc7f276c41648c6a", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/b761098d4c1b08bf1fb082d7dc7f276c41648c6a.diff" + }, + "nuget-client@2233ffd": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "2233ffd23f1c58f4495ba90ec4a9efc5f9a250fa", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/2233ffd23f1c58f4495ba90ec4a9efc5f9a250fa.diff" + }, + "nuget-client@e0311a9": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "e0311a9c5bf7b3ba6118334c13d6c0fd8740fa38", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/e0311a9c5bf7b3ba6118334c13d6c0fd8740fa38.diff" + }, + "nuget-client@efaba6a": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "efaba6a58de482d11b43bfd3d58da1133499b9ad", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/efaba6a58de482d11b43bfd3d58da1133499b9ad.diff" + }, + "nuget-client@60d1ab4": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "60d1ab4fc1898d68611b06fe36ee1da0156c80c0", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/60d1ab4fc1898d68611b06fe36ee1da0156c80c0.diff" + }, + "nuget-client@b8bbe4b": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "b8bbe4b24e8215391f51db82a8446a03b68dbc96", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/b8bbe4b24e8215391f51db82a8446a03b68dbc96.diff" + }, + "nuget-client@1edb104": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "1edb1041c258752ff659965415dcb5844081f7e7", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/1edb1041c258752ff659965415dcb5844081f7e7.diff" + }, + "nuget-client@105e1d3": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "105e1d3eafe8431355e61d7ee025738efd830942", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/105e1d3eafe8431355e61d7ee025738efd830942.diff" + }, + "nuget-client@21c6db6": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "21c6db66feefd708303f9e42b887af4e06294c52", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/21c6db66feefd708303f9e42b887af4e06294c52.diff" + }, + "nuget-client@460c27e": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "460c27eaa57d3208b8ece995238f13563e0bc68e", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/460c27eaa57d3208b8ece995238f13563e0bc68e.diff" + }, + "nuget-client@be185b4": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "be185b424afd409b64c710d31f4acc99cf40d557", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/be185b424afd409b64c710d31f4acc99cf40d557.diff" + }, + "nuget-client@7cc1f0a": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "7cc1f0aded686e20acdbbdfb40ed521cb051fba3", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/7cc1f0aded686e20acdbbdfb40ed521cb051fba3.diff" + }, + "nuget-client@15db684": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "15db684c6d14b2b49c5d8e9f3638835565826bd8", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/15db684c6d14b2b49c5d8e9f3638835565826bd8.diff" + }, + "nuget-client@15dafc4": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "15dafc45c4b112388bb74470bab0f8c6dd813da0", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/15dafc45c4b112388bb74470bab0f8c6dd813da0.diff" + }, + "nuget-client@6840069": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "684006924f18cd065b697116eb83085d1887ffd7", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/684006924f18cd065b697116eb83085d1887ffd7.diff" + }, + "nuget-client@5e65b14": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "5e65b14a2faeb50dc5e5616bb9a18ab0476d4f37", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/5e65b14a2faeb50dc5e5616bb9a18ab0476d4f37.diff" + }, + "nuget-client@b5ca9db": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "b5ca9db4d5e6cd4d87d9df6704ac83148d428a6e", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/b5ca9db4d5e6cd4d87d9df6704ac83148d428a6e.diff" + }, + "nuget-client@279cdad": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "279cdadef05684c95e1ea967646559e77bcd5e4e", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/279cdadef05684c95e1ea967646559e77bcd5e4e.diff" + }, + "nuget-client@cfc4937": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "cfc4937bba5a418deb0f57d7272f336a72e20fb2", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/cfc4937bba5a418deb0f57d7272f336a72e20fb2.diff" + }, + "nuget-client@9b4c24b": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "9b4c24b455ddc06e02ef206376bdde21fa924a79", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/9b4c24b455ddc06e02ef206376bdde21fa924a79.diff" + }, + "nuget-client@4ee8cd0": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "4ee8cd0439ef43daf78db4e6ae47c7124aedd862", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/4ee8cd0439ef43daf78db4e6ae47c7124aedd862.diff" + }, + "nuget-client@d070eb6": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "d070eb66669895c09f9d1e302e7d801a696de2f4", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/d070eb66669895c09f9d1e302e7d801a696de2f4.diff" + }, + "nuget-client@9131f71": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "9131f7118cf739f339ee22fed031c15f0b02128e", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/9131f7118cf739f339ee22fed031c15f0b02128e.diff" + }, + "nuget-client@45c7a1b": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "45c7a1be59cf552afcc9a3b9bba95bcc72e59ed9", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/45c7a1be59cf552afcc9a3b9bba95bcc72e59ed9.diff" + }, + "nuget-client@6ca6f21": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "6ca6f21b246509beb6f514c0c496c9ce78026547", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/6ca6f21b246509beb6f514c0c496c9ce78026547.diff" + }, + "nuget-client@a690ce6": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "a690ce6bf9b374e764d729570338ed7ef8bcefc4", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/a690ce6bf9b374e764d729570338ed7ef8bcefc4.diff" + }, + "nuget-client@13353c2": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "13353c236dca85b5852313d8ec371e0c76b2e061", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/13353c236dca85b5852313d8ec371e0c76b2e061.diff" + }, + "nuget-client@bff510e": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "bff510e1c53565f714dff7552e0220465f236deb", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/bff510e1c53565f714dff7552e0220465f236deb.diff" + }, + "nuget-client@36a9adb": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "36a9adb28c7ad60f064005180da5160a6d0ffa4b", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/36a9adb28c7ad60f064005180da5160a6d0ffa4b.diff" + }, + "nuget-client@9065b8f": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "9065b8f17012560bba73405790726839bd43beee", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/9065b8f17012560bba73405790726839bd43beee.diff" + }, + "nuget-client@d502477": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "d50247799ecea063a727a890564bb77d0e60db19", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/d50247799ecea063a727a890564bb77d0e60db19.diff" + }, + "nuget-client@b260088": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "b260088dc6b3d3a1c3e76ad0422ce4ceb03bbcdd", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/b260088dc6b3d3a1c3e76ad0422ce4ceb03bbcdd.diff" + }, + "nuget-client@31e377a": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "31e377a1ccab09c579781c334167b5909be6f266", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/31e377a1ccab09c579781c334167b5909be6f266.diff" + }, + "nuget-client@7e74bb1": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "7e74bb1556c3c5ba1e9b04b0e356bf66aaf8784c", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/7e74bb1556c3c5ba1e9b04b0e356bf66aaf8784c.diff" + }, + "nuget-client@39d7da6": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "39d7da6b7b04543f2fb2502ef9890d55cc13197a", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/39d7da6b7b04543f2fb2502ef9890d55cc13197a.diff" + }, + "nuget-client@779eff1": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "779eff1e73420573dd39dbbe54896ff8f08955e1", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/779eff1e73420573dd39dbbe54896ff8f08955e1.diff" + }, + "razor@e449a2e": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "e449a2efe0cfdd487ebf75d4aa3bbee62d43c128", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/e449a2efe0cfdd487ebf75d4aa3bbee62d43c128.diff" + }, + "razor@10ec240": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "10ec24021df6fdff84e49997958042d4b8d36b3a", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/10ec24021df6fdff84e49997958042d4b8d36b3a.diff" + }, + "razor@7b8f170": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "7b8f1702b9ce3e6362397c2b4be3d44c07f7da91", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/7b8f1702b9ce3e6362397c2b4be3d44c07f7da91.diff" + }, + "razor@bd6b73c": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "bd6b73c2fc6943e9f942f094da33ee08e8fdd73b", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/bd6b73c2fc6943e9f942f094da33ee08e8fdd73b.diff" + }, + "razor@2c1a9a0": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "2c1a9a0ea7689780c60253afd3b809a57a72d32d", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/2c1a9a0ea7689780c60253afd3b809a57a72d32d.diff" + }, + "razor@c5f489f": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "c5f489fd85d188c7d18417e8b88d6c9404e228ee", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/c5f489fd85d188c7d18417e8b88d6c9404e228ee.diff" + }, + "razor@d7e6869": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "d7e68691cd20be9e56f3324e9526290a9d888a02", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/d7e68691cd20be9e56f3324e9526290a9d888a02.diff" + }, + "razor@81bd809": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "81bd80916e0dd17bb8290e4a74ed5f4c25a8ac7d", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/81bd80916e0dd17bb8290e4a74ed5f4c25a8ac7d.diff" + }, + "razor@59e5a0d": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "59e5a0de3d49ed6e7db643a0f7eead85e4fa1380", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/59e5a0de3d49ed6e7db643a0f7eead85e4fa1380.diff" + }, + "razor@616486b": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "616486b7568dd4ff082ba1d5767d4b3eefae0d3a", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/616486b7568dd4ff082ba1d5767d4b3eefae0d3a.diff" + }, + "razor@afc2753": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "afc27536cacbaf2d62a5df077058425d0e3ad85b", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/afc27536cacbaf2d62a5df077058425d0e3ad85b.diff" + }, + "razor@c3788ee": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "c3788ee883efe3728fd4737fb75d8113978b2db1", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/c3788ee883efe3728fd4737fb75d8113978b2db1.diff" + }, + "razor@4d608b8": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "4d608b820848157323cbaab2f08078acfb48ec01", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/4d608b820848157323cbaab2f08078acfb48ec01.diff" + }, + "razor@bad1bd6": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "bad1bd66a73bbab53038c809731f2ddb191b02be", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/bad1bd66a73bbab53038c809731f2ddb191b02be.diff" + }, + "razor@c4c12a2": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "c4c12a2e35dedd936cd74f2713b2db9bb4bbca4d", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/c4c12a2e35dedd936cd74f2713b2db9bb4bbca4d.diff" + }, + "razor@640fe55": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "640fe55bb081b62e421fc53357ff110a183cc6c9", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/640fe55bb081b62e421fc53357ff110a183cc6c9.diff" + }, + "razor@f64530d": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "f64530d7d33f34e0e5bb4a770acbc2dd838addf8", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/f64530d7d33f34e0e5bb4a770acbc2dd838addf8.diff" + }, + "razor@78e7891": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "78e7891a66a6c316ab8a6a427a9dc86e66fe37e4", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/78e7891a66a6c316ab8a6a427a9dc86e66fe37e4.diff" + }, + "razor@00b8803": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "00b880349af100328931f159ed99402fea6c102d", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/00b880349af100328931f159ed99402fea6c102d.diff" + }, + "razor@0e1af56": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "0e1af56e84b508391dfc83cce57b599271c4b138", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/0e1af56e84b508391dfc83cce57b599271c4b138.diff" + }, + "razor@57eaac5": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "57eaac56f992edb784582d91fab0671548df60db", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/57eaac56f992edb784582d91fab0671548df60db.diff" + }, + "razor@dcfc37e": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "dcfc37e24d9403ec94bf67cd46ed2c8c8a5a1c2e", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/dcfc37e24d9403ec94bf67cd46ed2c8c8a5a1c2e.diff" + }, + "razor@bd9d77d": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "bd9d77d0be653242d1c580ddca76b74d0b996d98", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/bd9d77d0be653242d1c580ddca76b74d0b996d98.diff" + }, + "razor@7a25669": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "7a256698b42912064154ee18578d1201cc77f42e", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/7a256698b42912064154ee18578d1201cc77f42e.diff" + }, + "razor@42fb27d": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "42fb27dcf863c63a3b1b5dbf2ae1288d08a79442", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/42fb27dcf863c63a3b1b5dbf2ae1288d08a79442.diff" + }, + "razor@07169ff": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "07169ffa1cbaf90bdf24dff330cba41786a6f101", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/07169ffa1cbaf90bdf24dff330cba41786a6f101.diff" + }, + "razor@75d8b7d": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "75d8b7d04bce44c272b7760eff87f194c0a74f18", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/75d8b7d04bce44c272b7760eff87f194c0a74f18.diff" + }, + "razor@15665b9": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "15665b9f7a3dfd5dd863d55194178765f7e1ee50", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/15665b9f7a3dfd5dd863d55194178765f7e1ee50.diff" + }, + "razor@21fccf2": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "21fccf2157573fdb8d04e014df48f3a018adfb59", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/21fccf2157573fdb8d04e014df48f3a018adfb59.diff" + }, + "razor@9ecf467": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "9ecf467fce2a42278fca393fb7201ccb64480471", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/9ecf467fce2a42278fca393fb7201ccb64480471.diff" + }, + "razor@381882d": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "381882d078a11447e01c27c741f0210d8350e848", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/381882d078a11447e01c27c741f0210d8350e848.diff" + }, + "razor@19513d3": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "19513d33a343b8d172660032d48b822b9f580a6b", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/19513d33a343b8d172660032d48b822b9f580a6b.diff" + }, + "razor@e9acb82": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "e9acb823e9cb1f45f9149e567f044e559c3c8ebe", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/e9acb823e9cb1f45f9149e567f044e559c3c8ebe.diff" + }, + "razor@d9362b9": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "d9362b9b6d43e151d055d80ab9a28ec39dcc5910", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/d9362b9b6d43e151d055d80ab9a28ec39dcc5910.diff" + }, + "razor@30f6cf0": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "30f6cf0d4500ea568095451f235262b4b9236e01", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/30f6cf0d4500ea568095451f235262b4b9236e01.diff" + }, + "razor@3c2c573": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "3c2c573b4548a0bb0380edf30f91d605da23606c", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/3c2c573b4548a0bb0380edf30f91d605da23606c.diff" + }, + "razor@2b0c51d": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "2b0c51d83e1c3650a99a9bc372558ba15e784220", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/2b0c51d83e1c3650a99a9bc372558ba15e784220.diff" + }, + "razor@599013a": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "599013ad55b2862d4ab31788f596c74306053073", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/599013ad55b2862d4ab31788f596c74306053073.diff" + }, + "razor@06c797e": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "06c797e11112aa38c0e88b9d1e2f1d13221b7d9a", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/06c797e11112aa38c0e88b9d1e2f1d13221b7d9a.diff" + }, + "razor@1fb1d4b": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "1fb1d4b53c6aa98b0e566c390152e5fdcc99175c", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/1fb1d4b53c6aa98b0e566c390152e5fdcc99175c.diff" + }, + "razor@c5b4ff3": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "c5b4ff39c4759523c81207caea120ab138d0ec2c", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/c5b4ff39c4759523c81207caea120ab138d0ec2c.diff" + }, + "razor@20feb9c": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "20feb9c8eeb709369fd6c45d5a9c9b77c738a477", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/20feb9c8eeb709369fd6c45d5a9c9b77c738a477.diff" + }, + "razor@6d1913a": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "6d1913a5128d9ddfe7f4905af6ffeb7c2007eb1c", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/6d1913a5128d9ddfe7f4905af6ffeb7c2007eb1c.diff" + }, + "razor@afb8471": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "afb84713f68ccd9d480ecf3aed4b2dcfe72e7ff1", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/afb84713f68ccd9d480ecf3aed4b2dcfe72e7ff1.diff" + }, + "razor@e626c1b": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "e626c1b1332a71abb87f5b95a59eaa71cf34d86c", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/e626c1b1332a71abb87f5b95a59eaa71cf34d86c.diff" + }, + "razor@a9bd3f8": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "a9bd3f8e8d47f514ea6835d8553aab2183531743", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/a9bd3f8e8d47f514ea6835d8553aab2183531743.diff" + }, + "razor@c22097b": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "c22097b261346eb5aa4d98f54cc7a89549217fbb", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/c22097b261346eb5aa4d98f54cc7a89549217fbb.diff" + }, + "razor@ae3fde0": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "ae3fde0aa108d0a654007db60c06ee10f229014e", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/ae3fde0aa108d0a654007db60c06ee10f229014e.diff" + }, + "razor@0ba060b": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "0ba060b709ff04bd22e433eb631a72f323be98cf", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/0ba060b709ff04bd22e433eb631a72f323be98cf.diff" + }, + "razor@951f8eb": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "951f8ebec8d1eeda89550d5d6ecfbbbeccb9eee8", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/951f8ebec8d1eeda89550d5d6ecfbbbeccb9eee8.diff" + }, + "razor@71d8c92": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "71d8c92cd63cd93c902438b96560ca1e729d7ccc", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/71d8c92cd63cd93c902438b96560ca1e729d7ccc.diff" + }, + "razor@d496432": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "d496432b3357756af4b30585ca0a0b986645688a", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/d496432b3357756af4b30585ca0a0b986645688a.diff" + }, + "razor@6f57fec": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "6f57fec20097079e34dd0300d913f43197db7124", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/6f57fec20097079e34dd0300d913f43197db7124.diff" + }, + "razor@5fd75b4": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "5fd75b41e19167f931c229b275f7cb8c5d84a86e", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/5fd75b41e19167f931c229b275f7cb8c5d84a86e.diff" + }, + "razor@afcf31d": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "afcf31d86d3d211b572407c02d6479a9db01ed00", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/afcf31d86d3d211b572407c02d6479a9db01ed00.diff" + }, + "roslyn@dcc3438": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "dcc3438559e178098434ea7091f7d086f791bc26", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/dcc3438559e178098434ea7091f7d086f791bc26.diff" + }, + "roslyn@f4ce901": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "f4ce901e81ef068ad7f736fdb3bff52d652fe2cc", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/f4ce901e81ef068ad7f736fdb3bff52d652fe2cc.diff" + }, + "roslyn@2bc2bb6": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "2bc2bb69fdb211f99f4fff4f26e447c90199bc7e", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/2bc2bb69fdb211f99f4fff4f26e447c90199bc7e.diff" + }, + "roslyn@0d88ffd": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "0d88ffde5345f4bb5141512c3f727393bd518a36", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/0d88ffde5345f4bb5141512c3f727393bd518a36.diff" + }, + "roslyn@07e15c1": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "07e15c13e4e720126b3ac911e06e1359ed2e5e72", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/07e15c13e4e720126b3ac911e06e1359ed2e5e72.diff" + }, + "roslyn@115a597": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "115a59748f353962a428287481f58de5b4b4e18f", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/115a59748f353962a428287481f58de5b4b4e18f.diff" + }, + "roslyn@e9a5618": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "e9a56188132d1bcbc5d30cd21751d096e886b414", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/e9a56188132d1bcbc5d30cd21751d096e886b414.diff" + }, + "roslyn@0a8d4b9": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "0a8d4b9e3d1d4e1c6840c7d065934a2963b14c32", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/0a8d4b9e3d1d4e1c6840c7d065934a2963b14c32.diff" + }, + "roslyn@170fc84": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "170fc84d4d7c0f26d4ab2d77c45fa50863863781", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/170fc84d4d7c0f26d4ab2d77c45fa50863863781.diff" + }, + "roslyn@26be960": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "26be960b44db35b220a7f28618b0c4b20993d647", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/26be960b44db35b220a7f28618b0c4b20993d647.diff" + }, + "roslyn@cb64e68": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "cb64e68f5e5a7aa071915e6bd7d0526190b99b01", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/cb64e68f5e5a7aa071915e6bd7d0526190b99b01.diff" + }, + "roslyn@0b12a91": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "0b12a918a944385031155b345b417802e3dd4cc9", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/0b12a918a944385031155b345b417802e3dd4cc9.diff" + }, + "roslyn@d4f7c35": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "d4f7c35fb5b3728221185caca63e974f24420d31", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/d4f7c35fb5b3728221185caca63e974f24420d31.diff" + }, + "roslyn@859b23f": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "859b23fa408c55a80e98b7824ff1c39c58682766", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/859b23fa408c55a80e98b7824ff1c39c58682766.diff" + }, + "roslyn@36c7834": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "36c7834bb51c38cc17d39e1c2801be360132061a", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/36c7834bb51c38cc17d39e1c2801be360132061a.diff" + }, + "roslyn@d70faac": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "d70faac80c27cec78c23521ca90d54fa36206937", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/d70faac80c27cec78c23521ca90d54fa36206937.diff" + }, + "roslyn@06bff44": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "06bff44c3a9f1144ae7e4f6b028040783e0e7687", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/06bff44c3a9f1144ae7e4f6b028040783e0e7687.diff" + }, + "roslyn@46e9530": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "46e9530726c6b721112bd05268b56c773d4b3790", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/46e9530726c6b721112bd05268b56c773d4b3790.diff" + }, + "roslyn@ef0c5bb": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "ef0c5bbb8e9385352b2b82ea60b38acb632728d1", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/ef0c5bbb8e9385352b2b82ea60b38acb632728d1.diff" + }, + "roslyn@ff1aa5b": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "ff1aa5bbeb5a937fee285f19ecc7f29f4b48610a", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/ff1aa5bbeb5a937fee285f19ecc7f29f4b48610a.diff" + }, + "roslyn@6b75273": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "6b752738a55fe1017c51fbaadc65e6227c68c16d", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/6b752738a55fe1017c51fbaadc65e6227c68c16d.diff" + }, + "roslyn@18f1f01": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "18f1f0172e8900f99a5de8959c5d3813d54caaf1", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/18f1f0172e8900f99a5de8959c5d3813d54caaf1.diff" + }, + "roslyn@a73833a": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "a73833a32eec90f60383b40f5bc1c5ec88047aac", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/a73833a32eec90f60383b40f5bc1c5ec88047aac.diff" + }, + "roslyn@836ffa6": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "836ffa62ed4a0a434beded8492e4d67238ceeb73", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/836ffa62ed4a0a434beded8492e4d67238ceeb73.diff" + }, + "roslyn@ea63049": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "ea6304967fd13c6cef28024de904c43686716225", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/ea6304967fd13c6cef28024de904c43686716225.diff" + }, + "roslyn@5128876": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "5128876b1744ffb1fd671d52582be37e8477b4d4", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/5128876b1744ffb1fd671d52582be37e8477b4d4.diff" + }, + "roslyn@38c1d17": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "38c1d17cdf64e1de8672019def0b6c6eeedeeab2", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/38c1d17cdf64e1de8672019def0b6c6eeedeeab2.diff" + }, + "roslyn@f6f8bd5": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "f6f8bd575a37766c9c196dc825a236c57b812668", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/f6f8bd575a37766c9c196dc825a236c57b812668.diff" + }, + "roslyn@30c9b18": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "30c9b18fe8b3de96e487cee43925f682b7b06ae6", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/30c9b18fe8b3de96e487cee43925f682b7b06ae6.diff" + }, + "roslyn@d9ab6fd": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "d9ab6fd7264666f04aac49ac5dc8147e62d0fcb3", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/d9ab6fd7264666f04aac49ac5dc8147e62d0fcb3.diff" + }, + "roslyn@f881263": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "f881263cdd42dc2526afe797d678c644414f7b3f", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/f881263cdd42dc2526afe797d678c644414f7b3f.diff" + }, + "roslyn@28bd949": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "28bd9490a83846cfcad5075fee57a01b73073760", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/28bd9490a83846cfcad5075fee57a01b73073760.diff" + }, + "roslyn@822aba7": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "822aba76d0111bc07b88f103e424f9974cf185c3", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/822aba76d0111bc07b88f103e424f9974cf185c3.diff" + }, + "roslyn@d05575c": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "d05575c90840fe322ac6398e35865c98c433d319", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/d05575c90840fe322ac6398e35865c98c433d319.diff" + }, + "roslyn@a8d3977": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "a8d3977c8661602041d6046f6b28760d1ec92062", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/a8d3977c8661602041d6046f6b28760d1ec92062.diff" + }, + "roslyn@1f1d220": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "1f1d2202c94a9c1679593334535b034572009720", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/1f1d2202c94a9c1679593334535b034572009720.diff" + }, + "roslyn@db4a70a": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "db4a70ad6fd99a0f30475e313ac7cffd9a7d8371", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/db4a70ad6fd99a0f30475e313ac7cffd9a7d8371.diff" + }, + "roslyn@f808321": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "f808321184c09871c2800892b25b6ae29be140d5", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/f808321184c09871c2800892b25b6ae29be140d5.diff" + }, + "roslyn@d8168bc": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "d8168bc2540f851b3916042b7b0ed4084fa12de0", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/d8168bc2540f851b3916042b7b0ed4084fa12de0.diff" + }, + "roslyn@de6d596": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "de6d596b10f87c25df6359301ae531d53845822e", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/de6d596b10f87c25df6359301ae531d53845822e.diff" + }, + "roslyn@c3de0e6": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "c3de0e60ceb012b9f0eafbc71f7318d09fe9c0b1", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/c3de0e60ceb012b9f0eafbc71f7318d09fe9c0b1.diff" + }, + "roslyn@60ccee8": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "60ccee8f9b61e54f72d100b7c83e3d7245560b73", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/60ccee8f9b61e54f72d100b7c83e3d7245560b73.diff" + }, + "roslyn@781516d": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "781516d59af4437b53e2822b7fab811312341dee", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/781516d59af4437b53e2822b7fab811312341dee.diff" + }, + "roslyn@1538767": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "1538767baa195e667a4e25595cafa32ed9151927", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/1538767baa195e667a4e25595cafa32ed9151927.diff" + }, + "roslyn@9788e10": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "9788e109de83d36d696d30ba1e9a61a6918b1b01", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/9788e109de83d36d696d30ba1e9a61a6918b1b01.diff" + }, + "roslyn@489667e": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "489667e0cb1b278a8b221bd22c53d33bbd23e854", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/489667e0cb1b278a8b221bd22c53d33bbd23e854.diff" + }, + "roslyn@73136ae": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "73136aedd00a13a02cd9130e17768104286baf42", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/73136aedd00a13a02cd9130e17768104286baf42.diff" + }, + "roslyn@20ee1e9": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "20ee1e90df1305f31b15d0d29e265862a0054669", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/20ee1e90df1305f31b15d0d29e265862a0054669.diff" + }, + "roslyn@28d629d": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "28d629dcc4dc0f1edf2a558f8868fd985da6fb76", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/28d629dcc4dc0f1edf2a558f8868fd985da6fb76.diff" + }, + "roslyn@947ca38": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "947ca3885049cffb4941372216c03f9cf5e99304", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/947ca3885049cffb4941372216c03f9cf5e99304.diff" + }, + "roslyn@915f7a6": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "915f7a626d9f85680978e9a8cf6a8e2cc6a01349", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/915f7a626d9f85680978e9a8cf6a8e2cc6a01349.diff" + }, + "roslyn@d2d357d": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "d2d357dd7592d786819b22b3c448a0772906eac8", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/d2d357dd7592d786819b22b3c448a0772906eac8.diff" + }, + "roslyn@491aa49": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "491aa49667eeeb1acf47f1d22655ebb2efc6c0dc", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/491aa49667eeeb1acf47f1d22655ebb2efc6c0dc.diff" + }, + "roslyn@1ea3352": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "1ea3352c153cd1f1e3dfeb1c51d6855a6a5e07b3", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/1ea3352c153cd1f1e3dfeb1c51d6855a6a5e07b3.diff" + }, + "roslyn@eb56329": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "eb56329a22858f6eca646122fcd4c95157cd13cd", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/eb56329a22858f6eca646122fcd4c95157cd13cd.diff" + }, + "roslyn@7467800": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "7467800c248af35cc9ea5e3170061e7e346b797b", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/7467800c248af35cc9ea5e3170061e7e346b797b.diff" + }, + "roslyn@b1eaa1a": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "b1eaa1a7fad2ca490a7a468fab535349f30d52f8", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/b1eaa1a7fad2ca490a7a468fab535349f30d52f8.diff" + }, + "roslyn@b8e6208": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "b8e62081239fd52bb45d325cc5fd5552bcb29974", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/b8e62081239fd52bb45d325cc5fd5552bcb29974.diff" + }, + "roslyn@1f7fae4": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "1f7fae4f01d76907b0a4b821aab3379908ca3ee9", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/1f7fae4f01d76907b0a4b821aab3379908ca3ee9.diff" + }, + "roslyn@9bd232f": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "9bd232fa0d6788dd48a0f2f61cdba8090c9cc456", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/9bd232fa0d6788dd48a0f2f61cdba8090c9cc456.diff" + }, + "roslyn@8007c87": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "8007c871a996b17228dd49d3803ef22621653749", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/8007c871a996b17228dd49d3803ef22621653749.diff" + }, + "roslyn@02833a6": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "02833a659f7114b8a90ac3f249d227ba9a34da98", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/02833a659f7114b8a90ac3f249d227ba9a34da98.diff" + }, + "roslyn@06a735c": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "06a735c607650205dfa5dc3cc673bdb33b21356d", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/06a735c607650205dfa5dc3cc673bdb33b21356d.diff" + }, + "roslyn@3f4c548": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "3f4c548ea0338c2ca66d72ac7b256bc81db9ab3c", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/3f4c548ea0338c2ca66d72ac7b256bc81db9ab3c.diff" + }, + "roslyn@787432e": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "787432e4a30e9e04e7f600be29cbf630af957939", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/787432e4a30e9e04e7f600be29cbf630af957939.diff" + }, + "roslyn@611c993": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "611c993c5388e9440e4ce6f0441adba5b22ae2fc", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/611c993c5388e9440e4ce6f0441adba5b22ae2fc.diff" + }, + "roslyn@e5de3cd": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "e5de3cdf9fab32c28947f4627c75ad0944ebb963", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/e5de3cdf9fab32c28947f4627c75ad0944ebb963.diff" + }, + "roslyn@79038db": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "79038dba2ed6a766f09f12fcef902122aec8ffdb", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/79038dba2ed6a766f09f12fcef902122aec8ffdb.diff" + }, + "roslyn@7e25adf": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "7e25adfd64dfca0236609765024eeed9062d7543", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/7e25adfd64dfca0236609765024eeed9062d7543.diff" + }, + "roslyn@7f59aed": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "7f59aed951de91bc458bd25a1c061882db333694", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/7f59aed951de91bc458bd25a1c061882db333694.diff" + }, + "roslyn@8b8aebd": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "8b8aebdb91e618d01a76669ea6e38ba46e19a833", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/8b8aebdb91e618d01a76669ea6e38ba46e19a833.diff" + }, + "roslyn@373490c": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "373490c1f7a05f3a545df908ed4568e8ab321009", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/373490c1f7a05f3a545df908ed4568e8ab321009.diff" + }, + "roslyn@bb74f15": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "bb74f15d37c7c9a3887db2f07083436550d31cd1", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/bb74f15d37c7c9a3887db2f07083436550d31cd1.diff" + }, + "roslyn@5d06c25": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "5d06c25285a6822f2a0e1822cd9ed0b239eafa54", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/5d06c25285a6822f2a0e1822cd9ed0b239eafa54.diff" + }, + "roslyn@ebc4231": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "ebc4231322510772b9d053961f84fe70ceb17060", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/ebc4231322510772b9d053961f84fe70ceb17060.diff" + }, + "roslyn@c2a993b": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "c2a993bf925f60e328823fbe0057cd5cbcff219e", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/c2a993bf925f60e328823fbe0057cd5cbcff219e.diff" + }, + "roslyn@0376bcd": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "0376bcd2048c469e935ec7d76374f62ad05a3dab", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/0376bcd2048c469e935ec7d76374f62ad05a3dab.diff" + }, + "roslyn@909ec10": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "909ec106a77deabc7b76c1a3d5138d861e9e3248", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/909ec106a77deabc7b76c1a3d5138d861e9e3248.diff" + }, + "roslyn@a1696dd": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "a1696ddfa684b7044ba4429e1c9c1171e698b63c", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/a1696ddfa684b7044ba4429e1c9c1171e698b63c.diff" + }, + "roslyn@bf28202": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "bf28202a0f60de24bbb3abfeb9a35392741d5613", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/bf28202a0f60de24bbb3abfeb9a35392741d5613.diff" + }, + "roslyn@9ed174d": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "9ed174d1ef5a7fae4915fe2a581b82aabd0612fd", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/9ed174d1ef5a7fae4915fe2a581b82aabd0612fd.diff" + }, + "roslyn@216a7f2": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "216a7f2f17633d4eea15c15c68f2bfdcdb797f0f", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/216a7f2f17633d4eea15c15c68f2bfdcdb797f0f.diff" + }, + "roslyn@70ce379": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "70ce379242de6695fc1c281a14b0ef06518bb0eb", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/70ce379242de6695fc1c281a14b0ef06518bb0eb.diff" + }, + "roslyn@af65eb7": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "af65eb72afa01c3e96deead2aea3719c1d4f265e", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/af65eb72afa01c3e96deead2aea3719c1d4f265e.diff" + }, + "roslyn@d83e85b": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "d83e85b84128a3cd426741491cdc2309b5bf4af3", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/d83e85b84128a3cd426741491cdc2309b5bf4af3.diff" + }, + "roslyn@2742db7": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "2742db707630f89fd43147cce6804bd475b44760", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/2742db707630f89fd43147cce6804bd475b44760.diff" + }, + "roslyn@6e85e46": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "6e85e46dc82d3eefb46eca37e213c5d32093a8ff", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/6e85e46dc82d3eefb46eca37e213c5d32093a8ff.diff" + }, + "roslyn@3af8cfc": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "3af8cfcc40991e5daafd96c33afdc5b2ff2b815d", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/3af8cfcc40991e5daafd96c33afdc5b2ff2b815d.diff" + }, + "roslyn@e5041dd": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "e5041ddda1fe659f3b41bef863b22588842aeb10", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/e5041ddda1fe659f3b41bef863b22588842aeb10.diff" + }, + "roslyn@bd2083f": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "bd2083ff6d56b296fa1ea5647850c166b5e55fb7", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/bd2083ff6d56b296fa1ea5647850c166b5e55fb7.diff" + }, + "roslyn@12c7798": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "12c7798acc8b514630cce7a0cb8931b187b4ccc8", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/12c7798acc8b514630cce7a0cb8931b187b4ccc8.diff" + }, + "roslyn@3ff19bf": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "3ff19bfe504e05524ce6ca0e36629ed4b50b681f", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/3ff19bfe504e05524ce6ca0e36629ed4b50b681f.diff" + }, + "roslyn@e794aa9": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "e794aa9a09b9926a540b066530e05ef19f5a3266", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/e794aa9a09b9926a540b066530e05ef19f5a3266.diff" + }, + "roslyn@ce4f889": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "ce4f8897a84272383392b79dec9e3a88998b574f", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/ce4f8897a84272383392b79dec9e3a88998b574f.diff" + }, + "roslyn@287981c": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "287981c80578f498a24d773c1fbe4e8a56e5a51e", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/287981c80578f498a24d773c1fbe4e8a56e5a51e.diff" + }, + "roslyn@9a06091": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "9a060915c0a9e20cc14f50a0cd49ed547a7b76a8", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/9a060915c0a9e20cc14f50a0cd49ed547a7b76a8.diff" + }, + "roslyn@3d3a43b": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "3d3a43b2fda11194436e662425ae78d94313368b", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/3d3a43b2fda11194436e662425ae78d94313368b.diff" + }, + "roslyn@e8a04ee": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "e8a04eed336859161e0fe6713703b8cc980521a2", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/e8a04eed336859161e0fe6713703b8cc980521a2.diff" + }, + "roslyn@7762e77": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "7762e775f57a7111f0cdc6ac0929ccec58936646", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/7762e775f57a7111f0cdc6ac0929ccec58936646.diff" + }, + "roslyn@d3724ec": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "d3724ec98de171beda9eab49c5a73013ebba1df3", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/d3724ec98de171beda9eab49c5a73013ebba1df3.diff" + }, + "roslyn@f3b5991": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "f3b59918689af64260c2eab6dad7cb832f5749ab", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/f3b59918689af64260c2eab6dad7cb832f5749ab.diff" + }, + "roslyn@1ba62c4": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "1ba62c4cbec09ba7a1f6b867e36cacf2efc9734b", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/1ba62c4cbec09ba7a1f6b867e36cacf2efc9734b.diff" + }, + "roslyn@d3fa672": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "d3fa672ab5bee7fb2138b56116b2f0bb3170110f", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/d3fa672ab5bee7fb2138b56116b2f0bb3170110f.diff" + }, + "roslyn@5f04355": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "5f0435535bb96f5ec2dcd4e92e76e11cc6132563", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/5f0435535bb96f5ec2dcd4e92e76e11cc6132563.diff" + }, + "roslyn@89a024e": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "89a024e14a8d683c83a32c446295ce2c3226b753", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/89a024e14a8d683c83a32c446295ce2c3226b753.diff" + }, + "roslyn@675bbbd": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "675bbbd7e3a88759191c093bb7cba4b9a5d4eed4", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/675bbbd7e3a88759191c093bb7cba4b9a5d4eed4.diff" + }, + "roslyn@a13c229": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "a13c2291dab677d6bee8d6fe475f59e1d27699f3", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/a13c2291dab677d6bee8d6fe475f59e1d27699f3.diff" + }, + "roslyn@8ebf7d5": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "8ebf7d54f8c28374e1a57cc95f703d5486568057", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/8ebf7d54f8c28374e1a57cc95f703d5486568057.diff" + }, + "roslyn@c8f805e": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "c8f805e6427304a4e70e09ed53ceacf4b65c850c", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/c8f805e6427304a4e70e09ed53ceacf4b65c850c.diff" + }, + "roslyn@9636481": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "9636481c84f58e16246c9a1eac47bfcc594894f5", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/9636481c84f58e16246c9a1eac47bfcc594894f5.diff" + }, + "roslyn@c43cd69": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "c43cd69b2bc46bb7062ac75f1f0c99b822118a9e", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/c43cd69b2bc46bb7062ac75f1f0c99b822118a9e.diff" + }, + "roslyn@439635a": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "439635afc5c13a7f15e3c90d48cd86c6abfcf29f", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/439635afc5c13a7f15e3c90d48cd86c6abfcf29f.diff" + }, + "roslyn@9bfaa97": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "9bfaa977fdfb06e2be56a7201c2445cecf66b614", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/9bfaa977fdfb06e2be56a7201c2445cecf66b614.diff" + }, + "roslyn@e94e90e": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "e94e90e8a02d9d98e3b42a9001a5356ac8673c34", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/e94e90e8a02d9d98e3b42a9001a5356ac8673c34.diff" + }, + "roslyn@a4627ec": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "a4627ece74f0ecb464262c041b96a3ddf9970134", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/a4627ece74f0ecb464262c041b96a3ddf9970134.diff" + }, + "roslyn@00f4340": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "00f43403035903e595625a737bf65d7fb729c3ae", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/00f43403035903e595625a737bf65d7fb729c3ae.diff" + }, + "roslyn@d6e77ba": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "d6e77ba399a22fd18e904d9904886409d5595521", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/d6e77ba399a22fd18e904d9904886409d5595521.diff" + }, + "roslyn@e6ea27b": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "e6ea27bb1b4a92561818d14cc604f02753c7102b", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/e6ea27bb1b4a92561818d14cc604f02753c7102b.diff" + }, + "roslyn@849bed6": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "849bed61024b171e673b9a1fac565b30e3ae1934", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/849bed61024b171e673b9a1fac565b30e3ae1934.diff" + }, + "roslyn@1068905": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "106890564f33f6642b625e99bed73b3e9a15244e", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/106890564f33f6642b625e99bed73b3e9a15244e.diff" + }, + "roslyn@68d99b2": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "68d99b22ba5d08644224a3160266d798ae3dd7b7", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/68d99b22ba5d08644224a3160266d798ae3dd7b7.diff" + }, + "roslyn@0b95158": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "0b951588dc4f6a80665ec8d863cbfa2510f9a758", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/0b951588dc4f6a80665ec8d863cbfa2510f9a758.diff" + }, + "roslyn@750f95c": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "750f95c6443014d17bb6ee769d72e2236e9d032c", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/750f95c6443014d17bb6ee769d72e2236e9d032c.diff" + }, + "roslyn@abacf67": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "abacf67bc36046020157ad9b6acc08a32bf8e164", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/abacf67bc36046020157ad9b6acc08a32bf8e164.diff" + }, + "roslyn@f2bb266": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "f2bb26610a6433d721a0b272412989cb67422f02", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/f2bb26610a6433d721a0b272412989cb67422f02.diff" + }, + "roslyn@c208079": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "c208079015fd5205d2af7ce72f2aa7c00cfc32e8", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/c208079015fd5205d2af7ce72f2aa7c00cfc32e8.diff" + }, + "roslyn@ebe25bb": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "ebe25bbad4e01d716f724d9bf8e21be94d3bbc3f", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/ebe25bbad4e01d716f724d9bf8e21be94d3bbc3f.diff" + }, + "roslyn@83c179c": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "83c179c8f3bbff27061c8ee8bdf1614120910552", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/83c179c8f3bbff27061c8ee8bdf1614120910552.diff" + }, + "roslyn@f839a71": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "f839a719afda45d47a0216e3b5b8c5482af52a25", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/f839a719afda45d47a0216e3b5b8c5482af52a25.diff" + }, + "roslyn@0ce7508": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "0ce7508ca6136991eb4390e5d179e7e2338c75fe", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/0ce7508ca6136991eb4390e5d179e7e2338c75fe.diff" + }, + "roslyn@b230b1d": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "b230b1de72e84878c0e32530a385d7e9ae84ac3e", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/b230b1de72e84878c0e32530a385d7e9ae84ac3e.diff" + }, + "roslyn@f1f8682": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "f1f8682e1cf6692c50c52e68ce307bb5a468a7ec", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/f1f8682e1cf6692c50c52e68ce307bb5a468a7ec.diff" + }, + "roslyn@1ce811b": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "1ce811b21afb75a41180fa699a713a6c3b6cdbcf", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/1ce811b21afb75a41180fa699a713a6c3b6cdbcf.diff" + }, + "runtime@1c7b5c4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1c7b5c49466a1a2ca6a3c2bba12dbfe80159fab4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1c7b5c49466a1a2ca6a3c2bba12dbfe80159fab4.diff" + }, + "runtime@9268ae6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9268ae6c111dd586ff3514d988d17173c7899fa9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9268ae6c111dd586ff3514d988d17173c7899fa9.diff" + }, + "runtime@e399e13": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e399e13900193a05c1c58a7d355642f871ac6412", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e399e13900193a05c1c58a7d355642f871ac6412.diff" + }, + "runtime@868a890": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "868a890a39f9fdf1e1fd25578144c0df7d62a9bb", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/868a890a39f9fdf1e1fd25578144c0df7d62a9bb.diff" + }, + "runtime@35ad59d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "35ad59de0ebc82aed1946f79daf67ba10863c814", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/35ad59de0ebc82aed1946f79daf67ba10863c814.diff" + }, + "runtime@11edfaf": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "11edfaff3c12f14e1bb99098c87c96c3f1e5a105", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/11edfaff3c12f14e1bb99098c87c96c3f1e5a105.diff" + }, + "runtime@dad8dcc": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "dad8dcc17033126f597526f71b0d0e11a43a57c4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/dad8dcc17033126f597526f71b0d0e11a43a57c4.diff" + }, + "runtime@0928e2d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0928e2d8851f2d5b3e4b8fc7c3673376b5bf3ee9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0928e2d8851f2d5b3e4b8fc7c3673376b5bf3ee9.diff" + }, + "runtime@766f6f1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "766f6f17971861ac586722ead561ed3291ad3c5c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/766f6f17971861ac586722ead561ed3291ad3c5c.diff" + }, + "runtime@7f0095f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7f0095f907a1dcf5209859fec2f01bbdbacab857", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7f0095f907a1dcf5209859fec2f01bbdbacab857.diff" + }, + "runtime@54570b5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "54570b5e90bec8677fb28a9305d46210bffbc436", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/54570b5e90bec8677fb28a9305d46210bffbc436.diff" + }, + "runtime@e02e618": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e02e61841758db8c19cc1c413ca229d202de633d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e02e61841758db8c19cc1c413ca229d202de633d.diff" + }, + "runtime@fd9316c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fd9316c23de6791d01650c4766c1f345b7422f1a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fd9316c23de6791d01650c4766c1f345b7422f1a.diff" + }, + "runtime@1933e44": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1933e4417b85b2c5836e20231d149aee5e4365bd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1933e4417b85b2c5836e20231d149aee5e4365bd.diff" + }, + "runtime@3fbc6d0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3fbc6d00fb99603ec9d154aaec57d8618229a281", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3fbc6d00fb99603ec9d154aaec57d8618229a281.diff" + }, + "runtime@6f242ac": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6f242ac6603077d8e99b5491b1858791b2d0f6c7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6f242ac6603077d8e99b5491b1858791b2d0f6c7.diff" + }, + "runtime@0de478b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0de478bd0e0a4d3568629f7c8bfcb464c1585a58", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0de478bd0e0a4d3568629f7c8bfcb464c1585a58.diff" + }, + "runtime@786c1e3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "786c1e3eae387b6824c6c66121b8f4a73f62890b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/786c1e3eae387b6824c6c66121b8f4a73f62890b.diff" + }, + "runtime@2ff39b5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2ff39b5f21a304c04ee0726c3e2ae56e7b23c904", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2ff39b5f21a304c04ee0726c3e2ae56e7b23c904.diff" + }, + "runtime@49e6723": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "49e6723e508545fcf901a8e6f9da9655bbbd5960", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/49e6723e508545fcf901a8e6f9da9655bbbd5960.diff" + }, + "runtime@bd81308": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "bd813087960951ebee3fd3fb7822fa30f18ac9fd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/bd813087960951ebee3fd3fb7822fa30f18ac9fd.diff" + }, + "runtime@9bfbe13": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9bfbe13cbe977b00945bbc15623d98c9bd4a82fc", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9bfbe13cbe977b00945bbc15623d98c9bd4a82fc.diff" + }, + "runtime@d9a0bf4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d9a0bf4d39280908352a140008926a82026f550f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d9a0bf4d39280908352a140008926a82026f550f.diff" + }, + "runtime@deb797f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "deb797fda0e08637f1707bc849721f33fe47af50", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/deb797fda0e08637f1707bc849721f33fe47af50.diff" + }, + "runtime@8e6e74e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8e6e74e62ee844e9b36df891ee24637f95b288ce", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8e6e74e62ee844e9b36df891ee24637f95b288ce.diff" + }, + "runtime@efc5e35": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "efc5e35e962228a75fa118b3a7a84768171406df", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/efc5e35e962228a75fa118b3a7a84768171406df.diff" + }, + "runtime@5c12c98": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5c12c98387d57472416198a40909ac732816ad87", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5c12c98387d57472416198a40909ac732816ad87.diff" + }, + "runtime@7c6a676": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7c6a67661c90a436ef750b216f5ec0be46db51f8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7c6a67661c90a436ef750b216f5ec0be46db51f8.diff" + }, + "runtime@823bec2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "823bec251d7269a4d9b3c97aeb0ad63111cd494f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/823bec251d7269a4d9b3c97aeb0ad63111cd494f.diff" + }, + "runtime@6051699": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "60516999cc6cd5d77ed1e2b065730a29ab043d03", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/60516999cc6cd5d77ed1e2b065730a29ab043d03.diff" + }, + "runtime@d29eec6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d29eec617c883b56524eda5add533478f5125448", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d29eec617c883b56524eda5add533478f5125448.diff" + }, + "runtime@ad38fcd": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ad38fcdefa44d7110b5065d4c46d892b1a3341ea", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ad38fcdefa44d7110b5065d4c46d892b1a3341ea.diff" + }, + "runtime@5679b73": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5679b73a00c82e36de9c9b7c7b0efab4985243f7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5679b73a00c82e36de9c9b7c7b0efab4985243f7.diff" + }, + "runtime@179f34d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "179f34d68ea85b990df40a2290a4bf42c4307333", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/179f34d68ea85b990df40a2290a4bf42c4307333.diff" + }, + "runtime@f557d6d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f557d6d6042690dab0fd0ba33956deef83486407", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f557d6d6042690dab0fd0ba33956deef83486407.diff" + }, + "runtime@d69bdbe": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d69bdbe253dc7dc1cf4f8b9a46cd4d04a0faab98", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d69bdbe253dc7dc1cf4f8b9a46cd4d04a0faab98.diff" + }, + "runtime@f68ae3c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f68ae3cf5165ed62ecc839206e89c2de34de3cec", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f68ae3cf5165ed62ecc839206e89c2de34de3cec.diff" + }, + "runtime@49154df": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "49154df485b913062cd108615b8757451e900d90", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/49154df485b913062cd108615b8757451e900d90.diff" + }, + "runtime@736475c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "736475ca4a183e931d84cafb4954cff582b59ae9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/736475ca4a183e931d84cafb4954cff582b59ae9.diff" + }, + "runtime@57ff75e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "57ff75e1276b54733e7056c89c1337d9ef5086c5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/57ff75e1276b54733e7056c89c1337d9ef5086c5.diff" + }, + "runtime@1451f24": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1451f246f061f965779a708fb7d402aa9fe9991c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1451f246f061f965779a708fb7d402aa9fe9991c.diff" + }, + "runtime@5cae5ef": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5cae5ef7e318e3b0e0a3fac63e75088811bc5eb7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5cae5ef7e318e3b0e0a3fac63e75088811bc5eb7.diff" + }, + "runtime@eee8b59": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "eee8b59ef9fdb650c2a4aa668bc27a9f15e941b9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/eee8b59ef9fdb650c2a4aa668bc27a9f15e941b9.diff" + }, + "runtime@1774582": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1774582907cdcd243f41c9c3c4b1a2cd4792a32b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1774582907cdcd243f41c9c3c4b1a2cd4792a32b.diff" + }, + "runtime@cae181e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cae181e727e1f597e7c9952864f6e4cc9656eaa1", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cae181e727e1f597e7c9952864f6e4cc9656eaa1.diff" + }, + "runtime@8274262": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "82742628310076fff22d7e7ee216a74384352056", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/82742628310076fff22d7e7ee216a74384352056.diff" + }, + "runtime@fbd060d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fbd060da1394a284b0073810aca575431790d1fb", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fbd060da1394a284b0073810aca575431790d1fb.diff" + }, + "runtime@2af34ab": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2af34abd8eb11eddb01bf69ed9855d1d191bf42e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2af34abd8eb11eddb01bf69ed9855d1d191bf42e.diff" + }, + "runtime@8181c67": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8181c67f5156da0e89bc80f9bb8e07a8167c58d5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8181c67f5156da0e89bc80f9bb8e07a8167c58d5.diff" + }, + "runtime@9583f33": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9583f33ba3a535508f87bd362082005c06f6f15b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9583f33ba3a535508f87bd362082005c06f6f15b.diff" + }, + "runtime@de80f78": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "de80f780ac76126777fe578c5df735a099b5d659", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/de80f780ac76126777fe578c5df735a099b5d659.diff" + }, + "runtime@b268dec": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b268dec52857c5fb40c6b7bc64b193841ca64eb7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b268dec52857c5fb40c6b7bc64b193841ca64eb7.diff" + }, + "runtime@00e753c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "00e753c9b46cd09c1a43b66ef77f585d0c77a0ef", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/00e753c9b46cd09c1a43b66ef77f585d0c77a0ef.diff" + }, + "runtime@c667ebc": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c667ebc91e13dce6e5fe813e7fd4d48bd033e179", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c667ebc91e13dce6e5fe813e7fd4d48bd033e179.diff" + }, + "runtime@d9747b7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d9747b750260e8614af941522ea92830c96303a8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d9747b750260e8614af941522ea92830c96303a8.diff" + }, + "runtime@f937645": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f937645c1e35f718b7af90c838785564fcc9fbc6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f937645c1e35f718b7af90c838785564fcc9fbc6.diff" + }, + "runtime@f84f009": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f84f00920e1719071492b260375af0d4403d340e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f84f00920e1719071492b260375af0d4403d340e.diff" + }, + "runtime@960dca4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "960dca4391a731a20b25a92cdb500ef737bfcbbd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/960dca4391a731a20b25a92cdb500ef737bfcbbd.diff" + }, + "runtime@3e35839": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3e3583990d48b2dd408b86c7d0ecc0b7079ed90c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3e3583990d48b2dd408b86c7d0ecc0b7079ed90c.diff" + }, + "runtime@f475ab8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f475ab8e654707dbe00c36eaf7623744df8a2656", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f475ab8e654707dbe00c36eaf7623744df8a2656.diff" + }, + "runtime@f8ac08f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f8ac08f32b25431ca53e38ea45a5a78128c978e3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f8ac08f32b25431ca53e38ea45a5a78128c978e3.diff" + }, + "runtime@075204c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "075204ceeeb47fcb48c5b36f9dc6365018e6c3a4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/075204ceeeb47fcb48c5b36f9dc6365018e6c3a4.diff" + }, + "runtime@c14a194": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c14a194f7ccb10bd8004457b29253a98161b50f3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c14a194f7ccb10bd8004457b29253a98161b50f3.diff" + }, + "runtime@c8f006d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c8f006dde97ad9205bc5bd973a63c3a1e973a96a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c8f006dde97ad9205bc5bd973a63c3a1e973a96a.diff" + }, + "runtime@ab11a45": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ab11a456596ec096aa644c603f4a9121dd6bc3c9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ab11a456596ec096aa644c603f4a9121dd6bc3c9.diff" + }, + "runtime@29e53cc": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "29e53cc9a94d4765372d5f3cd8bf873355e9430f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/29e53cc9a94d4765372d5f3cd8bf873355e9430f.diff" + }, + "runtime@fca6e86": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fca6e86dd3cc9706c42e9053f00c99e516aee3fa", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fca6e86dd3cc9706c42e9053f00c99e516aee3fa.diff" + }, + "runtime@e7b2a9b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e7b2a9b920d1859f36ec6f18504e3ca7ece34e7c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e7b2a9b920d1859f36ec6f18504e3ca7ece34e7c.diff" + }, + "runtime@cef61f9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cef61f9ca7bfe8ffb77cd591f4ce324b303ed6c1", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cef61f9ca7bfe8ffb77cd591f4ce324b303ed6c1.diff" + }, + "runtime@503a82e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "503a82ec4893bd1d4b4504f668a7c43f3cd34b09", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/503a82ec4893bd1d4b4504f668a7c43f3cd34b09.diff" + }, + "runtime@8f2cee4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8f2cee49945b857a232ebb7c7d2c40ab6b55e0f2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8f2cee49945b857a232ebb7c7d2c40ab6b55e0f2.diff" + }, + "runtime@d97a9c1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d97a9c19c1281ac1c27c2a7c5a8cf727b17cea69", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d97a9c19c1281ac1c27c2a7c5a8cf727b17cea69.diff" + }, + "runtime@d6ea462": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d6ea4621a9805436aa33f110f0ec67267619fcd2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d6ea4621a9805436aa33f110f0ec67267619fcd2.diff" + }, + "runtime@c802860": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c8028607c000f60cac2f0493422eaae4c20c75ea", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c8028607c000f60cac2f0493422eaae4c20c75ea.diff" + }, + "runtime@f7fc065": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f7fc065559c6c30e648b6af427cfa758c77d4a04", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f7fc065559c6c30e648b6af427cfa758c77d4a04.diff" + }, + "runtime@27cda88": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "27cda88429e26cb48df5264d7227a07785255594", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/27cda88429e26cb48df5264d7227a07785255594.diff" + }, + "runtime@44e21b7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "44e21b7114993e31f0adb5f8f998f9fb6523823a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/44e21b7114993e31f0adb5f8f998f9fb6523823a.diff" + }, + "runtime@127fe2d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "127fe2d9e792b2fa4885a933348a8bf18bf16a34", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/127fe2d9e792b2fa4885a933348a8bf18bf16a34.diff" + }, + "runtime@07e1dcc": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "07e1dcc606e57cce21bc0eb24b2e9ec692690304", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/07e1dcc606e57cce21bc0eb24b2e9ec692690304.diff" + }, + "runtime@0601ec7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0601ec7563077e4385d797e37a748bdd2fe4d1d6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0601ec7563077e4385d797e37a748bdd2fe4d1d6.diff" + }, + "runtime@213a41d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "213a41d3d95b44fc903a6f2783c58aca6d774ad5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/213a41d3d95b44fc903a6f2783c58aca6d774ad5.diff" + }, + "runtime@c5d5be4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c5d5be4b636b5dad36edf8131a7ce1049488991c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c5d5be4b636b5dad36edf8131a7ce1049488991c.diff" + }, + "runtime@c5c9ddd": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c5c9dddb69f18d85f151bff029815280206f5184", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c5c9dddb69f18d85f151bff029815280206f5184.diff" + }, + "runtime@e2a94a1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e2a94a1b7a621ea9339ad4c4919d732b9f4aadf7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e2a94a1b7a621ea9339ad4c4919d732b9f4aadf7.diff" + }, + "runtime@5302011": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5302011c5d68c1b0b98fa8599d0a14cad979344b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5302011c5d68c1b0b98fa8599d0a14cad979344b.diff" + }, + "runtime@2fbf43f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2fbf43f67bb78cd01c68e2639606fe62735585a8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2fbf43f67bb78cd01c68e2639606fe62735585a8.diff" + }, + "runtime@4349c24": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4349c2462ccd7d52023b50a91466caf3f2288c7f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4349c2462ccd7d52023b50a91466caf3f2288c7f.diff" + }, + "runtime@f4d21a8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f4d21a8fce56e47242549c5a9513424888553916", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f4d21a8fce56e47242549c5a9513424888553916.diff" + }, + "runtime@a48fa8e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a48fa8e0753f12208371bf806526746bba58ac33", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a48fa8e0753f12208371bf806526746bba58ac33.diff" + }, + "runtime@0ff5be7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0ff5be7a1f7f560c1f3b7454fa9d4c5ec03512a8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0ff5be7a1f7f560c1f3b7454fa9d4c5ec03512a8.diff" + }, + "runtime@1b3a93f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1b3a93fa490f70300781b8c6f5e86af6807e5517", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1b3a93fa490f70300781b8c6f5e86af6807e5517.diff" + }, + "runtime@711e2aa": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "711e2aa0a7d79f838303f9cafaa483299fcb2edc", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/711e2aa0a7d79f838303f9cafaa483299fcb2edc.diff" + }, + "runtime@2012f26": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2012f268105eb9a592540b3111e7eb3a54f899ea", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2012f268105eb9a592540b3111e7eb3a54f899ea.diff" + }, + "runtime@6e15912": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6e1591212674ff57847df95a0918d54615f22a66", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6e1591212674ff57847df95a0918d54615f22a66.diff" + }, + "runtime@23bc7e3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "23bc7e384ee4fba03335b401878da63af9e6b2ae", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/23bc7e384ee4fba03335b401878da63af9e6b2ae.diff" + }, + "runtime@93d49b4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "93d49b462849acbac36fbd24c944c1d903cd15fe", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/93d49b462849acbac36fbd24c944c1d903cd15fe.diff" + }, + "runtime@bd273d0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "bd273d02f2b19fd234d0dda1cc80dc16c654af2d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/bd273d02f2b19fd234d0dda1cc80dc16c654af2d.diff" + }, + "runtime@84057bb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "84057bbcb9613728d19f3f48b2e398e3d7e10f14", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/84057bbcb9613728d19f3f48b2e398e3d7e10f14.diff" + }, + "runtime@0548fed": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0548fed2b6c3eba3ddda0c98e2b81e7bd336b699", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0548fed2b6c3eba3ddda0c98e2b81e7bd336b699.diff" + }, + "runtime@cb26605": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cb26605030beed02179a1ed3b7f1327ff50a124e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cb26605030beed02179a1ed3b7f1327ff50a124e.diff" + }, + "runtime@1ece45f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1ece45f85e2cb1e4c3f07f0d8eb853e546ef0ae5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1ece45f85e2cb1e4c3f07f0d8eb853e546ef0ae5.diff" + }, + "runtime@a7094a3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a7094a33275ca25fc93a0e3cf06938a322d0cf7f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a7094a33275ca25fc93a0e3cf06938a322d0cf7f.diff" + }, + "runtime@884a44c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "884a44c7fb1d44175a893440b070d75e876a4436", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/884a44c7fb1d44175a893440b070d75e876a4436.diff" + }, + "runtime@b1f031d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b1f031d069e23d6e517fe198410d85591995bcbc", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b1f031d069e23d6e517fe198410d85591995bcbc.diff" + }, + "runtime@e5f7893": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e5f78931886de441a0c9ffd26ad373a0c1d1bc77", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e5f78931886de441a0c9ffd26ad373a0c1d1bc77.diff" + }, + "runtime@ec52b77": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ec52b776c69c06ea292420e61aa6911e45bfdbb2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ec52b776c69c06ea292420e61aa6911e45bfdbb2.diff" + }, + "runtime@202f33c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "202f33c8bbb326624532266e88cf492e638811ce", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/202f33c8bbb326624532266e88cf492e638811ce.diff" + }, + "runtime@66f3596": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "66f359644192a7f1b3123a077a6e1d8f1fbf16e5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/66f359644192a7f1b3123a077a6e1d8f1fbf16e5.diff" + }, + "runtime@c7ba7f9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c7ba7f93027da2557e07d89b2d9d7bc5827d712e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c7ba7f93027da2557e07d89b2d9d7bc5827d712e.diff" + }, + "runtime@2dac4d5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2dac4d51a62748de17e9452a074ecb4f6411b11f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2dac4d51a62748de17e9452a074ecb4f6411b11f.diff" + }, + "runtime@4594a58": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4594a585236925c0ab6e7503486dd9f9178f11e2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4594a585236925c0ab6e7503486dd9f9178f11e2.diff" + }, + "runtime@ca778ae": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ca778ae603146daa53b0a6abf37bc71c4612261e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ca778ae603146daa53b0a6abf37bc71c4612261e.diff" + }, + "runtime@58f1455": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "58f1455c6d5ace630bd4bc3be477f76ab4235b05", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/58f1455c6d5ace630bd4bc3be477f76ab4235b05.diff" + }, + "runtime@ae967fe": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ae967feaba47c945884fb6ce232621e8616864f8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ae967feaba47c945884fb6ce232621e8616864f8.diff" + }, + "runtime@df9f260": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "df9f2603d4f36d340b17abced2cc0fb046278c4f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/df9f2603d4f36d340b17abced2cc0fb046278c4f.diff" + }, + "runtime@dad73ab": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "dad73abe3f99871e9dc0be8385fd0a4b0e061f64", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/dad73abe3f99871e9dc0be8385fd0a4b0e061f64.diff" + }, + "runtime@3b61bfa": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3b61bfa99c8193d78d56c4d1ed1f9720b7193c59", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3b61bfa99c8193d78d56c4d1ed1f9720b7193c59.diff" + }, + "runtime@904ecbb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "904ecbbbd66b2a75c7466bf277ba3703ea44dd26", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/904ecbbbd66b2a75c7466bf277ba3703ea44dd26.diff" + }, + "runtime@3b504c5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3b504c5f15e29a6b30d60e77f6452aa6bda2dff8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3b504c5f15e29a6b30d60e77f6452aa6bda2dff8.diff" + }, + "runtime@81c46c6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "81c46c65a0ebd8ff0e34bf35a33be6ff768ca4e3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/81c46c65a0ebd8ff0e34bf35a33be6ff768ca4e3.diff" + }, + "runtime@132599d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "132599d0134bd52cf2c97d1d795e360ca91c780a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/132599d0134bd52cf2c97d1d795e360ca91c780a.diff" + }, + "runtime@f714f86": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f714f86a79c9e5b1cdacf0d33dc5ddf79ae2fce8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f714f86a79c9e5b1cdacf0d33dc5ddf79ae2fce8.diff" + }, + "runtime@a7a54a5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a7a54a5c128bba5f7206cee3142c1aec0e9a7210", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a7a54a5c128bba5f7206cee3142c1aec0e9a7210.diff" + }, + "runtime@0339995": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "033999592b8a93a838f43dba43ac47a6a8943a66", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/033999592b8a93a838f43dba43ac47a6a8943a66.diff" + }, + "runtime@97de220": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "97de220c6d8f5d3aa571bb96a1550edf169cc7db", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/97de220c6d8f5d3aa571bb96a1550edf169cc7db.diff" + }, + "runtime@c94ed87": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c94ed87e34e8ecf5d37fc0cb0e6e964d0260c32f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c94ed87e34e8ecf5d37fc0cb0e6e964d0260c32f.diff" + }, + "runtime@d203c6c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d203c6c8ae60eb23dddf307ae1abf7852cb7eac6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d203c6c8ae60eb23dddf307ae1abf7852cb7eac6.diff" + }, + "runtime@27689b6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "27689b6863657f7492dfb1510d056e2c52784c0a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/27689b6863657f7492dfb1510d056e2c52784c0a.diff" + }, + "runtime@19db7ab": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "19db7ab82302422a3db11ca3bd586b6f95eb3a72", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/19db7ab82302422a3db11ca3bd586b6f95eb3a72.diff" + }, + "runtime@da4894b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "da4894b1487d1641af5684c792f832e46ca12c02", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/da4894b1487d1641af5684c792f832e46ca12c02.diff" + }, + "runtime@a90eed2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a90eed218a8b4a38b63576bfc52f3b998a25093a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a90eed218a8b4a38b63576bfc52f3b998a25093a.diff" + }, + "runtime@689ceb6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "689ceb67fa96c64772fe4bb87518aa8635f4a314", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/689ceb67fa96c64772fe4bb87518aa8635f4a314.diff" + }, + "runtime@1c7e395": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1c7e3957fef1d81b195b4b824f6c373460d84042", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1c7e3957fef1d81b195b4b824f6c373460d84042.diff" + }, + "runtime@52114b6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "52114b620a8f21fcdad8e7f538af55c80b74821d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/52114b620a8f21fcdad8e7f538af55c80b74821d.diff" + }, + "runtime@619214e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "619214e61bbac7a9977f521fa6c327f650587116", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/619214e61bbac7a9977f521fa6c327f650587116.diff" + }, + "runtime@b613202": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b613202168f0bda853c00968238fe571643cfde4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b613202168f0bda853c00968238fe571643cfde4.diff" + }, + "runtime@46d35c2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "46d35c2e71b9c05369e0c4a909afe6673eecc9ed", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/46d35c2e71b9c05369e0c4a909afe6673eecc9ed.diff" + }, + "runtime@6e58274": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6e5827473c1630fec0d5d1c82b2c9a0a6789b9f0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6e5827473c1630fec0d5d1c82b2c9a0a6789b9f0.diff" + }, + "runtime@9511672": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "95116723914aa949c28f93a2765e4b800f50dac1", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/95116723914aa949c28f93a2765e4b800f50dac1.diff" + }, + "runtime@fdc3e49": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fdc3e496a6b527a1ba5a5c71272f9a124fb4de92", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fdc3e496a6b527a1ba5a5c71272f9a124fb4de92.diff" + }, + "runtime@f5ba5f6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f5ba5f689e15a7aa855f27d8d99207128b47bbf5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f5ba5f689e15a7aa855f27d8d99207128b47bbf5.diff" + }, + "runtime@85b9bc5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "85b9bc521939ab950171921e021508d5f267f51b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/85b9bc521939ab950171921e021508d5f267f51b.diff" + }, + "runtime@33e63ad": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "33e63ad83ef2948aaffec6b44c3efae0b736d4cb", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/33e63ad83ef2948aaffec6b44c3efae0b736d4cb.diff" + }, + "runtime@9b312a6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9b312a626337f63b5bffb9c7c1d22c7e1b4725de", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9b312a626337f63b5bffb9c7c1d22c7e1b4725de.diff" + }, + "runtime@40f1da5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "40f1da5b33c54b0fb8d76bca08f88c9874c57061", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/40f1da5b33c54b0fb8d76bca08f88c9874c57061.diff" + }, + "runtime@b08387a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b08387a0177c6e2c82ac68c31dc3a7e24e773778", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b08387a0177c6e2c82ac68c31dc3a7e24e773778.diff" + }, + "runtime@0f12574": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0f125741186d2afb5cd4adaaba586ab594321881", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0f125741186d2afb5cd4adaaba586ab594321881.diff" + }, + "runtime@adc1912": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "adc191279b429873c29e50f920061b2dc9b4b318", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/adc191279b429873c29e50f920061b2dc9b4b318.diff" + }, + "runtime@77b5f2f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "77b5f2f3935a74a0240ee7e1b0da72ce88ca8d88", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/77b5f2f3935a74a0240ee7e1b0da72ce88ca8d88.diff" + }, + "runtime@b5f00c7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b5f00c718c865e9b9c546cbd7f0444882c3303c9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b5f00c718c865e9b9c546cbd7f0444882c3303c9.diff" + }, + "runtime@e4a99ce": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e4a99ce68e1895f984d7150ddaf12cf1d0ab3acf", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e4a99ce68e1895f984d7150ddaf12cf1d0ab3acf.diff" + }, + "runtime@df19ee7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "df19ee7f47238929f72e532ccc2e97be7d8f406d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/df19ee7f47238929f72e532ccc2e97be7d8f406d.diff" + }, + "runtime@4a31f31": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4a31f31508cdff37d5cd481367baea4f4d80df99", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4a31f31508cdff37d5cd481367baea4f4d80df99.diff" + }, + "runtime@78222e6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "78222e6c7ee199aa3edb425e3e6cd28e929dfbb7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/78222e6c7ee199aa3edb425e3e6cd28e929dfbb7.diff" + }, + "runtime@770d929": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "770d92902f7736cde6abd7d7c7e6447f40a262b9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/770d92902f7736cde6abd7d7c7e6447f40a262b9.diff" + }, + "runtime@bdf19d3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "bdf19d33627c3d690b1bbb0f85d44c1724c44aac", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/bdf19d33627c3d690b1bbb0f85d44c1724c44aac.diff" + }, + "runtime@69e4ae5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "69e4ae5b995b0525fbd511c8bbd7c724eb8c4394", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/69e4ae5b995b0525fbd511c8bbd7c724eb8c4394.diff" + }, + "runtime@7b14f37": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7b14f375bbc80a0194c30190d395709a06084f5a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7b14f375bbc80a0194c30190d395709a06084f5a.diff" + }, + "runtime@0fe50ea": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0fe50ea7068fecf3d9170a27d49a215a7fc2f4d4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0fe50ea7068fecf3d9170a27d49a215a7fc2f4d4.diff" + }, + "runtime@68be26b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "68be26b369db02d3877587cd9bfaf7bde2edfa09", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/68be26b369db02d3877587cd9bfaf7bde2edfa09.diff" + }, + "runtime@3390dc8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3390dc80549ff34d58c7ea01d86166a705899a25", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3390dc80549ff34d58c7ea01d86166a705899a25.diff" + }, + "runtime@d63c175": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d63c175469bcaa3f3d5bc73aa6fd108bbf00797b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d63c175469bcaa3f3d5bc73aa6fd108bbf00797b.diff" + }, + "runtime@6a67552": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6a67552ef6bd49479e58f83190c72bf53d7bee83", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6a67552ef6bd49479e58f83190c72bf53d7bee83.diff" + }, + "runtime@133c7bd": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "133c7bde3fb7dd914f423ffb3e408cc61787e0bb", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/133c7bde3fb7dd914f423ffb3e408cc61787e0bb.diff" + }, + "runtime@cb7c257": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cb7c257460f09472243f3524a50ea25d5a716b66", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cb7c257460f09472243f3524a50ea25d5a716b66.diff" + }, + "runtime@a71427e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a71427e22d39141494062310a54903cc61e4da1b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a71427e22d39141494062310a54903cc61e4da1b.diff" + }, + "runtime@e5dde0c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e5dde0cb50d5827d38008f414a35e9a54c65ac0e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e5dde0cb50d5827d38008f414a35e9a54c65ac0e.diff" + }, + "runtime@eae0a64": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "eae0a64e4c28b1a692c02650a8d15d6383a6e72b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/eae0a64e4c28b1a692c02650a8d15d6383a6e72b.diff" + }, + "runtime@4203f01": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4203f012d385a0c19e851ab1907570a2bf731150", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4203f012d385a0c19e851ab1907570a2bf731150.diff" + }, + "runtime@c0a9bef": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c0a9bef1b1c02cf4e236585f4617d7dbddff1325", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c0a9bef1b1c02cf4e236585f4617d7dbddff1325.diff" + }, + "runtime@7a5e8fc": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7a5e8fc86df2058a2bc5d5e25cb7309f456befa6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7a5e8fc86df2058a2bc5d5e25cb7309f456befa6.diff" + }, + "runtime@0cc4cf9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0cc4cf96be3a407d3cd143aa804b962542647f3d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0cc4cf96be3a407d3cd143aa804b962542647f3d.diff" + }, + "runtime@c746487": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c746487df64022efe14fe5bef6559d983d6b578a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c746487df64022efe14fe5bef6559d983d6b578a.diff" + }, + "runtime@fcff831": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fcff8314e70ef6f6b08b6733be71361657ab3701", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fcff8314e70ef6f6b08b6733be71361657ab3701.diff" + }, + "runtime@63bdcc4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "63bdcc4d49be504df5235bbc73702fae59b0990a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/63bdcc4d49be504df5235bbc73702fae59b0990a.diff" + }, + "runtime@1be4689": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1be4689a37059381faf663f3fd6df2ee8b9c113a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1be4689a37059381faf663f3fd6df2ee8b9c113a.diff" + }, + "runtime@371aca3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "371aca3a6c78a203aa32a0bd4da84e6b8da5ba63", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/371aca3a6c78a203aa32a0bd4da84e6b8da5ba63.diff" + }, + "runtime@7756d81": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7756d810e33a9ad11b1bf4456babaeeb136713e0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7756d810e33a9ad11b1bf4456babaeeb136713e0.diff" + }, + "runtime@a1df4fb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a1df4fb964dc6e58dfce7ca9892c986495fdaede", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a1df4fb964dc6e58dfce7ca9892c986495fdaede.diff" + }, + "runtime@b04a3f5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b04a3f557182be69a546ebc920451edfbb758ec3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b04a3f557182be69a546ebc920451edfbb758ec3.diff" + }, + "runtime@eeedc34": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "eeedc34d227098e49493523a3da91a0e0ce541b7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/eeedc34d227098e49493523a3da91a0e0ce541b7.diff" + }, + "runtime@c142b2a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c142b2a7a365103fd9932733436504b94e9082b8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c142b2a7a365103fd9932733436504b94e9082b8.diff" + }, + "runtime@fc9084d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fc9084d2b8d74fa1d9cb28416d11d7803391c4d0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fc9084d2b8d74fa1d9cb28416d11d7803391c4d0.diff" + }, + "runtime@42b1679": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "42b16799d40406ad38c8747fa490933abb8389b6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/42b16799d40406ad38c8747fa490933abb8389b6.diff" + }, + "runtime@ea5071e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ea5071ef01c0198d4d58b8db755324057670b202", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ea5071ef01c0198d4d58b8db755324057670b202.diff" + }, + "runtime@c603c98": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c603c980f19b46c728b820acb4fe4f9d61694cee", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c603c980f19b46c728b820acb4fe4f9d61694cee.diff" + }, + "runtime@e99d522": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e99d522cc12c5022312c4fe7fbb8199450940d39", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e99d522cc12c5022312c4fe7fbb8199450940d39.diff" + }, + "runtime@17ca03d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "17ca03d0e3f888712e81e39ee965dd00b08d83d3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/17ca03d0e3f888712e81e39ee965dd00b08d83d3.diff" + }, + "runtime@71ffd70": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "71ffd70d2b9318b6d42c17297ca854507694ad89", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/71ffd70d2b9318b6d42c17297ca854507694ad89.diff" + }, + "runtime@9c52f8f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9c52f8fbef592b7394fa0ff517c62d58a261de56", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9c52f8fbef592b7394fa0ff517c62d58a261de56.diff" + }, + "runtime@de761a5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "de761a5e0a7bd363b5eb119260acfc8da4e9608c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/de761a5e0a7bd363b5eb119260acfc8da4e9608c.diff" + }, + "runtime@8dc23df": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8dc23dff269239bbc3bb61ece8c080219eb98251", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8dc23dff269239bbc3bb61ece8c080219eb98251.diff" + }, + "runtime@25eb60e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "25eb60e95bb01ec0030f1fe8ee4ee9753412cdcf", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/25eb60e95bb01ec0030f1fe8ee4ee9753412cdcf.diff" + }, + "runtime@a7b56d0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a7b56d05e2f42ba2c74db1edfda7d00479dc0e25", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a7b56d05e2f42ba2c74db1edfda7d00479dc0e25.diff" + }, + "runtime@7b67779": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7b677795021892ab4506cd8f05e3ac5a8ea0ffc5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7b677795021892ab4506cd8f05e3ac5a8ea0ffc5.diff" + }, + "runtime@b5fef80": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b5fef80118cc5033664e0286ac6d14af4e635dd6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b5fef80118cc5033664e0286ac6d14af4e635dd6.diff" + }, + "runtime@e1c62a5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e1c62a52621e78022c2dc1f17f2115ed8238b9c4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e1c62a52621e78022c2dc1f17f2115ed8238b9c4.diff" + }, + "runtime@03d7b4c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "03d7b4c02ac699b43920b30b69c2c1f20c8798b7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/03d7b4c02ac699b43920b30b69c2c1f20c8798b7.diff" + }, + "runtime@c30eec2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c30eec2d72502dcf42e70b1b8233006c7002fc05", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c30eec2d72502dcf42e70b1b8233006c7002fc05.diff" + }, + "runtime@23855bf": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "23855bfa5181167a9cefc6db20ed37ed7ba078a9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/23855bfa5181167a9cefc6db20ed37ed7ba078a9.diff" + }, + "runtime@f297dfb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f297dfb1ea2e2e2c893ef2ef3549b6805aa9198b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f297dfb1ea2e2e2c893ef2ef3549b6805aa9198b.diff" + }, + "runtime@cdcb8f3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cdcb8f3ea38f7017d9edb7d2e912d717c05bff54", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cdcb8f3ea38f7017d9edb7d2e912d717c05bff54.diff" + }, + "runtime@9b47894": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9b47894e11ff4628e1cfaaa2c8e2316bfd4425ad", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9b47894e11ff4628e1cfaaa2c8e2316bfd4425ad.diff" + }, + "runtime@c69c476": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c69c4764ffe5cb7640419acbae44592b4810ab38", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c69c4764ffe5cb7640419acbae44592b4810ab38.diff" + }, + "runtime@3176283": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3176283d96819946eff7a6ddc65e88b52d4257e7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3176283d96819946eff7a6ddc65e88b52d4257e7.diff" + }, + "runtime@7356734": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7356734a70e52816c9768009bafb4ff24e32b7d4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7356734a70e52816c9768009bafb4ff24e32b7d4.diff" + }, + "runtime@b6a3e78": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b6a3e784f0bb418fd2fa7f6497f1b642210c3ea4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b6a3e784f0bb418fd2fa7f6497f1b642210c3ea4.diff" + }, + "runtime@06d5e82": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "06d5e82106fc9574e0d016b202b81d60300d1c15", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/06d5e82106fc9574e0d016b202b81d60300d1c15.diff" + }, + "runtime@6ef43c5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6ef43c52dd9fdd37b41808a9c42e7b52403c1d15", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6ef43c52dd9fdd37b41808a9c42e7b52403c1d15.diff" + }, + "runtime@d7362ec": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d7362ecd2500f0536b4a162d469575494b36390f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d7362ecd2500f0536b4a162d469575494b36390f.diff" + }, + "runtime@aede44d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "aede44dcdbf9ef96c8c43dacc73e1f0b5c1a3e8c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/aede44dcdbf9ef96c8c43dacc73e1f0b5c1a3e8c.diff" + }, + "runtime@b41bbea": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b41bbeab8b775a5058bad74e73a84476bfd8d9a7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b41bbeab8b775a5058bad74e73a84476bfd8d9a7.diff" + }, + "runtime@09865a9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "09865a95cec8a1cbf0c24fc2b1b452d86b77cdb2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/09865a95cec8a1cbf0c24fc2b1b452d86b77cdb2.diff" + }, + "runtime@e191851": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e191851f33f1c94adc84cb7b151275fa077b1308", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e191851f33f1c94adc84cb7b151275fa077b1308.diff" + }, + "runtime@50f4fec": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "50f4fecf8757b451d40bec38e1ae73f25b0e7d4c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/50f4fecf8757b451d40bec38e1ae73f25b0e7d4c.diff" + }, + "runtime@aba6825": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "aba6825a2f0f819e53b0c05b9d35f0c1c52a5af1", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/aba6825a2f0f819e53b0c05b9d35f0c1c52a5af1.diff" + }, + "runtime@6aa153f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6aa153fa3a85aafea6042e6ed819f74a459f9584", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6aa153fa3a85aafea6042e6ed819f74a459f9584.diff" + }, + "runtime@e756eed": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e756eedb8099dcd526c72539678fb3be92210ede", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e756eedb8099dcd526c72539678fb3be92210ede.diff" + }, + "runtime@a064f10": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a064f10785a00344fbf863e9b9255a036167700c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a064f10785a00344fbf863e9b9255a036167700c.diff" + }, + "runtime@9eeb791": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9eeb791a3d9f1263d47b86a163751bf941a377f9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9eeb791a3d9f1263d47b86a163751bf941a377f9.diff" + }, + "runtime@1c94b86": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1c94b86de4d8dd06420902131844566d0aa84342", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1c94b86de4d8dd06420902131844566d0aa84342.diff" + }, + "runtime@faf542a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "faf542aff7fc575df781d4817b23794bbe782868", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/faf542aff7fc575df781d4817b23794bbe782868.diff" + }, + "runtime@1d9d70a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1d9d70afa98a83699719b304148a9945d37d916b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1d9d70afa98a83699719b304148a9945d37d916b.diff" + }, + "runtime@de40d80": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "de40d8082a41404cd854127069644e2d1cd8afac", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/de40d8082a41404cd854127069644e2d1cd8afac.diff" + }, + "runtime@d78ab5a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d78ab5ac16a50504b05a9452a464f86083325723", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d78ab5ac16a50504b05a9452a464f86083325723.diff" + }, + "runtime@4353591": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "43535912e359dfe9a1ea3cc7f2362635d5351af6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/43535912e359dfe9a1ea3cc7f2362635d5351af6.diff" + }, + "runtime@6c9a038": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6c9a03805a200b5d3a45ea1eae82cc3853dc5881", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6c9a03805a200b5d3a45ea1eae82cc3853dc5881.diff" + }, + "runtime@5306ee8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5306ee86319661253c3b55ef82e8a9ebb43bfdd0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5306ee86319661253c3b55ef82e8a9ebb43bfdd0.diff" + }, + "runtime@348ad67": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "348ad67a2c1e3349b7c9fda78d2ba929de125921", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/348ad67a2c1e3349b7c9fda78d2ba929de125921.diff" + }, + "runtime@23cced9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "23cced9519bb9ffb8f06a97658d84a8275795b0c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/23cced9519bb9ffb8f06a97658d84a8275795b0c.diff" + }, + "runtime@a659059": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a6590591ef32ab28632d9bc14efaf0044be728df", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a6590591ef32ab28632d9bc14efaf0044be728df.diff" + }, + "runtime@f1b1b93": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f1b1b935ee5bafd149ae08e4db302f3651e47589", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f1b1b935ee5bafd149ae08e4db302f3651e47589.diff" + }, + "runtime@9b46e58": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9b46e58206b2695ad7089ceea0db93cad22abbd7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9b46e58206b2695ad7089ceea0db93cad22abbd7.diff" + }, + "runtime@07ad470": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "07ad470ed5ef6bff5f1eb977ed451e5b45dff295", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/07ad470ed5ef6bff5f1eb977ed451e5b45dff295.diff" + }, + "runtime@2afb4c5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2afb4c51d26521dd5753e2b817ea66e36c16de87", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2afb4c51d26521dd5753e2b817ea66e36c16de87.diff" + }, + "runtime@97f4414": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "97f4414fada002304cc00b394d2bb94f3e727a42", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/97f4414fada002304cc00b394d2bb94f3e727a42.diff" + }, + "runtime@fdd418a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fdd418ad28f46f7c432d71787cadf306637c4d69", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fdd418ad28f46f7c432d71787cadf306637c4d69.diff" + }, + "runtime@1fd4dda": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1fd4dda3a484193fbc519eede07ac437cb462fa3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1fd4dda3a484193fbc519eede07ac437cb462fa3.diff" + }, + "runtime@56ed396": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "56ed3964182afd0e28f82c28d1c3434068115228", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/56ed3964182afd0e28f82c28d1c3434068115228.diff" + }, + "runtime@ad33dab": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ad33dab57601040d4ad6ac9ca5ffdef34c34bad0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ad33dab57601040d4ad6ac9ca5ffdef34c34bad0.diff" + }, + "runtime@a550606": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a55060629d3a0efeb16722baefe253d1668fe681", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a55060629d3a0efeb16722baefe253d1668fe681.diff" + }, + "runtime@ab91a5c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ab91a5c442fe806b0882f25f9b29b9cbaf2c54b0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ab91a5c442fe806b0882f25f9b29b9cbaf2c54b0.diff" + }, + "runtime@44451f3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "44451f37509bfa80dbb56edeffaeba1c05a8b8e2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/44451f37509bfa80dbb56edeffaeba1c05a8b8e2.diff" + }, + "runtime@96bb371": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "96bb371a068e02b492b768db880fb3707ceef75d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/96bb371a068e02b492b768db880fb3707ceef75d.diff" + }, + "runtime@e014236": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e014236e921c53f7cf39644aca871703e7eb2b60", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e014236e921c53f7cf39644aca871703e7eb2b60.diff" + }, + "runtime@77f0e35": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "77f0e350bc25ea673519f3233bdfd131d056f48a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/77f0e350bc25ea673519f3233bdfd131d056f48a.diff" + }, + "runtime@64d10ef": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "64d10ef18938ee47fc97a06a649a9844de49a365", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/64d10ef18938ee47fc97a06a649a9844de49a365.diff" + }, + "runtime@e0d7d73": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e0d7d73bc795946e5d3cb3b36476482b6505c728", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e0d7d73bc795946e5d3cb3b36476482b6505c728.diff" + }, + "runtime@4a0bfed": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4a0bfed89630402ab0405ebe452b9a0f9876c59a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4a0bfed89630402ab0405ebe452b9a0f9876c59a.diff" + }, + "runtime@20650a9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "20650a93777971f69ca228dc257a5e64ae0d1745", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/20650a93777971f69ca228dc257a5e64ae0d1745.diff" + }, + "runtime@8277247": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "827724744e1369067898eb257875e6b3f0be3016", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/827724744e1369067898eb257875e6b3f0be3016.diff" + }, + "runtime@e01d40a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e01d40ab0160f1b40c267068cbc2fbb6e47878ed", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e01d40ab0160f1b40c267068cbc2fbb6e47878ed.diff" + }, + "runtime@12dbdb7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "12dbdb7a08449e2275d88279f3e417f84c175625", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/12dbdb7a08449e2275d88279f3e417f84c175625.diff" + }, + "runtime@b0bc48e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b0bc48eea7e28be9670d4ac499a5778d0ac99909", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b0bc48eea7e28be9670d4ac499a5778d0ac99909.diff" + }, + "runtime@3a04c26": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3a04c2606ca8b26dcc895bcdd6534c9147f4e4ef", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3a04c2606ca8b26dcc895bcdd6534c9147f4e4ef.diff" + }, + "runtime@0b62fdf": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0b62fdf910b15fd7b24d4dbc9a882255aa6c2de6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0b62fdf910b15fd7b24d4dbc9a882255aa6c2de6.diff" + }, + "runtime@daa66d1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "daa66d1ee30e5462547c02c9439dce6520bf069d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/daa66d1ee30e5462547c02c9439dce6520bf069d.diff" + }, + "runtime@371f3c3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "371f3c356098295803263c75b74e5ee1d10cae01", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/371f3c356098295803263c75b74e5ee1d10cae01.diff" + }, + "runtime@264cff6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "264cff61a4dfc14653da9eef56cc397e4a94990d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/264cff61a4dfc14653da9eef56cc397e4a94990d.diff" + }, + "runtime@442f29b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "442f29b954dcb953f2ad66983c8365b45d05ecb6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/442f29b954dcb953f2ad66983c8365b45d05ecb6.diff" + }, + "runtime@3f4b0c5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3f4b0c520fd27c858fecf182de6ec085c073e75a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3f4b0c520fd27c858fecf182de6ec085c073e75a.diff" + }, + "runtime@b4cf4e4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b4cf4e4f53eaf9c1a7f0d66716d36437646d94e2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b4cf4e4f53eaf9c1a7f0d66716d36437646d94e2.diff" + }, + "runtime@5fcfea1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5fcfea11dbb6954a7316bb9e88876540e450e5c5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5fcfea11dbb6954a7316bb9e88876540e450e5c5.diff" + }, + "runtime@f3ee269": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f3ee2696223fa6acfef14c839311eaa657cdc071", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f3ee2696223fa6acfef14c839311eaa657cdc071.diff" + }, + "runtime@a155715": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a155715f803c75dd0dfd7ebab88b30848b84ccc0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a155715f803c75dd0dfd7ebab88b30848b84ccc0.diff" + }, + "runtime@0f01e11": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0f01e117143befce315101373fe7cfeaf2c9b961", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0f01e117143befce315101373fe7cfeaf2c9b961.diff" + }, + "runtime@56ddfa0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "56ddfa0beb12ac3ae41f9eca62c84f3c71a6a942", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/56ddfa0beb12ac3ae41f9eca62c84f3c71a6a942.diff" + }, + "runtime@9766d74": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9766d74520aafb6daab2daf9fdcda26e3d724aa3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9766d74520aafb6daab2daf9fdcda26e3d724aa3.diff" + }, + "runtime@39403ad": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "39403ad19d1eb4bb57133da1fbc57ab7099ff96a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/39403ad19d1eb4bb57133da1fbc57ab7099ff96a.diff" + }, + "runtime@df1ab13": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "df1ab13677bb2a84da713ee06b223a2167b802d4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/df1ab13677bb2a84da713ee06b223a2167b802d4.diff" + }, + "runtime@744234e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "744234e5c35fb780bfef9c422f83d7489ca690bb", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/744234e5c35fb780bfef9c422f83d7489ca690bb.diff" + }, + "runtime@d5cfd7b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d5cfd7bf2c0e890609f7e9468b49cc526a6ed891", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d5cfd7bf2c0e890609f7e9468b49cc526a6ed891.diff" + }, + "runtime@ce7caaf": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ce7caaf15d07d02da4d58347a271ef0a284821ec", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ce7caaf15d07d02da4d58347a271ef0a284821ec.diff" + }, + "runtime@17b089f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "17b089f9dea34dff21e3417ab7ed53ef30a4f6b0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/17b089f9dea34dff21e3417ab7ed53ef30a4f6b0.diff" + }, + "runtime@a964328": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a964328dc83d5ce18864ae4257f89abc2a9c0a08", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a964328dc83d5ce18864ae4257f89abc2a9c0a08.diff" + }, + "runtime@0a4a347": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0a4a34787426f759860d2691f194ffe2388fa931", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0a4a34787426f759860d2691f194ffe2388fa931.diff" + }, + "runtime@4d392de": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4d392de153f966681b12d08283a2b381f814dc1b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4d392de153f966681b12d08283a2b381f814dc1b.diff" + }, + "runtime@cc61b18": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cc61b1802a6c5d2a9f359d60fc3a51ba321ff312", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cc61b1802a6c5d2a9f359d60fc3a51ba321ff312.diff" + }, + "runtime@f2abb7c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f2abb7c1b664a83d72c9e420ae5200107dde065a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f2abb7c1b664a83d72c9e420ae5200107dde065a.diff" + }, + "runtime@0e73bdc": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0e73bdcd329be87a31a3c7b768e05b1b1fb5ecca", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0e73bdcd329be87a31a3c7b768e05b1b1fb5ecca.diff" + }, + "runtime@a8a0309": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a8a03092102aa4657e1a783556a2ca9968c39c90", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a8a03092102aa4657e1a783556a2ca9968c39c90.diff" + }, + "runtime@8af6d06": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8af6d0607e926c218ec8c37a719cb9850eee8576", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8af6d0607e926c218ec8c37a719cb9850eee8576.diff" + }, + "runtime@ee282ee": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ee282eea155898d2a87d753a8a81889907f0d5f6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ee282eea155898d2a87d753a8a81889907f0d5f6.diff" + }, + "runtime@b18bf5e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b18bf5e5fea843d626ef0bfc14d95367e6cd22e5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b18bf5e5fea843d626ef0bfc14d95367e6cd22e5.diff" + }, + "runtime@df927b5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "df927b5deaabdce683a9553c58b283ec0555c45f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/df927b5deaabdce683a9553c58b283ec0555c45f.diff" + }, + "runtime@d8aa6be": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d8aa6bedb641ccb8a704103e619d9d2cae056097", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d8aa6bedb641ccb8a704103e619d9d2cae056097.diff" + }, + "runtime@9524c93": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9524c93fb0deb6a0f84966b78ca5597550be3b7b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9524c93fb0deb6a0f84966b78ca5597550be3b7b.diff" + }, + "runtime@0034033": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "003403337b652148b9a62ae5a6a13df4bb1d264f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/003403337b652148b9a62ae5a6a13df4bb1d264f.diff" + }, + "runtime@523aab9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "523aab932e0b81c6429a5625918e2dde599a14b5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/523aab932e0b81c6429a5625918e2dde599a14b5.diff" + }, + "runtime@60ed188": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "60ed188438b868518294c9cb50c377c5d8ef1059", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/60ed188438b868518294c9cb50c377c5d8ef1059.diff" + }, + "runtime@92dc544": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "92dc544181c96ef7000cb5e2c06408f8ebd18ec8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/92dc544181c96ef7000cb5e2c06408f8ebd18ec8.diff" + }, + "runtime@6bd4752": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6bd4752acebe8b8d8e7675b0dc602d32cfc2c8f8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6bd4752acebe8b8d8e7675b0dc602d32cfc2c8f8.diff" + }, + "runtime@3bd006f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3bd006fc465c44e5200f20720cf1b7a3b6af5bde", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3bd006fc465c44e5200f20720cf1b7a3b6af5bde.diff" + }, + "runtime@4172d0e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4172d0e29aae797fd06c6e26e0682a28f8204122", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4172d0e29aae797fd06c6e26e0682a28f8204122.diff" + }, + "runtime@f62984c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f62984ce62deecfb90a8ab991e972d1bc460b93e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f62984ce62deecfb90a8ab991e972d1bc460b93e.diff" + }, + "runtime@9f2179d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9f2179d417e3f45f26c4c92fc978d839196ec8d8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9f2179d417e3f45f26c4c92fc978d839196ec8d8.diff" + }, + "runtime@4fa917e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4fa917e666f88701785d0ed5e801fded279ee2a8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4fa917e666f88701785d0ed5e801fded279ee2a8.diff" + }, + "runtime@9515659": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "951565936c66c0c5729913b07bbe3daf941a475b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/951565936c66c0c5729913b07bbe3daf941a475b.diff" + }, + "runtime@e524be6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e524be6928cdcd74bdbb79b389eeb31978b188ef", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e524be6928cdcd74bdbb79b389eeb31978b188ef.diff" + }, + "runtime@350951d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "350951d2a94dc1441161ba7a7508ed2ae312c8ae", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/350951d2a94dc1441161ba7a7508ed2ae312c8ae.diff" + }, + "runtime@e4c1aa0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e4c1aa01eef8d61072ebe406056fddcb18a5cb0c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e4c1aa01eef8d61072ebe406056fddcb18a5cb0c.diff" + }, + "runtime@4895491": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "48954919f3d9d839b884b1d5187413698e0d248a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/48954919f3d9d839b884b1d5187413698e0d248a.diff" + }, + "runtime@334619b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "334619bccfb32bdecf28a3349fa051ce86ede97f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/334619bccfb32bdecf28a3349fa051ce86ede97f.diff" + }, + "runtime@3a74e2a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3a74e2a1906bf148bbfb5f88157ec7b754d0abbd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3a74e2a1906bf148bbfb5f88157ec7b754d0abbd.diff" + }, + "runtime@39fda2c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "39fda2c985a96b93f9a9f04b7a57a30f1fc652e8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/39fda2c985a96b93f9a9f04b7a57a30f1fc652e8.diff" + }, + "runtime@917aa94": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "917aa94a6c7650e4390ae11a281326e5dea40f6e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/917aa94a6c7650e4390ae11a281326e5dea40f6e.diff" + }, + "runtime@ac68348": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ac68348276877977f648b20f9fdf11d2f8674c6c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ac68348276877977f648b20f9fdf11d2f8674c6c.diff" + }, + "runtime@4417a32": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4417a32478a71c4c73a782f5a394c77c333c07bd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4417a32478a71c4c73a782f5a394c77c333c07bd.diff" + }, + "runtime@14c4360": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "14c4360ccd06b7e7ddc22f48384a86ca13e41454", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/14c4360ccd06b7e7ddc22f48384a86ca13e41454.diff" + }, + "runtime@4d77205": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4d772050a76efb65e4d9447256b34b13eb078b38", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4d772050a76efb65e4d9447256b34b13eb078b38.diff" + }, + "runtime@86a9fbf": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "86a9fbfef3d6592f22a42a488e892816298d3725", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/86a9fbfef3d6592f22a42a488e892816298d3725.diff" + }, + "runtime@96fbbc2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "96fbbc2b9a37275dd09d689e44f7fb0b7b6ec979", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/96fbbc2b9a37275dd09d689e44f7fb0b7b6ec979.diff" + }, + "runtime@8ffb906": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8ffb9060f8f4ce714cf7f5506686b8ba675af097", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8ffb9060f8f4ce714cf7f5506686b8ba675af097.diff" + }, + "runtime@7603a59": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7603a59257ff0328fdca07d7f1c28e73e062c84a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7603a59257ff0328fdca07d7f1c28e73e062c84a.diff" + }, + "runtime@3ee5a25": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3ee5a258f06401d8706cfa44eb952de1dea54556", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3ee5a258f06401d8706cfa44eb952de1dea54556.diff" + }, + "runtime@fc40302": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fc40302c0968b53f5de0bf8fddec81c232afb865", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fc40302c0968b53f5de0bf8fddec81c232afb865.diff" + }, + "runtime@ef560fa": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ef560fa423d0e4164056496f71f97ab97dba7799", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ef560fa423d0e4164056496f71f97ab97dba7799.diff" + }, + "runtime@d906a29": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d906a29a025444af06b1faccd16f41bba244b485", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d906a29a025444af06b1faccd16f41bba244b485.diff" + }, + "runtime@349bdb0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "349bdb09a14676140b4a70232edfd9cea4fb176d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/349bdb09a14676140b4a70232edfd9cea4fb176d.diff" + }, + "runtime@8e672f4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8e672f4814150385633c90247ae4eb010ed33c3d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8e672f4814150385633c90247ae4eb010ed33c3d.diff" + }, + "runtime@0a4314b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0a4314b33278c410c1ba54941010f20450d027fb", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0a4314b33278c410c1ba54941010f20450d027fb.diff" + }, + "runtime@79898c7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "79898c7f27a1e6bae68aa3043cdbe9ecaa3351b6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/79898c7f27a1e6bae68aa3043cdbe9ecaa3351b6.diff" + }, + "runtime@e722f65": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e722f654430bb3ebff09be6c9b582ca66898a634", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e722f654430bb3ebff09be6c9b582ca66898a634.diff" + }, + "runtime@1136c24": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1136c2460ed4305c84c9c3ae20f93de532df4c2a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1136c2460ed4305c84c9c3ae20f93de532df4c2a.diff" + }, + "runtime@fd34985": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fd34985a39bcf46cacccdca341fe32c05311ce0c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fd34985a39bcf46cacccdca341fe32c05311ce0c.diff" + }, + "runtime@b9d3bb8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b9d3bb80ff804aa4578399759ad00120e78c4cfd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b9d3bb80ff804aa4578399759ad00120e78c4cfd.diff" + }, + "runtime@57b4485": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "57b4485d61b1b794b797603843b9902d03cd2845", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/57b4485d61b1b794b797603843b9902d03cd2845.diff" + }, + "runtime@41437b2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "41437b23656866810d8d8fe4da077be5047b7ca9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/41437b23656866810d8d8fe4da077be5047b7ca9.diff" + }, + "runtime@7023c7c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7023c7cdd1f2d539bee9a988ea7b37d69cfc562f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7023c7cdd1f2d539bee9a988ea7b37d69cfc562f.diff" + }, + "runtime@fbcde99": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fbcde992585aae2d29b66d3988a1f81fb1c0f8a7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fbcde992585aae2d29b66d3988a1f81fb1c0f8a7.diff" + }, + "runtime@d4a8aa2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d4a8aa2f9092c55b0655cebf6c2f3bce5e602abb", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d4a8aa2f9092c55b0655cebf6c2f3bce5e602abb.diff" + }, + "runtime@51b1e92": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "51b1e92136c22c1828393b23571de0c2a49e9f62", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/51b1e92136c22c1828393b23571de0c2a49e9f62.diff" + }, + "runtime@c86ebf2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c86ebf22ebd393806e5e01556f20f95f79cf4376", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c86ebf22ebd393806e5e01556f20f95f79cf4376.diff" + }, + "runtime@b85f109": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b85f10962df5d097ca466ec0ed83664835671e42", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b85f10962df5d097ca466ec0ed83664835671e42.diff" + }, + "runtime@7db8a8c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7db8a8cc52790d5c49d59064a93ce4c7caf3eef2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7db8a8cc52790d5c49d59064a93ce4c7caf3eef2.diff" + }, + "runtime@289f5cd": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "289f5cdcd0ab4b92fd91b99e95a0217113065146", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/289f5cdcd0ab4b92fd91b99e95a0217113065146.diff" + }, + "runtime@8b63bd2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8b63bd26190fe970d9d0643f552a27a42cb8e9a2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8b63bd26190fe970d9d0643f552a27a42cb8e9a2.diff" + }, + "runtime@eab25ef": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "eab25efb3bed0581575037a711fcaa2117abb527", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/eab25efb3bed0581575037a711fcaa2117abb527.diff" + }, + "runtime@a32dd4a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a32dd4a44cb1345093f3d5969c79fab4da511ce8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a32dd4a44cb1345093f3d5969c79fab4da511ce8.diff" + }, + "runtime@c863d2e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c863d2eb7fbe8cc12d20536a15eabe9c385908bf", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c863d2eb7fbe8cc12d20536a15eabe9c385908bf.diff" + }, + "runtime@b7a0ff8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b7a0ff8f140657255d99159b8560220b355240d9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b7a0ff8f140657255d99159b8560220b355240d9.diff" + }, + "runtime@d0118d9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d0118d9c792f67f62b3769bb2e4f79f367034e69", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d0118d9c792f67f62b3769bb2e4f79f367034e69.diff" + }, + "runtime@dd20361": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "dd20361abda4d6c32ea189cb6f48840c7b6f5678", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/dd20361abda4d6c32ea189cb6f48840c7b6f5678.diff" + }, + "runtime@dd2f6d3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "dd2f6d3cf773bc4c804e5d54fba6f1234dcdfb20", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/dd2f6d3cf773bc4c804e5d54fba6f1234dcdfb20.diff" + }, + "runtime@defb8dc": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "defb8dcbc1cadf47cbbb16b12d8b2ef7b63ecc4f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/defb8dcbc1cadf47cbbb16b12d8b2ef7b63ecc4f.diff" + }, + "runtime@5794053": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "57940538ec243b3fef89798cbdb24f631b2cae4f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/57940538ec243b3fef89798cbdb24f631b2cae4f.diff" + }, + "runtime@fa46e22": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fa46e22e1248cdfcdf13d83047e2d74b0ec65205", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fa46e22e1248cdfcdf13d83047e2d74b0ec65205.diff" + }, + "runtime@64efb69": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "64efb69573d1aa99fa89a96de18ba3247b2bb75e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/64efb69573d1aa99fa89a96de18ba3247b2bb75e.diff" + }, + "runtime@df0800e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "df0800eadf800c914cac0acaaf879e996c9299f5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/df0800eadf800c914cac0acaaf879e996c9299f5.diff" + }, + "runtime@6bf2076": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6bf20767ec3dfed7de825791e9eed47ca13ba724", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6bf20767ec3dfed7de825791e9eed47ca13ba724.diff" + }, + "runtime@87a63e2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "87a63e24ae1e0177eb724556cc7cf399206b747a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/87a63e24ae1e0177eb724556cc7cf399206b747a.diff" + }, + "runtime@54bc18d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "54bc18d197c2638d56df4964c6c76d1593b4caa7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/54bc18d197c2638d56df4964c6c76d1593b4caa7.diff" + }, + "runtime@703be08": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "703be0833b619fab3b970175f0d391c097d1e17b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/703be0833b619fab3b970175f0d391c097d1e17b.diff" + }, + "runtime@777eae3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "777eae3deb48051f341dd5b43f9f57cc3884fe95", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/777eae3deb48051f341dd5b43f9f57cc3884fe95.diff" + }, + "runtime@f25f0e2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f25f0e24d03e6c4d49f4d43ef48a01250a31a1bd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f25f0e24d03e6c4d49f4d43ef48a01250a31a1bd.diff" + }, + "runtime@5db8084": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5db8084c9d7bb9f50ce2457d56df626d051a5e40", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5db8084c9d7bb9f50ce2457d56df626d051a5e40.diff" + }, + "runtime@72e6a29": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "72e6a29bb794ba263ad9e4ef081c6fa2b4d5c9d3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/72e6a29bb794ba263ad9e4ef081c6fa2b4d5c9d3.diff" + }, + "runtime@f09bc75": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f09bc75bec8a9de106d5766bc27ac35e5320569c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f09bc75bec8a9de106d5766bc27ac35e5320569c.diff" + }, + "runtime@28baa45": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "28baa459661f164b55d6409f9816178ced46146f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/28baa459661f164b55d6409f9816178ced46146f.diff" + }, + "runtime@8151eb1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8151eb1c17763d564c5283f9a0db96ebb9856390", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8151eb1c17763d564c5283f9a0db96ebb9856390.diff" + }, + "runtime@363f8a1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "363f8a149aa76f2336c2cdb546066726717cabf7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/363f8a149aa76f2336c2cdb546066726717cabf7.diff" + }, + "runtime@d36b8cc": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d36b8cc783307b320eebab297cbb2a7edfffc32c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d36b8cc783307b320eebab297cbb2a7edfffc32c.diff" + }, + "runtime@9e13695": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9e13695c5a3729723d54a7dbe9481946c883bc5a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9e13695c5a3729723d54a7dbe9481946c883bc5a.diff" + }, + "runtime@cd38a58": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cd38a58a63aa4a45330ee012ed1f1b5b2bbe279c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cd38a58a63aa4a45330ee012ed1f1b5b2bbe279c.diff" + }, + "runtime@e9ec642": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e9ec642ee7ab11ffe1b8e767809fe60dd4a45b82", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e9ec642ee7ab11ffe1b8e767809fe60dd4a45b82.diff" + }, + "runtime@2255eec": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2255eec238c2e6f4a17052ceca54bbc0c7ec3514", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2255eec238c2e6f4a17052ceca54bbc0c7ec3514.diff" + }, + "runtime@bd3fd16": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "bd3fd162d61dd3fa335f36e6e06a514fd56e32fa", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/bd3fd162d61dd3fa335f36e6e06a514fd56e32fa.diff" + }, + "runtime@a962f34": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a962f34b0d502d551534bec84493edee67783771", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a962f34b0d502d551534bec84493edee67783771.diff" + }, + "runtime@0d0e129": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0d0e1291faee412c0b124746bfdd7c6bbdcde5aa", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0d0e1291faee412c0b124746bfdd7c6bbdcde5aa.diff" + }, + "runtime@d7c26f7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d7c26f71252476404c0e589a679eddddb1297d70", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d7c26f71252476404c0e589a679eddddb1297d70.diff" + }, + "runtime@da21ce4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "da21ce4afbb72a2c3bae482241f2f6dda9e20ccd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/da21ce4afbb72a2c3bae482241f2f6dda9e20ccd.diff" + }, + "runtime@4694968": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4694968af86344b1a991dd67e1ce819bd91302d9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4694968af86344b1a991dd67e1ce819bd91302d9.diff" + }, + "runtime@1b78ef7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1b78ef78abf8f54253547369195b1c6ce342fbdb", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1b78ef78abf8f54253547369195b1c6ce342fbdb.diff" + }, + "runtime@fdb01f4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fdb01f43fc6039d50b4de225371854a66b5931ec", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fdb01f43fc6039d50b4de225371854a66b5931ec.diff" + }, + "runtime@9641dda": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9641dda63d3f02f2fb0906610031a40ed4770f90", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9641dda63d3f02f2fb0906610031a40ed4770f90.diff" + }, + "runtime@8d8e749": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8d8e749dafaf1adc4d51e0bd5e62e604c47929f9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8d8e749dafaf1adc4d51e0bd5e62e604c47929f9.diff" + }, + "runtime@c1db431": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c1db431d7cd21dbb2520651c04020688037f7495", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c1db431d7cd21dbb2520651c04020688037f7495.diff" + }, + "runtime@6b6bfe3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6b6bfe3eef451b826ef9a120abfbd2a6fdb0ab35", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6b6bfe3eef451b826ef9a120abfbd2a6fdb0ab35.diff" + }, + "runtime@e717462": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e717462f948dd272744b063bb3862fea6568b002", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e717462f948dd272744b063bb3862fea6568b002.diff" + }, + "runtime@1709ae0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1709ae08142ea375ddef8665f44efafc977f59bc", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1709ae08142ea375ddef8665f44efafc977f59bc.diff" + }, + "runtime@a6a3b3d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a6a3b3d0fde45b31811d651ac23e9da74fd86c7d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a6a3b3d0fde45b31811d651ac23e9da74fd86c7d.diff" + }, + "runtime@376038b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "376038be839605287f02527985d4b0de3c05c38a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/376038be839605287f02527985d4b0de3c05c38a.diff" + }, + "runtime@919358b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "919358b6b9faa7f32fabc4ec359f47f0cf04a7a9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/919358b6b9faa7f32fabc4ec359f47f0cf04a7a9.diff" + }, + "runtime@d19b7ca": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d19b7caced61a9f43d5cb1a8a9825e5e79b265d4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d19b7caced61a9f43d5cb1a8a9825e5e79b265d4.diff" + }, + "runtime@0f023aa": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0f023aa775595f561dd168c0ad49c5de51e8a378", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0f023aa775595f561dd168c0ad49c5de51e8a378.diff" + }, + "runtime@e3b528c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e3b528cdef1842fc57d4a353ecfe4e34e13b7b4f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e3b528cdef1842fc57d4a353ecfe4e34e13b7b4f.diff" + }, + "runtime@535c5de": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "535c5deba263df5bd4be244247e43bddce288254", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/535c5deba263df5bd4be244247e43bddce288254.diff" + }, + "runtime@173bdac": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "173bdac01272cdb7354a99ef65db1d78c0145c75", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/173bdac01272cdb7354a99ef65db1d78c0145c75.diff" + }, + "runtime@8a0eb39": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8a0eb39283e0a345a4cd96bda8cbbd1ac7be15e6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8a0eb39283e0a345a4cd96bda8cbbd1ac7be15e6.diff" + }, + "runtime@68de53c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "68de53c1ec0e6cc230dc8da5a54e11e03edbd37c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/68de53c1ec0e6cc230dc8da5a54e11e03edbd37c.diff" + }, + "runtime@78af167": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "78af1670568f72d0560ded17fc0310a95fe46590", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/78af1670568f72d0560ded17fc0310a95fe46590.diff" + }, + "runtime@aa40c57": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "aa40c57a894e9d5f0f2173f9813a7693b30c3e27", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/aa40c57a894e9d5f0f2173f9813a7693b30c3e27.diff" + }, + "runtime@2e14703": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2e14703d891b326548ad74340bad5b576b356abd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2e14703d891b326548ad74340bad5b576b356abd.diff" + }, + "runtime@59dc3d0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "59dc3d0d83bda4f6f58f18a55554a5995b1a8707", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/59dc3d0d83bda4f6f58f18a55554a5995b1a8707.diff" + }, + "runtime@b78173c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b78173c38bf8752589e1171987d078628c33dcfd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b78173c38bf8752589e1171987d078628c33dcfd.diff" + }, + "runtime@3b580ea": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3b580ea2787d23fda1b4729e1d81606ec32a0232", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3b580ea2787d23fda1b4729e1d81606ec32a0232.diff" + }, + "runtime@cebec3d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cebec3d8e3fc5dc404d1a6a18b7ada0515541c3b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cebec3d8e3fc5dc404d1a6a18b7ada0515541c3b.diff" + }, + "runtime@e07aba4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e07aba4e789d34d86d32c7b7dad56c85119ee93a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e07aba4e789d34d86d32c7b7dad56c85119ee93a.diff" + }, + "runtime@2a4ede4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2a4ede49738ba56673f5b9fb65f09109a6449d29", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2a4ede49738ba56673f5b9fb65f09109a6449d29.diff" + }, + "runtime@5ed2d9b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5ed2d9b4ec57e537c54c7a21805a12a4c3174a69", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5ed2d9b4ec57e537c54c7a21805a12a4c3174a69.diff" + }, + "runtime@3b64f3d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3b64f3d914b0cd4f6a367cf8cbb5bf60ff16fc10", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3b64f3d914b0cd4f6a367cf8cbb5bf60ff16fc10.diff" + }, + "runtime@65b2bc1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "65b2bc1ee86719dba05c628514d3e460fa8789f6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/65b2bc1ee86719dba05c628514d3e460fa8789f6.diff" + }, + "runtime@85149f3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "85149f3fd8fb5e24afafc5fedbf075a719464624", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/85149f3fd8fb5e24afafc5fedbf075a719464624.diff" + }, + "runtime@093df0c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "093df0cd350e8d1c394d90eb26949c20b055a9e3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/093df0cd350e8d1c394d90eb26949c20b055a9e3.diff" + }, + "runtime@f5a27eb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f5a27eb1d87a3fae9f9bb195230e3ab50ffef5f3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f5a27eb1d87a3fae9f9bb195230e3ab50ffef5f3.diff" + }, + "runtime@4466dad": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4466dad5a4accb498d6f971b4fc970715d5c6ead", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4466dad5a4accb498d6f971b4fc970715d5c6ead.diff" + }, + "runtime@338e288": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "338e288bd9535217764f4146f2fe89707818ac97", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/338e288bd9535217764f4146f2fe89707818ac97.diff" + }, + "runtime@85e141e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "85e141e8ba3bfc094e7e916d4e1c7c813a06ba18", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/85e141e8ba3bfc094e7e916d4e1c7c813a06ba18.diff" + }, + "runtime@1e1bbed": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1e1bbed9856fd11f562d5e5b23b43b938e23f437", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1e1bbed9856fd11f562d5e5b23b43b938e23f437.diff" + }, + "runtime@ab6d333": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ab6d33338f99a95cab37267f1fb7c007e8f18f16", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ab6d33338f99a95cab37267f1fb7c007e8f18f16.diff" + }, + "runtime@9a9b322": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9a9b32240ad2c6190742acffe5ee6bfb6ab204a6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9a9b32240ad2c6190742acffe5ee6bfb6ab204a6.diff" + }, + "runtime@de40271": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "de4027111d9d294b6614d7932d4585aa49dfc4cd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/de4027111d9d294b6614d7932d4585aa49dfc4cd.diff" + }, + "runtime@12d9fad": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "12d9fada56ba2d4459226fe724099f69ab8a554f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/12d9fada56ba2d4459226fe724099f69ab8a554f.diff" + }, + "runtime@f827a66": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f827a66004ad7a5abd0882b0b3c374e9d9f04fc1", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f827a66004ad7a5abd0882b0b3c374e9d9f04fc1.diff" + }, + "runtime@3090433": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "309043384cd43ebda5123f6c82fc9ac373e8c35e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/309043384cd43ebda5123f6c82fc9ac373e8c35e.diff" + }, + "runtime@a6d3a3e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a6d3a3e9fef055c3aa3b27ebc78a8ec56574a483", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a6d3a3e9fef055c3aa3b27ebc78a8ec56574a483.diff" + }, + "runtime@6b49b5c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6b49b5c23fbf42d82ec95772bf19d4012416dc21", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6b49b5c23fbf42d82ec95772bf19d4012416dc21.diff" + }, + "runtime@2aef513": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2aef513ae4d252199b83a53ea94305d38d8de94f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2aef513ae4d252199b83a53ea94305d38d8de94f.diff" + }, + "runtime@2c7ee19": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2c7ee1937a8bd2f17a8f54d3b54bcaa0956f37f2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2c7ee1937a8bd2f17a8f54d3b54bcaa0956f37f2.diff" + }, + "runtime@07dc6fa": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "07dc6fab46e5235c4d5ccc12c8a121c974832099", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/07dc6fab46e5235c4d5ccc12c8a121c974832099.diff" + }, + "runtime@c346735": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c346735a44f679d357386257cd9563a7534d246d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c346735a44f679d357386257cd9563a7534d246d.diff" + }, + "runtime@32a7ecb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "32a7ecbfcabe1821acaa60a31e497ac7871a7cc5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/32a7ecbfcabe1821acaa60a31e497ac7871a7cc5.diff" + }, + "runtime@3f56fbb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3f56fbb71346a302f8a2174848bf2bf9d6c7a495", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3f56fbb71346a302f8a2174848bf2bf9d6c7a495.diff" + }, + "runtime@a1b5da1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a1b5da138a21f545cadfcb03fcd0e27320a7a950", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a1b5da138a21f545cadfcb03fcd0e27320a7a950.diff" + }, + "runtime@eb47fb6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "eb47fb611747f516fbf6ce8d7635e436a1a1a4e6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/eb47fb611747f516fbf6ce8d7635e436a1a1a4e6.diff" + }, + "runtime@b27a8d2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b27a8d255f6525ffe6688c7d7beaf7f03a106dc0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b27a8d255f6525ffe6688c7d7beaf7f03a106dc0.diff" + }, + "runtime@c77d32c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c77d32ce3b10ca92cdb4a0ce30f1a192b6657038", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c77d32ce3b10ca92cdb4a0ce30f1a192b6657038.diff" + }, + "runtime@f5407bd": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f5407bd1a7aa04d0cee5ce6dbdc9582d542d3546", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f5407bd1a7aa04d0cee5ce6dbdc9582d542d3546.diff" + }, + "runtime@83573d2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "83573d2a1004a756b4261202deb35d9921f88ebf", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/83573d2a1004a756b4261202deb35d9921f88ebf.diff" + }, + "runtime@34547f7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "34547f7f2acfaa31860ed51e1afb84653044e50c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/34547f7f2acfaa31860ed51e1afb84653044e50c.diff" + }, + "runtime@1f6255e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1f6255e46923d3579cd8ff4bf5b0a8eed0073fa8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1f6255e46923d3579cd8ff4bf5b0a8eed0073fa8.diff" + }, + "runtime@6e762f5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6e762f571fdc4043c28c698a21f7f73448d438d3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6e762f571fdc4043c28c698a21f7f73448d438d3.diff" + }, + "runtime@8f06b3c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8f06b3c441b36829dba57044833ed1683c69621f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8f06b3c441b36829dba57044833ed1683c69621f.diff" + }, + "runtime@b797348": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b7973489277b74bc5da9d36a0a2883eaa987328f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b7973489277b74bc5da9d36a0a2883eaa987328f.diff" + }, + "runtime@b36efcf": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b36efcf356fad713b23767110792eee9968d2985", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b36efcf356fad713b23767110792eee9968d2985.diff" + }, + "runtime@92969f4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "92969f44147076916d51f3c1c6795ad22011f4e9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/92969f44147076916d51f3c1c6795ad22011f4e9.diff" + }, + "runtime@807db36": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "807db360a32298bce1b78499b17649b5504e68a0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/807db360a32298bce1b78499b17649b5504e68a0.diff" + }, + "runtime@8236b65": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8236b653a5eb5c606d3b3b1e025f7e5ebeceee2f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8236b653a5eb5c606d3b3b1e025f7e5ebeceee2f.diff" + }, + "runtime@d391453": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d391453508f815ff01e5efe2982350de7e3d29fe", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d391453508f815ff01e5efe2982350de7e3d29fe.diff" + }, + "runtime@1f98758": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1f98758756d4ea99ccaa5f56c2e870306829c590", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1f98758756d4ea99ccaa5f56c2e870306829c590.diff" + }, + "runtime@e7daed6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e7daed6475cf4c49560b0940a088e791a0695b69", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e7daed6475cf4c49560b0940a088e791a0695b69.diff" + }, + "runtime@8f762a2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8f762a20fe1e2f2671d9b2bbaa21418be6b552a0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8f762a20fe1e2f2671d9b2bbaa21418be6b552a0.diff" + }, + "runtime@dca0fe3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "dca0fe3076b93f00f917ada50697a6af4e411e5b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/dca0fe3076b93f00f917ada50697a6af4e411e5b.diff" + }, + "runtime@9af7d04": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9af7d041cf445c184ed84756b54b07104b50d943", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9af7d041cf445c184ed84756b54b07104b50d943.diff" + }, + "runtime@f7be6d5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f7be6d5fcc397b69c53bb4d90234024029303396", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f7be6d5fcc397b69c53bb4d90234024029303396.diff" + }, + "runtime@b4b0bdc": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b4b0bdcae452293551f05b13c6a98007ff0ef280", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b4b0bdcae452293551f05b13c6a98007ff0ef280.diff" + }, + "runtime@860eddb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "860eddba936f4a7e8a04cb12ee3bc54385216cab", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/860eddba936f4a7e8a04cb12ee3bc54385216cab.diff" + }, + "runtime@bc449db": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "bc449db63f59e7b4692de44408f0043af451b547", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/bc449db63f59e7b4692de44408f0043af451b547.diff" + }, + "runtime@7d664a9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7d664a91e6ebcd51fe7138baefc08d2660d23d21", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7d664a91e6ebcd51fe7138baefc08d2660d23d21.diff" + }, + "runtime@540910d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "540910dceaa28221def1ef79393bf7eff493c9de", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/540910dceaa28221def1ef79393bf7eff493c9de.diff" + }, + "runtime@12bcd5d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "12bcd5d7362389233f89ed14cb4172c361c8f49a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/12bcd5d7362389233f89ed14cb4172c361c8f49a.diff" + }, + "runtime@281d01c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "281d01cfd353f1ce15208c80b2f148b0d6ce106f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/281d01cfd353f1ce15208c80b2f148b0d6ce106f.diff" + }, + "runtime@6def7ef": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6def7ef5ff5c01f8e7fc04965139d9c401568ebf", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6def7ef5ff5c01f8e7fc04965139d9c401568ebf.diff" + }, + "runtime@9a2c40b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9a2c40b4f7b710d164a13ef4b088ba309068d21d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9a2c40b4f7b710d164a13ef4b088ba309068d21d.diff" + }, + "runtime@959957c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "959957c0f530b18cedb4633fd5556e757be494f4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/959957c0f530b18cedb4633fd5556e757be494f4.diff" + }, + "runtime@2110077": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "211007729cd8723e4838be28f59d6add1f7214ac", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/211007729cd8723e4838be28f59d6add1f7214ac.diff" + }, + "runtime@0b874d8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0b874d82c3611c4ad301ae9367ecce103447da5c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0b874d82c3611c4ad301ae9367ecce103447da5c.diff" + }, + "runtime@aaf2994": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "aaf2994df16870fb37e4b2fd18b025117329beb4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/aaf2994df16870fb37e4b2fd18b025117329beb4.diff" + }, + "runtime@755fa8f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "755fa8f5d52b2f6f14bbbf454e99f1c43139dd08", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/755fa8f5d52b2f6f14bbbf454e99f1c43139dd08.diff" + }, + "runtime@e1feb1b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e1feb1b7e0b3062d78a3c455e291830284afa15c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e1feb1b7e0b3062d78a3c455e291830284afa15c.diff" + }, + "runtime@41ac7d5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "41ac7d53bf146a955f6eee4b6be11e0d94adde53", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/41ac7d53bf146a955f6eee4b6be11e0d94adde53.diff" + }, + "runtime@9b1347c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9b1347c5afe039d1efac12fd2e4286d0711f7dc4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9b1347c5afe039d1efac12fd2e4286d0711f7dc4.diff" + }, + "runtime@11c5b17": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "11c5b1787841f78d3d778f9a2850a5934a00b4b1", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/11c5b1787841f78d3d778f9a2850a5934a00b4b1.diff" + }, + "runtime@2517f63": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2517f636ae1c96ab8815024b9f1254d36947ae56", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2517f636ae1c96ab8815024b9f1254d36947ae56.diff" + }, + "runtime@8cf2e90": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8cf2e90c41f50c41d49698b3e37598f96bff9be0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8cf2e90c41f50c41d49698b3e37598f96bff9be0.diff" + }, + "runtime@ac8e763": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ac8e763c43b86739f3536d84cda765e112d215ac", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ac8e763c43b86739f3536d84cda765e112d215ac.diff" + }, + "runtime@c9b272f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c9b272f6952d7728cb450c1f81ce8978019d057a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c9b272f6952d7728cb450c1f81ce8978019d057a.diff" + }, + "runtime@98e3338": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "98e3338453a2e88e20377e94b95693b36a8c45db", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/98e3338453a2e88e20377e94b95693b36a8c45db.diff" + }, + "runtime@0d6db56": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0d6db56cc12fe367f9c03be0fe6ffa7fdf1f980d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0d6db56cc12fe367f9c03be0fe6ffa7fdf1f980d.diff" + }, + "runtime@e429373": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e4293738d0d250fe1a2bd8603ac8971e32a60391", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e4293738d0d250fe1a2bd8603ac8971e32a60391.diff" + }, + "runtime@28009ec": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "28009ec2c631cbe4b321fb2648b7c3cd2e5fb8b0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/28009ec2c631cbe4b321fb2648b7c3cd2e5fb8b0.diff" + }, + "runtime@9f85e5d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9f85e5d6e333a7dc4a82bd3a5d94ba6bc8aa902b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9f85e5d6e333a7dc4a82bd3a5d94ba6bc8aa902b.diff" + }, + "runtime@388a7c4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "388a7c4814cb0d6e344621d017507b357902043a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/388a7c4814cb0d6e344621d017507b357902043a.diff" + }, + "runtime@c38f37a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c38f37a3a1c39ca921fe156d472990d259977f6f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c38f37a3a1c39ca921fe156d472990d259977f6f.diff" + }, + "runtime@da46c68": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "da46c687a0f3112cf035b6eef5273e4612482e9f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/da46c687a0f3112cf035b6eef5273e4612482e9f.diff" + }, + "runtime@8e05ac9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8e05ac91f032e62605f58c3d5a042b16131756fd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8e05ac91f032e62605f58c3d5a042b16131756fd.diff" + }, + "runtime@1cfdd48": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1cfdd4824e538f973443b744366520bad4fb06c8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1cfdd4824e538f973443b744366520bad4fb06c8.diff" + }, + "runtime@64021d8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "64021d8209d8365d01928fd3ed472ce1db7a3797", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/64021d8209d8365d01928fd3ed472ce1db7a3797.diff" + }, + "runtime@85b61ab": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "85b61ab1ce55d805adbd11637f2367f44aeefaac", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/85b61ab1ce55d805adbd11637f2367f44aeefaac.diff" + }, + "runtime@f27c573": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f27c573c56e7aa280f519770b0678305a70442ae", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f27c573c56e7aa280f519770b0678305a70442ae.diff" + }, + "runtime@95f2498": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "95f249871919faeee8e439d95658c466d924bf7b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/95f249871919faeee8e439d95658c466d924bf7b.diff" + }, + "runtime@6992c24": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6992c24ad7bb062f30f53e2983add6436637c081", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6992c24ad7bb062f30f53e2983add6436637c081.diff" + }, + "runtime@7a7c166": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7a7c16644c84c061877dc22b5c760df06e608403", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7a7c16644c84c061877dc22b5c760df06e608403.diff" + }, + "runtime@0f80728": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0f8072851a62a1e1cbb90f0372a20961ce8991f0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0f8072851a62a1e1cbb90f0372a20961ce8991f0.diff" + }, + "runtime@ffdfb26": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ffdfb260b6ea228194da6ca1e3cbf081233e3e67", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ffdfb260b6ea228194da6ca1e3cbf081233e3e67.diff" + }, + "runtime@eee3c7c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "eee3c7c591e5e5beae7ab21dbc96845ed94484b3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/eee3c7c591e5e5beae7ab21dbc96845ed94484b3.diff" + }, + "runtime@bb542bd": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "bb542bd8e56b9d7e771adcddae09ab3b8f74f306", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/bb542bd8e56b9d7e771adcddae09ab3b8f74f306.diff" + }, + "runtime@d1f028f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d1f028fbaad558d387b269a7d85b63e13e7feaf6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d1f028fbaad558d387b269a7d85b63e13e7feaf6.diff" + }, + "runtime@933c5e8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "933c5e83ca020f84f41e86ecfebef5e31a3f2dad", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/933c5e83ca020f84f41e86ecfebef5e31a3f2dad.diff" + }, + "runtime@b48ada0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b48ada04c7ed1d71a5dfb9b847918b8106b65a40", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b48ada04c7ed1d71a5dfb9b847918b8106b65a40.diff" + }, + "runtime@611b2cb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "611b2cb15e57e0594d767189f926baa658738767", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/611b2cb15e57e0594d767189f926baa658738767.diff" + }, + "runtime@84ebfcd": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "84ebfcd240d022b78e0ec6e5e7841b4a0d8cfd16", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/84ebfcd240d022b78e0ec6e5e7841b4a0d8cfd16.diff" + }, + "runtime@15da421": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "15da4216aef181b84124449eb01b0c33c0e6d746", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/15da4216aef181b84124449eb01b0c33c0e6d746.diff" + }, + "runtime@585f70d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "585f70df320be0038d51cbe1032e257bbf8cb651", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/585f70df320be0038d51cbe1032e257bbf8cb651.diff" + }, + "runtime@934cd4d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "934cd4ddf253ab1c30fd01549d474f6926fc56d5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/934cd4ddf253ab1c30fd01549d474f6926fc56d5.diff" + }, + "runtime@930edb9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "930edb9f75624d47a6cc01c29e0dc2201c7163aa", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/930edb9f75624d47a6cc01c29e0dc2201c7163aa.diff" + }, + "runtime@902b10f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "902b10f4af7357e2ec78a1507f88a4cb31a1c728", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/902b10f4af7357e2ec78a1507f88a4cb31a1c728.diff" + }, + "runtime@e2f9257": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e2f925756a62def3fb15ab4476b8ce2d9b5e75bb", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e2f925756a62def3fb15ab4476b8ce2d9b5e75bb.diff" + }, + "runtime@b954bd7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b954bd7da652d7cd63337a0436d92e9c1c0b15de", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b954bd7da652d7cd63337a0436d92e9c1c0b15de.diff" + }, + "runtime@e2322af": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e2322af414f50e22ef8eeafb75a1068effd77a96", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e2322af414f50e22ef8eeafb75a1068effd77a96.diff" + }, + "runtime@133f6a8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "133f6a80839ace9578094ed356a9cd70988427b6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/133f6a80839ace9578094ed356a9cd70988427b6.diff" + }, + "runtime@28c5a4d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "28c5a4dcc8380aa558aa866e14ebcf6ab39b9719", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/28c5a4dcc8380aa558aa866e14ebcf6ab39b9719.diff" + }, + "runtime@9e58389": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9e583898f6d4f44293836d5d9026d2df32cef9ef", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9e583898f6d4f44293836d5d9026d2df32cef9ef.diff" + }, + "runtime@ab699a4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ab699a4da14ee06c7c9654b7edead6659f65d3c1", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ab699a4da14ee06c7c9654b7edead6659f65d3c1.diff" + }, + "runtime@7fdd64e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7fdd64e5167da2f86533f68e670d45b4cb927141", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7fdd64e5167da2f86533f68e670d45b4cb927141.diff" + }, + "runtime@fc52927": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fc529276b042443bd335adc6b5a26526e7ac9905", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fc529276b042443bd335adc6b5a26526e7ac9905.diff" + }, + "runtime@6fd3636": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6fd3636c8bc6d22cec6d1b3226441c3d4d6e608a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6fd3636c8bc6d22cec6d1b3226441c3d4d6e608a.diff" + }, + "runtime@fcddb04": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fcddb04e5d51a980d86f5d9999177567f44aee41", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fcddb04e5d51a980d86f5d9999177567f44aee41.diff" + }, + "runtime@8d88e2b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8d88e2b38f701b7b20ada06d9dfe55a060f99706", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8d88e2b38f701b7b20ada06d9dfe55a060f99706.diff" + }, + "runtime@05cc2d0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "05cc2d0fdb030057a00e580b74b75bf7f784cf4c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/05cc2d0fdb030057a00e580b74b75bf7f784cf4c.diff" + }, + "runtime@31aee70": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "31aee706a6a555e6cbf75f6c420fd7d736a63d8b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/31aee706a6a555e6cbf75f6c420fd7d736a63d8b.diff" + }, + "runtime@e1b5a1d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e1b5a1df9a1467acbd29e4212bb5045ff32add07", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e1b5a1df9a1467acbd29e4212bb5045ff32add07.diff" + }, + "runtime@8f7b6b5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8f7b6b54618cf2fea82499349b677a23c924740c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8f7b6b54618cf2fea82499349b677a23c924740c.diff" + }, + "runtime@c9def27": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c9def27a05d5c98219adeaaa7ead25d65f3963cc", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c9def27a05d5c98219adeaaa7ead25d65f3963cc.diff" + }, + "runtime@39368f6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "39368f6331d06f122e12d22b1cd3f9ff6a74bb93", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/39368f6331d06f122e12d22b1cd3f9ff6a74bb93.diff" + }, + "runtime@c5c184a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c5c184a4df470e0d1c6c97365f91ad0901efad3d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c5c184a4df470e0d1c6c97365f91ad0901efad3d.diff" + }, + "runtime@d4189be": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d4189be6854ed8248fb05b71b197b645c92f5692", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d4189be6854ed8248fb05b71b197b645c92f5692.diff" + }, + "runtime@e2415a7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e2415a7d4013188f35cefb68d6c269ba17687b43", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e2415a7d4013188f35cefb68d6c269ba17687b43.diff" + }, + "runtime@7e7296d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7e7296d4e90dcab9cc8acd4ac51801c00208134e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7e7296d4e90dcab9cc8acd4ac51801c00208134e.diff" + }, + "runtime@2ae0bc7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2ae0bc7ebed0650624eb4e90b214d106e6f08fa3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2ae0bc7ebed0650624eb4e90b214d106e6f08fa3.diff" + }, + "runtime@93ec72d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "93ec72d3dfed9b72f4e95245439d3a93562c49ee", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/93ec72d3dfed9b72f4e95245439d3a93562c49ee.diff" + }, + "runtime@5b3d729": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5b3d729bb8e21e7f91cd22ed57282bc7dc39313d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5b3d729bb8e21e7f91cd22ed57282bc7dc39313d.diff" + }, + "runtime@c31475e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c31475ea97de93297d055374284e1b1d4769332d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c31475ea97de93297d055374284e1b1d4769332d.diff" + }, + "runtime@db3c54c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "db3c54cbd8670c7160d6a1912af81f3264f0e92a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/db3c54cbd8670c7160d6a1912af81f3264f0e92a.diff" + }, + "runtime@cf53805": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cf538052880522d398adf246ac80bb13de5d613a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cf538052880522d398adf246ac80bb13de5d613a.diff" + }, + "runtime@0389510": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "03895101fb967d96b115a8d742c29e41220aed77", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/03895101fb967d96b115a8d742c29e41220aed77.diff" + }, + "runtime@8614f78": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8614f787c5a5044965aba96baa998ab15b7c37bc", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8614f787c5a5044965aba96baa998ab15b7c37bc.diff" + }, + "runtime@c89371d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c89371d5294a9be40b263b275c58cf0b2a73ea95", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c89371d5294a9be40b263b275c58cf0b2a73ea95.diff" + }, + "runtime@fe555be": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fe555be1614b7b6c7a5f6f4422766044e40fb9f9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fe555be1614b7b6c7a5f6f4422766044e40fb9f9.diff" + }, + "runtime@36b4d74": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "36b4d7409ba3e9798a4544cd2555b7f9a007b44b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/36b4d7409ba3e9798a4544cd2555b7f9a007b44b.diff" + }, + "runtime@cc9f348": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cc9f348e852d5911201c169c5dab9ffe9394d7f5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cc9f348e852d5911201c169c5dab9ffe9394d7f5.diff" + }, + "runtime@c5ad69e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c5ad69e6f08240196539d509074fdc4f09b742d2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c5ad69e6f08240196539d509074fdc4f09b742d2.diff" + }, + "runtime@dfc0377": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "dfc037773de54ae78fd7805c69132008a7a34f4c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/dfc037773de54ae78fd7805c69132008a7a34f4c.diff" + }, + "runtime@fdbedda": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fdbedda1b43af4645dbe833b1d37151a1a96df87", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fdbedda1b43af4645dbe833b1d37151a1a96df87.diff" + }, + "runtime@ca1a734": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ca1a734e5f3dfd6beba5f08ef95aea47592b8d08", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ca1a734e5f3dfd6beba5f08ef95aea47592b8d08.diff" + }, + "runtime@4c78a14": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4c78a1406c3f5435db118cb56b514515a74279be", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4c78a1406c3f5435db118cb56b514515a74279be.diff" + }, + "runtime@1ab6d1d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1ab6d1d02a85dcae905a915b248b8e93764d017e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1ab6d1d02a85dcae905a915b248b8e93764d017e.diff" + }, + "runtime@593e566": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "593e56654f34b3f697cdcc9c0f138471c78e66fe", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/593e56654f34b3f697cdcc9c0f138471c78e66fe.diff" + }, + "runtime@165a653": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "165a653a6e4e8ad2d65cb1125e6e8318741c0516", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/165a653a6e4e8ad2d65cb1125e6e8318741c0516.diff" + }, + "runtime@636d736": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "636d7366c704863d3774482e7d64c3bfd11612b4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/636d7366c704863d3774482e7d64c3bfd11612b4.diff" + }, + "runtime@9351b38": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9351b38fec0b25af8f963420e4ec564d68f56389", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9351b38fec0b25af8f963420e4ec564d68f56389.diff" + }, + "runtime@2d26dce": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2d26dce32b5af4de025afe10a58c945be9c1a546", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2d26dce32b5af4de025afe10a58c945be9c1a546.diff" + }, + "runtime@4683d7f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4683d7f09ef9d3c777c84d465832a5e91e14b0bd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4683d7f09ef9d3c777c84d465832a5e91e14b0bd.diff" + }, + "runtime@bf23c95": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "bf23c950e74069043c9c338ae7915e604dcf8975", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/bf23c950e74069043c9c338ae7915e604dcf8975.diff" + }, + "runtime@4687f9a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4687f9a84f72c6a168b69662cec9c16e13becfa3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4687f9a84f72c6a168b69662cec9c16e13becfa3.diff" + }, + "runtime@c05c6a4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c05c6a486d04f11249b5adf187dce49d98a53566", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c05c6a486d04f11249b5adf187dce49d98a53566.diff" + }, + "runtime@0d2f781": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0d2f781dc87eb453ce457a3ee1f83288c01ad044", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0d2f781dc87eb453ce457a3ee1f83288c01ad044.diff" + }, + "runtime@12cdada": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "12cdada8d6a5d342c3d0647b3c2f5b1d36c08821", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/12cdada8d6a5d342c3d0647b3c2f5b1d36c08821.diff" + }, + "runtime@3e79783": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3e797833fbecf9abc2bebd2ac997d8a23a44e9f7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3e797833fbecf9abc2bebd2ac997d8a23a44e9f7.diff" + }, + "runtime@b93ce19": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b93ce19c8631c0bfdc4188b5eabaa7f6ffb642ef", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b93ce19c8631c0bfdc4188b5eabaa7f6ffb642ef.diff" + }, + "runtime@1f751da": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1f751dacd08cf7599c64d7c243c52f85c54cb979", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1f751dacd08cf7599c64d7c243c52f85c54cb979.diff" + }, + "runtime@34dd74d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "34dd74d695c09a11629a4bbe90b7967046950323", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/34dd74d695c09a11629a4bbe90b7967046950323.diff" + }, + "runtime@a348be8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a348be840acb3ae10b487b87e0201ff9cc53f244", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a348be840acb3ae10b487b87e0201ff9cc53f244.diff" + }, + "runtime@613eb19": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "613eb194f0d907305206fd1a1444847802091163", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/613eb194f0d907305206fd1a1444847802091163.diff" + }, + "runtime@c88b2b6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c88b2b632594a763bb137e22b3a46adf8fe4a001", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c88b2b632594a763bb137e22b3a46adf8fe4a001.diff" + }, + "runtime@cad7369": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cad73694474c5cb1873bce8a50861bbf20f3e2a3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cad73694474c5cb1873bce8a50861bbf20f3e2a3.diff" + }, + "runtime@a65919d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a65919dae53d8ca213fbbd7ad895d496896359a9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a65919dae53d8ca213fbbd7ad895d496896359a9.diff" + }, + "runtime@7bd64cb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7bd64cbe12dac737f6f44ef7321ca2506d582a61", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7bd64cbe12dac737f6f44ef7321ca2506d582a61.diff" + }, + "runtime@876f7e8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "876f7e845de9e6225221532ce9fbad45d6bd642c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/876f7e845de9e6225221532ce9fbad45d6bd642c.diff" + }, + "runtime@9955df2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9955df255114dee4ddf3bde499a4c9ed7af92f4f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9955df255114dee4ddf3bde499a4c9ed7af92f4f.diff" + }, + "runtime@97cc027": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "97cc027e5b3bb1c6cf8a13739b87090c3e69e9c2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/97cc027e5b3bb1c6cf8a13739b87090c3e69e9c2.diff" + }, + "runtime@7c0f7cf": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7c0f7cf2f76ef4bc2dc8113818b8a408a1dcdf55", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7c0f7cf2f76ef4bc2dc8113818b8a408a1dcdf55.diff" + }, + "runtime@29faf6d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "29faf6d964b4fe136447943a2504281ad3c9afa1", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/29faf6d964b4fe136447943a2504281ad3c9afa1.diff" + }, + "runtime@b96f3cc": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b96f3cc738f7fca9474fbe1116148b118eb6563e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b96f3cc738f7fca9474fbe1116148b118eb6563e.diff" + }, + "runtime@72b5321": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "72b5321a55e9f7f6e2c378d906501bdef2675a33", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/72b5321a55e9f7f6e2c378d906501bdef2675a33.diff" + }, + "runtime@64350da": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "64350da135d29b8a61778bff57108493f1d20d41", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/64350da135d29b8a61778bff57108493f1d20d41.diff" + }, + "runtime@02f7316": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "02f731623cbda94759cd84d7ac508890d1edd043", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/02f731623cbda94759cd84d7ac508890d1edd043.diff" + }, + "runtime@2066293": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "20662930383f669c4b39fe7bb03c76f6f21074c5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/20662930383f669c4b39fe7bb03c76f6f21074c5.diff" + }, + "runtime@37c9693": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "37c96934b3fdeeceae7bfd730c736c5667e32c7c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/37c96934b3fdeeceae7bfd730c736c5667e32c7c.diff" + }, + "runtime@aeffb4c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "aeffb4c63f94e56ab42278359d68066de95259fa", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/aeffb4c63f94e56ab42278359d68066de95259fa.diff" + }, + "runtime@f194942": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f1949423fa100cd635625cab4e51842930ecb928", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f1949423fa100cd635625cab4e51842930ecb928.diff" + }, + "runtime@dcde84a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "dcde84af84c57e98dd7644823631f0670dc61dce", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/dcde84af84c57e98dd7644823631f0670dc61dce.diff" + }, + "runtime@fec5107": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fec510711cda38dc02759c5f03d01bf1249a6e60", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fec510711cda38dc02759c5f03d01bf1249a6e60.diff" + }, + "runtime@83f84b6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "83f84b6bcfa6585f9542ce68f8b978ad83bb6a85", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/83f84b6bcfa6585f9542ce68f8b978ad83bb6a85.diff" + }, + "runtime@6a815e8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6a815e85a7ed3fadeb42adbc805da3f2dacc1fe5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6a815e85a7ed3fadeb42adbc805da3f2dacc1fe5.diff" + }, + "runtime@43502e5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "43502e55deaed0a3a9913c10c791ab60c3bc30ee", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/43502e55deaed0a3a9913c10c791ab60c3bc30ee.diff" + }, + "runtime@86e3d03": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "86e3d03d39b06c62af719c48d9bfee4fd5836d16", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/86e3d03d39b06c62af719c48d9bfee4fd5836d16.diff" + }, + "runtime@55f8bdb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "55f8bdb46ad25d7ceb7948947488f1a55f9e4635", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/55f8bdb46ad25d7ceb7948947488f1a55f9e4635.diff" + }, + "runtime@b03b4f9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b03b4f99aae637647b5fd53045a359485c9afed5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b03b4f99aae637647b5fd53045a359485c9afed5.diff" + }, + "runtime@1253ff8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1253ff89d81445c23daea7622ef5dae1ba074793", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1253ff89d81445c23daea7622ef5dae1ba074793.diff" + }, + "runtime@4e54117": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4e5411701cf6c75ae461f67934493b3a27121047", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4e5411701cf6c75ae461f67934493b3a27121047.diff" + }, + "runtime@16c2ce3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "16c2ce3fd3563d81545f2f5c61a28098879ddc6c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/16c2ce3fd3563d81545f2f5c61a28098879ddc6c.diff" + }, + "runtime@68df930": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "68df930514378f34564074c4be672ce8259ad42d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/68df930514378f34564074c4be672ce8259ad42d.diff" + }, + "runtime@9908b08": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9908b08abb90b9ca17293e129948679c7b4c4c50", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9908b08abb90b9ca17293e129948679c7b4c4c50.diff" + }, + "runtime@0723cf0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0723cf012916aa062d2039ec90c38f87ef34b406", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0723cf012916aa062d2039ec90c38f87ef34b406.diff" + }, + "runtime@9366374": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9366374807bf8895f324640133acdd9aaef094f7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9366374807bf8895f324640133acdd9aaef094f7.diff" + }, + "runtime@919e1b2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "919e1b25d70b7b8bb09a4f3923794648654411fc", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/919e1b25d70b7b8bb09a4f3923794648654411fc.diff" + }, + "runtime@9096b69": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9096b69be26ed90709d1bc460a0d4c2432372b54", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9096b69be26ed90709d1bc460a0d4c2432372b54.diff" + }, + "runtime@1a7eb82": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1a7eb82a99a7f677460a45a18138b6b7d32f080d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1a7eb82a99a7f677460a45a18138b6b7d32f080d.diff" + }, + "runtime@36739a3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "36739a35e6ae2f7cbe9a5b30e2a9a313d74b125e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/36739a35e6ae2f7cbe9a5b30e2a9a313d74b125e.diff" + }, + "runtime@4c7d197": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4c7d197cf9ca17fe0a701dd8f01be84241c1e36a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4c7d197cf9ca17fe0a701dd8f01be84241c1e36a.diff" + }, + "runtime@80f39c5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "80f39c5c16c2f3b3e820401fd4121611ccd21d4b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/80f39c5c16c2f3b3e820401fd4121611ccd21d4b.diff" + }, + "runtime@56ff888": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "56ff888a4592f6ad72d3b2d785f29101d9d78b8a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/56ff888a4592f6ad72d3b2d785f29101d9d78b8a.diff" + }, + "runtime@c626461": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c62646194bdab3da382a4c5c849481e3e8b0e8ed", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c62646194bdab3da382a4c5c849481e3e8b0e8ed.diff" + }, + "runtime@4521881": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "45218813655f28bf4f5285ae92f09abd85c02d44", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/45218813655f28bf4f5285ae92f09abd85c02d44.diff" + }, + "runtime@5ab4f9b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5ab4f9b0794aaaa45505fe9c862f3216662d24c2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5ab4f9b0794aaaa45505fe9c862f3216662d24c2.diff" + }, + "runtime@15c9f8d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "15c9f8dba38f713821f1e9a698427bc39c3f9c2e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/15c9f8dba38f713821f1e9a698427bc39c3f9c2e.diff" + }, + "runtime@b38cc2a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b38cc2aaadafc50a4cf345a95137be7dd16a29bb", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b38cc2aaadafc50a4cf345a95137be7dd16a29bb.diff" + }, + "runtime@f01e41d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f01e41d6caf93c556bad76b1997ea88a010b424d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f01e41d6caf93c556bad76b1997ea88a010b424d.diff" + }, + "runtime@edd2a2a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "edd2a2aed87000ebd416dedee6f09c1a8dcb18b7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/edd2a2aed87000ebd416dedee6f09c1a8dcb18b7.diff" + }, + "runtime@ea02e22": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ea02e22518b0d35a8e649885042bb962435a44fd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ea02e22518b0d35a8e649885042bb962435a44fd.diff" + }, + "runtime@9ddca1d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9ddca1d12b9183a8c3e1f374ea845b0056e6f30e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9ddca1d12b9183a8c3e1f374ea845b0056e6f30e.diff" + }, + "runtime@814f1ae": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "814f1ae5bf136c6704dc94f58b7a4052af201c8c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/814f1ae5bf136c6704dc94f58b7a4052af201c8c.diff" + }, + "runtime@df18262": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "df182629204a1f4cbe8a64c4ff4fa29dc8377991", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/df182629204a1f4cbe8a64c4ff4fa29dc8377991.diff" + }, + "runtime@03b08f5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "03b08f50a221a51d5ce3eff943a5a8f706bab619", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/03b08f50a221a51d5ce3eff943a5a8f706bab619.diff" + }, + "runtime@d7f2aa6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d7f2aa65bafeb9ff2c491a30647f70db84c9ea13", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d7f2aa65bafeb9ff2c491a30647f70db84c9ea13.diff" + }, + "runtime@6648305": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6648305120a931226693e6bdc0e98b61196eba6b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6648305120a931226693e6bdc0e98b61196eba6b.diff" + }, + "runtime@b8509e6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b8509e69f5c5495289bda1f2c47c623c0e257f10", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b8509e69f5c5495289bda1f2c47c623c0e257f10.diff" + }, + "runtime@f416dc4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f416dc4f97c836c6b91617e9c1857a752072b5e2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f416dc4f97c836c6b91617e9c1857a752072b5e2.diff" + }, + "runtime@ebb0dea": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ebb0dea8739963992b38dae9a60185da2802d8d0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ebb0dea8739963992b38dae9a60185da2802d8d0.diff" + }, + "runtime@d577b7a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d577b7a7e313655d1476034af272a51f8025c0a6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d577b7a7e313655d1476034af272a51f8025c0a6.diff" + }, + "runtime@b2bba6d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b2bba6de94d0b37c53cd195f8c395a7eba3ce11a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b2bba6de94d0b37c53cd195f8c395a7eba3ce11a.diff" + }, + "runtime@6260db3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6260db3d6e32bb0632007034d95f13305bfcd34d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6260db3d6e32bb0632007034d95f13305bfcd34d.diff" + }, + "runtime@f6d4ffd": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f6d4ffd1dba9478b91d79371e77270d05e2d8a1d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f6d4ffd1dba9478b91d79371e77270d05e2d8a1d.diff" + }, + "runtime@9dd9f6f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9dd9f6fad1c40449b7221339ebda8a57b09ed93f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9dd9f6fad1c40449b7221339ebda8a57b09ed93f.diff" + }, + "runtime@eb68339": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "eb6833928665bffe9a0254f651fb4679b1ef0fbc", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/eb6833928665bffe9a0254f651fb4679b1ef0fbc.diff" + }, + "runtime@be2631f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "be2631fa380635f4e357ccdd0d140e2a8069800b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/be2631fa380635f4e357ccdd0d140e2a8069800b.diff" + }, + "runtime@f8e0698": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f8e06984c6b80815b00c5eb619abb7da630ca86f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f8e06984c6b80815b00c5eb619abb7da630ca86f.diff" + }, + "runtime@bfd735b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "bfd735b659c926430e0ec595594643cbf7737db1", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/bfd735b659c926430e0ec595594643cbf7737db1.diff" + }, + "runtime@443d53e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "443d53e25d035157b0640ddccf9a940265bfbccd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/443d53e25d035157b0640ddccf9a940265bfbccd.diff" + }, + "runtime@162722d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "162722d0c4a242b6f8a183efbe4904a1f6b6d95e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/162722d0c4a242b6f8a183efbe4904a1f6b6d95e.diff" + }, + "runtime@982dc8a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "982dc8a14ab4d03622559aec0effd98de13705c0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/982dc8a14ab4d03622559aec0effd98de13705c0.diff" + }, + "runtime@7c58a24": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7c58a24f0cb5c1201be893387fe993be25f66263", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7c58a24f0cb5c1201be893387fe993be25f66263.diff" + }, + "runtime@af3bd85": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "af3bd855514c4ea3151dcd63ae7290f1dc3f5e13", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/af3bd855514c4ea3151dcd63ae7290f1dc3f5e13.diff" + }, + "runtime@c53804f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c53804fefffb9d037dc4cc9b1fca844d3f486b96", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c53804fefffb9d037dc4cc9b1fca844d3f486b96.diff" + }, + "runtime@baa4920": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "baa4920c39cbd92a5704218d11a1d6648950b6f5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/baa4920c39cbd92a5704218d11a1d6648950b6f5.diff" + }, + "runtime@4a6399a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4a6399acb5aaa71cffc1fb5b3550bc4bbe68073e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4a6399acb5aaa71cffc1fb5b3550bc4bbe68073e.diff" + }, + "runtime@14b90e1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "14b90e1cb7d54556bd976f1cc331f766b0cfe884", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/14b90e1cb7d54556bd976f1cc331f766b0cfe884.diff" + }, + "runtime@875672f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "875672f5ce661b791d58bf8506fffe9c8c4a4a78", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/875672f5ce661b791d58bf8506fffe9c8c4a4a78.diff" + }, + "runtime@2509dcb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2509dcbfa5bee2b849ecf8e55067603bfd03ce3f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2509dcbfa5bee2b849ecf8e55067603bfd03ce3f.diff" + }, + "runtime@f226c29": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f226c2986a7b110a87d9ce224f2a4b738bed41dd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f226c2986a7b110a87d9ce224f2a4b738bed41dd.diff" + }, + "runtime@a9b578e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a9b578eea947d6d1b992f2d9655466db52eea8dd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a9b578eea947d6d1b992f2d9655466db52eea8dd.diff" + }, + "runtime@5daf9dc": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5daf9dc127675061046f474108019463b83981ce", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5daf9dc127675061046f474108019463b83981ce.diff" + }, + "runtime@509a2f1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "509a2f1fed4126559143296ec6886babaf8e24c3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/509a2f1fed4126559143296ec6886babaf8e24c3.diff" + }, + "runtime@47655ce": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "47655ce8720f4c25700bf6a98216435b5082c437", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/47655ce8720f4c25700bf6a98216435b5082c437.diff" + }, + "runtime@fbf31b6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fbf31b6a837f803159dafe395f6903b3603310e5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fbf31b6a837f803159dafe395f6903b3603310e5.diff" + }, + "runtime@e861dc8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e861dc83c4c99599d390d890ccebf6400317a9ef", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e861dc83c4c99599d390d890ccebf6400317a9ef.diff" + }, + "runtime@3d83c4f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3d83c4f576c2261fbabd999d795e94332afab6c6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3d83c4f576c2261fbabd999d795e94332afab6c6.diff" + }, + "runtime@d017a1e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d017a1e201b3e5ec1f8b8cd478438881d943c277", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d017a1e201b3e5ec1f8b8cd478438881d943c277.diff" + }, + "runtime@21630d9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "21630d999ada2ec450538eb661ce3f7bc7811e4d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/21630d999ada2ec450538eb661ce3f7bc7811e4d.diff" + }, + "runtime@45ef48e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "45ef48e88ce53fd75e49ac2fec1db41ecebfaa28", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/45ef48e88ce53fd75e49ac2fec1db41ecebfaa28.diff" + }, + "runtime@ec68eee": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ec68eeeaad0026e7fa46e47173c42780ce627037", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ec68eeeaad0026e7fa46e47173c42780ce627037.diff" + }, + "runtime@63e88d1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "63e88d1e37b1df0631f6cc69f96b683caf24b89f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/63e88d1e37b1df0631f6cc69f96b683caf24b89f.diff" + }, + "runtime@686d074": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "686d0748a5d2e4f078fc7247e04bf34b18435746", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/686d0748a5d2e4f078fc7247e04bf34b18435746.diff" + }, + "runtime@2daca20": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2daca207a3bb9c70494ee491832d7f75f4a26c62", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2daca207a3bb9c70494ee491832d7f75f4a26c62.diff" + }, + "runtime@fc579fd": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fc579fdcab1c71ffce9dd55742b3d000eb3a4e6b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fc579fdcab1c71ffce9dd55742b3d000eb3a4e6b.diff" + }, + "runtime@d5c384f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d5c384f6637347852e2616ca0a0c862ccd22cb81", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d5c384f6637347852e2616ca0a0c862ccd22cb81.diff" + }, + "runtime@6cbc8ed": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6cbc8ed9cd9338e9c37444cf681d095d79054702", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6cbc8ed9cd9338e9c37444cf681d095d79054702.diff" + }, + "runtime@f3a96ce": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f3a96ce770d84606ca34e5d8f2c767da9451d7fa", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f3a96ce770d84606ca34e5d8f2c767da9451d7fa.diff" + }, + "runtime@12e83ca": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "12e83cac05bbb42ec334fbbd1b65652e43260a7b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/12e83cac05bbb42ec334fbbd1b65652e43260a7b.diff" + }, + "runtime@53928dd": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "53928dd7af68dee13bf7b3a4a2568a482b03fd90", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/53928dd7af68dee13bf7b3a4a2568a482b03fd90.diff" + }, + "runtime@2f18157": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2f18157b0a8f2ecace8c100501b3a0bde6f24314", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2f18157b0a8f2ecace8c100501b3a0bde6f24314.diff" + }, + "runtime@cb908b0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cb908b09dc8740c20d0a4d038b85128c18d5a45c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cb908b09dc8740c20d0a4d038b85128c18d5a45c.diff" + }, + "runtime@4412aa7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4412aa799d608f8f42e7e9f27aee0655ca5c281b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4412aa799d608f8f42e7e9f27aee0655ca5c281b.diff" + }, + "runtime@d4cc2d9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d4cc2d99a112efcabae70f29f7be5c57643e1f7f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d4cc2d99a112efcabae70f29f7be5c57643e1f7f.diff" + }, + "runtime@bfaa2d8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "bfaa2d83bde865dde3fdebe60e539dad4ee83124", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/bfaa2d83bde865dde3fdebe60e539dad4ee83124.diff" + }, + "runtime@3844be7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3844be756d92abe103dc49bddae92799826c4511", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3844be756d92abe103dc49bddae92799826c4511.diff" + }, + "runtime@1a2f6f9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1a2f6f9b979adf676366588d6f667dc82b606787", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1a2f6f9b979adf676366588d6f667dc82b606787.diff" + }, + "runtime@8b810a6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8b810a6b2f7a0f272ef8b9d3d788898cfd4f1259", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8b810a6b2f7a0f272ef8b9d3d788898cfd4f1259.diff" + }, + "runtime@8c86f67": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8c86f671891be9f203710ba5d5a450af9d08ab82", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8c86f671891be9f203710ba5d5a450af9d08ab82.diff" + }, + "runtime@5794faa": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5794faa952334e2c7a68f3318d86cf7e0649db15", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5794faa952334e2c7a68f3318d86cf7e0649db15.diff" + }, + "runtime@d69ff06": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d69ff06d522242b57825def7bb613fda6d4beebb", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d69ff06d522242b57825def7bb613fda6d4beebb.diff" + }, + "runtime@9105b47": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9105b473dd984bc76a10cefc03881e759b226de6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9105b473dd984bc76a10cefc03881e759b226de6.diff" + }, + "runtime@e5f6bf5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e5f6bf516bae9346eb0b72ce56a325291cb28d63", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e5f6bf516bae9346eb0b72ce56a325291cb28d63.diff" + }, + "runtime@210efc0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "210efc05611723fe2883a0a6411b6357dcd52327", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/210efc05611723fe2883a0a6411b6357dcd52327.diff" + }, + "runtime@243d211": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "243d21163c997e0f8760ac8ed9a01f4098d37023", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/243d21163c997e0f8760ac8ed9a01f4098d37023.diff" + }, + "runtime@52896ab": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "52896ab2e35e7e8387a1798679c20886dc8e840e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/52896ab2e35e7e8387a1798679c20886dc8e840e.diff" + }, + "runtime@7877ab1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7877ab12a2ab0b78a3b370e329dc16de54cd41b2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7877ab12a2ab0b78a3b370e329dc16de54cd41b2.diff" + }, + "runtime@6d3044d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6d3044db47fc5161841ba54317feed1122c132a9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6d3044db47fc5161841ba54317feed1122c132a9.diff" + }, + "runtime@5caa14b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5caa14bd341f2639b586fca29874c6f92d9711cc", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5caa14bd341f2639b586fca29874c6f92d9711cc.diff" + }, + "runtime@b5c98ef": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b5c98ef234c03e4d284bfd2f2c60ca982550fb30", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b5c98ef234c03e4d284bfd2f2c60ca982550fb30.diff" + }, + "runtime@18a940b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "18a940b0d8fd21bf1513edc8f550804e3b59bb1d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/18a940b0d8fd21bf1513edc8f550804e3b59bb1d.diff" + }, + "runtime@979b490": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "979b4906d893ea26019e3660333cc3a4da8b2b54", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/979b4906d893ea26019e3660333cc3a4da8b2b54.diff" + }, + "runtime@9d8d3e2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9d8d3e2b3091b4327c77fc00b6a00efcc418738b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9d8d3e2b3091b4327c77fc00b6a00efcc418738b.diff" + }, + "runtime@7b5e3d3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7b5e3d3fbeadbb340638a8d6a5710e2e8e902b06", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7b5e3d3fbeadbb340638a8d6a5710e2e8e902b06.diff" + }, + "runtime@c8917ea": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c8917ea4d2dbcc8b21de44f7637f735557c441da", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c8917ea4d2dbcc8b21de44f7637f735557c441da.diff" + }, + "runtime@8f33bcb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8f33bcbcfa4462ab3c338b3cada6fba7a3785979", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8f33bcbcfa4462ab3c338b3cada6fba7a3785979.diff" + }, + "runtime@d6c493d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d6c493d40bcb9a9414ae362e11b2628d37e42c26", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d6c493d40bcb9a9414ae362e11b2628d37e42c26.diff" + }, + "runtime@a4207f4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a4207f481e3cc715a8261edb78272fec0c96a244", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a4207f481e3cc715a8261edb78272fec0c96a244.diff" + }, + "runtime@deb317e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "deb317e7e183987a5616dd9b605c7d630bcb3d3e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/deb317e7e183987a5616dd9b605c7d630bcb3d3e.diff" + }, + "runtime@44cd131": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "44cd131ffeff0cc5fed208c132fd85859e4fe35f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/44cd131ffeff0cc5fed208c132fd85859e4fe35f.diff" + }, + "runtime@803560f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "803560f776ba8b643526bc904c4f88b1dcd7020c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/803560f776ba8b643526bc904c4f88b1dcd7020c.diff" + }, + "runtime@f15e049": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f15e049ac96bcb9d93ab6a47df539b4d71c2824e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f15e049ac96bcb9d93ab6a47df539b4d71c2824e.diff" + }, + "runtime@cdddcee": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cdddceed70578c84c236b2468da90a5280c8b0b9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cdddceed70578c84c236b2468da90a5280c8b0b9.diff" + }, + "runtime@bde19aa": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "bde19aa79c3f4f04ea01fbfc4d2e5effdb94e45f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/bde19aa79c3f4f04ea01fbfc4d2e5effdb94e45f.diff" + }, + "runtime@93b87b2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "93b87b24703150838e27a2eb43b9733bfc7daa35", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/93b87b24703150838e27a2eb43b9733bfc7daa35.diff" + }, + "runtime@d5e1f9e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d5e1f9ee52aaf8c40ea1c125d0517f5262970f72", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d5e1f9ee52aaf8c40ea1c125d0517f5262970f72.diff" + }, + "runtime@2d7b256": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2d7b256cc4f8141d894cdeceff87562cda6e259e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2d7b256cc4f8141d894cdeceff87562cda6e259e.diff" + }, + "runtime@9bab625": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9bab625f865cd8019dd0e76782c2724e64d73383", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9bab625f865cd8019dd0e76782c2724e64d73383.diff" + }, + "runtime@eafeb92": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "eafeb925b2833eb5f3f56d21f672c4b0246ec18a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/eafeb925b2833eb5f3f56d21f672c4b0246ec18a.diff" + }, + "runtime@91557f5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "91557f54f15bac8fbb5c7acf994910cbd6071991", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/91557f54f15bac8fbb5c7acf994910cbd6071991.diff" + }, + "runtime@6f8b227": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6f8b227854a4514185d76a101c00c7a3bd830c97", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6f8b227854a4514185d76a101c00c7a3bd830c97.diff" + }, + "runtime@d343974": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d3439749b652966f8283f2d01c972bc8c4dc3ec3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d3439749b652966f8283f2d01c972bc8c4dc3ec3.diff" + }, + "runtime@e7c4426": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e7c44260b474324b287fa12e1aa8dab0ccdd1e79", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e7c44260b474324b287fa12e1aa8dab0ccdd1e79.diff" + }, + "runtime@d23e53a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d23e53a91dcd11629c2768d2e57dd27e0e862354", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d23e53a91dcd11629c2768d2e57dd27e0e862354.diff" + }, + "sdk@bcb60ca": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "bcb60ca04b288418ecd9e8f9c34f51bf21fb1dc4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/bcb60ca04b288418ecd9e8f9c34f51bf21fb1dc4.diff" + }, + "sdk@84d3214": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "84d32149a5388bdd1d252373fa53ab5154c33efb", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/84d32149a5388bdd1d252373fa53ab5154c33efb.diff" + }, + "sdk@63a7105": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "63a710595ae6d63c5a82529f45cfbbd8778fb2bc", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/63a710595ae6d63c5a82529f45cfbbd8778fb2bc.diff" + }, + "sdk@26ca00f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "26ca00f373a242702c1ebecd1dc3e1a7e03a7896", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/26ca00f373a242702c1ebecd1dc3e1a7e03a7896.diff" + }, + "sdk@6373e26": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6373e262f1e7c719b5d7c42866222d2355f4006a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6373e262f1e7c719b5d7c42866222d2355f4006a.diff" + }, + "sdk@368e128": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "368e128e8259aa52dd7176d8da16605fd2a0860e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/368e128e8259aa52dd7176d8da16605fd2a0860e.diff" + }, + "sdk@aa4cf6e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "aa4cf6e1d820059542fd9a22888be58c0e798766", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/aa4cf6e1d820059542fd9a22888be58c0e798766.diff" + }, + "sdk@48e7568": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "48e7568f19ea0dcabd66f6c2a3ea3699c2156453", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/48e7568f19ea0dcabd66f6c2a3ea3699c2156453.diff" + }, + "sdk@ae318b2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ae318b25d6803dd1272812b031fae502996af8b4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ae318b25d6803dd1272812b031fae502996af8b4.diff" + }, + "sdk@16f9ccf": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "16f9ccfc41b766672a752d5832363f61ccc4a8f7", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/16f9ccfc41b766672a752d5832363f61ccc4a8f7.diff" + }, + "sdk@b9d29f2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b9d29f2d2953acbbc2b450c130c6727ca895c92b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b9d29f2d2953acbbc2b450c130c6727ca895c92b.diff" + }, + "sdk@d8f27e8": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d8f27e8ad05944d0d191363087a421ce527e1dc5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d8f27e8ad05944d0d191363087a421ce527e1dc5.diff" + }, + "sdk@12760a3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "12760a3e53f904c89aaeed70a01a0274701b5eb9", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/12760a3e53f904c89aaeed70a01a0274701b5eb9.diff" + }, + "sdk@5371752": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "537175220f65f0b65f41cdf4cfc888bd1c83dfb3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/537175220f65f0b65f41cdf4cfc888bd1c83dfb3.diff" + }, + "sdk@583f680": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "583f6803448894b50b149ce9568611795963fcd1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/583f6803448894b50b149ce9568611795963fcd1.diff" + }, + "sdk@6c268d1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6c268d15844b784ba1608e752889a0150ac33390", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6c268d15844b784ba1608e752889a0150ac33390.diff" + }, + "sdk@efd8fd2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "efd8fd2323c5d99a63b3e7b9fa5318777315028d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/efd8fd2323c5d99a63b3e7b9fa5318777315028d.diff" + }, + "sdk@5f21c8b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5f21c8be47f75283c6959838f7197c1e56e26503", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5f21c8be47f75283c6959838f7197c1e56e26503.diff" + }, + "sdk@ca22991": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ca22991c2a504cbcd3f9fb0aec68a5905129011f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ca22991c2a504cbcd3f9fb0aec68a5905129011f.diff" + }, + "sdk@f02a5eb": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f02a5eb14f324cd297441febd9099130268056fc", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f02a5eb14f324cd297441febd9099130268056fc.diff" + }, + "sdk@81f778f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "81f778f9bae4c2ed9d15ab68e1a117d09aeff18b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/81f778f9bae4c2ed9d15ab68e1a117d09aeff18b.diff" + }, + "sdk@72e7825": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "72e782541cab0694c5cc018e4bc784245e22e6a1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/72e782541cab0694c5cc018e4bc784245e22e6a1.diff" + }, + "sdk@081c776": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "081c7768ffd398629da051f43244224f9387560f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/081c7768ffd398629da051f43244224f9387560f.diff" + }, + "sdk@bdc3757": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "bdc375762cd2fddf166c9e1af9b60a83bfc27c2f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/bdc375762cd2fddf166c9e1af9b60a83bfc27c2f.diff" + }, + "sdk@70bdf41": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "70bdf418853c8ec8e25aa0008426e8733238e3e6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/70bdf418853c8ec8e25aa0008426e8733238e3e6.diff" + }, + "sdk@3ce7bd3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3ce7bd318fff2db5ce4354f9db2f9be89ad81e84", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3ce7bd318fff2db5ce4354f9db2f9be89ad81e84.diff" + }, + "sdk@9be0a7d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9be0a7d24f2860b754aa19365621c54bbcdbbdc1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9be0a7d24f2860b754aa19365621c54bbcdbbdc1.diff" + }, + "sdk@4934c8f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4934c8f32006b2ed58f1e4d6b55787000a8fac23", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4934c8f32006b2ed58f1e4d6b55787000a8fac23.diff" + }, + "sdk@c34be85": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c34be8559529a201c97f2b13f8ca544e0d430741", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c34be8559529a201c97f2b13f8ca544e0d430741.diff" + }, + "sdk@209a34e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "209a34e8629a96cdb71b1cee1ec9d21812dacc57", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/209a34e8629a96cdb71b1cee1ec9d21812dacc57.diff" + }, + "sdk@14848ba": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "14848ba8b5c7331f15cb94f879657e7f366ecf54", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/14848ba8b5c7331f15cb94f879657e7f366ecf54.diff" + }, + "sdk@4e6fb9d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4e6fb9d567a920d6319d17a599668b678514ab3c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4e6fb9d567a920d6319d17a599668b678514ab3c.diff" + }, + "sdk@45f21b3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "45f21b3092adf7ab12ef11052afed0a394fc7551", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/45f21b3092adf7ab12ef11052afed0a394fc7551.diff" + }, + "sdk@a7e90c8": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a7e90c8c102281e01fb0943672657bf8afaeb6ff", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a7e90c8c102281e01fb0943672657bf8afaeb6ff.diff" + }, + "sdk@d346139": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d34613993bd00e050a2c5255d5751461c75a3c80", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d34613993bd00e050a2c5255d5751461c75a3c80.diff" + }, + "sdk@e055a32": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e055a32e029c8f56b74b87cc01f0348431e4e1a6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e055a32e029c8f56b74b87cc01f0348431e4e1a6.diff" + }, + "sdk@0af14fa": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0af14fa218fce0deb9192b798afe0bd38ce33f2e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0af14fa218fce0deb9192b798afe0bd38ce33f2e.diff" + }, + "sdk@7a1703f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7a1703f4cb00094eae0bd0a1064e825b20c5b087", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7a1703f4cb00094eae0bd0a1064e825b20c5b087.diff" + }, + "sdk@4c2926f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4c2926f0573c567090abcd833c88c6992be9ad90", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4c2926f0573c567090abcd833c88c6992be9ad90.diff" + }, + "sdk@feeb179": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "feeb17980420d2a62c33d230843515098e748c5c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/feeb17980420d2a62c33d230843515098e748c5c.diff" + }, + "sdk@193757a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "193757a32bcaee656fd2b1b8e2076e8805533ba6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/193757a32bcaee656fd2b1b8e2076e8805533ba6.diff" + }, + "sdk@e3808fd": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e3808fd1ed3ba6037723b44a6a04b08e4fc4d30b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e3808fd1ed3ba6037723b44a6a04b08e4fc4d30b.diff" + }, + "sdk@1f571f8": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1f571f8b585795738d710cfd14e525e974ff0c0f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1f571f8b585795738d710cfd14e525e974ff0c0f.diff" + }, + "sdk@c5fb73c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c5fb73cedfc35c646cb18da5ed6ce86b7c7a7053", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c5fb73cedfc35c646cb18da5ed6ce86b7c7a7053.diff" + }, + "sdk@ed11d35": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ed11d35b2f5d40a02fe41215a78ea3eb9be2cd4d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ed11d35b2f5d40a02fe41215a78ea3eb9be2cd4d.diff" + }, + "sdk@cbb2c65": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "cbb2c653af28000f201c50e6e4985b27d834d091", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/cbb2c653af28000f201c50e6e4985b27d834d091.diff" + }, + "sdk@364c48a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "364c48aa31d0d491fb4dcce617053af2b617dd37", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/364c48aa31d0d491fb4dcce617053af2b617dd37.diff" + }, + "sdk@3a8c6cc": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3a8c6cc5a0ade89edc395401efcda425ad38c62b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3a8c6cc5a0ade89edc395401efcda425ad38c62b.diff" + }, + "sdk@ffcf676": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ffcf67693266f347e5c4131cdc1492659120069c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ffcf67693266f347e5c4131cdc1492659120069c.diff" + }, + "sdk@e6a495f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e6a495fb58ac3ea75303467c4657f0e8c85252df", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e6a495fb58ac3ea75303467c4657f0e8c85252df.diff" + }, + "sdk@7ca3cac": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7ca3cac6372341f20f8a8733ab94c9e985433539", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7ca3cac6372341f20f8a8733ab94c9e985433539.diff" + }, + "sdk@0337000": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "033700013fdd111195e85e7a51f84337f36e039f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/033700013fdd111195e85e7a51f84337f36e039f.diff" + }, + "sdk@8fbde9f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8fbde9fb4b68a1f8d469f244f7483fd6192b0686", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8fbde9fb4b68a1f8d469f244f7483fd6192b0686.diff" + }, + "sdk@3582eea": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3582eea036eefb2ada938284eb5d100f94fc85bb", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3582eea036eefb2ada938284eb5d100f94fc85bb.diff" + }, + "sdk@d24aa91": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d24aa919c05c1839a1e5aa4744eb38ee8be1417f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d24aa919c05c1839a1e5aa4744eb38ee8be1417f.diff" + }, + "sdk@c5e7703": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c5e7703fcb8d24ae05cfc1ee036111dd78843578", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c5e7703fcb8d24ae05cfc1ee036111dd78843578.diff" + }, + "sdk@7e13368": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7e133688657eed9f58d4608f18cc38ed0d3be198", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7e133688657eed9f58d4608f18cc38ed0d3be198.diff" + }, + "sdk@e128c8a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e128c8ad76d7e63cefaee7da16ac51c1a79f677c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e128c8ad76d7e63cefaee7da16ac51c1a79f677c.diff" + }, + "sdk@4c9e31c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4c9e31c29dc2f7bf62c2d5266ebf1574bd5290b2", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4c9e31c29dc2f7bf62c2d5266ebf1574bd5290b2.diff" + }, + "sdk@0f8b0e3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0f8b0e3e554ff133cbaabe7c5ce2e826f5fbb573", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0f8b0e3e554ff133cbaabe7c5ce2e826f5fbb573.diff" + }, + "sdk@1ba5960": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1ba596079f9502a4ee8f819cf52a9ce031749ebe", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1ba596079f9502a4ee8f819cf52a9ce031749ebe.diff" + }, + "sdk@7a5391d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7a5391d7c919b6f4532455066c3c0edaebe2a5a6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7a5391d7c919b6f4532455066c3c0edaebe2a5a6.diff" + }, + "sdk@1b6b76a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1b6b76add691c745ee07cf73c26cc4035b3350bd", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1b6b76add691c745ee07cf73c26cc4035b3350bd.diff" + }, + "sdk@dbc366b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "dbc366b4e92958b7c0b6c40d60596421692f7414", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/dbc366b4e92958b7c0b6c40d60596421692f7414.diff" + }, + "sdk@96dfed6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "96dfed677337e7adbfa922fcd553f69f4641e71c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/96dfed677337e7adbfa922fcd553f69f4641e71c.diff" + }, + "sdk@43f4612": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "43f46121f2a83303fd5ccb824cd83b04d34b4f8f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/43f46121f2a83303fd5ccb824cd83b04d34b4f8f.diff" + }, + "sdk@fff4134": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "fff4134404305826b3438528dc6d9d8bf26043e5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/fff4134404305826b3438528dc6d9d8bf26043e5.diff" + }, + "sdk@8ce16af": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8ce16af39d449ffee5cb699f1c0e92d8aad47797", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8ce16af39d449ffee5cb699f1c0e92d8aad47797.diff" + }, + "sdk@ed16134": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ed16134a8ab1014e1f306df2d4a4b7c5e2b31c9e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ed16134a8ab1014e1f306df2d4a4b7c5e2b31c9e.diff" + }, + "sdk@1fd3502": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1fd3502707311a24c43fbfb4cb602e23c7152a08", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1fd3502707311a24c43fbfb4cb602e23c7152a08.diff" + }, + "sdk@2062568": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2062568581583d5bba5c8424c7fa6b9a659aed43", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2062568581583d5bba5c8424c7fa6b9a659aed43.diff" + }, + "sdk@f95eda2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f95eda259c8c57600b243769779e11f9c97b864e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f95eda259c8c57600b243769779e11f9c97b864e.diff" + }, + "sdk@8255399": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "82553995bf4e84914fdbc9200697584c0e8b6390", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/82553995bf4e84914fdbc9200697584c0e8b6390.diff" + }, + "sdk@cd3a71f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "cd3a71f039fb10204ab44e0c29a9a601c0fabd1c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/cd3a71f039fb10204ab44e0c29a9a601c0fabd1c.diff" + }, + "sdk@27dd11b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "27dd11b592a8e02937b5cf11bcd1c36688287f92", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/27dd11b592a8e02937b5cf11bcd1c36688287f92.diff" + }, + "sdk@171977b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "171977b618187f848d444a9445a91d6648f346de", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/171977b618187f848d444a9445a91d6648f346de.diff" + }, + "sdk@1e1cec6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1e1cec6d46454c6d18a704dab5427943db8af617", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1e1cec6d46454c6d18a704dab5427943db8af617.diff" + }, + "sdk@c08a02a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c08a02a9d470e677f899f371c5c68ea244782e69", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c08a02a9d470e677f899f371c5c68ea244782e69.diff" + }, + "sdk@d8aa6fd": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d8aa6fdc01891b5336d18d33ba25238f4392775b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d8aa6fdc01891b5336d18d33ba25238f4392775b.diff" + }, + "sdk@e41a21b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e41a21bce785c606a970ac45a27c4bb0f86cade6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e41a21bce785c606a970ac45a27c4bb0f86cade6.diff" + }, + "sdk@9400f24": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9400f244dbc9e9f9e7c82bbb4028f7e5480d343d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9400f244dbc9e9f9e7c82bbb4028f7e5480d343d.diff" + }, + "sdk@70b0739": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "70b0739b7ffad74b7b8bfe1edba7ec0fb0d624d0", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/70b0739b7ffad74b7b8bfe1edba7ec0fb0d624d0.diff" + }, + "sdk@1ac4527": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1ac4527f902a12d0c80467d72da3e80dfe8a1879", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1ac4527f902a12d0c80467d72da3e80dfe8a1879.diff" + }, + "sdk@74b28c0": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "74b28c03e1b08f3a27cdba81dc6f1984a0d7ede1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/74b28c03e1b08f3a27cdba81dc6f1984a0d7ede1.diff" + }, + "sdk@1e311fe": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1e311fe894a29d7e6b026f4dbefa2de2754eb2b3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1e311fe894a29d7e6b026f4dbefa2de2754eb2b3.diff" + }, + "sdk@a430e56": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a430e56acbeac6d7e673fdc9d30519b2d9377563", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a430e56acbeac6d7e673fdc9d30519b2d9377563.diff" + }, + "sdk@99ed5a4": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "99ed5a458108bd10c2163b7d180255c3176a589a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/99ed5a458108bd10c2163b7d180255c3176a589a.diff" + }, + "sdk@e6a41ba": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e6a41baf4540e52edf18af7c5f0e9211dd36695c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e6a41baf4540e52edf18af7c5f0e9211dd36695c.diff" + }, + "sdk@2f84158": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2f84158d51768d1a7b42961611a2adc4a8979a6b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2f84158d51768d1a7b42961611a2adc4a8979a6b.diff" + }, + "sdk@26247c1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "26247c18a195347db1cdddd960601a3ace880f19", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/26247c18a195347db1cdddd960601a3ace880f19.diff" + }, + "sdk@0957156": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0957156bc5d93cbbf478fe9ed09d38d49894d86b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0957156bc5d93cbbf478fe9ed09d38d49894d86b.diff" + }, + "sdk@1348752": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1348752a52869ac58d18e4edb3aa35f472a824d6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1348752a52869ac58d18e4edb3aa35f472a824d6.diff" + }, + "sdk@e216b09": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e216b09accb3509218bffebb5b3b1cc7e62c6bf8", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e216b09accb3509218bffebb5b3b1cc7e62c6bf8.diff" + }, + "sdk@99ee676": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "99ee6763c42fc83745dc0335f239f34450be420d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/99ee6763c42fc83745dc0335f239f34450be420d.diff" + }, + "sdk@7bcae52": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7bcae522e049bc8318cb2bab11af507add6493c3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7bcae522e049bc8318cb2bab11af507add6493c3.diff" + }, + "sdk@2fc1ed0": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2fc1ed04bd8b292ef11bf9c0024d0e67c90b3840", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2fc1ed04bd8b292ef11bf9c0024d0e67c90b3840.diff" + }, + "sdk@6b83d8b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6b83d8bcd1876cc697e73910c6c5793de445acf8", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6b83d8bcd1876cc697e73910c6c5793de445acf8.diff" + }, + "sdk@46f06ae": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "46f06aed9eeb443dbd9094cf7b407a3ec179470b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/46f06aed9eeb443dbd9094cf7b407a3ec179470b.diff" + }, + "sdk@10b65e8": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "10b65e8b67c68951509d2714c3d16ece704ede16", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/10b65e8b67c68951509d2714c3d16ece704ede16.diff" + }, + "sdk@275e4bf": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "275e4bf3e9861a666b6b58117cbbcc3bceab09ec", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/275e4bf3e9861a666b6b58117cbbcc3bceab09ec.diff" + }, + "sdk@0b32584": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0b3258423a96e6b0e0582a31f09e10ce4478fc06", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0b3258423a96e6b0e0582a31f09e10ce4478fc06.diff" + }, + "sdk@da48935": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "da48935c4975ad6ed331df353bd94cb285002cf8", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/da48935c4975ad6ed331df353bd94cb285002cf8.diff" + }, + "sdk@2ea2c91": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2ea2c917ff955b6557b70aebb77ae969a4c66ab5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2ea2c917ff955b6557b70aebb77ae969a4c66ab5.diff" + }, + "sdk@6a65951": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6a65951b27079ac8421b638aeb5f5076485d28d8", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6a65951b27079ac8421b638aeb5f5076485d28d8.diff" + }, + "sdk@bf06920": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "bf069209cde7b27f436b64fcafb0fe0e66db667a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/bf069209cde7b27f436b64fcafb0fe0e66db667a.diff" + }, + "sdk@cd44b29": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "cd44b291e15d205fd6a0bc1fe698f33ac8989e87", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/cd44b291e15d205fd6a0bc1fe698f33ac8989e87.diff" + }, + "sdk@878d3e2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "878d3e2175a909bc3953373de970bcb85ee4c2e4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/878d3e2175a909bc3953373de970bcb85ee4c2e4.diff" + }, + "sdk@918016b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "918016bd6536642a5424400b5b1584c7731197e2", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/918016bd6536642a5424400b5b1584c7731197e2.diff" + }, + "sdk@27df5c7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "27df5c71bc86e7e50f049bcdf7ceb918fe074164", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/27df5c71bc86e7e50f049bcdf7ceb918fe074164.diff" + }, + "sdk@46a4d29": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "46a4d29bdce7f495b8830ce32a249572303c97c4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/46a4d29bdce7f495b8830ce32a249572303c97c4.diff" + }, + "sdk@61d729a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "61d729a1933212c1ce05b50d8211445823bf822a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/61d729a1933212c1ce05b50d8211445823bf822a.diff" + }, + "sdk@3065905": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "30659057e1c8178acba655aacdaf3a47d810b1b4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/30659057e1c8178acba655aacdaf3a47d810b1b4.diff" + }, + "sdk@a2fbbf0": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a2fbbf040c869af7d73a9b48386fc2bab49ed09d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a2fbbf040c869af7d73a9b48386fc2bab49ed09d.diff" + }, + "sdk@92f957c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "92f957cb164b14018793729a5304f0ab8fe9b563", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/92f957cb164b14018793729a5304f0ab8fe9b563.diff" + }, + "sdk@fab83c0": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "fab83c076b30474413595b1755f3073e94d49267", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/fab83c076b30474413595b1755f3073e94d49267.diff" + }, + "sdk@6afcec8": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6afcec8d274307f9ce0806a89312be794a2bc729", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6afcec8d274307f9ce0806a89312be794a2bc729.diff" + }, + "sdk@1dc6008": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1dc6008f9337da3387b30d7d6a9f8a816010ef82", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1dc6008f9337da3387b30d7d6a9f8a816010ef82.diff" + }, + "sdk@1db8003": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1db8003122e8d45894c8b388e70896129608de7d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1db8003122e8d45894c8b388e70896129608de7d.diff" + }, + "sdk@321b67f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "321b67f688fa78f0482a22b8e08054c9aa4bc3d6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/321b67f688fa78f0482a22b8e08054c9aa4bc3d6.diff" + }, + "sdk@e30dc41": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e30dc418313b2d1132ca01a5d148e907903b7b1d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e30dc418313b2d1132ca01a5d148e907903b7b1d.diff" + }, + "sdk@bc6b89b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "bc6b89b6de559c15c5280a49ef69200670b0489e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/bc6b89b6de559c15c5280a49ef69200670b0489e.diff" + }, + "sdk@8a231e7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8a231e75a19b712178117767e09ca0ec7ac3c7a3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8a231e75a19b712178117767e09ca0ec7ac3c7a3.diff" + }, + "sdk@f6e1cdd": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f6e1cddab1b025fe75433a794e87feefafcecc67", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f6e1cddab1b025fe75433a794e87feefafcecc67.diff" + }, + "sdk@fb44937": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "fb44937b195e836e855ee72fe5254382c29e1ca9", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/fb44937b195e836e855ee72fe5254382c29e1ca9.diff" + }, + "sdk@28580ca": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "28580caa6ffcfd1e0df947589f262bc436beabbb", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/28580caa6ffcfd1e0df947589f262bc436beabbb.diff" + }, + "sdk@af70221": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "af702217e5d1fefe7ca1242de3ed9ce09a1691a6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/af702217e5d1fefe7ca1242de3ed9ce09a1691a6.diff" + }, + "sdk@fadbc3c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "fadbc3ca28958417082b0c01c93919b4a7fda4be", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/fadbc3ca28958417082b0c01c93919b4a7fda4be.diff" + }, + "sdk@f26b426": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f26b426ff9c783d0d955256632eaf550687c8002", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f26b426ff9c783d0d955256632eaf550687c8002.diff" + }, + "sdk@d30c5b5": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d30c5b546521cdad7ed907d60857f81a4116806f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d30c5b546521cdad7ed907d60857f81a4116806f.diff" + }, + "sdk@28084a7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "28084a73cf33989c72804fe037d960a0a2361964", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/28084a73cf33989c72804fe037d960a0a2361964.diff" + }, + "sdk@6eaaea3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6eaaea38812042b3ab309b8080eadb1c73c28eb6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6eaaea38812042b3ab309b8080eadb1c73c28eb6.diff" + }, + "sdk@de7e4de": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "de7e4de4b13175e3e149db9a6bb1312943800851", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/de7e4de4b13175e3e149db9a6bb1312943800851.diff" + }, + "sdk@701e15b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "701e15bd3c8bcc54e229e776c4491f820a23f80f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/701e15bd3c8bcc54e229e776c4491f820a23f80f.diff" + }, + "sdk@0b5cabd": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0b5cabd6007221d0352fd0b81ea452db790d6f67", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0b5cabd6007221d0352fd0b81ea452db790d6f67.diff" + }, + "sdk@6d57490": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6d57490816797a1f68bccb2dbd7770689d56b540", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6d57490816797a1f68bccb2dbd7770689d56b540.diff" + }, + "sdk@b40543f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b40543fe4dc377c6e60a482109b378b589dc87df", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b40543fe4dc377c6e60a482109b378b589dc87df.diff" + }, + "sdk@343044b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "343044b01a7658318badcb937728d01ef14f9cbd", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/343044b01a7658318badcb937728d01ef14f9cbd.diff" + }, + "sdk@ce2b7a5": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ce2b7a54fd330ed35e0e82f69c63b384db7c2cf8", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ce2b7a54fd330ed35e0e82f69c63b384db7c2cf8.diff" + }, + "sdk@f8798d7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f8798d7a7b4b8c24f2748c3621ca2571cef45244", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f8798d7a7b4b8c24f2748c3621ca2571cef45244.diff" + }, + "sdk@688c757": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "688c757750401b79a898dcf69667edb011323245", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/688c757750401b79a898dcf69667edb011323245.diff" + }, + "sdk@7f7901c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7f7901cb131b999f042aa17ed35514b279c2555d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7f7901cb131b999f042aa17ed35514b279c2555d.diff" + }, + "sdk@5a22127": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5a22127dbc1b0c6466337c559bf02cf0f81da918", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5a22127dbc1b0c6466337c559bf02cf0f81da918.diff" + }, + "sdk@13f08d3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "13f08d3b6b539257e2376db1245b8733bb4f52df", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/13f08d3b6b539257e2376db1245b8733bb4f52df.diff" + }, + "sdk@46f0350": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "46f035076941f61b466b04b93af187ed99cb1fdb", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/46f035076941f61b466b04b93af187ed99cb1fdb.diff" + }, + "sdk@2efe80f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2efe80f05884f6bea93f33d8e06528bda728ab78", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2efe80f05884f6bea93f33d8e06528bda728ab78.diff" + }, + "sdk@3defff8": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3defff87b01eec9d63007825a8a78da7953ccb5d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3defff87b01eec9d63007825a8a78da7953ccb5d.diff" + }, + "sdk@67631a2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "67631a219f79ccff6f642286a1d229c31c367fce", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/67631a219f79ccff6f642286a1d229c31c367fce.diff" + }, + "sdk@3a0afa4": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3a0afa4e54343c562f7408e73359ed0338aa6eeb", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3a0afa4e54343c562f7408e73359ed0338aa6eeb.diff" + }, + "sdk@b0cb010": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b0cb0106eb542ef29f875cc8b334548a1e29b96b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b0cb0106eb542ef29f875cc8b334548a1e29b96b.diff" + }, + "sdk@c9aec7d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c9aec7dec4db0090472f43a08a43ad256ef69e7c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c9aec7dec4db0090472f43a08a43ad256ef69e7c.diff" + }, + "sdk@7b1f17a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7b1f17a9be44992f04d4872f9ccaa28dae8da748", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7b1f17a9be44992f04d4872f9ccaa28dae8da748.diff" + }, + "sdk@6f25088": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6f25088dd4614d8f6da0a50ce2e3ef9301a3b3d7", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6f25088dd4614d8f6da0a50ce2e3ef9301a3b3d7.diff" + }, + "sdk@34884ac": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "34884acc6a8879b7c942ad08e9112bcd5f9d8038", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/34884acc6a8879b7c942ad08e9112bcd5f9d8038.diff" + }, + "sdk@3850bef": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3850bef1c7a3e8abeca80c38917d0c70b4fa352b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3850bef1c7a3e8abeca80c38917d0c70b4fa352b.diff" + }, + "sdk@becbd7e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "becbd7e7c7b82d35cae51e6ea2fdef6d846a1b97", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/becbd7e7c7b82d35cae51e6ea2fdef6d846a1b97.diff" + }, + "sdk@7a2111b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7a2111b160ae1c18ced50a15b2ddd8d7521ae7cf", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7a2111b160ae1c18ced50a15b2ddd8d7521ae7cf.diff" + }, + "sdk@b9d31cb": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b9d31cb0f47aca1f9b2818143722c5b33c486077", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b9d31cb0f47aca1f9b2818143722c5b33c486077.diff" + }, + "sdk@f46c335": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f46c335982ae897cd102d7b773073b27e057e48d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f46c335982ae897cd102d7b773073b27e057e48d.diff" + }, + "sdk@22254e6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "22254e68de79086f7bf89e0afe6f0142b9c5a389", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/22254e68de79086f7bf89e0afe6f0142b9c5a389.diff" + }, + "sdk@cd783aa": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "cd783aaa2de42020cba266f71bc647023b377c4c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/cd783aaa2de42020cba266f71bc647023b377c4c.diff" + }, + "sdk@1ed2c06": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1ed2c061f88ae28e996fcbcd416387174e84e5ea", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1ed2c061f88ae28e996fcbcd416387174e84e5ea.diff" + }, + "sdk@a27297b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a27297bf1bb993dba7180eb71c2c7730a716ef9d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a27297bf1bb993dba7180eb71c2c7730a716ef9d.diff" + }, + "sdk@3d51db5": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3d51db505631a2ef6c8ad16d5eea9ab8f0c0ef59", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3d51db505631a2ef6c8ad16d5eea9ab8f0c0ef59.diff" + }, + "sdk@672cd33": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "672cd3327df1ae93a5032d391e68e5b69e00f96c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/672cd3327df1ae93a5032d391e68e5b69e00f96c.diff" + }, + "sdk@08c351c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "08c351c9b55827d284e679bda2ec31d4962f7fb7", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/08c351c9b55827d284e679bda2ec31d4962f7fb7.diff" + }, + "sdk@179cda2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "179cda20da5720a0bb3da1eab148757e632568eb", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/179cda20da5720a0bb3da1eab148757e632568eb.diff" + }, + "sdk@df91594": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "df91594667d3148b43be20e6653df6c0e76b4e42", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/df91594667d3148b43be20e6653df6c0e76b4e42.diff" + }, + "sdk@f66d62e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f66d62ef5988e0be3cd75d9b41916b2e776ec27d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f66d62ef5988e0be3cd75d9b41916b2e776ec27d.diff" + }, + "sdk@bd5d3af": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "bd5d3af9804ba358bf3f2e1be209418bcc949d16", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/bd5d3af9804ba358bf3f2e1be209418bcc949d16.diff" + }, + "sdk@fdc6404": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "fdc6404f272e9fbed2e79aecd9a9807923685e0f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/fdc6404f272e9fbed2e79aecd9a9807923685e0f.diff" + }, + "sdk@d8ba29e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d8ba29e78726a70cc1a8924d0879fd5eb90c51ab", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d8ba29e78726a70cc1a8924d0879fd5eb90c51ab.diff" + }, + "sdk@cf2e5d6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "cf2e5d604b16265bc0141593826c187d9d471f0f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/cf2e5d604b16265bc0141593826c187d9d471f0f.diff" + }, + "sdk@8688b41": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8688b417a68942f8818e56e5809d136f57a0c289", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8688b417a68942f8818e56e5809d136f57a0c289.diff" + }, + "sdk@f7900e0": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f7900e0ee90e259d65e10e34d55e1e7ce04c6a11", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f7900e0ee90e259d65e10e34d55e1e7ce04c6a11.diff" + }, + "sdk@e898f24": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e898f24761dcbad67251f69e278ef44a0b307bca", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e898f24761dcbad67251f69e278ef44a0b307bca.diff" + }, + "sdk@d74666a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d74666ab99f773a41c2769d14a5aa5e795bd1c07", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d74666ab99f773a41c2769d14a5aa5e795bd1c07.diff" + }, + "sdk@b34aec9": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b34aec96fd080aabc9233e099921aeaa4379071a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b34aec96fd080aabc9233e099921aeaa4379071a.diff" + }, + "sdk@1819039": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1819039aef72a7a2865326b0731dc50a35754d65", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1819039aef72a7a2865326b0731dc50a35754d65.diff" + }, + "sdk@7028695": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7028695fb6a83f035bc4a6690c794f4e2a4cfb3b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7028695fb6a83f035bc4a6690c794f4e2a4cfb3b.diff" + }, + "sdk@c9dc32c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c9dc32c223d3bcdc74db4bd7f7c7c5265cca751f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c9dc32c223d3bcdc74db4bd7f7c7c5265cca751f.diff" + }, + "sdk@aeedfda": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "aeedfda3295fef51a8adbf626d9f321ac24eb28c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/aeedfda3295fef51a8adbf626d9f321ac24eb28c.diff" + }, + "sdk@6bd81f1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6bd81f1f853922dd7be57d5ba0760195da6620c5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6bd81f1f853922dd7be57d5ba0760195da6620c5.diff" + }, + "sdk@2400fb7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2400fb76c1f89202a6acf3835f698a1b996c3728", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2400fb76c1f89202a6acf3835f698a1b996c3728.diff" + }, + "sdk@f6c57fb": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f6c57fbec479ef51980a6212fdc6fb5fbaeef3b0", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f6c57fbec479ef51980a6212fdc6fb5fbaeef3b0.diff" + }, + "sdk@2cf45fe": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2cf45fe9eb6042aaa1963a940bf69e4a78e719b6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2cf45fe9eb6042aaa1963a940bf69e4a78e719b6.diff" + }, + "sdk@8b46229": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8b462293ac730ce420d9a1c6a072f77252cad3b3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8b462293ac730ce420d9a1c6a072f77252cad3b3.diff" + }, + "sdk@4cd2fac": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4cd2fac6b813d3207e86e50458356e88cc79f256", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4cd2fac6b813d3207e86e50458356e88cc79f256.diff" + }, + "sdk@efe7617": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "efe76179724df247481d4a77e650715fa4569dc4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/efe76179724df247481d4a77e650715fa4569dc4.diff" + }, + "sdk@e6fea27": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e6fea27be50d9f406cc6f3c19cc8c55c1014e320", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e6fea27be50d9f406cc6f3c19cc8c55c1014e320.diff" + }, + "sdk@166831f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "166831f96ad2a24e9c895e4d965d710e18724eda", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/166831f96ad2a24e9c895e4d965d710e18724eda.diff" + }, + "sdk@8cef68e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8cef68e5b5cedd679562689fb62d0d92d6416bb7", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8cef68e5b5cedd679562689fb62d0d92d6416bb7.diff" + }, + "sdk@8a4a60a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8a4a60a04d6caea96570e4267af5164cd5b6c8fb", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8a4a60a04d6caea96570e4267af5164cd5b6c8fb.diff" + }, + "sdk@bb7d629": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "bb7d62960f0d320c333d08f30db7c52af0003cc7", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/bb7d62960f0d320c333d08f30db7c52af0003cc7.diff" + }, + "sdk@1eac263": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1eac263250057e3079ba2c754161d812978581f2", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1eac263250057e3079ba2c754161d812978581f2.diff" + }, + "sdk@5516079": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5516079ddc1ddc7420de6bfee4ccd705ed000822", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5516079ddc1ddc7420de6bfee4ccd705ed000822.diff" + }, + "sdk@3249ae0": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3249ae0ba024ca36d49f75e1bf2400dc999b0efb", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3249ae0ba024ca36d49f75e1bf2400dc999b0efb.diff" + }, + "sdk@6b09479": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6b09479f78a07aabe5d73e46bab5bf04a59b616c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6b09479f78a07aabe5d73e46bab5bf04a59b616c.diff" + }, + "sdk@d0b6a66": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d0b6a664ca6f1529d8a47b1716e9cc7a690b68b2", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d0b6a664ca6f1529d8a47b1716e9cc7a690b68b2.diff" + }, + "sdk@d2f50cc": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d2f50ccfd82dbe56bb531fae056947ebe7912c42", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d2f50ccfd82dbe56bb531fae056947ebe7912c42.diff" + }, + "sdk@5ea71ae": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5ea71ae8a1555ed5e710869393440d1bfd551adf", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5ea71ae8a1555ed5e710869393440d1bfd551adf.diff" + }, + "sdk@9d5e578": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9d5e578e9a7ac70fe2683360093e13a73d7b5695", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9d5e578e9a7ac70fe2683360093e13a73d7b5695.diff" + }, + "sdk@de97864": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "de97864e424ee3aad632252b6ae832b4e4cf3465", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/de97864e424ee3aad632252b6ae832b4e4cf3465.diff" + }, + "sdk@d71d920": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d71d920d25d8ba5e85e48b6321ae5e805567075b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d71d920d25d8ba5e85e48b6321ae5e805567075b.diff" + }, + "sdk@a087a43": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a087a43a171159327092d5738c4a84381c51f45c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a087a43a171159327092d5738c4a84381c51f45c.diff" + }, + "sdk@31812eb": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "31812eb9c57af75da8e77989dcf857ed8cd97b7b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/31812eb9c57af75da8e77989dcf857ed8cd97b7b.diff" + }, + "sdk@5912358": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5912358b4e2aaf60f6b9627c543251037ee50fcf", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5912358b4e2aaf60f6b9627c543251037ee50fcf.diff" + }, + "sdk@c63abe2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c63abe28ab1adcec7f2ae28922e5719eeaf3a255", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c63abe28ab1adcec7f2ae28922e5719eeaf3a255.diff" + }, + "sdk@acef1ca": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "acef1ca3b8ad3cd8e8e9dd10b4ba0f34e75bb5ad", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/acef1ca3b8ad3cd8e8e9dd10b4ba0f34e75bb5ad.diff" + }, + "sdk@1a3b359": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1a3b3598d4cb88704822e543f4d91c886f2a9907", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1a3b3598d4cb88704822e543f4d91c886f2a9907.diff" + }, + "sdk@da5dcd2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "da5dcd221c3b8f2423661ec2865319d008449734", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/da5dcd221c3b8f2423661ec2865319d008449734.diff" + }, + "sdk@3e70852": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3e70852cf6c9ce2277dc8dfc89cfa1a015e9a455", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3e70852cf6c9ce2277dc8dfc89cfa1a015e9a455.diff" + }, + "sdk@d6d1edd": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d6d1edd9a4416b847d0c36d8cdbfc1c5c4675afd", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d6d1edd9a4416b847d0c36d8cdbfc1c5c4675afd.diff" + }, + "sdk@88dea37": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "88dea3793ed4836997ec275d667ad9eda3187a0d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/88dea3793ed4836997ec275d667ad9eda3187a0d.diff" + }, + "sdk@d3ca184": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d3ca184ed8ccd1a4247ca0280100fbd2543b7b4c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d3ca184ed8ccd1a4247ca0280100fbd2543b7b4c.diff" + }, + "sdk@d184b01": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d184b0186a7c45607bf4f03fea772b811744dd30", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d184b0186a7c45607bf4f03fea772b811744dd30.diff" + }, + "sdk@0e732ff": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0e732ffe33de03b44df73b48585a01099ec66094", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0e732ffe33de03b44df73b48585a01099ec66094.diff" + }, + "sdk@ff55ce3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ff55ce37e94d59306a05a0223fbd598fbf8fcc77", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ff55ce37e94d59306a05a0223fbd598fbf8fcc77.diff" + }, + "sdk@2d9da0a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2d9da0ab3be91b297e4c148dcda16fa6df49b4a2", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2d9da0ab3be91b297e4c148dcda16fa6df49b4a2.diff" + }, + "sdk@8e95887": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8e95887f3238082a358b3c3d22a7bd38bb786658", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8e95887f3238082a358b3c3d22a7bd38bb786658.diff" + }, + "sdk@16fa16c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "16fa16cc50a77a9e6df9e9c048273c8fd5ebd10f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/16fa16cc50a77a9e6df9e9c048273c8fd5ebd10f.diff" + }, + "sdk@ab41bd5": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ab41bd513f391bf611ad59afb0cc865c5602e67f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ab41bd513f391bf611ad59afb0cc865c5602e67f.diff" + }, + "sdk@9862ead": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9862ead42653ec0783208778c95cb3c2aa9c154f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9862ead42653ec0783208778c95cb3c2aa9c154f.diff" + }, + "sdk@d50a67b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d50a67b11dcfbd8b19c90d1d3eab507e0a6c3440", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d50a67b11dcfbd8b19c90d1d3eab507e0a6c3440.diff" + }, + "sdk@971ea25": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "971ea2597cee77af2a5a4f6833d7eb9a4cd944ed", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/971ea2597cee77af2a5a4f6833d7eb9a4cd944ed.diff" + }, + "sdk@7c7e0ac": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7c7e0ac3307eb8bf1e656f157356dfd349e93260", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7c7e0ac3307eb8bf1e656f157356dfd349e93260.diff" + }, + "sdk@e6a56a3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e6a56a3c3571fe33a02126330eb39804e9f98087", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e6a56a3c3571fe33a02126330eb39804e9f98087.diff" + }, + "sdk@5262ee1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5262ee158744561b0116bac35b12ea66a4890161", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5262ee158744561b0116bac35b12ea66a4890161.diff" + }, + "sdk@b015d8d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b015d8d370553e94993ab9095ea024a78dcd1d68", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b015d8d370553e94993ab9095ea024a78dcd1d68.diff" + }, + "sdk@d07da7f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d07da7fece7b321cfcce8db9c759a17a1a5b8a27", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d07da7fece7b321cfcce8db9c759a17a1a5b8a27.diff" + }, + "sdk@081f309": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "081f309c6619d13d4b6dc88b908ec277c7a8822a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/081f309c6619d13d4b6dc88b908ec277c7a8822a.diff" + }, + "sdk@86a83ac": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "86a83ac41cfebf1d9d266635eced758e113afc4f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/86a83ac41cfebf1d9d266635eced758e113afc4f.diff" + }, + "sdk@e9c45e1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e9c45e19b5ff45fa6e9ccd82da90c200f3b0a9f3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e9c45e19b5ff45fa6e9ccd82da90c200f3b0a9f3.diff" + }, + "sdk@6c4d38d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6c4d38d669bd128e24f3ff13e7bc88a08344fbf8", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6c4d38d669bd128e24f3ff13e7bc88a08344fbf8.diff" + }, + "sdk@1e4c40c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1e4c40cdd4c8da717ac693e7b99f9addd659d65e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1e4c40cdd4c8da717ac693e7b99f9addd659d65e.diff" + }, + "sdk@43549ea": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "43549ea17b6e3e6d91dcf89f04e4ea0a202c1ac0", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/43549ea17b6e3e6d91dcf89f04e4ea0a202c1ac0.diff" + }, + "sdk@1175a14": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1175a14b18de4aa3a1c678a793ce8429fc0e09b5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1175a14b18de4aa3a1c678a793ce8429fc0e09b5.diff" + }, + "sdk@d88e7c6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d88e7c6e97204fa2b81499dba6e0fb99fa43f762", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d88e7c6e97204fa2b81499dba6e0fb99fa43f762.diff" + }, + "sdk@075e8d7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "075e8d7a6a967efe7f6c9569740df0c71dfee9a6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/075e8d7a6a967efe7f6c9569740df0c71dfee9a6.diff" + }, + "sdk@7605d6f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7605d6f5a2fab599e5326161aa20bc81f7c9ab68", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7605d6f5a2fab599e5326161aa20bc81f7c9ab68.diff" + }, + "sdk@a5af8d7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a5af8d708ece9f7a7446ceae70d9a83841260d6b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a5af8d708ece9f7a7446ceae70d9a83841260d6b.diff" + }, + "sdk@4fac7b7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4fac7b75b98ce061e374c12a6feeb3695f336152", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4fac7b75b98ce061e374c12a6feeb3695f336152.diff" + }, + "sdk@c86db80": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c86db802919e3b1af55967bec6cd7377af5209c3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c86db802919e3b1af55967bec6cd7377af5209c3.diff" + }, + "sdk@54a8f45": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "54a8f45821adcf5957827c5f36d34e46c654fe3f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/54a8f45821adcf5957827c5f36d34e46c654fe3f.diff" + }, + "sdk@4d104f1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4d104f1307a1add227188cd1d472d59b06d7c909", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4d104f1307a1add227188cd1d472d59b06d7c909.diff" + }, + "sdk@4470296": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "44702966ca718d6250edea46567013bb2057925a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/44702966ca718d6250edea46567013bb2057925a.diff" + }, + "sdk@773768b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "773768b0e895ce567548013dfc6c7e620a27f675", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/773768b0e895ce567548013dfc6c7e620a27f675.diff" + }, + "sdk@998e8be": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "998e8beb85344b3bb7db34a31a2c6827a80dcde5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/998e8beb85344b3bb7db34a31a2c6827a80dcde5.diff" + }, + "sdk@788997e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "788997e2d04449a1f9da86f7bee17e74a58d4643", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/788997e2d04449a1f9da86f7bee17e74a58d4643.diff" + }, + "sdk@d37e536": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d37e53685674252e365e93702a6b565e4f648241", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d37e53685674252e365e93702a6b565e4f648241.diff" + }, + "sdk@313a703": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "313a703b91dbc84ccf4c3173549e29f3d912c246", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/313a703b91dbc84ccf4c3173549e29f3d912c246.diff" + }, + "sdk@6e84e96": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6e84e96b38d00ac85c0474b1c3ffad7f216dc63d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6e84e96b38d00ac85c0474b1c3ffad7f216dc63d.diff" + }, + "sdk@695247b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "695247b0cea69c9d8a1b098c0aa63e214b093936", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/695247b0cea69c9d8a1b098c0aa63e214b093936.diff" + }, + "sdk@780ab9a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "780ab9a730c4ace69e1285e8d745b5141a3b2a0b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/780ab9a730c4ace69e1285e8d745b5141a3b2a0b.diff" + }, + "sdk@285eea9": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "285eea968519a97cda73e8f8d1a818f171bcdd8e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/285eea968519a97cda73e8f8d1a818f171bcdd8e.diff" + }, + "sdk@07d7aa4": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "07d7aa4a0ab99eb09b605142597344fc626356b3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/07d7aa4a0ab99eb09b605142597344fc626356b3.diff" + }, + "sdk@fd8454b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "fd8454b05a33be2141de6c7cf9befc618e5bc7a8", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/fd8454b05a33be2141de6c7cf9befc618e5bc7a8.diff" + }, + "sdk@65c7913": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "65c791374d87e3d2b5227a0f05e10ab6b97c9448", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/65c791374d87e3d2b5227a0f05e10ab6b97c9448.diff" + }, + "sdk@d95b8d9": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d95b8d972910a80653a25916d800e2b6ef1255ce", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d95b8d972910a80653a25916d800e2b6ef1255ce.diff" + }, + "sdk@5b3917a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5b3917af91a0246205074da0ce417bf737c8c032", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5b3917af91a0246205074da0ce417bf737c8c032.diff" + }, + "sdk@9396d43": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9396d43dc6d7b16db3af666867585c4f4db99628", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9396d43dc6d7b16db3af666867585c4f4db99628.diff" + }, + "sdk@23179aa": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "23179aa0b46b26f889cad46199b863ccdefa0c8e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/23179aa0b46b26f889cad46199b863ccdefa0c8e.diff" + }, + "sdk@d963b10": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d963b10530b152cc453043bb2eaf72a357f6a45c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d963b10530b152cc453043bb2eaf72a357f6a45c.diff" + }, + "sdk@3f9704d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3f9704d5ff85097d6ce4a43efcb6290dbc56ea1e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3f9704d5ff85097d6ce4a43efcb6290dbc56ea1e.diff" + }, + "sdk@a8ad585": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a8ad58559ae0c9beb4ec3cecbf9ce08de0ad08f0", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a8ad58559ae0c9beb4ec3cecbf9ce08de0ad08f0.diff" + }, + "sdk@ad91287": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ad912879b26067cb3b826de77013a395b9c0b811", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ad912879b26067cb3b826de77013a395b9c0b811.diff" + }, + "sdk@5a9be96": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5a9be96aeff9ad09e286b98352ed4420581ed8ce", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5a9be96aeff9ad09e286b98352ed4420581ed8ce.diff" + }, + "sdk@013b8b3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "013b8b35cf070b2e66fe8b15c367634ead16f0d9", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/013b8b35cf070b2e66fe8b15c367634ead16f0d9.diff" + }, + "sdk@e5a1567": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e5a1567cc9c8033c17d60435d042be4b150b09d3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e5a1567cc9c8033c17d60435d042be4b150b09d3.diff" + }, + "sdk@b5a4051": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b5a4051f44b3246ce27dd11e2e497d06987b35d0", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b5a4051f44b3246ce27dd11e2e497d06987b35d0.diff" + }, + "sdk@ff21843": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ff21843fccc41e7287a1f21219bfcea498a99cb6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ff21843fccc41e7287a1f21219bfcea498a99cb6.diff" + }, + "sdk@e90c441": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e90c4413024970eca97d05122243737aa207af11", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e90c4413024970eca97d05122243737aa207af11.diff" + }, + "sdk@6fc33a0": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6fc33a06ff6b03faa534cb84ab36e78eb3f7d5f1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6fc33a06ff6b03faa534cb84ab36e78eb3f7d5f1.diff" + }, + "sdk@458ee8b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "458ee8b21b2b5b9410e645d470c8bf70444a7a2f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/458ee8b21b2b5b9410e645d470c8bf70444a7a2f.diff" + }, + "sdk@772465e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "772465ec96b72ebebf4c3365b8a8f5821e201ac2", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/772465ec96b72ebebf4c3365b8a8f5821e201ac2.diff" + }, + "sdk@546f4be": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "546f4beb9a6649fc810089929dee7a4466d66e1e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/546f4beb9a6649fc810089929dee7a4466d66e1e.diff" + }, + "sdk@e9ee772": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e9ee772daae9e3323af0f3b4f041d23bce2ea002", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e9ee772daae9e3323af0f3b4f041d23bce2ea002.diff" + }, + "sdk@10359b4": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "10359b467ff8c1486ca2703d1a52c94b999abb5d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/10359b467ff8c1486ca2703d1a52c94b999abb5d.diff" + }, + "sdk@52e4ef1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "52e4ef1d81672d456c202dde84a026aea38ec5c1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/52e4ef1d81672d456c202dde84a026aea38ec5c1.diff" + }, + "sdk@888e971": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "888e971521634253fae67c14facf980f824a780d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/888e971521634253fae67c14facf980f824a780d.diff" + }, + "sdk@6e514f6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6e514f6189902a6422a6ab91324804c37035315b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6e514f6189902a6422a6ab91324804c37035315b.diff" + }, + "sdk@f284d9f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f284d9f49aec157d49233ab5785cbcf78ed1ea58", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f284d9f49aec157d49233ab5785cbcf78ed1ea58.diff" + }, + "sdk@a17669f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a17669f151fe08f0deaf0e427d16ed5f74c92bf7", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a17669f151fe08f0deaf0e427d16ed5f74c92bf7.diff" + }, + "sdk@dfa02f2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "dfa02f28175c0025291e5c88bcc2d00575705f70", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/dfa02f28175c0025291e5c88bcc2d00575705f70.diff" + }, + "sdk@7840886": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7840886b439cf10ebcf158a9d6e17206fde314ed", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7840886b439cf10ebcf158a9d6e17206fde314ed.diff" + }, + "sdk@b6e2d4a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b6e2d4a02cc2434dc39aefa4fe68b20208eb31f3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b6e2d4a02cc2434dc39aefa4fe68b20208eb31f3.diff" + }, + "sdk@6f97200": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6f9720054fbad9345e284327b192fbe87fade314", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6f9720054fbad9345e284327b192fbe87fade314.diff" + }, + "sdk@40b692f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "40b692f91c5c1f4211bceabdaed2852aa770388f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/40b692f91c5c1f4211bceabdaed2852aa770388f.diff" + }, + "sdk@a104da2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a104da2805f7afd1702a289f69466ce863016da5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a104da2805f7afd1702a289f69466ce863016da5.diff" + }, + "sdk@32c9942": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "32c9942cd2768f53029e055b7998aa48cba9b3b1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/32c9942cd2768f53029e055b7998aa48cba9b3b1.diff" + }, + "sdk@ba6ab4a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ba6ab4ae38703f26e2cbc341a08be991fab0bb95", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ba6ab4ae38703f26e2cbc341a08be991fab0bb95.diff" + }, + "sdk@8cbac4a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8cbac4a5cdf27c2bb606a282cc47e60a7c4ced45", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8cbac4a5cdf27c2bb606a282cc47e60a7c4ced45.diff" + }, + "sdk@56e4fea": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "56e4feabcce663c458b82d1ac3987caa9e1795f2", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/56e4feabcce663c458b82d1ac3987caa9e1795f2.diff" + }, + "sdk@aad07f3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "aad07f3d1793ebf8eea8b429924f0500958c258c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/aad07f3d1793ebf8eea8b429924f0500958c258c.diff" + }, + "sdk@d40b218": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d40b21888fc01357ea0e54361ee6401c9daa37bd", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d40b21888fc01357ea0e54361ee6401c9daa37bd.diff" + }, + "sdk@18a5ef3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "18a5ef3c9298e94060fa4b5d2b8ae50753ed4744", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/18a5ef3c9298e94060fa4b5d2b8ae50753ed4744.diff" + }, + "sdk@f2f162f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f2f162fbfbc7fc8b02fcd7ec6acd8c819282be7f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f2f162fbfbc7fc8b02fcd7ec6acd8c819282be7f.diff" + }, + "sdk@aa89ea0": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "aa89ea00306b52a84b1cd9fe79c631db9762c298", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/aa89ea00306b52a84b1cd9fe79c631db9762c298.diff" + }, + "sdk@dd78739": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "dd787398bf62c82f235f75ed3556560e435bb410", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/dd787398bf62c82f235f75ed3556560e435bb410.diff" + }, + "sdk@0cd3fa6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0cd3fa6b9827d2cc7493bd8c900f093959d79288", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0cd3fa6b9827d2cc7493bd8c900f093959d79288.diff" + }, + "sdk@a8c3d20": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a8c3d2038237842f6fbb33e2c12ad9a0406e40a8", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a8c3d2038237842f6fbb33e2c12ad9a0406e40a8.diff" + }, + "sdk@e720fab": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e720fab187acd21585da9e4ade4a906a46260868", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e720fab187acd21585da9e4ade4a906a46260868.diff" + }, + "sdk@b6ecfca": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b6ecfca4772c223907a0fe13b0ab944a8e197d53", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b6ecfca4772c223907a0fe13b0ab944a8e197d53.diff" + }, + "sdk@94308f9": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "94308f96f3c4e66ea548407b52163e895c46f9cc", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/94308f96f3c4e66ea548407b52163e895c46f9cc.diff" + }, + "sdk@0e13177": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0e131771b4dbde464cda8d88315820e51cf790e1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0e131771b4dbde464cda8d88315820e51cf790e1.diff" + }, + "sdk@bc1e346": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "bc1e34673c0d30bdb7bc833f0af9a51efd36b933", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/bc1e34673c0d30bdb7bc833f0af9a51efd36b933.diff" + }, + "sdk@0bc2b57": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0bc2b576d25813f4c218bd573e3f7689996d16c5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0bc2b576d25813f4c218bd573e3f7689996d16c5.diff" + }, + "sdk@ec0dde2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ec0dde254b983a55255204a0237c38a993274cf1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ec0dde254b983a55255204a0237c38a993274cf1.diff" + }, + "sdk@716167b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "716167b25bfecf5563e63ac83d6fee9306472c4a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/716167b25bfecf5563e63ac83d6fee9306472c4a.diff" + }, + "sdk@4a8feb3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4a8feb3957f76c38b6bd42dd9f16b8ad853f845d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4a8feb3957f76c38b6bd42dd9f16b8ad853f845d.diff" + }, + "sdk@c5d7b4e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c5d7b4e67d6af2d97d8042dacb98e95f5908c385", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c5d7b4e67d6af2d97d8042dacb98e95f5908c385.diff" + }, + "sdk@db01067": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "db01067a9c4b67dc1806956393ec63b032032166", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/db01067a9c4b67dc1806956393ec63b032032166.diff" + }, + "sdk@64f31ca": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "64f31ca8088039aa1a8f3d3efd9e1c3176459447", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/64f31ca8088039aa1a8f3d3efd9e1c3176459447.diff" + }, + "sdk@722383a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "722383a2b5e19596b8771457d5477e9a823a55e4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/722383a2b5e19596b8771457d5477e9a823a55e4.diff" + }, + "sdk@bdb5a2a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "bdb5a2a5e22dec278a035dc1d84d1bb8a162c149", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/bdb5a2a5e22dec278a035dc1d84d1bb8a162c149.diff" + }, + "sdk@9568598": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "956859843208ffd23020fd156e5c951ac0d62ad1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/956859843208ffd23020fd156e5c951ac0d62ad1.diff" + }, + "sdk@449dad7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "449dad76a0830b2af60e0bf59444e1d44ea7ef16", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/449dad76a0830b2af60e0bf59444e1d44ea7ef16.diff" + }, + "sdk@427fcd8": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "427fcd8dca20b439023f90cd96c070eab15bb2e0", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/427fcd8dca20b439023f90cd96c070eab15bb2e0.diff" + }, + "sdk@9b33c85": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9b33c85d0b43a5c601d8b739385d0fe3792f3cec", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9b33c85d0b43a5c601d8b739385d0fe3792f3cec.diff" + }, + "sdk@29dbf6c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "29dbf6cc2c0d0f7a87a0f974bbb3044028de8bab", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/29dbf6cc2c0d0f7a87a0f974bbb3044028de8bab.diff" + }, + "sdk@916b9a7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "916b9a76a421333b2c86ba5d99112829c8441188", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/916b9a76a421333b2c86ba5d99112829c8441188.diff" + }, + "sdk@a583f95": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a583f95c50123fcdef1caa78026a1fdbe522e954", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a583f95c50123fcdef1caa78026a1fdbe522e954.diff" + }, + "sdk@bfa9395": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "bfa9395d9f0cb280d6634df254dca22129f94e0a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/bfa9395d9f0cb280d6634df254dca22129f94e0a.diff" + }, + "sdk@0fe9e20": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0fe9e20b4c200b67d7f70d939f5ee675103f2080", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0fe9e20b4c200b67d7f70d939f5ee675103f2080.diff" + }, + "sdk@35ef523": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "35ef523b84b49149b28d6daef6d49e3222086a14", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/35ef523b84b49149b28d6daef6d49e3222086a14.diff" + }, + "sdk@8f293f2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8f293f21b4274e806d32ea9d2d44586ba5ba2cc6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8f293f21b4274e806d32ea9d2d44586ba5ba2cc6.diff" + }, + "sdk@e882731": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e882731ed1713905b0f577277889066dd12a59c4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e882731ed1713905b0f577277889066dd12a59c4.diff" + }, + "sdk@166668d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "166668d7c7c098fe501bcd0113e91eda042ea456", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/166668d7c7c098fe501bcd0113e91eda042ea456.diff" + }, + "sdk@165cc52": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "165cc52a93dc2c2650f1d7513c6c03722ed1f963", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/165cc52a93dc2c2650f1d7513c6c03722ed1f963.diff" + }, + "sdk@efbdd02": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "efbdd0230b4a55ac7c45046431287a3e6c9399a3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/efbdd0230b4a55ac7c45046431287a3e6c9399a3.diff" + }, + "sdk@9d64690": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9d646901136779601b49fad772abc2c8e320ea40", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9d646901136779601b49fad772abc2c8e320ea40.diff" + }, + "sdk@35e9e55": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "35e9e5582a8f47e9fa8fdf31908a3b598923da3f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/35e9e5582a8f47e9fa8fdf31908a3b598923da3f.diff" + }, + "sdk@c7310ca": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c7310cabdca9e1663c25b35225aac25641cd8b37", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c7310cabdca9e1663c25b35225aac25641cd8b37.diff" + }, + "sdk@7f1449e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7f1449ec1dd5b5fa29c940e3d213ef517155c456", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7f1449ec1dd5b5fa29c940e3d213ef517155c456.diff" + }, + "sdk@abd1b4d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "abd1b4da0cfe761c07df9b4b809b19619ade1684", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/abd1b4da0cfe761c07df9b4b809b19619ade1684.diff" + }, + "sdk@352097b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "352097b6092a35d3f1cdf62645629e4e5225df79", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/352097b6092a35d3f1cdf62645629e4e5225df79.diff" + }, + "sdk@c69da70": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c69da70c41f0a0f22c355ef481563505d9bcaffb", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c69da70c41f0a0f22c355ef481563505d9bcaffb.diff" + }, + "sdk@1f2c468": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1f2c46844070b1093a34946ec574d950046dd095", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1f2c46844070b1093a34946ec574d950046dd095.diff" + }, + "sdk@fff6e54": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "fff6e547fc3962c34401960e9ad78b1ab40dfa10", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/fff6e547fc3962c34401960e9ad78b1ab40dfa10.diff" + }, + "sdk@5a484c0": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5a484c0c320ccae1341a248352230fad53200d98", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5a484c0c320ccae1341a248352230fad53200d98.diff" + }, + "sdk@103e96d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "103e96de7dc1334427f643254f67aa8866a5a77a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/103e96de7dc1334427f643254f67aa8866a5a77a.diff" + }, + "sdk@827ffaa": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "827ffaa985dbd663104e9787c33825101b480e36", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/827ffaa985dbd663104e9787c33825101b480e36.diff" + }, + "sdk@0c83b23": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0c83b2336adf3c6c51423f90a0aec07534bf8ee8", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0c83b2336adf3c6c51423f90a0aec07534bf8ee8.diff" + }, + "sdk@262bf9c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "262bf9c8e7f0365f43d9fdd1d2fac4dbae4024c0", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/262bf9c8e7f0365f43d9fdd1d2fac4dbae4024c0.diff" + }, + "sdk@b967128": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b967128b63e0d59a1495b55e77ad2c05b0d9c750", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b967128b63e0d59a1495b55e77ad2c05b0d9c750.diff" + }, + "sdk@9edfcdc": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9edfcdcd6e5386d84775e8b2ab97cc7067edba4a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9edfcdcd6e5386d84775e8b2ab97cc7067edba4a.diff" + }, + "sdk@3ab1bc4": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3ab1bc4af29d64c029025dcc3ab60ed593f5a857", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3ab1bc4af29d64c029025dcc3ab60ed593f5a857.diff" + }, + "sdk@8e5cc2e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8e5cc2e290f961dd5432520dbc71a23cf9ec70f4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8e5cc2e290f961dd5432520dbc71a23cf9ec70f4.diff" + }, + "sdk@5eec490": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5eec490a6a21c9f1a0394182f8e2ca1af8ae0542", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5eec490a6a21c9f1a0394182f8e2ca1af8ae0542.diff" + }, + "sdk@1f62394": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1f62394ec750932a2143088e2ae5d1be01372d62", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1f62394ec750932a2143088e2ae5d1be01372d62.diff" + }, + "sdk@cb6c03b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "cb6c03be2983d38a555ef9093da782f9a7f89976", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/cb6c03be2983d38a555ef9093da782f9a7f89976.diff" + }, + "sdk@dd6c2af": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "dd6c2af316e2474e845e3029b9163b2a0ab3ec31", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/dd6c2af316e2474e845e3029b9163b2a0ab3ec31.diff" + }, + "sdk@252ae5a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "252ae5acb33277b55a854252c54620ca57de7d48", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/252ae5acb33277b55a854252c54620ca57de7d48.diff" + }, + "sdk@6c0056a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6c0056a47a62a7445668bf597bb7242358cd7d8f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6c0056a47a62a7445668bf597bb7242358cd7d8f.diff" + }, + "sdk@8467a15": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8467a15a5b834f25e68b5e4f83be5d94a9d9a803", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8467a15a5b834f25e68b5e4f83be5d94a9d9a803.diff" + }, + "sdk@9bc68cc": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9bc68cc920c67d3e395e203057f821d456decbfe", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9bc68cc920c67d3e395e203057f821d456decbfe.diff" + }, + "sdk@a62bda4": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a62bda4ea2e5638d97b12bab20fedb7023a306f4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a62bda4ea2e5638d97b12bab20fedb7023a306f4.diff" + }, + "sdk@14deca1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "14deca1e7c7fed62f19a3d8752c8336d217398ff", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/14deca1e7c7fed62f19a3d8752c8336d217398ff.diff" + }, + "sdk@ae9bd8c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ae9bd8ca5122b08fa9e2f623a0fdf57a3aa4f2df", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ae9bd8ca5122b08fa9e2f623a0fdf57a3aa4f2df.diff" + }, + "sdk@50f2f7f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "50f2f7fdccf95a358942f62537f94f605ed900ca", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/50f2f7fdccf95a358942f62537f94f605ed900ca.diff" + }, + "sdk@dd9a9a8": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "dd9a9a8f352b8d1ac9e720e54ec20cc807565825", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/dd9a9a8f352b8d1ac9e720e54ec20cc807565825.diff" + }, + "sdk@49e2a87": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "49e2a87c0463349ff8a2623329487227499e506f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/49e2a87c0463349ff8a2623329487227499e506f.diff" + }, + "sdk@6765a47": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6765a4795520ede0cf11a3ee25d01f9525e50541", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6765a4795520ede0cf11a3ee25d01f9525e50541.diff" + }, + "sdk@09fa7fa": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "09fa7fad54ccee78ebd9c5aa5494d78d544f0c59", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/09fa7fad54ccee78ebd9c5aa5494d78d544f0c59.diff" + }, + "sdk@98acb9a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "98acb9abc44cc510e88eeea8e55283d4d7b44838", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/98acb9abc44cc510e88eeea8e55283d4d7b44838.diff" + }, + "sdk@73c46a2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "73c46a2d745a53e787e3a92e64c6fdf2591a9567", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/73c46a2d745a53e787e3a92e64c6fdf2591a9567.diff" + }, + "sdk@887959b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "887959b8ba473e28c54254111587f90f42de7c9e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/887959b8ba473e28c54254111587f90f42de7c9e.diff" + }, + "sdk@b21f089": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b21f08995fba325bcc101819bbe610f01684bdce", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b21f08995fba325bcc101819bbe610f01684bdce.diff" + }, + "sdk@beac916": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "beac916fb2578adab119cff48fe6ce45bf9c81d3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/beac916fb2578adab119cff48fe6ce45bf9c81d3.diff" + }, + "sdk@7986874": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "798687480ca3d836b6af7bfbd9d492f756f3247f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/798687480ca3d836b6af7bfbd9d492f756f3247f.diff" + }, + "sdk@6cbef60": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6cbef6033da2d17001c36c51603c926c0c06ad32", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6cbef6033da2d17001c36c51603c926c0c06ad32.diff" + }, + "sdk@436f454": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "436f4542d3b15cf184663f187c0374081e68d57d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/436f4542d3b15cf184663f187c0374081e68d57d.diff" + }, + "sdk@dfc4679": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "dfc4679a5df05aeef597a71cb9926768473c9589", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/dfc4679a5df05aeef597a71cb9926768473c9589.diff" + }, + "sdk@6a12dff": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6a12dff056846dbdc09471f5254d5086bdeb1a9b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6a12dff056846dbdc09471f5254d5086bdeb1a9b.diff" + }, + "sdk@e7eeb60": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e7eeb6064e7bceed882dbd05bdb1c3d478e7ea7f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e7eeb6064e7bceed882dbd05bdb1c3d478e7ea7f.diff" + }, + "sdk@32ad88a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "32ad88ae26ff1574904598068a71c0737ab51971", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/32ad88ae26ff1574904598068a71c0737ab51971.diff" + }, + "sdk@5f324eb": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5f324eb1970caaeccc5a0e6776f513945b2290df", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5f324eb1970caaeccc5a0e6776f513945b2290df.diff" + }, + "sdk@94a9db1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "94a9db173c20eefd2c21b7ded01579b756fcc046", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/94a9db173c20eefd2c21b7ded01579b756fcc046.diff" + }, + "sdk@a0f0828": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a0f0828f96b473367632e4056eb9eed7da03b6e7", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a0f0828f96b473367632e4056eb9eed7da03b6e7.diff" + }, + "sdk@0cafe54": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0cafe5448d55405a1544422b1b05b2aa8a8a75a5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0cafe5448d55405a1544422b1b05b2aa8a8a75a5.diff" + }, + "sdk@ad640d4": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ad640d4b81aa0211b63ab956958f072a50a1597a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ad640d4b81aa0211b63ab956958f072a50a1597a.diff" + }, + "sdk@f2ce0d8": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f2ce0d836482a1c4e5b3c3ea2e83953ae86818d4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f2ce0d836482a1c4e5b3c3ea2e83953ae86818d4.diff" + }, + "sdk@4e7db90": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4e7db90ea0e0830a07a3c9264c192bab551090e6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4e7db90ea0e0830a07a3c9264c192bab551090e6.diff" + }, + "sdk@5bb7e31": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5bb7e315bf797af120abf7ed17b7cbd6145b48f6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5bb7e315bf797af120abf7ed17b7cbd6145b48f6.diff" + }, + "sdk@4325a44": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4325a4482321195d1c0daaacf3ef4ea8aee4c1e1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4325a4482321195d1c0daaacf3ef4ea8aee4c1e1.diff" + }, + "sdk@6f2f88e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6f2f88e7196a0fca85928ffec17a97ea2ec252c1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6f2f88e7196a0fca85928ffec17a97ea2ec252c1.diff" + }, + "sdk@a6819d6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a6819d6dd42e5124b2e738b4d410df01aed11017", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a6819d6dd42e5124b2e738b4d410df01aed11017.diff" + }, + "sdk@7080cc0": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7080cc02d03f13ac4e252074178df53f045a8edd", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7080cc02d03f13ac4e252074178df53f045a8edd.diff" + }, + "sdk@9946ecd": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9946ecd202fa442f6c83eea2527ac2fc58ad005e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9946ecd202fa442f6c83eea2527ac2fc58ad005e.diff" + }, + "sdk@e0cdbcb": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e0cdbcb937738357be00a0c492d2e855d41ba90f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e0cdbcb937738357be00a0c492d2e855d41ba90f.diff" + }, + "sdk@780271d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "780271dfb9c7ec7de8adb4f9ddf710761009ef53", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/780271dfb9c7ec7de8adb4f9ddf710761009ef53.diff" + }, + "sdk@6b60ba3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6b60ba3025d8269fc0aaa8a4138b0ac9e549cb1a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6b60ba3025d8269fc0aaa8a4138b0ac9e549cb1a.diff" + }, + "sdk@3518f9c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3518f9ce1094aa19e0fb9d54561d8dbd568c6390", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3518f9ce1094aa19e0fb9d54561d8dbd568c6390.diff" + }, + "sdk@7af211a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7af211ad8fc89252e2db9cedc1c65c8b9b4b0c04", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7af211ad8fc89252e2db9cedc1c65c8b9b4b0c04.diff" + }, + "sdk@b29023f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b29023fdae7c618982e07871be38cd01aa384b20", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b29023fdae7c618982e07871be38cd01aa384b20.diff" + }, + "sdk@86c075f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "86c075f7e6b614389f63365a32bdf77ba17436e7", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/86c075f7e6b614389f63365a32bdf77ba17436e7.diff" + }, + "sdk@de18352": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "de1835211b6316577c6837079375894481808990", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/de1835211b6316577c6837079375894481808990.diff" + }, + "sdk@986441e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "986441ee094404af43f6644a861abbdc788ae05b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/986441ee094404af43f6644a861abbdc788ae05b.diff" + }, + "sdk@d71a4a1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d71a4a1fbe78d1695cde61f34b4cec323d96f760", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d71a4a1fbe78d1695cde61f34b4cec323d96f760.diff" + }, + "sdk@b6ddae7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b6ddae71bcf4fbde4e380d8fcc7c3153d0d84ebb", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b6ddae71bcf4fbde4e380d8fcc7c3153d0d84ebb.diff" + }, + "sdk@f536e4b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f536e4b36acf74cc99ced6a33f0a00d687e923ca", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f536e4b36acf74cc99ced6a33f0a00d687e923ca.diff" + }, + "sdk@3420fd3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3420fd38983961e3997c6138a447c3988219cc1c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3420fd38983961e3997c6138a447c3988219cc1c.diff" + }, + "sdk@f455dfc": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f455dfc8004b3972766780760d5cc6bf1c7930b7", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f455dfc8004b3972766780760d5cc6bf1c7930b7.diff" + }, + "sdk@e3a5ef5": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e3a5ef56cc5a178e632d87c361757b7a3c918461", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e3a5ef56cc5a178e632d87c361757b7a3c918461.diff" + }, + "sdk@159d81a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "159d81a7964bf8a22227c7d231ed4f02d1c77ba1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/159d81a7964bf8a22227c7d231ed4f02d1c77ba1.diff" + }, + "sdk@8b2e64c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8b2e64c6fd407067bdb49cf21fcf55e606fa3206", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8b2e64c6fd407067bdb49cf21fcf55e606fa3206.diff" + }, + "sdk@81cc643": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "81cc6435abccd51759e9b829ecdfe594b4e99476", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/81cc6435abccd51759e9b829ecdfe594b4e99476.diff" + }, + "sdk@1ebefc1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1ebefc15d82534fe267adb5daeeb5e1f876999f7", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1ebefc15d82534fe267adb5daeeb5e1f876999f7.diff" + }, + "sdk@508508e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "508508eb0596ee1da98ea4a8614a4bdbe5400f7d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/508508eb0596ee1da98ea4a8614a4bdbe5400f7d.diff" + }, + "sdk@8fd528b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8fd528b2e369d0bb21c72a19c0ec9949275d49a1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8fd528b2e369d0bb21c72a19c0ec9949275d49a1.diff" + }, + "sdk@c98d45a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c98d45aaef0def72e019cee5a4ca7d104be938bc", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c98d45aaef0def72e019cee5a4ca7d104be938bc.diff" + }, + "sdk@27e0106": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "27e0106f616b9d82e7756f0931970b6452a16416", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/27e0106f616b9d82e7756f0931970b6452a16416.diff" + }, + "sdk@c40f47f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c40f47f0d17df1a84bb65178ced76e8d98c43a0c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c40f47f0d17df1a84bb65178ced76e8d98c43a0c.diff" + }, + "sdk@2a02bdf": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2a02bdfdead5795327020938f6c8617fe214066c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2a02bdfdead5795327020938f6c8617fe214066c.diff" + }, + "sdk@027e1c8": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "027e1c8360ce17515958bbfd9653d473d9b9fca1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/027e1c8360ce17515958bbfd9653d473d9b9fca1.diff" + }, + "sdk@9223f30": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9223f30509560d2be96d91ffdee770ef734db656", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9223f30509560d2be96d91ffdee770ef734db656.diff" + }, + "sdk@5dd4512": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5dd45125de30d8e4d6b98c473c6f844d95b221c7", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5dd45125de30d8e4d6b98c473c6f844d95b221c7.diff" + }, + "sdk@c182a90": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c182a9061a84edc75fd46f29d94161b1561313bd", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c182a9061a84edc75fd46f29d94161b1561313bd.diff" + }, + "sdk@07a6324": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "07a63248d6016d29eb667f2d550d4b2319235e38", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/07a63248d6016d29eb667f2d550d4b2319235e38.diff" + }, + "sdk@f7585ed": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f7585ed41ee9e54bf26810a0db7eacd41652c9cf", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f7585ed41ee9e54bf26810a0db7eacd41652c9cf.diff" + }, + "sdk@a616955": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a616955abc3f1e27101521b350ae89820b4c8a26", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a616955abc3f1e27101521b350ae89820b4c8a26.diff" + }, + "sdk@e05d09b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e05d09b9d0a682807fa778157072cc75115a1043", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e05d09b9d0a682807fa778157072cc75115a1043.diff" + }, + "sdk@f593c0b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f593c0bedc2104ab29111f1dfa2ccb3c560f83cf", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f593c0bedc2104ab29111f1dfa2ccb3c560f83cf.diff" + }, + "sdk@7f7422e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7f7422e3e5dbe5b349c440e601dbf18b50f358e0", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7f7422e3e5dbe5b349c440e601dbf18b50f358e0.diff" + }, + "sdk@72febf2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "72febf2562e7ab227acb8124b41fc5ccccd94e58", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/72febf2562e7ab227acb8124b41fc5ccccd94e58.diff" + }, + "sdk@5c9ff29": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5c9ff297b7d134707c007e0fb001d7d9143714d1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5c9ff297b7d134707c007e0fb001d7d9143714d1.diff" + }, + "sdk@adccf6a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "adccf6acaabe7489cd93452abe66dc6cc88cdb23", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/adccf6acaabe7489cd93452abe66dc6cc88cdb23.diff" + }, + "sdk@c08610f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c08610fb6b0949a4b7688d98665d693e2bc6773b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c08610fb6b0949a4b7688d98665d693e2bc6773b.diff" + }, + "sdk@372de0d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "372de0defccf10b253149a8e392b7873f1407315", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/372de0defccf10b253149a8e392b7873f1407315.diff" + }, + "sdk@f3f14ed": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f3f14eda3806962e5e562333835a91f9804c47f9", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f3f14eda3806962e5e562333835a91f9804c47f9.diff" + }, + "sdk@d9a3df1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d9a3df1a05c76f25d53d5c5267f42f837f39b2e0", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d9a3df1a05c76f25d53d5c5267f42f837f39b2e0.diff" + }, + "sdk@7d19864": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7d19864b0f18ba4d1f56b63add418a032533f0fc", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7d19864b0f18ba4d1f56b63add418a032533f0fc.diff" + }, + "sdk@2ae259a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2ae259a4b99e345a3058034e592a3703836695d3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2ae259a4b99e345a3058034e592a3703836695d3.diff" + }, + "sdk@2205c5b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2205c5bba94e4859d0b937e893ab6341c9fd4582", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2205c5bba94e4859d0b937e893ab6341c9fd4582.diff" + }, + "sdk@521bd74": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "521bd74fb3de59b5de197b5551931130cdffcb21", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/521bd74fb3de59b5de197b5551931130cdffcb21.diff" + }, + "sdk@b98e0dd": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b98e0dd0246345f4f723d96ad650d7a25b286304", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b98e0dd0246345f4f723d96ad650d7a25b286304.diff" + }, + "sdk@d7500f5": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d7500f55737c233a6164fc3c1cb0638ab15bd279", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d7500f55737c233a6164fc3c1cb0638ab15bd279.diff" + }, + "sdk@6ac4115": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6ac4115dad0f66297846a1b6a3aaf743774fe7e0", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6ac4115dad0f66297846a1b6a3aaf743774fe7e0.diff" + }, + "sdk@b4670c6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b4670c680698b5d56f14fc7ad2408c3bb523b358", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b4670c680698b5d56f14fc7ad2408c3bb523b358.diff" + }, + "sdk@0a4649b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0a4649b3183bb93699efd333a4f593caa0c93cf1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0a4649b3183bb93699efd333a4f593caa0c93cf1.diff" + }, + "sdk@fa5d8d2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "fa5d8d28a5f206401cb45a60669cdc8fc9d433ba", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/fa5d8d28a5f206401cb45a60669cdc8fc9d433ba.diff" + }, + "sdk@0a3db7f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0a3db7f3885937cea55b7ace6780da219c441533", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0a3db7f3885937cea55b7ace6780da219c441533.diff" + }, + "sdk@c61f174": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c61f174fc3cfbec6688a283fa4ec3a79219cafed", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c61f174fc3cfbec6688a283fa4ec3a79219cafed.diff" + }, + "sdk@fd07f07": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "fd07f07bc46abadd88201687ef314bffc993ddd4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/fd07f07bc46abadd88201687ef314bffc993ddd4.diff" + }, + "sdk@85a42bd": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "85a42bd489656416054cf55bd9cc5bb6965ee339", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/85a42bd489656416054cf55bd9cc5bb6965ee339.diff" + }, + "sdk@c37c9c7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c37c9c79e9c0edbde2f65de86110f9977d62a0ae", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c37c9c79e9c0edbde2f65de86110f9977d62a0ae.diff" + }, + "sdk@e4f6e1e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e4f6e1e2a0baeecd4d78489e41298e881f9f8df8", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e4f6e1e2a0baeecd4d78489e41298e881f9f8df8.diff" + }, + "sdk@7f56893": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7f568939e2027a7546db9ee4bc329a32d567ba1f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7f568939e2027a7546db9ee4bc329a32d567ba1f.diff" + }, + "sdk@e2c08c6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e2c08c66cc1ecaada79a4b00a57ee95ea51cf162", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e2c08c66cc1ecaada79a4b00a57ee95ea51cf162.diff" + }, + "sdk@57a4a8a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "57a4a8a7967da5450bb07173aa5472a9896e7e28", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/57a4a8a7967da5450bb07173aa5472a9896e7e28.diff" + }, + "sdk@1179c9b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1179c9b0931a1ed6e023386a7691d70b8689159a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1179c9b0931a1ed6e023386a7691d70b8689159a.diff" + }, + "sdk@33f0825": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "33f0825f01e0f82320490ea63d4098482d1ff2f6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/33f0825f01e0f82320490ea63d4098482d1ff2f6.diff" + }, + "sdk@6caee54": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6caee544057e2d3e8cd2bb666a507e05957bbd48", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6caee544057e2d3e8cd2bb666a507e05957bbd48.diff" + }, + "sdk@9cd9ee7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9cd9ee7618877c277db7c78705c04b244745481d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9cd9ee7618877c277db7c78705c04b244745481d.diff" + }, + "sdk@98200d0": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "98200d0a8b773ea8a55898ebbaba5f74cf0d0448", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/98200d0a8b773ea8a55898ebbaba5f74cf0d0448.diff" + }, + "sdk@4e14aaa": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4e14aaa49ff242082df067232aa8ba6c37ea1906", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4e14aaa49ff242082df067232aa8ba6c37ea1906.diff" + }, + "sdk@9cc0024": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9cc002409a4c7ffa4e067217aee0e36baee79d5c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9cc002409a4c7ffa4e067217aee0e36baee79d5c.diff" + }, + "sdk@5589967": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5589967be369533123990b16eaf3bdd35ccd35f6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5589967be369533123990b16eaf3bdd35ccd35f6.diff" + }, + "sdk@4a08e99": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4a08e99aa47025058868a3546dff5a28b0699c37", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4a08e99aa47025058868a3546dff5a28b0699c37.diff" + }, + "sdk@a3fd4e6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a3fd4e66f5cd69bbfeced7779c22ae06f19d08a2", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a3fd4e66f5cd69bbfeced7779c22ae06f19d08a2.diff" + }, + "sdk@a6af779": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a6af77909c46799080943ee15c028462867c60f5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a6af77909c46799080943ee15c028462867c60f5.diff" + }, + "sdk@e77dc28": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e77dc282a333e9322c309189cb9962b2ffc25368", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e77dc282a333e9322c309189cb9962b2ffc25368.diff" + }, + "sdk@554315e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "554315ed7b3cb3842b068dfe792d8d6a1437161f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/554315ed7b3cb3842b068dfe792d8d6a1437161f.diff" + }, + "sdk@b50856e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b50856e28f9b58583c19b7a0f4d20668eebd6da2", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b50856e28f9b58583c19b7a0f4d20668eebd6da2.diff" + }, + "sdk@9ea900a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9ea900ae5a4d954c4ef24a46929ec373271ff50c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9ea900ae5a4d954c4ef24a46929ec373271ff50c.diff" + }, + "sdk@31f158e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "31f158e4da31a48ca3f9a3db7c01dc975064d560", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/31f158e4da31a48ca3f9a3db7c01dc975064d560.diff" + }, + "sdk@073bd0d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "073bd0d48c35f5ffc3783a913cb387f372497f88", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/073bd0d48c35f5ffc3783a913cb387f372497f88.diff" + }, + "sdk@e0a6b80": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e0a6b80004312e1dad76f36b4dec92af9ab98345", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e0a6b80004312e1dad76f36b4dec92af9ab98345.diff" + }, + "sdk@245f8fa": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "245f8fa9bdaa313592e99833a542f08bfcc437ee", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/245f8fa9bdaa313592e99833a542f08bfcc437ee.diff" + }, + "sdk@e236a02": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e236a022d0104b790db51f444091eeb1663034ad", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e236a022d0104b790db51f444091eeb1663034ad.diff" + }, + "sdk@cc1b30e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "cc1b30edf44848acbedff76f4070e4a41b82b930", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/cc1b30edf44848acbedff76f4070e4a41b82b930.diff" + }, + "sdk@d60ba8e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d60ba8e578d1a67bc25b787dfabd82f72e0343b5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d60ba8e578d1a67bc25b787dfabd82f72e0343b5.diff" + }, + "sdk@3f09f97": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3f09f9787a135b38c15c2d2b44c91aeb6596856a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3f09f9787a135b38c15c2d2b44c91aeb6596856a.diff" + }, + "sdk@93b4dfc": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "93b4dfc3d879802f8ad1fb2582196ff97ded6674", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/93b4dfc3d879802f8ad1fb2582196ff97ded6674.diff" + }, + "sdk@53c99bb": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "53c99bbf56bb9e3f786ab1f588b03e71bb9f7f66", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/53c99bbf56bb9e3f786ab1f588b03e71bb9f7f66.diff" + }, + "sdk@40d4c60": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "40d4c60ff35aa1fccfa0627dd13f3c2d3ccdb5da", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/40d4c60ff35aa1fccfa0627dd13f3c2d3ccdb5da.diff" + }, + "sdk@9dfedf8": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9dfedf85214c5974355a962d622ab96f057a556d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9dfedf85214c5974355a962d622ab96f057a556d.diff" + }, + "sdk@4adf9e6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4adf9e6ddc72998d17016a0c13c9a5c69693235e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4adf9e6ddc72998d17016a0c13c9a5c69693235e.diff" + }, + "sdk@f062f1b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f062f1be93911246ede8c595c9ec6feb6f6137f5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f062f1be93911246ede8c595c9ec6feb6f6137f5.diff" + }, + "sdk@0f014ce": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0f014ce863c9ee2bce8f808bc7356372608a99a5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0f014ce863c9ee2bce8f808bc7356372608a99a5.diff" + }, + "sdk@aa0ce65": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "aa0ce65c28c98cb16c31ae5382eb19b435080a2a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/aa0ce65c28c98cb16c31ae5382eb19b435080a2a.diff" + }, + "sdk@ba5bec9": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ba5bec9523959d1ed78760863724b990a760cd4a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ba5bec9523959d1ed78760863724b990a760cd4a.diff" + }, + "sdk@330bcff": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "330bcffed23bfda1cb3f7daba9ac1af5cafadda8", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/330bcffed23bfda1cb3f7daba9ac1af5cafadda8.diff" + }, + "sdk@1a55591": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1a5559141734a00d983b25dcee8201487fc92a3a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1a5559141734a00d983b25dcee8201487fc92a3a.diff" + }, + "sdk@24d6259": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "24d625941e662b21955873361bc30ddd531b1ab4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/24d625941e662b21955873361bc30ddd531b1ab4.diff" + }, + "sdk@0e67373": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0e67373e8f025a96690a45ba40642f307e79a33c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0e67373e8f025a96690a45ba40642f307e79a33c.diff" + }, + "sdk@edd676d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "edd676db76688c503c6140792d24e77c5121bc7b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/edd676db76688c503c6140792d24e77c5121bc7b.diff" + }, + "sdk@6e321aa": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6e321aa3bb242371ab364e4e17ab720c1af27adc", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6e321aa3bb242371ab364e4e17ab720c1af27adc.diff" + }, + "sdk@b500038": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b5000389b4476709c5d0d4dbc0d11f409d31fd65", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b5000389b4476709c5d0d4dbc0d11f409d31fd65.diff" + }, + "sdk@2122e7d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2122e7d265fdb191f9f770aa2cfa6e8a1c7bd136", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2122e7d265fdb191f9f770aa2cfa6e8a1c7bd136.diff" + }, + "sdk@756927a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "756927ab607bbcdb6cd17d19d2beeb526f71c194", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/756927ab607bbcdb6cd17d19d2beeb526f71c194.diff" + }, + "sdk@734412e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "734412e94487e69d3eb20e56f2d964a2ca418df5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/734412e94487e69d3eb20e56f2d964a2ca418df5.diff" + }, + "sdk@f25f310": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f25f3107b3554e141cbd09113cccf6c321f45143", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f25f3107b3554e141cbd09113cccf6c321f45143.diff" + }, + "sdk@1c98288": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1c98288c64bb33c8e2569429cd1d59ae9e2e643f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1c98288c64bb33c8e2569429cd1d59ae9e2e643f.diff" + }, + "source-build-reference-packages@f9f00a7": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "f9f00a74a4a2bc8cea089c506b1c6cbcb1fb9c1c", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/f9f00a74a4a2bc8cea089c506b1c6cbcb1fb9c1c.diff" + }, + "source-build-reference-packages@d492faa": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "d492faa78055b3e56cdab5fd2d88056e375482e2", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/d492faa78055b3e56cdab5fd2d88056e375482e2.diff" + }, + "source-build-reference-packages@79173d7": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "79173d77ed27973e023b2d313f80268aaa9d63a6", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/79173d77ed27973e023b2d313f80268aaa9d63a6.diff" + }, + "source-build-reference-packages@53df2d8": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "53df2d8ec665b5c00dfee3866bf7053374d52c7e", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/53df2d8ec665b5c00dfee3866bf7053374d52c7e.diff" + }, + "source-build-reference-packages@fada075": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "fada075c5c15cb33e208628cade97f42824c690d", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/fada075c5c15cb33e208628cade97f42824c690d.diff" + }, + "source-build-reference-packages@867c96d": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "867c96ddea6c1accfeccb11ea8563eca28bc52d8", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/867c96ddea6c1accfeccb11ea8563eca28bc52d8.diff" + }, + "source-build-reference-packages@31d66da": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "31d66da9ba89c34133b1270239d3f578b671594a", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/31d66da9ba89c34133b1270239d3f578b671594a.diff" + }, + "source-build-reference-packages@c2b75e4": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "c2b75e433679003a3a940b20c032c35c4a18eb50", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/c2b75e433679003a3a940b20c032c35c4a18eb50.diff" + }, + "source-build-reference-packages@126ae71": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "126ae71663e3d22030fc7e55d71ead23d140432d", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/126ae71663e3d22030fc7e55d71ead23d140432d.diff" + }, + "source-build-reference-packages@b83413a": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "b83413a4a201695a8bd7ebb6381de7670147ecb7", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/b83413a4a201695a8bd7ebb6381de7670147ecb7.diff" + }, + "source-build-reference-packages@4b65ca1": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "4b65ca17247c0e3f5d50ef8162039065e546fd1d", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/4b65ca17247c0e3f5d50ef8162039065e546fd1d.diff" + }, + "source-build-reference-packages@5204ad3": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "5204ad36f22c85a100f83341d5bbda7d51967d34", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/5204ad36f22c85a100f83341d5bbda7d51967d34.diff" + }, + "source-build-reference-packages@36e942f": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "36e942f1044b201265febf5ef3100097490612d1", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/36e942f1044b201265febf5ef3100097490612d1.diff" + }, + "source-build-reference-packages@88e2559": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "88e25598e94b87ea1b25e7fdd01f1dcc1ed1d135", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/88e25598e94b87ea1b25e7fdd01f1dcc1ed1d135.diff" + }, + "source-build-reference-packages@ccbef8c": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "ccbef8c6d0c9ba8cc132656c917e5eb809117ac8", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/ccbef8c6d0c9ba8cc132656c917e5eb809117ac8.diff" + }, + "source-build-reference-packages@2b29460": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "2b294609a0d52f305765c31232047d23f1ed780a", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/2b294609a0d52f305765c31232047d23f1ed780a.diff" + }, + "source-build-reference-packages@5711e1f": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "5711e1f7e6f8bf26f66cbbf650959755a3fdc705", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/5711e1f7e6f8bf26f66cbbf650959755a3fdc705.diff" + }, + "source-build-reference-packages@314d773": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "314d773ec8dfb656c612d61c0350e356c2b24450", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/314d773ec8dfb656c612d61c0350e356c2b24450.diff" + }, + "source-build-reference-packages@5037ba0": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "5037ba0dcf0929c352e25c3184f0ab4ed5799f33", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/5037ba0dcf0929c352e25c3184f0ab4ed5799f33.diff" + }, + "source-build-reference-packages@d90fb2a": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "d90fb2a224ddfba4da6927c6e7f328f3f535db27", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/d90fb2a224ddfba4da6927c6e7f328f3f535db27.diff" + }, + "source-build-reference-packages@31ef23e": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "31ef23e160d991d30d645f110b6bf5bc7ffadd04", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/31ef23e160d991d30d645f110b6bf5bc7ffadd04.diff" + }, + "source-build-reference-packages@66ddf29": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "66ddf29805eb690e48f10bb31f2125520695208e", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/66ddf29805eb690e48f10bb31f2125520695208e.diff" + }, + "sourcelink@aac1618": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "aac1618190641140df043b1197fbbbe30115df69", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/aac1618190641140df043b1197fbbbe30115df69.diff" + }, + "sourcelink@b25d37e": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "b25d37ed907dd49238a1bd3923e616cac0fec99c", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/b25d37ed907dd49238a1bd3923e616cac0fec99c.diff" + }, + "sourcelink@30a383d": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "30a383db61035c180ad767baf5313b77d8f6de6f", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/30a383db61035c180ad767baf5313b77d8f6de6f.diff" + }, + "sourcelink@2061478": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "20614787937dba7c2bfa8834e451d4a83fb5d40c", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/20614787937dba7c2bfa8834e451d4a83fb5d40c.diff" + }, + "sourcelink@8a4c758": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "8a4c758485a7878d6ae31f54cc8c3128ba9d0a99", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/8a4c758485a7878d6ae31f54cc8c3128ba9d0a99.diff" + }, + "sourcelink@2668313": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "26683137318f55e26442ae3313bd5d255c750eb8", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/26683137318f55e26442ae3313bd5d255c750eb8.diff" + }, + "sourcelink@a7a2ddc": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "a7a2ddc26745aa828b4e5fd2a4e241cb32719a35", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/a7a2ddc26745aa828b4e5fd2a4e241cb32719a35.diff" + }, + "sourcelink@494565b": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "494565b6d10cc9e39bcad37143fd7e35fc469d50", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/494565b6d10cc9e39bcad37143fd7e35fc469d50.diff" + }, + "sourcelink@98ac233": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "98ac2339f8c997b7d81578c15a33c4ec38a67e9d", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/98ac2339f8c997b7d81578c15a33c4ec38a67e9d.diff" + }, + "sourcelink@dca38b9": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "dca38b9eb720be4712bbc709be1f77e84b3608fc", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/dca38b9eb720be4712bbc709be1f77e84b3608fc.diff" + }, + "sourcelink@251760a": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "251760a1f8b193db34fe1c7feaf25de0ba34cd96", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/251760a1f8b193db34fe1c7feaf25de0ba34cd96.diff" + }, + "sourcelink@7c50134": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "7c50134eb8927261288e4263dc5c6a15b84f85b5", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/7c50134eb8927261288e4263dc5c6a15b84f85b5.diff" + }, + "sourcelink@c23996c": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "c23996c885a40466b8e6153efbe4662421cdaef5", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/c23996c885a40466b8e6153efbe4662421cdaef5.diff" + }, + "sourcelink@6ae65fc": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "6ae65fc63222228006b5a031bcf834f5bf7d70a0", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/6ae65fc63222228006b5a031bcf834f5bf7d70a0.diff" + }, + "sourcelink@6ea6adb": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "6ea6adb7b969c3d58c5aececc1df68e09288cbbf", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/6ea6adb7b969c3d58c5aececc1df68e09288cbbf.diff" + }, + "symreader@01c0841": { + "repo": "symreader", + "branch": "release/11.0.1xx-preview3", + "hash": "01c0841907a56e22c4fadd1d3bd1bc371a2df770", + "org": "dotnet", + "url": "https://github.com/dotnet/symreader/commit/01c0841907a56e22c4fadd1d3bd1bc371a2df770.diff" + }, + "symreader@e5e9322": { + "repo": "symreader", + "branch": "release/11.0.1xx-preview3", + "hash": "e5e93226660ec3780140cd49b3627ec469aede6b", + "org": "dotnet", + "url": "https://github.com/dotnet/symreader/commit/e5e93226660ec3780140cd49b3627ec469aede6b.diff" + }, + "symreader@f106e2a": { + "repo": "symreader", + "branch": "release/11.0.1xx-preview3", + "hash": "f106e2a1c65f02c1b9e47ce354a1d1820d635a95", + "org": "dotnet", + "url": "https://github.com/dotnet/symreader/commit/f106e2a1c65f02c1b9e47ce354a1d1820d635a95.diff" + }, + "symreader@029a1d1": { + "repo": "symreader", + "branch": "release/11.0.1xx-preview3", + "hash": "029a1d10c9a16a26969816010f9ff551e8de1e43", + "org": "dotnet", + "url": "https://github.com/dotnet/symreader/commit/029a1d10c9a16a26969816010f9ff551e8de1e43.diff" + }, + "symreader@e87544a": { + "repo": "symreader", + "branch": "release/11.0.1xx-preview3", + "hash": "e87544a2ca8f13d08c246c0a54db2d54960f2e48", + "org": "dotnet", + "url": "https://github.com/dotnet/symreader/commit/e87544a2ca8f13d08c246c0a54db2d54960f2e48.diff" + }, + "templating@4f4c901": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "4f4c901d2982a50d39f81a40ceb225522ff756eb", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/4f4c901d2982a50d39f81a40ceb225522ff756eb.diff" + }, + "templating@b7755a9": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b7755a99a42d384e8d0fa07c3f2c0c43ab3c3f8a", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b7755a99a42d384e8d0fa07c3f2c0c43ab3c3f8a.diff" + }, + "templating@7369111": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "73691118c993f668eab411c9533a93e9a531f1a7", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/73691118c993f668eab411c9533a93e9a531f1a7.diff" + }, + "templating@cdbf978": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "cdbf978719c3506b7d56ebfb067e5f5148167bba", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/cdbf978719c3506b7d56ebfb067e5f5148167bba.diff" + }, + "templating@9212512": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "92125120b59a9a12fd239645c11596eaeeccc155", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/92125120b59a9a12fd239645c11596eaeeccc155.diff" + }, + "templating@7271f43": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7271f433507cba3ed63328c01fd5dc061dac31a1", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7271f433507cba3ed63328c01fd5dc061dac31a1.diff" + }, + "templating@e99d728": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e99d728d09ae2e529b3e0a17b4f02896af6e70ee", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e99d728d09ae2e529b3e0a17b4f02896af6e70ee.diff" + }, + "templating@5c37c89": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "5c37c89d64da45649f639add584c2bc19c6b0b28", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/5c37c89d64da45649f639add584c2bc19c6b0b28.diff" + }, + "templating@fee905d": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "fee905d30f203c72b05ae46f1b0e51b7fb736fe8", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/fee905d30f203c72b05ae46f1b0e51b7fb736fe8.diff" + }, + "templating@4762e57": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "4762e577809ef123d1da44b094d84f7850e8920d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/4762e577809ef123d1da44b094d84f7850e8920d.diff" + }, + "templating@8f46f06": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "8f46f06fc5132007d96de26d832efc8231542493", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/8f46f06fc5132007d96de26d832efc8231542493.diff" + }, + "templating@3372f62": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "3372f62ff2f1c3de4302bac5ef34bdc8ebf358d9", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/3372f62ff2f1c3de4302bac5ef34bdc8ebf358d9.diff" + }, + "templating@ae11760": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "ae11760a4b4d62dff9ef587da6cf5acf10a1b159", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/ae11760a4b4d62dff9ef587da6cf5acf10a1b159.diff" + }, + "templating@e3b199e": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e3b199ee1a781e32050c8f5eee8d0e88ee96042e", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e3b199ee1a781e32050c8f5eee8d0e88ee96042e.diff" + }, + "templating@36694ea": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "36694ead82c743b226f0bc665cc56ee186796707", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/36694ead82c743b226f0bc665cc56ee186796707.diff" + }, + "templating@b7a4f37": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b7a4f3707f1370b48969306d7b22bbd62ab5a8ea", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b7a4f3707f1370b48969306d7b22bbd62ab5a8ea.diff" + }, + "templating@0d134f4": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "0d134f44193e253c10ed6f41c0e7907c9c1e02d4", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/0d134f44193e253c10ed6f41c0e7907c9c1e02d4.diff" + }, + "templating@2e70b8b": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "2e70b8bdea72cfd0dc31333c18623109cef43898", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/2e70b8bdea72cfd0dc31333c18623109cef43898.diff" + }, + "templating@121dd33": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "121dd33a2607d7b890713117a7a10da4fbba940d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/121dd33a2607d7b890713117a7a10da4fbba940d.diff" + }, + "templating@bde0eb9": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "bde0eb9503d1e46f56ab5b0afa1fc271fb87da79", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/bde0eb9503d1e46f56ab5b0afa1fc271fb87da79.diff" + }, + "templating@5f81707": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "5f81707cb67aff7b02978c2e73864402225bb247", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/5f81707cb67aff7b02978c2e73864402225bb247.diff" + }, + "templating@95ff3b7": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "95ff3b7cb9cc1fc8d4673146b225fa6c74e9b94f", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/95ff3b7cb9cc1fc8d4673146b225fa6c74e9b94f.diff" + }, + "templating@20e5f50": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "20e5f50fede1288b66b7fb20232ecb7ae685437b", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/20e5f50fede1288b66b7fb20232ecb7ae685437b.diff" + }, + "templating@3048685": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "304868563aced4ed9ee671171916b60c458c1e44", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/304868563aced4ed9ee671171916b60c458c1e44.diff" + }, + "templating@7fb54f4": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7fb54f4cb0760b865fb3d048724a26da43ac87ec", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7fb54f4cb0760b865fb3d048724a26da43ac87ec.diff" + }, + "templating@74626d2": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "74626d2400b13a71525dd4d1ee6697e265b8b019", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/74626d2400b13a71525dd4d1ee6697e265b8b019.diff" + }, + "templating@a199b5a": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "a199b5a185fa641534540a10437dfb8f10b5828b", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/a199b5a185fa641534540a10437dfb8f10b5828b.diff" + }, + "templating@f598b06": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f598b06ac7501966102533ca343777fd233eb617", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f598b06ac7501966102533ca343777fd233eb617.diff" + }, + "templating@f566be2": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f566be29b310b89f7b011179f272c5e1d815df30", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f566be29b310b89f7b011179f272c5e1d815df30.diff" + }, + "templating@e6f952e": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e6f952e48c55aa1026b73791bce3bdd4487f2c68", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e6f952e48c55aa1026b73791bce3bdd4487f2c68.diff" + }, + "templating@321f539": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "321f539050368c37448cfc944d1e827f2c5c775d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/321f539050368c37448cfc944d1e827f2c5c775d.diff" + }, + "templating@5e050ff": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "5e050ffcaf7be0b467f23b10b5e283ae15b7e338", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/5e050ffcaf7be0b467f23b10b5e283ae15b7e338.diff" + }, + "templating@40d1aae": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "40d1aae08ff94602da9963f1134661fa23224bb9", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/40d1aae08ff94602da9963f1134661fa23224bb9.diff" + }, + "templating@a23d69a": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "a23d69a9c840a897271c1b43a25ffdb359cffbf6", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/a23d69a9c840a897271c1b43a25ffdb359cffbf6.diff" + }, + "templating@7c5e34e": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7c5e34e3c94c85545720ce8f33660719cc711679", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7c5e34e3c94c85545720ce8f33660719cc711679.diff" + }, + "templating@7ff5d84": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7ff5d841753131f44531174c48b9774dbf686c71", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7ff5d841753131f44531174c48b9774dbf686c71.diff" + }, + "templating@0a9fd5d": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "0a9fd5d5d289bf7e261308745d73c8198b0cc873", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/0a9fd5d5d289bf7e261308745d73c8198b0cc873.diff" + }, + "templating@d138822": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "d138822c8195880da116db49511027381c064236", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/d138822c8195880da116db49511027381c064236.diff" + }, + "templating@7efe8ee": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7efe8eea4dac6382d4c866304fe35bec9105518d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7efe8eea4dac6382d4c866304fe35bec9105518d.diff" + }, + "templating@50e77da": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "50e77dad6edac46defdd1ed88879aaba4d375452", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/50e77dad6edac46defdd1ed88879aaba4d375452.diff" + }, + "templating@c9e4dfd": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "c9e4dfdd52dacef063c19c7c582bf603a28c0ae9", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/c9e4dfdd52dacef063c19c7c582bf603a28c0ae9.diff" + }, + "templating@b342718": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b34271892174c58c11e7bac8977db319624adbbb", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b34271892174c58c11e7bac8977db319624adbbb.diff" + }, + "templating@1089dc7": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "1089dc75824eb5155ec44ffe332eb5c98caab3b7", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/1089dc75824eb5155ec44ffe332eb5c98caab3b7.diff" + }, + "templating@54fc969": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "54fc969c0c413fbfcb07766013926be8327deb69", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/54fc969c0c413fbfcb07766013926be8327deb69.diff" + }, + "templating@6a3a5bd": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "6a3a5bda817600a368664c204d26fdc533c4bacb", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/6a3a5bda817600a368664c204d26fdc533c4bacb.diff" + }, + "templating@c87e7bb": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "c87e7bbce8a4efc0e5f05b76826c68421c1a95f0", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/c87e7bbce8a4efc0e5f05b76826c68421c1a95f0.diff" + }, + "templating@f651898": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f651898ce96302fe6328b5058df23d07c884bcd4", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f651898ce96302fe6328b5058df23d07c884bcd4.diff" + }, + "templating@9076da7": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "9076da791ec237a6ca967ba03ba6b182e9e3eeca", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/9076da791ec237a6ca967ba03ba6b182e9e3eeca.diff" + }, + "templating@7c6a967": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7c6a967f82c731576d7a050df664fa7db9535b85", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7c6a967f82c731576d7a050df664fa7db9535b85.diff" + }, + "templating@d5cf2d1": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "d5cf2d109c462ca93e30be35c89c021a9f44d98b", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/d5cf2d109c462ca93e30be35c89c021a9f44d98b.diff" + }, + "templating@a29321b": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "a29321b12f1edbabbee3f7ea5bb8fe2f8788efdd", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/a29321b12f1edbabbee3f7ea5bb8fe2f8788efdd.diff" + }, + "templating@8e0e26d": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "8e0e26df1d3b7a9bb6d23d4f883e814694c834da", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/8e0e26df1d3b7a9bb6d23d4f883e814694c834da.diff" + }, + "templating@0ca09cb": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "0ca09cb250057b344adb45084749ed24b3f8a6b0", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/0ca09cb250057b344adb45084749ed24b3f8a6b0.diff" + }, + "templating@b71253f": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b71253fd46814646c4359603a5811174f146b194", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b71253fd46814646c4359603a5811174f146b194.diff" + }, + "templating@9ad9b32": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "9ad9b325943d822b6c3f80e0c2d60d1cfdff2af7", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/9ad9b325943d822b6c3f80e0c2d60d1cfdff2af7.diff" + }, + "templating@c4d87f4": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "c4d87f40133af13809b24c719a0afb63c6a08617", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/c4d87f40133af13809b24c719a0afb63c6a08617.diff" + }, + "templating@8213c24": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "8213c24c55165d2e05354cd201761d2ba4134995", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/8213c24c55165d2e05354cd201761d2ba4134995.diff" + }, + "templating@2c875d3": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "2c875d35280e044aede7715ef1cf040e6033bc93", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/2c875d35280e044aede7715ef1cf040e6033bc93.diff" + }, + "templating@1d35c94": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "1d35c946ee692e26b37df147e2c1c8207b4cd73a", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/1d35c946ee692e26b37df147e2c1c8207b4cd73a.diff" + }, + "templating@6e31c69": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "6e31c69f6ee2abff3ab8e8e1ee409ae249d6ccf2", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/6e31c69f6ee2abff3ab8e8e1ee409ae249d6ccf2.diff" + }, + "templating@8eecb41": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "8eecb41a0ebea540dfdda08309d9f0041dcc8c61", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/8eecb41a0ebea540dfdda08309d9f0041dcc8c61.diff" + }, + "templating@5c04422": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "5c044229824e2bd2aaff4944e2514c38702a1280", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/5c044229824e2bd2aaff4944e2514c38702a1280.diff" + }, + "templating@d7ef40f": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "d7ef40f9e527bf18c31cb46f125f36da51a835db", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/d7ef40f9e527bf18c31cb46f125f36da51a835db.diff" + }, + "templating@41eda11": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "41eda1116afcaeddb7de133325a68b3f6140bf3e", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/41eda1116afcaeddb7de133325a68b3f6140bf3e.diff" + }, + "templating@53fd3d4": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "53fd3d4dc5c1e1797fa10ab11f70cf5e322f956b", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/53fd3d4dc5c1e1797fa10ab11f70cf5e322f956b.diff" + }, + "templating@2c0d3f8": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "2c0d3f87ea0ac16bd1a442b528d0045c7d99fc71", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/2c0d3f87ea0ac16bd1a442b528d0045c7d99fc71.diff" + }, + "templating@f69d4eb": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f69d4eb8cab191d8ed5fdbe7c5ed9c9dbe6f6e00", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f69d4eb8cab191d8ed5fdbe7c5ed9c9dbe6f6e00.diff" + }, + "templating@da99ace": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "da99acea1b8d9c1a7902aa2b35459c4503078d06", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/da99acea1b8d9c1a7902aa2b35459c4503078d06.diff" + }, + "templating@7f918c8": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7f918c87bf315b06b54450b04ba0de067ee6fe06", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7f918c87bf315b06b54450b04ba0de067ee6fe06.diff" + }, + "templating@b8604f8": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b8604f8fecffff62bfcc1854bf8a71fa1f4ab4bf", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b8604f8fecffff62bfcc1854bf8a71fa1f4ab4bf.diff" + }, + "templating@47f3950": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "47f3950c60f361d1272d30fb432f321a2d553fb2", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/47f3950c60f361d1272d30fb432f321a2d553fb2.diff" + }, + "templating@23f88df": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "23f88dfd5baa36a7b36020527a3fb1d0f1d5ec10", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/23f88dfd5baa36a7b36020527a3fb1d0f1d5ec10.diff" + }, + "templating@2c0a5c7": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "2c0a5c70c6bd297f291442805da7621eb1d81958", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/2c0a5c70c6bd297f291442805da7621eb1d81958.diff" + }, + "templating@6e3afb3": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "6e3afb3720643f91285077a3bc397b9182e676ab", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/6e3afb3720643f91285077a3bc397b9182e676ab.diff" + }, + "templating@ea80dd1": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "ea80dd1e25eee778d70545227fe75a1b120ffef9", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/ea80dd1e25eee778d70545227fe75a1b120ffef9.diff" + }, + "templating@7be4df5": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7be4df5c970a8f3b30e228f05bd6b4bcd3266e5f", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7be4df5c970a8f3b30e228f05bd6b4bcd3266e5f.diff" + }, + "templating@fe60e19": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "fe60e19061279aa918d0f11997673cd18c9f5f4c", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/fe60e19061279aa918d0f11997673cd18c9f5f4c.diff" + }, + "templating@44ac461": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "44ac4614af1390bc37c508e77714bd0d392cecd0", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/44ac4614af1390bc37c508e77714bd0d392cecd0.diff" + }, + "templating@ea66ab7": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "ea66ab7e079c625bc4d3f76ede5042874c180a4c", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/ea66ab7e079c625bc4d3f76ede5042874c180a4c.diff" + }, + "templating@3d8a1e9": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "3d8a1e9b50dd81227d5df7066a8929c9842021bc", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/3d8a1e9b50dd81227d5df7066a8929c9842021bc.diff" + }, + "templating@2bb4424": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "2bb4424e21e4f1206ed829a7bb1748683dc811f5", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/2bb4424e21e4f1206ed829a7bb1748683dc811f5.diff" + }, + "templating@e1f9198": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e1f919895be25f00c462826fa912918de74c7e56", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e1f919895be25f00c462826fa912918de74c7e56.diff" + }, + "templating@2c1cef2": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "2c1cef2dab7d1617275530e1224fc6fb54c23b3a", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/2c1cef2dab7d1617275530e1224fc6fb54c23b3a.diff" + }, + "templating@f6017ea": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f6017eafec4da0337bda4aaab71c81717065de93", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f6017eafec4da0337bda4aaab71c81717065de93.diff" + }, + "templating@3e8acc7": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "3e8acc7b2111a5a2824b8472377ad02e28caad6d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/3e8acc7b2111a5a2824b8472377ad02e28caad6d.diff" + }, + "templating@af2466d": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "af2466d7f34c86e64437cf5a783d114f557fae53", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/af2466d7f34c86e64437cf5a783d114f557fae53.diff" + }, + "templating@1eee975": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "1eee975867354e520e698969417a65d08a0843ca", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/1eee975867354e520e698969417a65d08a0843ca.diff" + }, + "templating@ffc0ac2": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "ffc0ac226dfdc3ad12cf1a1bd984e3786780c621", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/ffc0ac226dfdc3ad12cf1a1bd984e3786780c621.diff" + }, + "templating@30d3d38": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "30d3d3862bdaea049084a4a36b1914b63ef298f8", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/30d3d3862bdaea049084a4a36b1914b63ef298f8.diff" + }, + "templating@fa5b4ae": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "fa5b4aed22c6f0c3f416e4d7a8f8da76138b4f6f", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/fa5b4aed22c6f0c3f416e4d7a8f8da76138b4f6f.diff" + }, + "templating@ad0a7bf": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "ad0a7bfd946312950531ea203892276b2e6c11cd", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/ad0a7bfd946312950531ea203892276b2e6c11cd.diff" + }, + "templating@998864e": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "998864e206ce92e6ae0233acd1040497c16616bf", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/998864e206ce92e6ae0233acd1040497c16616bf.diff" + }, + "templating@f0e416d": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f0e416dcf3b159b3db97f23a0d8ca42fca1322f7", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f0e416dcf3b159b3db97f23a0d8ca42fca1322f7.diff" + }, + "templating@5ef30ec": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "5ef30ecb8d4114875bf4b4ef9769b58edaf5fde1", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/5ef30ecb8d4114875bf4b4ef9769b58edaf5fde1.diff" + }, + "templating@839db8e": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "839db8e5ce1a58087308e50516025f9b711d5acb", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/839db8e5ce1a58087308e50516025f9b711d5acb.diff" + }, + "templating@eb2e6db": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "eb2e6dbbdf788aa57a01885162347f3937eddce5", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/eb2e6dbbdf788aa57a01885162347f3937eddce5.diff" + }, + "templating@b870186": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b870186bbdf9cbbd3c83fb440c54727f959d6433", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b870186bbdf9cbbd3c83fb440c54727f959d6433.diff" + }, + "templating@87b3671": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "87b36713a06ae7b2ff3c74d4c7849f2fda5956a0", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/87b36713a06ae7b2ff3c74d4c7849f2fda5956a0.diff" + }, + "templating@705477b": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "705477bd3f76062b683ed39339d9090176f3b3d6", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/705477bd3f76062b683ed39339d9090176f3b3d6.diff" + }, + "templating@bd1b258": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "bd1b258cb4afa21231f87792abba2d3f77847cb1", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/bd1b258cb4afa21231f87792abba2d3f77847cb1.diff" + }, + "templating@fb9757b": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "fb9757b64e7849c08dd4b76e0bda92e6e9ec5085", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/fb9757b64e7849c08dd4b76e0bda92e6e9ec5085.diff" + }, + "templating@7ddf30b": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7ddf30b80f4e3042052fe7a40290da4d592e8b23", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7ddf30b80f4e3042052fe7a40290da4d592e8b23.diff" + }, + "templating@b3eb6ce": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b3eb6ce8c313e33375bcf8d853a9a3e3c2b66a82", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b3eb6ce8c313e33375bcf8d853a9a3e3c2b66a82.diff" + }, + "templating@e19ccbd": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e19ccbdcf42d4139dfbdb550655778fb79900a03", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e19ccbdcf42d4139dfbdb550655778fb79900a03.diff" + }, + "templating@d04e5bb": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "d04e5bbdcbaae1bf3510acf57f019adac24656ea", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/d04e5bbdcbaae1bf3510acf57f019adac24656ea.diff" + }, + "templating@670bbf0": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "670bbf0f775c560af857dbc4385462b82160dddf", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/670bbf0f775c560af857dbc4385462b82160dddf.diff" + }, + "templating@4014047": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "4014047aeb6c87e06e79b363e832f29cce79b736", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/4014047aeb6c87e06e79b363e832f29cce79b736.diff" + }, + "templating@fac7fc4": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "fac7fc48227634f5922fcf0f2ae30344cf5eb728", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/fac7fc48227634f5922fcf0f2ae30344cf5eb728.diff" + }, + "templating@602fee8": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "602fee8b56854190805005462e8b4e041738f72c", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/602fee8b56854190805005462e8b4e041738f72c.diff" + }, + "templating@3be9060": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "3be90606001d2ff7dfd406d3f9b76ed1e8dfd9cd", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/3be90606001d2ff7dfd406d3f9b76ed1e8dfd9cd.diff" + }, + "templating@31d5e94": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "31d5e94c745f99846e3ade06a9b3b3ce2ac6a914", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/31d5e94c745f99846e3ade06a9b3b3ce2ac6a914.diff" + }, + "templating@8f3233f": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "8f3233fae9298191f4a83beab50326835b8815ac", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/8f3233fae9298191f4a83beab50326835b8815ac.diff" + }, + "templating@09cce1b": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "09cce1b0ddc3c54fb70cc1aaecac2019f3c187bc", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/09cce1b0ddc3c54fb70cc1aaecac2019f3c187bc.diff" + }, + "templating@ba9beb1": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "ba9beb1ed2a4da0ea9693b68397e33fe2053bc93", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/ba9beb1ed2a4da0ea9693b68397e33fe2053bc93.diff" + }, + "templating@036e553": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "036e5537d7008a6b32c0798256f06f95cec85bfb", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/036e5537d7008a6b32c0798256f06f95cec85bfb.diff" + }, + "templating@7a5d7a5": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7a5d7a555bc61cd2fe17f2f2e01f892e5a427a20", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7a5d7a555bc61cd2fe17f2f2e01f892e5a427a20.diff" + }, + "templating@ace6743": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "ace674390923ed8b52c95d95a0fd94babc4d6a67", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/ace674390923ed8b52c95d95a0fd94babc4d6a67.diff" + }, + "templating@67a0a9c": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "67a0a9c96436297ae85ed20ed4b10633688ee190", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/67a0a9c96436297ae85ed20ed4b10633688ee190.diff" + }, + "templating@aa07580": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "aa0758044d166636f3f8095cfca9588a88adcb2c", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/aa0758044d166636f3f8095cfca9588a88adcb2c.diff" + }, + "templating@db897f4": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "db897f49c74da5baed273c76eb46d1eb26bad04c", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/db897f49c74da5baed273c76eb46d1eb26bad04c.diff" + }, + "templating@a10ed4b": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "a10ed4b6aa09ca0d78e31d11e645a9c35e41d342", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/a10ed4b6aa09ca0d78e31d11e645a9c35e41d342.diff" + }, + "templating@cb565a7": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "cb565a75d77c8fec8f3f89aa5bd4d93043432d7d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/cb565a75d77c8fec8f3f89aa5bd4d93043432d7d.diff" + }, + "templating@a223364": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "a2233640c01a5e58808d5fd1143f34dfebea337e", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/a2233640c01a5e58808d5fd1143f34dfebea337e.diff" + }, + "templating@84c018c": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "84c018c7906eaa9ecf40e174f1ed21ed84b8163b", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/84c018c7906eaa9ecf40e174f1ed21ed84b8163b.diff" + }, + "templating@4822704": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "482270423e2faf505b982ec7275eb782cc42b11c", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/482270423e2faf505b982ec7275eb782cc42b11c.diff" + }, + "templating@8dd0c58": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "8dd0c58f0a537e91961e1cc551d77c264cb9f093", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/8dd0c58f0a537e91961e1cc551d77c264cb9f093.diff" + }, + "templating@79304c8": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "79304c81faa6f1d29ad8985e522a36bf643f86fd", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/79304c81faa6f1d29ad8985e522a36bf643f86fd.diff" + }, + "templating@6550ecd": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "6550ecd2990376e34b126b2b78166ef86657e307", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/6550ecd2990376e34b126b2b78166ef86657e307.diff" + }, + "templating@b8d4b89": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b8d4b89477abe60ec25d62e07933a675ac2f96cb", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b8d4b89477abe60ec25d62e07933a675ac2f96cb.diff" + }, + "templating@8a73ffc": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "8a73ffc5cdce32dcd87c114952f581fd54e350c3", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/8a73ffc5cdce32dcd87c114952f581fd54e350c3.diff" + }, + "templating@c166a63": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "c166a637375cb044458a9c05bd4e720a57256348", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/c166a637375cb044458a9c05bd4e720a57256348.diff" + }, + "templating@98d6433": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "98d6433162cc7d5270b95e0ec72bd3c9d91cbaf0", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/98d6433162cc7d5270b95e0ec72bd3c9d91cbaf0.diff" + }, + "templating@de6dbc7": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "de6dbc743cc9721c15508126fa2fd299779b020d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/de6dbc743cc9721c15508126fa2fd299779b020d.diff" + }, + "templating@39d232b": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "39d232bea6c197964d0b525feb66a4764f027d0e", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/39d232bea6c197964d0b525feb66a4764f027d0e.diff" + }, + "templating@0d11bde": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "0d11bde0596e82571275fae956e6ada7d38a7064", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/0d11bde0596e82571275fae956e6ada7d38a7064.diff" + }, + "templating@386e71a": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "386e71a94cbf5684a09a4cfdfa4d9d9452500b70", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/386e71a94cbf5684a09a4cfdfa4d9d9452500b70.diff" + }, + "templating@e5bdff7": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e5bdff79051b2e5a6760b55f718ea1906a082622", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e5bdff79051b2e5a6760b55f718ea1906a082622.diff" + }, + "templating@c76b3f7": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "c76b3f77b937bf3f99143913b251a08891a66d95", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/c76b3f77b937bf3f99143913b251a08891a66d95.diff" + }, + "templating@7fc381a": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7fc381a8175125c7b20ec95f93626698ebe78e5d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7fc381a8175125c7b20ec95f93626698ebe78e5d.diff" + }, + "templating@e667c11": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e667c11f978ce20d71ebbc151287369008889731", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e667c11f978ce20d71ebbc151287369008889731.diff" + }, + "templating@853b9b9": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "853b9b97ab6839b444bc53e37ca6a6078723af2e", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/853b9b97ab6839b444bc53e37ca6a6078723af2e.diff" + }, + "templating@8853660": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "88536602b05fb08f0a0d7ff9b05ee4749678c930", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/88536602b05fb08f0a0d7ff9b05ee4749678c930.diff" + }, + "templating@f37cdd6": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f37cdd6f8bd4ba74fc6bfe354a3e5df6fa14228b", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f37cdd6f8bd4ba74fc6bfe354a3e5df6fa14228b.diff" + }, + "templating@e7aa5c8": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e7aa5c82f59f3eb89fcff0ffd974c202491c923c", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e7aa5c82f59f3eb89fcff0ffd974c202491c923c.diff" + }, + "templating@e5bd434": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e5bd434255938dc8d223cc1840e1ab99557fe390", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e5bd434255938dc8d223cc1840e1ab99557fe390.diff" + }, + "templating@dcd10ca": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "dcd10caebb2be2ab33586469cb9543d259899112", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/dcd10caebb2be2ab33586469cb9543d259899112.diff" + }, + "templating@b34d25d": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b34d25d4c94a2c5a1ca2ea8c632e8c0b33251f0c", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b34d25d4c94a2c5a1ca2ea8c632e8c0b33251f0c.diff" + }, + "templating@f1a9929": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f1a9929fbc4af2602edc8d65d459ff3faa713f51", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f1a9929fbc4af2602edc8d65d459ff3faa713f51.diff" + }, + "templating@91a12be": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "91a12be029e3403d5ee70875c731b26fdd1ca8ac", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/91a12be029e3403d5ee70875c731b26fdd1ca8ac.diff" + }, + "templating@b04e3aa": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b04e3aa907668c9a8d706d8a49269045ef64b377", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b04e3aa907668c9a8d706d8a49269045ef64b377.diff" + }, + "templating@a91084c": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "a91084c25f6dcf0ce83e00248329642c7e28f2ad", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/a91084c25f6dcf0ce83e00248329642c7e28f2ad.diff" + }, + "templating@f7733e1": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f7733e14bf7c49d78d2c6811f3e0851d6aac0b53", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f7733e14bf7c49d78d2c6811f3e0851d6aac0b53.diff" + }, + "templating@3942ccb": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "3942ccb2e81015f7b95734dfcf35e1010e339226", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/3942ccb2e81015f7b95734dfcf35e1010e339226.diff" + }, + "templating@000bfca": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "000bfca48a571a2fff374e46ad97375657957a51", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/000bfca48a571a2fff374e46ad97375657957a51.diff" + }, + "templating@79351e9": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "79351e9079c05cc3bca884e075f0f5b6e6b9c33e", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/79351e9079c05cc3bca884e075f0f5b6e6b9c33e.diff" + }, + "templating@e381e73": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e381e7331261281badbf53175c4142232dbe81d6", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e381e7331261281badbf53175c4142232dbe81d6.diff" + }, + "templating@c4af218": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "c4af218f99786fa510fbbff5dd63c6fcad5536ae", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/c4af218f99786fa510fbbff5dd63c6fcad5536ae.diff" + }, + "templating@9b5ac70": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "9b5ac707dfd82b5586aa609991e1b1b335b9e625", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/9b5ac707dfd82b5586aa609991e1b1b335b9e625.diff" + }, + "templating@f6ce6aa": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f6ce6aae2abff2fabd976989e51c364c2c9fded9", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f6ce6aae2abff2fabd976989e51c364c2c9fded9.diff" + }, + "templating@6a849d5": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "6a849d521b565ab86b179a6fb06d3cb10825638d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/6a849d521b565ab86b179a6fb06d3cb10825638d.diff" + }, + "templating@d91bd6c": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "d91bd6c8677f897b9bcaac265a5d4dced672cbff", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/d91bd6c8677f897b9bcaac265a5d4dced672cbff.diff" + }, + "templating@e1c12b5": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e1c12b58c5066caef9b5a701cce304119a3b2001", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e1c12b58c5066caef9b5a701cce304119a3b2001.diff" + }, + "templating@83a700d": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "83a700d2aa6852f958a04c539e79980fb63fc05c", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/83a700d2aa6852f958a04c539e79980fb63fc05c.diff" + }, + "templating@62f5f31": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "62f5f31a00e72d0a0317e2e70a74110c97216999", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/62f5f31a00e72d0a0317e2e70a74110c97216999.diff" + }, + "templating@56695be": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "56695beaa867f8a8eb6f59097ccada533f3710e5", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/56695beaa867f8a8eb6f59097ccada533f3710e5.diff" + }, + "templating@987157f": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "987157fe7b5c1ae6110f522fa5aa94eeb937a6d1", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/987157fe7b5c1ae6110f522fa5aa94eeb937a6d1.diff" + }, + "templating@deb53e2": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "deb53e2ebf218096b2e4ad384c7d94df78e29afb", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/deb53e2ebf218096b2e4ad384c7d94df78e29afb.diff" + }, + "templating@c1a147c": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "c1a147c24e58f88c286a1796b85dad33b9e9c72b", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/c1a147c24e58f88c286a1796b85dad33b9e9c72b.diff" + }, + "templating@d196d3e": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "d196d3e64b0de79f3e82a01c2ff8b2e8dd99bf78", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/d196d3e64b0de79f3e82a01c2ff8b2e8dd99bf78.diff" + }, + "templating@0756f96": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "0756f9688a803dcb64f966180d7b61922d76576e", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/0756f9688a803dcb64f966180d7b61922d76576e.diff" + }, + "templating@9419d16": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "9419d1639f772fe7a0e396f5744ef319cb3fce11", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/9419d1639f772fe7a0e396f5744ef319cb3fce11.diff" + }, + "templating@9a6a837": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "9a6a837a37d42c6e58802f8e99a996c363c53976", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/9a6a837a37d42c6e58802f8e99a996c363c53976.diff" + }, + "templating@122b363": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "122b3637731d43f1f7bdb3fcb25399e11a85d909", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/122b3637731d43f1f7bdb3fcb25399e11a85d909.diff" + }, + "templating@b7ec64f": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b7ec64f138ebb11f0ed07d58c40d5b475ec079fb", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b7ec64f138ebb11f0ed07d58c40d5b475ec079fb.diff" + }, + "templating@8b17d41": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "8b17d413ee3ce445ee837c7973ddb50d7881fdfd", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/8b17d413ee3ce445ee837c7973ddb50d7881fdfd.diff" + }, + "templating@6bf67e6": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "6bf67e6d84b87a97c4ac123625208ba005763027", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/6bf67e6d84b87a97c4ac123625208ba005763027.diff" + }, + "templating@06f5915": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "06f59159446d55e882763a12762ea55419f470b4", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/06f59159446d55e882763a12762ea55419f470b4.diff" + }, + "templating@4811a95": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "4811a9533df8cc95f3e0f91583c89e4eb5491700", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/4811a9533df8cc95f3e0f91583c89e4eb5491700.diff" + }, + "templating@e34f843": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e34f84331fa712f22d0dc8ec789835620a481097", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e34f84331fa712f22d0dc8ec789835620a481097.diff" + }, + "templating@af3486b": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "af3486b9ca0d8e973173db113d09e5bb2e68ece2", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/af3486b9ca0d8e973173db113d09e5bb2e68ece2.diff" + }, + "templating@31d7490": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "31d74907394562fd9d5466106d7dfa3ea2868397", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/31d74907394562fd9d5466106d7dfa3ea2868397.diff" + }, + "templating@f1dc072": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f1dc072ccf59c3fd82a5eed5b9b833d033f12ac7", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f1dc072ccf59c3fd82a5eed5b9b833d033f12ac7.diff" + }, + "templating@0896113": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "08961137da9bfe83dde3abfc9b6ef226e1dc6a66", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/08961137da9bfe83dde3abfc9b6ef226e1dc6a66.diff" + }, + "templating@92877dd": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "92877ddcf86d89a4dd8f0c4bb558fe7bdc36eef8", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/92877ddcf86d89a4dd8f0c4bb558fe7bdc36eef8.diff" + }, + "templating@901881b": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "901881b6c8cbd27d93c923bbed304edb1fa5ed5f", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/901881b6c8cbd27d93c923bbed304edb1fa5ed5f.diff" + }, + "templating@258701a": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "258701af1001ecc7037c44c730786f21855bcfee", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/258701af1001ecc7037c44c730786f21855bcfee.diff" + }, + "templating@7dce33e": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7dce33e174203496554e610a5711b6b220065dd7", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7dce33e174203496554e610a5711b6b220065dd7.diff" + }, + "templating@a861186": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "a86118608ad1ba12cf99c329510546fa39552568", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/a86118608ad1ba12cf99c329510546fa39552568.diff" + }, + "templating@7e39dc7": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7e39dc706be0d618759b68d1bf8802bfac65d77d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7e39dc706be0d618759b68d1bf8802bfac65d77d.diff" + }, + "templating@a70b993": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "a70b993dc61bd090891a3a30d2c4ba3754b715ad", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/a70b993dc61bd090891a3a30d2c4ba3754b715ad.diff" + }, + "templating@0c75dc9": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "0c75dc9a6f8b74c238e62c97aa9ae9d733222044", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/0c75dc9a6f8b74c238e62c97aa9ae9d733222044.diff" + }, + "templating@2f661c8": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "2f661c814ca3281fa149bd60309e66d2c3aff045", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/2f661c814ca3281fa149bd60309e66d2c3aff045.diff" + }, + "templating@34fffb5": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "34fffb5c4c3943ea155cdd8c88a5a1d1007a877e", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/34fffb5c4c3943ea155cdd8c88a5a1d1007a877e.diff" + }, + "templating@b483bf5": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b483bf59ca8a245b5bf8bad6760d9d1aecc3466d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b483bf59ca8a245b5bf8bad6760d9d1aecc3466d.diff" + }, + "templating@f957b13": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f957b135672195edfd98ef44da15a33dddffd35b", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f957b135672195edfd98ef44da15a33dddffd35b.diff" + }, + "templating@d913801": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "d9138019e05f2c387acd711e4a6746b95a396497", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/d9138019e05f2c387acd711e4a6746b95a396497.diff" + }, + "templating@a5cfe2f": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "a5cfe2fb4bf7c2fb13cbb99081a961599714441c", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/a5cfe2fb4bf7c2fb13cbb99081a961599714441c.diff" + }, + "templating@ba08e9c": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "ba08e9c6ad25bff28504489eca0d4fe06be2ff40", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/ba08e9c6ad25bff28504489eca0d4fe06be2ff40.diff" + }, + "templating@853b858": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "853b8586ba2e99701f8d8a2185ddad815ea60fe8", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/853b8586ba2e99701f8d8a2185ddad815ea60fe8.diff" + }, + "templating@4e8960a": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "4e8960a67d0d474adeac5b095d364d37d6fe2be6", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/4e8960a67d0d474adeac5b095d364d37d6fe2be6.diff" + }, + "templating@953ad16": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "953ad16c40b654e89098bb504561e258c7890f28", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/953ad16c40b654e89098bb504561e258c7890f28.diff" + }, + "templating@97a3783": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "97a3783fb65add30464cc81e469b2d12145d453d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/97a3783fb65add30464cc81e469b2d12145d453d.diff" + }, + "templating@bcf27d1": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "bcf27d15646b5cef4806e900e436a3e9b97ab403", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/bcf27d15646b5cef4806e900e436a3e9b97ab403.diff" + }, + "templating@1c7a76e": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "1c7a76e53b07d7eabb570e5190fdc039993d629d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/1c7a76e53b07d7eabb570e5190fdc039993d629d.diff" + }, + "templating@1309155": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "1309155117abe44288e8ff2acb19d0205d8efa98", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/1309155117abe44288e8ff2acb19d0205d8efa98.diff" + }, + "templating@4fd4718": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "4fd47184545821bbca0ef2dfb7ffd323ab50663b", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/4fd47184545821bbca0ef2dfb7ffd323ab50663b.diff" + }, + "templating@ab5efea": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "ab5efea38b7009ef1b37041cca3f7c856a73c6db", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/ab5efea38b7009ef1b37041cca3f7c856a73c6db.diff" + }, + "templating@5ed5ce8": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "5ed5ce81bce6ecf827028801ee16c202d0574a42", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/5ed5ce81bce6ecf827028801ee16c202d0574a42.diff" + }, + "templating@2995ec4": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "2995ec4ed64c1b7df7f1a4af72e79040bf507b2a", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/2995ec4ed64c1b7df7f1a4af72e79040bf507b2a.diff" + }, + "templating@054e3da": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "054e3dae2a0d18343175f0774f15cd6e75a5441a", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/054e3dae2a0d18343175f0774f15cd6e75a5441a.diff" + }, + "templating@1b8b725": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "1b8b7255c127612570a91833424919c869ca7dad", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/1b8b7255c127612570a91833424919c869ca7dad.diff" + }, + "templating@bbd8b09": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "bbd8b09f7535b818b0924a405c1fcdb5ecf11ec3", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/bbd8b09f7535b818b0924a405c1fcdb5ecf11ec3.diff" + }, + "templating@791a389": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "791a389797e0d7fc230bca3b08e125eacfcc94ee", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/791a389797e0d7fc230bca3b08e125eacfcc94ee.diff" + }, + "templating@80848b3": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "80848b3d0a3dc679ad43c05cbf49e9e31e25d0a6", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/80848b3d0a3dc679ad43c05cbf49e9e31e25d0a6.diff" + }, + "winforms@dc6c73b": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "dc6c73b54eab862d0ff4130ad8c2ae06e6b41d9d", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/dc6c73b54eab862d0ff4130ad8c2ae06e6b41d9d.diff" + }, + "winforms@e998107": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "e99810718c1c330e0f6ff2c6e836c71afad97d3d", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/e99810718c1c330e0f6ff2c6e836c71afad97d3d.diff" + }, + "winforms@fdb43c8": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "fdb43c86a4e556a3e98b54fb1cd34685660b171b", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/fdb43c86a4e556a3e98b54fb1cd34685660b171b.diff" + }, + "winforms@d65e8b0": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "d65e8b04a4d56f728b34012026a2bd4c83277f56", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/d65e8b04a4d56f728b34012026a2bd4c83277f56.diff" + }, + "winforms@7ea6398": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "7ea6398101ace0f8014a08f4cba0448c15985716", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/7ea6398101ace0f8014a08f4cba0448c15985716.diff" + }, + "winforms@a4d6573": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "a4d65732527b4274283860df541a0f7b60e4d38f", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/a4d65732527b4274283860df541a0f7b60e4d38f.diff" + }, + "winforms@2846f02": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "2846f02430611fda9f0e1ef8934b19b14d3485f9", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/2846f02430611fda9f0e1ef8934b19b14d3485f9.diff" + }, + "winforms@8e560d0": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "8e560d0c0344a3a22e5400cad0af15c7c542394b", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/8e560d0c0344a3a22e5400cad0af15c7c542394b.diff" + }, + "winforms@6ff69e6": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "6ff69e664855aab95d8911bf4adaa725f1bc4fef", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/6ff69e664855aab95d8911bf4adaa725f1bc4fef.diff" + }, + "winforms@9e5fbe8": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "9e5fbe82d4b4d0ae142d2b15a29627a20e502773", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/9e5fbe82d4b4d0ae142d2b15a29627a20e502773.diff" + }, + "winforms@d7b99bf": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "d7b99bf06c735bae4123ab1cd4eeb67f78caf27a", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/d7b99bf06c735bae4123ab1cd4eeb67f78caf27a.diff" + }, + "winforms@290d8bb": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "290d8bbda75754ee43986b66323798c292194b29", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/290d8bbda75754ee43986b66323798c292194b29.diff" + }, + "winforms@82ed134": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "82ed134cac74a00f8644770b9b1343a272fd2bae", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/82ed134cac74a00f8644770b9b1343a272fd2bae.diff" + }, + "winforms@c83a1bd": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "c83a1bdb737a8995d4fb0b1fd0a90c2f6d785bfd", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/c83a1bdb737a8995d4fb0b1fd0a90c2f6d785bfd.diff" + }, + "winforms@e98325a": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "e98325ab519d8a78f5f3b9387b6d88bedc339bb0", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/e98325ab519d8a78f5f3b9387b6d88bedc339bb0.diff" + }, + "winforms@1dfc02d": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "1dfc02def05132be646087dcce3abae6b2b6ee54", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/1dfc02def05132be646087dcce3abae6b2b6ee54.diff" + }, + "winforms@f3422f9": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "f3422f95aacde9b6faee2c1fe6d1a9e5a20cef4c", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/f3422f95aacde9b6faee2c1fe6d1a9e5a20cef4c.diff" + }, + "winforms@94b12d1": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "94b12d18b5295b18779988f81ef11fa102392087", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/94b12d18b5295b18779988f81ef11fa102392087.diff" + }, + "winforms@7297dbc": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "7297dbc703d096017d07e45bd8aa3effb77887b4", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/7297dbc703d096017d07e45bd8aa3effb77887b4.diff" + }, + "winforms@88c709b": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "88c709b118c8820ac257bf62eb96ff1530902ed4", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/88c709b118c8820ac257bf62eb96ff1530902ed4.diff" + }, + "winforms@4b63688": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "4b63688f8aa4125b18dfc04f0ee4b4f204f5fc52", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/4b63688f8aa4125b18dfc04f0ee4b4f204f5fc52.diff" + }, + "winforms@065dd5f": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "065dd5fcb55d9b732c16d7d21238db2381fa5499", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/065dd5fcb55d9b732c16d7d21238db2381fa5499.diff" + }, + "winforms@f8ef19c": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "f8ef19c448ff39155608cd48df0c74043f783ecb", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/f8ef19c448ff39155608cd48df0c74043f783ecb.diff" + }, + "winforms@86616a8": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "86616a88560d62105f88d6f7f598b13208a5bfb7", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/86616a88560d62105f88d6f7f598b13208a5bfb7.diff" + }, + "winforms@6f9c433": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "6f9c4338754649de458d7a0e5db3b2b00fc8c6a6", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/6f9c4338754649de458d7a0e5db3b2b00fc8c6a6.diff" + }, + "winforms@f75ac9a": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "f75ac9a7e9051d6c5e2728f0dfc2f629454afa73", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/f75ac9a7e9051d6c5e2728f0dfc2f629454afa73.diff" + }, + "winforms@6735caf": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "6735caf8ee8ffc6e334595a25aff3f648796fb2f", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/6735caf8ee8ffc6e334595a25aff3f648796fb2f.diff" + }, + "winforms@1082ecc": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "1082eccb8fb24112f11454339ca753d1013a75e6", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/1082eccb8fb24112f11454339ca753d1013a75e6.diff" + }, + "wpf@cdd7f11": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "cdd7f1100892ac9677d36c273b81a8178d6cb2b3", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/cdd7f1100892ac9677d36c273b81a8178d6cb2b3.diff" + }, + "wpf@d943aee": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "d943aeed94296fe8375262f388eae81d09c7035b", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/d943aeed94296fe8375262f388eae81d09c7035b.diff" + }, + "wpf@f407361": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "f4073618245e20b2c0b4178f49001f821270e282", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/f4073618245e20b2c0b4178f49001f821270e282.diff" + }, + "wpf@9e5051a": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "9e5051a7f70f2b0441687ccf6e37bdd343b0c90c", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/9e5051a7f70f2b0441687ccf6e37bdd343b0c90c.diff" + }, + "wpf@4fd3660": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "4fd3660c0f359c2d5505e155d0a6c9f5f2c57a76", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/4fd3660c0f359c2d5505e155d0a6c9f5f2c57a76.diff" + }, + "wpf@55362c4": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "55362c44cc282b69db6677ad61d58a3c8c191587", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/55362c44cc282b69db6677ad61d58a3c8c191587.diff" + }, + "wpf@24e938e": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "24e938ec3d1ed418e6d8eba80bc8def098e8a075", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/24e938ec3d1ed418e6d8eba80bc8def098e8a075.diff" + }, + "wpf@7b906fa": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "7b906fa0ebcf8d5d65e440752eea1eb9ceaf8996", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/7b906fa0ebcf8d5d65e440752eea1eb9ceaf8996.diff" + }, + "wpf@a9a1b14": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "a9a1b146e0453283f8721cc01566ae6b89526ef8", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/a9a1b146e0453283f8721cc01566ae6b89526ef8.diff" + }, + "wpf@3eeab6e": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "3eeab6e7956c91fff95889ec1a13e67b0f3593ae", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/3eeab6e7956c91fff95889ec1a13e67b0f3593ae.diff" + }, + "wpf@6972bbc": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "6972bbcfc747289771fa7a2c66e1225a73a5f10f", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/6972bbcfc747289771fa7a2c66e1225a73a5f10f.diff" + }, + "wpf@8b3b0b3": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "8b3b0b3d7c7299cea02a2935973857473f68e023", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/8b3b0b3d7c7299cea02a2935973857473f68e023.diff" + }, + "wpf@2e982f6": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "2e982f64e3db2129755ea8481aadf64d86023824", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/2e982f64e3db2129755ea8481aadf64d86023824.diff" + }, + "wpf@6e3b3d9": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "6e3b3d9ca22dbc89ab1d26ad80118f27df816fdc", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/6e3b3d9ca22dbc89ab1d26ad80118f27df816fdc.diff" + }, + "wpf@a56320a": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "a56320a1c552933f42d1feb9dbcf2df7ff086cce", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/a56320a1c552933f42d1feb9dbcf2df7ff086cce.diff" + }, + "wpf@9484c1c": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "9484c1c170c5b03f6b8e2b4132c9e13d2be1286c", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/9484c1c170c5b03f6b8e2b4132c9e13d2be1286c.diff" + }, + "dotnet@8b24ff4": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "8b24ff4c8312b7cd6e026a8cfea62c6af408b255", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/8b24ff4c8312b7cd6e026a8cfea62c6af408b255.diff" + }, + "dotnet@73edf32": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "73edf32f163e0f871258311bbfee37d49daa92af", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/73edf32f163e0f871258311bbfee37d49daa92af.diff" + }, + "dotnet@f69203c": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "f69203cfd4d103877f90f4f3447ec1a0b46df352", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/f69203cfd4d103877f90f4f3447ec1a0b46df352.diff" + }, + "dotnet@ecb6d9d": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "ecb6d9d75fd09e6421ee10f70657d574d19b3944", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/ecb6d9d75fd09e6421ee10f70657d574d19b3944.diff" + }, + "dotnet@a457158": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "a45715813e06ebddbd79d4f65c499a126c7a31ef", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/a45715813e06ebddbd79d4f65c499a126c7a31ef.diff" + }, + "dotnet@d3ae6e9": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "d3ae6e959e05c8817ef3057ac587e749d36afade", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/d3ae6e959e05c8817ef3057ac587e749d36afade.diff" + }, + "dotnet@c6946a8": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "c6946a8f76faa66bff351e1316eff81b41c90224", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/c6946a8f76faa66bff351e1316eff81b41c90224.diff" + }, + "dotnet@c463141": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "c4631417caea5d5f72d63619dbf5ea1634b26716", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/c4631417caea5d5f72d63619dbf5ea1634b26716.diff" + }, + "dotnet@7a05b89": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "7a05b893962264500f3d73b2b633fe896a9b44e2", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/7a05b893962264500f3d73b2b633fe896a9b44e2.diff" + }, + "dotnet@5b3fa07": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "5b3fa0749024d683a091aa06b2080f58340faa69", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/5b3fa0749024d683a091aa06b2080f58340faa69.diff" + }, + "dotnet@9cbf747": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "9cbf747fc6c2bf3b2416a38ae8495bda23792266", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/9cbf747fc6c2bf3b2416a38ae8495bda23792266.diff" + }, + "dotnet@9b01a55": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "9b01a55687d0f8a1b51f664014c647d87304208a", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/9b01a55687d0f8a1b51f664014c647d87304208a.diff" + }, + "dotnet@c7efe30": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "c7efe30730ed1014a9c7e718c4bd825b81b341f5", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/c7efe30730ed1014a9c7e718c4bd825b81b341f5.diff" + }, + "dotnet@e921c3d": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "e921c3d511279a7ed37f83dbd346019c5b3ffc0e", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/e921c3d511279a7ed37f83dbd346019c5b3ffc0e.diff" + }, + "dotnet@561e25b": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "561e25b2550ff7598d066e276272f274dcb7c9a7", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/561e25b2550ff7598d066e276272f274dcb7c9a7.diff" + }, + "dotnet@2615092": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "2615092a05c1f505f603fb4b389f7e38a1ad66fa", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/2615092a05c1f505f603fb4b389f7e38a1ad66fa.diff" + }, + "dotnet@36ea4de": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "36ea4de4a4409ace6bdf48c2dae2b6713f47c1b9", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/36ea4de4a4409ace6bdf48c2dae2b6713f47c1b9.diff" + }, + "dotnet@99f8332": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "99f833287ea37479368616d1de055453ac5643a8", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/99f833287ea37479368616d1de055453ac5643a8.diff" + }, + "dotnet@d9499bf": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "d9499bf3f2202585d5a1b6b9d7bdea9be12a9342", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/d9499bf3f2202585d5a1b6b9d7bdea9be12a9342.diff" + }, + "dotnet@9efe2b7": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "9efe2b70238fbb8d6a0ac5630e5404850fbfdb36", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/9efe2b70238fbb8d6a0ac5630e5404850fbfdb36.diff" + }, + "dotnet@93f3a33": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "93f3a33bb8c84ba42bc0654aef5c6002ec3e2509", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/93f3a33bb8c84ba42bc0654aef5c6002ec3e2509.diff" + }, + "dotnet@db38f08": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "db38f08708f1dea67c441a9586ff191e9efa785d", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/db38f08708f1dea67c441a9586ff191e9efa785d.diff" + }, + "dotnet@205078e": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "205078e7394ea4691e900ef674784f4ec7f775cc", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/205078e7394ea4691e900ef674784f4ec7f775cc.diff" + }, + "dotnet@e2ab8e7": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "e2ab8e74afde756e1d66e39a05bf5de4c7f3f7d3", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/e2ab8e74afde756e1d66e39a05bf5de4c7f3f7d3.diff" + }, + "dotnet@1fe064f": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "1fe064f67ae550e241ec34e9fa9261bd85b5844c", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/1fe064f67ae550e241ec34e9fa9261bd85b5844c.diff" + }, + "dotnet@cee323e": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "cee323e4510cfc76797c46fd4e8f8116edd4e2db", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/cee323e4510cfc76797c46fd4e8f8116edd4e2db.diff" + }, + "dotnet@f9f6ec2": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "f9f6ec2fc5a0947a1996e29da8187ad67d472984", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/f9f6ec2fc5a0947a1996e29da8187ad67d472984.diff" + }, + "dotnet@f494a49": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "f494a49ac7497bdde8623eba7acd75ebc18f14fe", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/f494a49ac7497bdde8623eba7acd75ebc18f14fe.diff" + }, + "dotnet@95a45c6": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "95a45c6885524317b783224082abf717239dff56", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/95a45c6885524317b783224082abf717239dff56.diff" + }, + "dotnet@491bbab": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "491bbab262d2f8179cf5f5651bc0689d9c12739a", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/491bbab262d2f8179cf5f5651bc0689d9c12739a.diff" + }, + "dotnet@d2f30e6": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "d2f30e67c93c1314ef9e9e3fe31f7074779ddd52", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/d2f30e67c93c1314ef9e9e3fe31f7074779ddd52.diff" + }, + "dotnet@44f7171": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "44f717137f37d3b75e99001d94de16d0188dd7eb", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/44f717137f37d3b75e99001d94de16d0188dd7eb.diff" + }, + "dotnet@17aaf56": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "17aaf561af94555a773922804c08d84420767fef", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/17aaf561af94555a773922804c08d84420767fef.diff" + }, + "dotnet@7535708": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "7535708a0413f28d73acfd77c742e272a4efcc0e", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/7535708a0413f28d73acfd77c742e272a4efcc0e.diff" + }, + "dotnet@6e01e62": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "6e01e622d4e3a501d258d6a38868e2391f7726f9", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/6e01e622d4e3a501d258d6a38868e2391f7726f9.diff" + }, + "dotnet@9d2430d": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "9d2430d02c3cb8086f6ec0ee345d6406819f8480", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/9d2430d02c3cb8086f6ec0ee345d6406819f8480.diff" + }, + "dotnet@9cbaa7e": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "9cbaa7edfde9f0cca76eefb14352f3c21e27e1e7", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/9cbaa7edfde9f0cca76eefb14352f3c21e27e1e7.diff" + }, + "dotnet@2b330ce": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "2b330ceb84daa38dbbc91eeffd8e2f75fcd8cacf", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/2b330ceb84daa38dbbc91eeffd8e2f75fcd8cacf.diff" + }, + "dotnet@51587e2": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "51587e2f3d5f86ca27184a6b5e8a778841d05b31", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/51587e2f3d5f86ca27184a6b5e8a778841d05b31.diff" + }, + "dotnet@605aaa9": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "605aaa9cd39a623ab4057bf18f89f8c1c12fce24", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/605aaa9cd39a623ab4057bf18f89f8c1c12fce24.diff" + }, + "dotnet@5d0ff92": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "5d0ff9248152371091e929c199e8d39583f01091", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/5d0ff9248152371091e929c199e8d39583f01091.diff" + }, + "dotnet@debd236": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "debd236427ff86bd22d9f3f2eeaea704e9d8872e", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/debd236427ff86bd22d9f3f2eeaea704e9d8872e.diff" + }, + "dotnet@a40fded": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "a40fdeda67bf0c25bd0b984717c832f7a058c424", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/a40fdeda67bf0c25bd0b984717c832f7a058c424.diff" + }, + "dotnet@c4221be": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "c4221be622e58eae845f10c6e6583205a40a51e3", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/c4221be622e58eae845f10c6e6583205a40a51e3.diff" + }, + "dotnet@352ee4c": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "352ee4cde5ef7c91a591c19faa517d3c81b24d3a", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/352ee4cde5ef7c91a591c19faa517d3c81b24d3a.diff" + }, + "dotnet@0f9b4fe": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "0f9b4feec391e7787b37ed1a61b8466f4a5f9729", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/0f9b4feec391e7787b37ed1a61b8466f4a5f9729.diff" + }, + "dotnet@ed58d9a": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "ed58d9a52d40d126be921003a82c93e1288130b5", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/ed58d9a52d40d126be921003a82c93e1288130b5.diff" + }, + "dotnet@f03ea81": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "f03ea813c3ccdaeb7ce7959e5291f32b44b50d04", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/f03ea813c3ccdaeb7ce7959e5291f32b44b50d04.diff" + }, + "dotnet@ee56b9a": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "ee56b9a0106c983775a0691bde4a4a988f4351d3", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/ee56b9a0106c983775a0691bde4a4a988f4351d3.diff" + }, + "dotnet@4f6fd25": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4f6fd2511d464af90003d1e8d531f0c2d1312cb9", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4f6fd2511d464af90003d1e8d531f0c2d1312cb9.diff" + }, + "dotnet@c12d1f5": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "c12d1f565f615d5d48ff443858a67ac148a3bd8b", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/c12d1f565f615d5d48ff443858a67ac148a3bd8b.diff" + }, + "dotnet@4c1c254": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4c1c2548faacf2102c7c3a8359a2d958f28c97f3", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4c1c2548faacf2102c7c3a8359a2d958f28c97f3.diff" + }, + "dotnet@803eb28": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "803eb28628f5623c108f1bf33504c86e19815821", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/803eb28628f5623c108f1bf33504c86e19815821.diff" + }, + "dotnet@b4ddb57": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "b4ddb578024538369fbdc9f413053bd681d9a164", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/b4ddb578024538369fbdc9f413053bd681d9a164.diff" + }, + "dotnet@bf0350c": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "bf0350cac3924f3e42ffa989df2c76da8ece3314", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/bf0350cac3924f3e42ffa989df2c76da8ece3314.diff" + }, + "dotnet@c5dbcf5": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "c5dbcf5d5f8368beaca06f2cc39f6f6af11cfc0e", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/c5dbcf5d5f8368beaca06f2cc39f6f6af11cfc0e.diff" + }, + "dotnet@591f22b": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "591f22b67e17d9fca2c67acae257124a2932bb32", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/591f22b67e17d9fca2c67acae257124a2932bb32.diff" + }, + "dotnet@86d7aba": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "86d7abad7c4d12966604b4cc64a93f62a1cd0a6e", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/86d7abad7c4d12966604b4cc64a93f62a1cd0a6e.diff" + }, + "dotnet@6c584d9": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "6c584d9ce4802d0c8ca7e586dd0999761efbb485", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/6c584d9ce4802d0c8ca7e586dd0999761efbb485.diff" + }, + "dotnet@dd9825a": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "dd9825aa898bd6f38255e8cf0d285922508a24bd", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/dd9825aa898bd6f38255e8cf0d285922508a24bd.diff" + }, + "dotnet@0697b32": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "0697b32947fb33989fe4e8357fbb8ce6f7ef155c", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/0697b32947fb33989fe4e8357fbb8ce6f7ef155c.diff" + }, + "dotnet@542fea6": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "542fea6988c173c64859bab06c9d2d100034843c", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/542fea6988c173c64859bab06c9d2d100034843c.diff" + }, + "dotnet@34a1648": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "34a1648fe82a4db2e0290769902a5087291de899", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/34a1648fe82a4db2e0290769902a5087291de899.diff" + }, + "dotnet@fb19a97": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "fb19a9736fe1fbfd110a2328938bb9429e5cfd59", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/fb19a9736fe1fbfd110a2328938bb9429e5cfd59.diff" + }, + "dotnet@646090b": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "646090b18e70dcac958f5b7be8c0af4170a5ac66", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/646090b18e70dcac958f5b7be8c0af4170a5ac66.diff" + }, + "dotnet@8103dd0": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "8103dd06c78454e497b78d2ff47ec668d42186ca", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/8103dd06c78454e497b78d2ff47ec668d42186ca.diff" + }, + "dotnet@8be2ae1": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "8be2ae1441bec4dd428335b8dc2d980541a7315a", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/8be2ae1441bec4dd428335b8dc2d980541a7315a.diff" + }, + "dotnet@1056a87": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "1056a872956c27b8861847dbc0e40fd23dcd94a3", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/1056a872956c27b8861847dbc0e40fd23dcd94a3.diff" + }, + "dotnet@5f4c69f": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "5f4c69f708466b44d4017a1fbae56140bc9688e1", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/5f4c69f708466b44d4017a1fbae56140bc9688e1.diff" + }, + "dotnet@e311f21": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "e311f219f20b9518f32c15b60cf284be155cce7b", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/e311f219f20b9518f32c15b60cf284be155cce7b.diff" + }, + "dotnet@da71424": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "da71424348a0814c50e17bad03c602afc3cec498", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/da71424348a0814c50e17bad03c602afc3cec498.diff" + }, + "dotnet@13db7a6": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "13db7a6c6b11c3246f107801b74714970bd29426", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/13db7a6c6b11c3246f107801b74714970bd29426.diff" + }, + "dotnet@7e7ab8a": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "7e7ab8af8a8921096d880968c90979825fda24b9", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/7e7ab8af8a8921096d880968c90979825fda24b9.diff" + }, + "dotnet@eca1665": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "eca16658ea4c47dabfb5a2a519a21a3f8a8f09c0", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/eca16658ea4c47dabfb5a2a519a21a3f8a8f09c0.diff" + }, + "dotnet@8cb849f": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "8cb849fd2f1935064aebffd6acb128eae6ca46bc", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/8cb849fd2f1935064aebffd6acb128eae6ca46bc.diff" + }, + "dotnet@d22e935": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "d22e93523cdf89610bd3ee7ce5533733ff2d49ea", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/d22e93523cdf89610bd3ee7ce5533733ff2d49ea.diff" + }, + "dotnet@02092ee": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "02092ee11ab52c406f98612f12e5b01026858ab4", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/02092ee11ab52c406f98612f12e5b01026858ab4.diff" + }, + "dotnet@4c361a5": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4c361a504c001d0870f531088c0f285007adeb35", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4c361a504c001d0870f531088c0f285007adeb35.diff" + }, + "dotnet@0061c2b": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "0061c2b191020c54b84b874f914bec92bb414384", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/0061c2b191020c54b84b874f914bec92bb414384.diff" + }, + "dotnet@435654e": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "435654e5061825b16b8a45ae7250cdb849a0ecdd", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/435654e5061825b16b8a45ae7250cdb849a0ecdd.diff" + }, + "dotnet@08797ec": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "08797ec284a9b6d6cdac3ee9166f94bb52bbba0b", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/08797ec284a9b6d6cdac3ee9166f94bb52bbba0b.diff" + }, + "dotnet@8abef4f": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "8abef4f45a60b0bfd82b7067a4c8d38903b8ea3b", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/8abef4f45a60b0bfd82b7067a4c8d38903b8ea3b.diff" + }, + "dotnet@c141211": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "c141211395bb21fdacc5c680d2c52c095e2ee721", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/c141211395bb21fdacc5c680d2c52c095e2ee721.diff" + }, + "dotnet@865f098": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "865f09801def155c0e8f6a14addbc82a48ebb9cd", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/865f09801def155c0e8f6a14addbc82a48ebb9cd.diff" + }, + "dotnet@6a24598": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "6a245985f3e09d4434aba4ac758841bcc96ca847", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/6a245985f3e09d4434aba4ac758841bcc96ca847.diff" + }, + "dotnet@ab3420c": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "ab3420c3bba7c2163bb5f3bcd55688974b6f5837", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/ab3420c3bba7c2163bb5f3bcd55688974b6f5837.diff" + }, + "dotnet@ca90a9c": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "ca90a9c694e4f149f919285cc0d20454520f037c", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/ca90a9c694e4f149f919285cc0d20454520f037c.diff" + }, + "dotnet@893864c": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "893864cab20c747dc7c3e6eabb48b3b103be03ed", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/893864cab20c747dc7c3e6eabb48b3b103be03ed.diff" + }, + "dotnet@cb76c30": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "cb76c30e4fca44963b44bd3d9dc17ce330963bdc", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/cb76c30e4fca44963b44bd3d9dc17ce330963bdc.diff" + }, + "dotnet@41b5534": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "41b5534fb35f8e90bbed513ab5ca7d614bf1a176", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/41b5534fb35f8e90bbed513ab5ca7d614bf1a176.diff" + }, + "dotnet@5ff448a": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "5ff448a6425ec6980e08b5c9a35e454c8a843c35", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/5ff448a6425ec6980e08b5c9a35e454c8a843c35.diff" + }, + "dotnet@0088929": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "00889291c78c95ad52f492c5a120ccbdb600c079", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/00889291c78c95ad52f492c5a120ccbdb600c079.diff" + }, + "dotnet@b9fcd94": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "b9fcd941bf605c63018e28e2d9d195827465ed0b", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/b9fcd941bf605c63018e28e2d9d195827465ed0b.diff" + }, + "dotnet@5e22ce0": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "5e22ce0686f5c7b1c5892d160d2b129dfe7fc1c9", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/5e22ce0686f5c7b1c5892d160d2b129dfe7fc1c9.diff" + }, + "dotnet@1948989": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "1948989e277a41b84849a83c57f0637d685b0f09", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/1948989e277a41b84849a83c57f0637d685b0f09.diff" + }, + "dotnet@be7bfd8": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "be7bfd8f8355c4ec763e32315e7870ffc47c16b6", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/be7bfd8f8355c4ec763e32315e7870ffc47c16b6.diff" + }, + "dotnet@9aff3e5": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "9aff3e579f295d27b8adb8ae68de22f1708d6621", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/9aff3e579f295d27b8adb8ae68de22f1708d6621.diff" + }, + "dotnet@142cdd5": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "142cdd5461c2eb32e7a01f35a5af72a0212f5aa5", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/142cdd5461c2eb32e7a01f35a5af72a0212f5aa5.diff" + }, + "dotnet@a2179ce": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "a2179ce864adb67e7639cc9322b55c2427545e0d", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/a2179ce864adb67e7639cc9322b55c2427545e0d.diff" + }, + "dotnet@e959381": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "e9593819ed84a62923fe87c8d0958025726934c3", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/e9593819ed84a62923fe87c8d0958025726934c3.diff" + }, + "dotnet@afb647c": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "afb647c559e070ce3123a7eeb61dc1bda07fd41f", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/afb647c559e070ce3123a7eeb61dc1bda07fd41f.diff" + }, + "dotnet@f7fe5df": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "f7fe5df7e4091dac0f650cea58e5d0b4acbf5808", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/f7fe5df7e4091dac0f650cea58e5d0b4acbf5808.diff" + }, + "dotnet@281ef27": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "281ef27878f6c0bf07abe7ca8944fb85618aaca2", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/281ef27878f6c0bf07abe7ca8944fb85618aaca2.diff" + }, + "dotnet@5f8ce37": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "5f8ce37be39cedc7948edb6d7481eadef8853e87", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/5f8ce37be39cedc7948edb6d7481eadef8853e87.diff" + }, + "dotnet@15791d9": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "15791d9a9a22e020417ddcd6f071cca7e228ad80", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/15791d9a9a22e020417ddcd6f071cca7e228ad80.diff" + }, + "dotnet@905a186": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "905a1861c44966a86becd40f7bf2ed25612cd751", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/905a1861c44966a86becd40f7bf2ed25612cd751.diff" + }, + "dotnet@9886077": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "98860779997368ef64c4450c3d74efc620cb8174", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/98860779997368ef64c4450c3d74efc620cb8174.diff" + }, + "dotnet@2cfc8f5": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "2cfc8f5bbd0acd7f9b39a5a96ecea4dcc58e7e3f", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/2cfc8f5bbd0acd7f9b39a5a96ecea4dcc58e7e3f.diff" + }, + "dotnet@3b3d683": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "3b3d6836ffa5ec5327d3105dfd6ac3117c072e5c", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/3b3d6836ffa5ec5327d3105dfd6ac3117c072e5c.diff" + }, + "dotnet@53ede2a": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "53ede2a08c4c1d63920ed384fd72d4e7686bc803", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/53ede2a08c4c1d63920ed384fd72d4e7686bc803.diff" + }, + "dotnet@1394de1": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "1394de12e7353caf2c2aab97fe22fb621cee5148", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/1394de12e7353caf2c2aab97fe22fb621cee5148.diff" + }, + "dotnet@a4cbc2d": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "a4cbc2dff004a13a13476f571eb00f5b90d9b532", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/a4cbc2dff004a13a13476f571eb00f5b90d9b532.diff" + }, + "dotnet@267adfa": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "267adfa9250190524e438c4909a6b26c9bf703a0", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/267adfa9250190524e438c4909a6b26c9bf703a0.diff" + }, + "dotnet@4c6f71e": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4c6f71ed5b4744b1ba78eca2d379a61c467f06fb", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4c6f71ed5b4744b1ba78eca2d379a61c467f06fb.diff" + }, + "dotnet@58ab089": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "58ab089153a45fc40c73583d48c1537ff1384d88", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/58ab089153a45fc40c73583d48c1537ff1384d88.diff" + }, + "dotnet@43760d2": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "43760d22bfcbde60d1ceaed208f7dbec86a83ef6", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/43760d22bfcbde60d1ceaed208f7dbec86a83ef6.diff" + }, + "dotnet@8d610ff": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "8d610ff9469c1813733b65fa5d01747a0dd0521c", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/8d610ff9469c1813733b65fa5d01747a0dd0521c.diff" + }, + "dotnet@9125b13": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "9125b1394d3efb03c42d9120f9eb36325e5f80b7", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/9125b1394d3efb03c42d9120f9eb36325e5f80b7.diff" + }, + "dotnet@a66d14e": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "a66d14e1fcfc6474837f9c951759d049c380bc59", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/a66d14e1fcfc6474837f9c951759d049c380bc59.diff" + }, + "dotnet@370cba6": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "370cba60b0e878c49ce0c5dcced1cf0f43d604a2", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/370cba60b0e878c49ce0c5dcced1cf0f43d604a2.diff" + }, + "dotnet@08b4f88": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "08b4f885e14c565465e1c6981021dc738d98f099", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/08b4f885e14c565465e1c6981021dc738d98f099.diff" + }, + "dotnet@c722a3a": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "c722a3a09b101b590552cbb1b834b4076f67637b", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/c722a3a09b101b590552cbb1b834b4076f67637b.diff" + }, + "dotnet@23952a4": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "23952a414528e1fc23151321cacc06dc231ab81f", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/23952a414528e1fc23151321cacc06dc231ab81f.diff" + }, + "dotnet@4395a78": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4395a78b0d41bf01140b15333d35a7dddb08f5bb", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4395a78b0d41bf01140b15333d35a7dddb08f5bb.diff" + }, + "dotnet@4c9f444": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4c9f4449966c72b1c646db69990a475b8a19b21b", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4c9f4449966c72b1c646db69990a475b8a19b21b.diff" + }, + "dotnet@e405b1f": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "e405b1f8f787a96f20acc0f6bada26dd5704e51b", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/e405b1f8f787a96f20acc0f6bada26dd5704e51b.diff" + }, + "dotnet@85f49ae": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "85f49ae616c40c738c91ee7bc738daf3cc6bebfa", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/85f49ae616c40c738c91ee7bc738daf3cc6bebfa.diff" + }, + "dotnet@1b989af": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "1b989af698e6e1267434e4d3d25116b4b188b068", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/1b989af698e6e1267434e4d3d25116b4b188b068.diff" + }, + "dotnet@60a26bb": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "60a26bbb6d7564bc4082cd45f399c3e654f44e02", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/60a26bbb6d7564bc4082cd45f399c3e654f44e02.diff" + }, + "dotnet@5568120": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "5568120d34d41323d51052ad494de61f035fd132", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/5568120d34d41323d51052ad494de61f035fd132.diff" + }, + "dotnet@681a2b1": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "681a2b1cd33bd3805b2ccbf079931f996e644a67", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/681a2b1cd33bd3805b2ccbf079931f996e644a67.diff" + }, + "dotnet@b8a322b": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "b8a322b3ca6d9d072378f687677a52810643ee94", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/b8a322b3ca6d9d072378f687677a52810643ee94.diff" + }, + "dotnet@74c3eaa": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "74c3eaad1495a8a919a58aad6dbffed21529e4ae", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/74c3eaad1495a8a919a58aad6dbffed21529e4ae.diff" + }, + "dotnet@c15a55e": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "c15a55e509d0fede3a229515bbbbdccba3a1abf6", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/c15a55e509d0fede3a229515bbbbdccba3a1abf6.diff" + }, + "dotnet@7c48c5b": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "7c48c5b7310f16fde841851e34aa9f0be1c0d294", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/7c48c5b7310f16fde841851e34aa9f0be1c0d294.diff" + }, + "dotnet@4f7fd39": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4f7fd39e780b4b0b2f1c07e7368dd2a02527e466", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4f7fd39e780b4b0b2f1c07e7368dd2a02527e466.diff" + }, + "dotnet@8a523a7": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "8a523a75f75027836cf3f7a8ae21f5023a8bd17e", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/8a523a75f75027836cf3f7a8ae21f5023a8bd17e.diff" + }, + "dotnet@df311e5": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "df311e561f7f53880dfaa4b12df0eb75da8a7bce", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/df311e561f7f53880dfaa4b12df0eb75da8a7bce.diff" + }, + "dotnet@caa18ba": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "caa18baabf28496056547129c6a4bfbf11c8a0bd", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/caa18baabf28496056547129c6a4bfbf11c8a0bd.diff" + }, + "dotnet@7f78202": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "7f78202ddb9607b9f974a3c5d10411dbb4d48a04", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/7f78202ddb9607b9f974a3c5d10411dbb4d48a04.diff" + }, + "dotnet@fb047b2": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "fb047b21cd9d3e9e58d4524d1c1ea2a4a33788a7", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/fb047b21cd9d3e9e58d4524d1c1ea2a4a33788a7.diff" + }, + "dotnet@252f779": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "252f7793357c8dc3e53acb6232124e224222948b", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/252f7793357c8dc3e53acb6232124e224222948b.diff" + }, + "dotnet@4b95540": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4b95540c28f893bdc92df3d42e5be211950c3d79", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4b95540c28f893bdc92df3d42e5be211950c3d79.diff" + }, + "dotnet@e10ada3": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "e10ada3237c5f7740818230e7d868985332eb590", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/e10ada3237c5f7740818230e7d868985332eb590.diff" + }, + "dotnet@f335787": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "f335787f98548568d306ef11825769d1557410df", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/f335787f98548568d306ef11825769d1557410df.diff" + }, + "dotnet@d9d6b9c": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "d9d6b9cf01c7a5a122ac7dfc7dae1247a23b272f", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/d9d6b9cf01c7a5a122ac7dfc7dae1247a23b272f.diff" + }, + "dotnet@b892348": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "b892348106bdc7898e113cd352ff6efda704c766", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/b892348106bdc7898e113cd352ff6efda704c766.diff" + }, + "dotnet@131a5cd": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "131a5cdd27e5181fe0dc84bf22cdddb6786c5bd1", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/131a5cdd27e5181fe0dc84bf22cdddb6786c5bd1.diff" + }, + "dotnet@856f699": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "856f69955c79a685a753283ea03701c4d04264ba", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/856f69955c79a685a753283ea03701c4d04264ba.diff" + }, + "dotnet@21d3994": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "21d39943141665df7666f286113ff39fc43a7a16", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/21d39943141665df7666f286113ff39fc43a7a16.diff" + }, + "dotnet@08e21da": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "08e21da2d882e5ae91f5fe0adf11568cb00c2d1e", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/08e21da2d882e5ae91f5fe0adf11568cb00c2d1e.diff" + }, + "dotnet@bce25ed": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "bce25ed4f3b8529ce5550e44a59efbe9ba9e4bef", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/bce25ed4f3b8529ce5550e44a59efbe9ba9e4bef.diff" + }, + "dotnet@30bf7b3": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "30bf7b358a934641d4efb0012e26d4f03b246da3", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/30bf7b358a934641d4efb0012e26d4f03b246da3.diff" + }, + "dotnet@8301b7f": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "8301b7f6edf2b41d5788651366b84753887c80ac", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/8301b7f6edf2b41d5788651366b84753887c80ac.diff" + }, + "dotnet@56dbb5a": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "56dbb5a6a0d7e01f365b6fdd14af10092ca3b626", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/56dbb5a6a0d7e01f365b6fdd14af10092ca3b626.diff" + }, + "dotnet@bebe99a": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "bebe99aee2529c25ffbfef835c70cc02ae59875d", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/bebe99aee2529c25ffbfef835c70cc02ae59875d.diff" + }, + "dotnet@86f9e88": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "86f9e8865b59d09ab526f8fd589db500510ab7d4", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/86f9e8865b59d09ab526f8fd589db500510ab7d4.diff" + }, + "dotnet@d38a3d8": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "d38a3d86221620e31a2eeeb91637f41b126f3b48", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/d38a3d86221620e31a2eeeb91637f41b126f3b48.diff" + }, + "dotnet@4230e45": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4230e45a2a328ced12d7af12004c4883fc61e111", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4230e45a2a328ced12d7af12004c4883fc61e111.diff" + }, + "dotnet@e95736f": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "e95736fe223fcbea38c903fae50e0dcfd07daf99", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/e95736fe223fcbea38c903fae50e0dcfd07daf99.diff" + }, + "dotnet@0b1d6b6": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "0b1d6b65a323ddf941a460036dd1bee6d3cc6e5a", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/0b1d6b65a323ddf941a460036dd1bee6d3cc6e5a.diff" + }, + "dotnet@4170dc2": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4170dc2d003242147aa0065dd669f7a5ac0f0135", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4170dc2d003242147aa0065dd669f7a5ac0f0135.diff" + }, + "dotnet@be4d18a": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "be4d18a35d49758c2269f8c54967a04ff2dcfeb8", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/be4d18a35d49758c2269f8c54967a04ff2dcfeb8.diff" + }, + "dotnet@5aace91": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "5aace91695c4d1979e7c65584283e1060a13e729", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/5aace91695c4d1979e7c65584283e1060a13e729.diff" + }, + "dotnet@a650f55": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "a650f5551c620b8386bf4cc401f08b05f4947753", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/a650f5551c620b8386bf4cc401f08b05f4947753.diff" + }, + "dotnet@747a8af": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "747a8af9c00fb01c96cbe215b5fc9a60f99a5ede", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/747a8af9c00fb01c96cbe215b5fc9a60f99a5ede.diff" + }, + "dotnet@81bdad2": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "81bdad2c5ef15e461e70a39473e0b98f079c4b08", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/81bdad2c5ef15e461e70a39473e0b98f079c4b08.diff" + }, + "dotnet@e2617a8": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "e2617a86b1878564f255be9aaa4c6127b427bf27", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/e2617a86b1878564f255be9aaa4c6127b427bf27.diff" + }, + "dotnet@7d1bae2": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "7d1bae26d15d95777f6ed6e93c7ce16336aeecc9", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/7d1bae26d15d95777f6ed6e93c7ce16336aeecc9.diff" + }, + "dotnet@11368ab": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "11368abb5b0db6cb7e55808344845fa799888f9a", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/11368abb5b0db6cb7e55808344845fa799888f9a.diff" + }, + "dotnet@3911028": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "3911028ad0d23877caa730c7e1ede873859e9ce7", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/3911028ad0d23877caa730c7e1ede873859e9ce7.diff" + }, + "dotnet@4a256fd": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4a256fddcd24a7e87f5c6cb71446395ce4179d31", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4a256fddcd24a7e87f5c6cb71446395ce4179d31.diff" + }, + "dotnet@7f6bb12": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "7f6bb12d679eddb06b4d768e4c120790316a4b2f", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/7f6bb12d679eddb06b4d768e4c120790316a4b2f.diff" + }, + "dotnet@a40e078": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "a40e0789da020543871fb776551c2cd7b0fbe98e", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/a40e0789da020543871fb776551c2cd7b0fbe98e.diff" + }, + "dotnet@ebc8503": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "ebc8503bf2c9083d23577f4f59534a5f3e1edb79", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/ebc8503bf2c9083d23577f4f59534a5f3e1edb79.diff" + }, + "dotnet@5902468": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "59024688febfd0fe35ce8c54cf413a4044b93d68", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/59024688febfd0fe35ce8c54cf413a4044b93d68.diff" + }, + "dotnet@1967d7a": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "1967d7a76d3911e984c0ca0503512ebbf0a523ff", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/1967d7a76d3911e984c0ca0503512ebbf0a523ff.diff" + }, + "dotnet@65db323": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "65db323b30df211f0a66ca9c5329df0d247f5e70", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/65db323b30df211f0a66ca9c5329df0d247f5e70.diff" + }, + "dotnet@4a405d7": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4a405d7eb0846560c27d0dfa27931293cb80053c", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4a405d7eb0846560c27d0dfa27931293cb80053c.diff" + }, + "dotnet@d8fa7f7": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "d8fa7f7a62276d7567dd042c229113e4bd26156d", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/d8fa7f7a62276d7567dd042c229113e4bd26156d.diff" + }, + "dotnet@5bcf877": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "5bcf8772ae2d812dabf769d156887e7b57dd215e", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/5bcf8772ae2d812dabf769d156887e7b57dd215e.diff" + }, + "dotnet@55dc39b": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "55dc39bc7a6869153f80d6041fb6af39bd00ea64", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/55dc39bc7a6869153f80d6041fb6af39bd00ea64.diff" + } + } +} \ No newline at end of file diff --git a/release-notes/11.0/preview/preview3/csharp.md b/release-notes/11.0/preview/preview3/csharp.md new file mode 100644 index 0000000000..6403c0fa16 --- /dev/null +++ b/release-notes/11.0/preview/preview3/csharp.md @@ -0,0 +1,35 @@ +# C# in .NET 11 Preview 3 - Release Notes + +C# in Preview 3 continues the Unsafe Evolution preview feature: + +- [Unsafe Evolution adds clearer warnings and errors](#unsafe-evolution-adds-clearer-warnings-and-errors) +- [Breaking changes](#breaking-changes) + +## Unsafe Evolution adds clearer warnings and errors + +> Unsafe Evolution remains a preview feature in .NET 11. + +Preview 3 improves Unsafe Evolution diagnostics with clearer language-version +errors for updated memory-safety rules, better handling for `new()` constraints, +and new warnings for `unsafe` delegates +([dotnet/roslyn #82687](https://github.com/dotnet/roslyn/pull/82687), +[dotnet/roslyn #82647](https://github.com/dotnet/roslyn/pull/82647), +[dotnet/roslyn #82730](https://github.com/dotnet/roslyn/pull/82730)). The +runtime also adds supporting attributes for that feature work +([dotnet/runtime #125721](https://github.com/dotnet/runtime/pull/125721)). + +These changes clarify when Unsafe Evolution rules apply and which annotations +are required in Preview 3. + +```csharp +unsafe delegate int ReadCallback(byte* data, int length); + +// Preview 3 adds clearer diagnostics when unsafe requirements flow through +// delegate signatures and related generic constraints. +``` + +## Breaking changes + +- Advanced unsafe code may now produce new warnings or language-version errors + that make previously implicit requirements explicit. Review new diagnostics and + add `unsafe` or updated annotations where appropriate. diff --git a/release-notes/11.0/preview/preview3/efcore.md b/release-notes/11.0/preview/preview3/efcore.md new file mode 100644 index 0000000000..2c2363c253 --- /dev/null +++ b/release-notes/11.0/preview/preview3/efcore.md @@ -0,0 +1,148 @@ +# EF Core in .NET 11 Preview 3 - Release Notes + +.NET 11 Preview 3 includes new EF Core features and tooling improvements: + +- [`ChangeTracker.GetEntriesForState()` avoids extra change detection](#changetrackergetentriesforstate-avoids-extra-change-detection) +- [DbContext configuration can remove providers and add pooled factories](#dbcontext-configuration-can-remove-providers-and-add-pooled-factories) +- [Migrations get more control and clearer feedback](#migrations-get-more-control-and-clearer-feedback) +- [SQL generation removes unnecessary joins and SQL Server adds JSON APIs](#sql-generation-removes-unnecessary-joins-and-sql-server-adds-json-apis) +- [Breaking changes](#breaking-changes) +- [Bug fixes](#bug-fixes) +- [Community contributors](#community-contributors) + +EF Core updates in .NET 11: + +- [What's new in EF Core](https://learn.microsoft.com/ef/core/what-is-new/ef-core-11.0/whatsnew) + + + +## `ChangeTracker.GetEntriesForState()` avoids extra change detection + +A new `GetEntriesForState()` API on `ChangeTracker` returns tracked entities in +selected states without forcing a `DetectChanges()` pass first +([dotnet/efcore #37847](https://github.com/dotnet/efcore/pull/37847)). This +avoids an extra `DetectChanges()` pass in long-lived contexts or high-volume +change-tracking code where you already know which states you care about. + +```csharp +var modified = context.ChangeTracker.GetEntriesForState( + added: false, + modified: true, + deleted: false, + unchanged: false); +``` + +## DbContext configuration can remove providers and add pooled factories + +Preview 3 adds `RemoveDbContext()` / `RemoveExtension()` helpers for removing a +previous provider configuration before registering a different one +([dotnet/efcore #37891](https://github.com/dotnet/efcore/pull/37891)). This is +especially useful in tests, where a production SQL Server configuration is +replaced with an in-memory or SQLite provider. + +`AddPooledDbContextFactory()` also now has a parameterless overload, +so configuration that already lives in `ConfigureDbContext()` no +longer needs the extra setup boilerplate +([dotnet/efcore #37144](https://github.com/dotnet/efcore/pull/37144)). + +```csharp +services.RemoveDbContext(); +services.AddPooledDbContextFactory(); +``` + +## Migrations get more control and clearer feedback + +EF Core now lets you exclude a foreign-key constraint from migrations with +`ExcludeForeignKeyFromMigrations(true)` +([dotnet/efcore #37815](https://github.com/dotnet/efcore/pull/37815)). The model +snapshot also records the latest migration ID so EF can detect diverged +migration trees earlier in team workflows +([dotnet/efcore #37689](https://github.com/dotnet/efcore/pull/37689)). + +```csharp +modelBuilder.Entity() + .HasOne(o => o.Customer) + .WithMany(c => c.Orders) + .ExcludeForeignKeyFromMigrations(true); +``` + +## SQL generation removes unnecessary joins and SQL Server adds JSON APIs + +Query generation for to-one joins now removes unnecessary joins in common cases +([dotnet/efcore #37819](https://github.com/dotnet/efcore/pull/37819)). SQL +Server 2025 now supports `EF.Functions.JsonContains()`, and the earlier +preview API has been renamed to `JsonPathExists()` for clarity +([dotnet/efcore #37714](https://github.com/dotnet/efcore/pull/37714), +[dotnet/efcore #37732](https://github.com/dotnet/efcore/pull/37732)). + + + +## Breaking changes + +- `RelationalEventId.MigrationsNotFound` now throws by default instead of only + logging an informational message + ([dotnet/efcore #37839](https://github.com/dotnet/efcore/pull/37839)). +- `Microsoft.EntityFrameworkCore.Tools` and + `Microsoft.EntityFrameworkCore.Tasks` no longer depend directly on + `Microsoft.EntityFrameworkCore.Design` + ([dotnet/efcore #37837](https://github.com/dotnet/efcore/pull/37837)). +- Preview 3 updates `Microsoft.Data.SqlClient` to 7.0.0. Review the SqlClient + release notes if you depend on provider-specific SQL Server behavior + ([dotnet/efcore #37949](https://github.com/dotnet/efcore/pull/37949)). + +## Bug fixes + +- Improved error reporting when spatial or `HierarchyId` types are used without + the expected provider configuration + ([dotnet/efcore #37733](https://github.com/dotnet/efcore/pull/37733)). +- Added a clearer exception when a property's backing field cannot be found + ([dotnet/efcore #36720](https://github.com/dotnet/efcore/pull/36720)). +- Fixed `ExecuteUpdate` over scalar projections and nullable-value-type + `SetProperty` lambdas + ([dotnet/efcore #37791](https://github.com/dotnet/efcore/pull/37791), + [dotnet/efcore #37975](https://github.com/dotnet/efcore/pull/37975)). +- Fixed several JSON and complex-property edge cases in query translation and + migrations + ([dotnet/efcore #37823](https://github.com/dotnet/efcore/pull/37823), + [dotnet/efcore #37855](https://github.com/dotnet/efcore/pull/37855), + [dotnet/efcore #37965](https://github.com/dotnet/efcore/pull/37965)). + +## Community contributors + +Thank you to the community contributors who made EF Core better in this preview: + +- [@aw0lid (Ahmed Waleed)](https://github.com/aw0lid): Fixed a memory leak in + `LazyLoaderFactory` where strong references to `ILazyLoader` instances + prevented garbage collection during large-scale data streaming + ([dotnet/efcore #37977](https://github.com/dotnet/efcore/pull/37977)) +- [@bkarakaya01 (Burak Karakaya)](https://github.com/bkarakaya01): Added + parameterless `AddPooledDbContextFactory` overloads for cleaner DI + registration with `ConfigureDbContext` + ([dotnet/efcore #37144](https://github.com/dotnet/efcore/pull/37144)) +- [@JoasE](https://github.com/JoasE): Implemented Cosmos DB complex-properties + query support and follow-up fixes + ([dotnet/efcore #37577](https://github.com/dotnet/efcore/pull/37577), + [dotnet/efcore #37919](https://github.com/dotnet/efcore/pull/37919), + [dotnet/efcore #37941](https://github.com/dotnet/efcore/pull/37941), + [dotnet/efcore #37971](https://github.com/dotnet/efcore/pull/37971)) +- [@kawasaniac (Arkadii)](https://github.com/kawasaniac): Added descriptive + exceptions when a property's backing field cannot be found during compiled + model code generation + ([dotnet/efcore #36720](https://github.com/dotnet/efcore/pull/36720)) +- [@MarkMpn (Mark Carrington)](https://github.com/MarkMpn): Enabled foreign key + support in Dataverse reverse engineering + ([dotnet/efcore #34689](https://github.com/dotnet/efcore/pull/34689)) +- [@Pmyl (Giulio Caprino)](https://github.com/Pmyl): Fixed persisting null + optional complex properties with default values + ([dotnet/efcore #37944](https://github.com/dotnet/efcore/pull/37944)) +- [@SimonCropp (Simon Cropp)](https://github.com/SimonCropp): Updated + `Microsoft.Data.SqlClient` to 7.0.0 + ([dotnet/efcore #37949](https://github.com/dotnet/efcore/pull/37949)) +- [@yykkibbb](https://github.com/yykkibbb): Improved error reporting for spatial + and `HierarchyId` types without provider configured and ensured `HasPrecision` + is always scaffolded for `decimal` columns in SQL Server + ([dotnet/efcore #37733](https://github.com/dotnet/efcore/pull/37733), + [dotnet/efcore #37730](https://github.com/dotnet/efcore/pull/37730)) diff --git a/release-notes/11.0/preview/preview3/features.json b/release-notes/11.0/preview/preview3/features.json new file mode 100644 index 0000000000..e70c6c197b --- /dev/null +++ b/release-notes/11.0/preview/preview3/features.json @@ -0,0 +1,44452 @@ +{ + "release_version": "11.0.0-preview.3", + "release_date": "", + "changes": [ + { + "id": "arcade@7db333e", + "repo": "arcade", + "title": "Change PackageReference to PackageDownload in SymStore.targets", + "url": "https://github.com/dotnet/arcade/pull/16526", + "commit": "dotnet@8b24ff4", + "is_security": false, + "local_repo_commit": "arcade@7db333e" + }, + { + "id": "arcade@620febd", + "repo": "arcade", + "title": "Remove NETStandard1X workarounds", + "url": "https://github.com/dotnet/arcade/pull/16528", + "commit": "dotnet@73edf32", + "is_security": false, + "local_repo_commit": "arcade@620febd" + }, + { + "id": "arcade@ae9439c", + "repo": "arcade", + "title": "Support for hotfix version tag", + "url": "https://github.com/dotnet/arcade/pull/16529", + "commit": "dotnet@73edf32", + "is_security": false, + "local_repo_commit": "arcade@ae9439c" + }, + { + "id": "arcade@90215a0", + "repo": "arcade", + "title": "Add CMake File API support to Microsoft.DotNet.CMake.Sdk", + "url": "https://github.com/dotnet/arcade/pull/16233", + "commit": "dotnet@73edf32", + "is_security": false, + "local_repo_commit": "arcade@90215a0" + }, + { + "id": "arcade@973af93", + "repo": "arcade", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/arcade/pull/16533", + "commit": "dotnet@f69203c", + "is_security": false, + "local_repo_commit": "arcade@973af93" + }, + { + "id": "arcade@da9054c", + "repo": "arcade", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/arcade/pull/16538", + "commit": "dotnet@f69203c", + "is_security": false, + "local_repo_commit": "arcade@da9054c" + }, + { + "id": "arcade@4055041", + "repo": "arcade", + "title": "Remove error suppression from tar archive commands", + "url": "https://github.com/dotnet/arcade/pull/16532", + "commit": "dotnet@f69203c", + "is_security": false, + "local_repo_commit": "arcade@4055041" + }, + { + "id": "arcade@c5560fb", + "repo": "arcade", + "title": "Re-enable running of Helix tests", + "url": "https://github.com/dotnet/arcade/pull/16536", + "commit": "dotnet@f69203c", + "is_security": false, + "local_repo_commit": "arcade@c5560fb" + }, + { + "id": "arcade@88c8808", + "repo": "arcade", + "title": "Fix internal queue name for Windows 11", + "url": "https://github.com/dotnet/arcade/pull/16539", + "commit": "dotnet@f69203c", + "is_security": false, + "local_repo_commit": "arcade@88c8808" + }, + { + "id": "arcade@55a078a", + "repo": "arcade", + "title": "Install lldb-dev on Alpine for SOS", + "url": "https://github.com/dotnet/arcade/pull/16540", + "commit": "dotnet@ecb6d9d", + "is_security": false, + "local_repo_commit": "arcade@55a078a" + }, + { + "id": "arcade@0831f9c", + "repo": "arcade", + "title": "Fix bug in conditionaltheory for xunit3", + "url": "https://github.com/dotnet/arcade/pull/16537", + "commit": "dotnet@ecb6d9d", + "is_security": false, + "local_repo_commit": "arcade@0831f9c" + }, + { + "id": "arcade@9ebf1ae", + "repo": "arcade", + "title": "Add macOS leg to PR validation pipeline", + "url": "https://github.com/dotnet/arcade/pull/16530", + "commit": "dotnet@a457158", + "is_security": false, + "local_repo_commit": "arcade@9ebf1ae" + }, + { + "id": "arcade@e95f9ba", + "repo": "arcade", + "title": "Update MSTest to 4.1.0", + "url": "https://github.com/dotnet/arcade/pull/16544", + "commit": "dotnet@a457158", + "is_security": false, + "local_repo_commit": "arcade@e95f9ba" + }, + { + "id": "arcade@4e3c44c", + "repo": "arcade", + "title": "Update xunit.v3 to latest", + "url": "https://github.com/dotnet/arcade/pull/16545", + "commit": "dotnet@d3ae6e9", + "is_security": false, + "local_repo_commit": "arcade@4e3c44c" + }, + { + "id": "arcade@5ce557e", + "repo": "arcade", + "title": "use SpecialFolder.UserProfile instead of USERPROFILE", + "url": "https://github.com/dotnet/arcade/pull/15135", + "commit": "dotnet@d3ae6e9", + "is_security": false, + "local_repo_commit": "arcade@5ce557e" + }, + { + "id": "arcade@38eefc1", + "repo": "arcade", + "title": "Remove Microsoft.NET.Test.Sdk version override from Versions.props", + "url": "https://github.com/dotnet/arcade/pull/16546", + "commit": "dotnet@d3ae6e9", + "is_security": false, + "local_repo_commit": "arcade@38eefc1" + }, + { + "id": "arcade@13e9f77", + "repo": "arcade", + "title": "Use GA VS2026 image instead of preview scouting", + "url": "https://github.com/dotnet/arcade/pull/16547", + "commit": "dotnet@c6946a8", + "is_security": false, + "local_repo_commit": "arcade@13e9f77" + }, + { + "id": "arcade@55c97a4", + "repo": "arcade", + "title": "Add Renovate support", + "url": "https://github.com/dotnet/arcade/pull/16504", + "commit": "dotnet@c6946a8", + "is_security": false, + "local_repo_commit": "arcade@55c97a4" + }, + { + "id": "arcade@31161de", + "repo": "arcade", + "title": "[main] Update dependencies from dotnet/xharness", + "url": "https://github.com/dotnet/arcade/pull/16553", + "commit": "dotnet@c463141", + "is_security": false, + "local_repo_commit": "arcade@31161de" + }, + { + "id": "arcade@a27769f", + "repo": "arcade", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/arcade/pull/16549", + "commit": "dotnet@c463141", + "is_security": false, + "local_repo_commit": "arcade@a27769f" + }, + { + "id": "arcade@0392c5d", + "repo": "arcade", + "title": "Sync xunit v3 versions in Directory.Packages.props with DefaultVersions.props", + "url": "https://github.com/dotnet/arcade/pull/16554", + "commit": "dotnet@7a05b89", + "is_security": false, + "local_repo_commit": "arcade@0392c5d" + }, + { + "id": "arcade@d531dad", + "repo": "arcade", + "title": "Add OpenBSD cross-build support", + "url": "https://github.com/dotnet/arcade/pull/16561", + "commit": "dotnet@7a05b89", + "is_security": false, + "local_repo_commit": "arcade@d531dad" + }, + { + "id": "arcade@0560b9e", + "repo": "arcade", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/arcade/pull/16562", + "commit": "dotnet@7a05b89", + "is_security": false, + "local_repo_commit": "arcade@0560b9e" + }, + { + "id": "arcade@a2dd169", + "repo": "arcade", + "title": "Move arcade to RTM version of System.CommandLine (2.0.3)", + "url": "https://github.com/dotnet/arcade/pull/16560", + "commit": "dotnet@7a05b89", + "is_security": false, + "local_repo_commit": "arcade@a2dd169" + }, + { + "id": "arcade@139fa4e", + "repo": "arcade", + "title": "[main] Remove MaestroAccessToken from publish logs YAML", + "url": "https://github.com/dotnet/arcade/pull/16563", + "commit": "dotnet@7a05b89", + "is_security": false, + "local_repo_commit": "arcade@139fa4e" + }, + { + "id": "arcade@c62e947", + "repo": "arcade", + "title": "Remove @self references from Azure Pipeline template nodes and documentation", + "url": "https://github.com/dotnet/arcade/pull/16568", + "commit": "dotnet@5b3fa07", + "is_security": false, + "local_repo_commit": "arcade@c62e947" + }, + { + "id": "arcade@c70a2fb", + "repo": "arcade", + "title": "Fix root fs dir on OpenBSD", + "url": "https://github.com/dotnet/arcade/pull/16570", + "commit": "dotnet@5b3fa07", + "is_security": false, + "local_repo_commit": "arcade@c70a2fb" + }, + { + "id": "arcade@539e874", + "repo": "arcade", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/arcade/pull/16565", + "commit": "dotnet@5b3fa07", + "is_security": false, + "local_repo_commit": "arcade@539e874" + }, + { + "id": "arcade@d6da516", + "repo": "arcade", + "title": "Document array support in Known Issues ErrorMessage/ErrorPattern sections", + "url": "https://github.com/dotnet/arcade/pull/16573", + "commit": "dotnet@9cbf747", + "is_security": false, + "local_repo_commit": "arcade@d6da516" + }, + { + "id": "arcade@e100c45", + "repo": "arcade", + "title": "Restore @self references in eng/** (non-common) and azure-pipelines* YAML files", + "url": "https://github.com/dotnet/arcade/pull/16572", + "commit": "dotnet@9cbf747", + "is_security": false, + "local_repo_commit": "arcade@e100c45" + }, + { + "id": "arcade@3a872e7", + "repo": "arcade", + "title": "Add label input to backport workflow", + "url": "https://github.com/dotnet/arcade/pull/16575", + "commit": "dotnet@9cbf747", + "is_security": false, + "local_repo_commit": "arcade@3a872e7" + }, + { + "id": "arcade@97f5d8a", + "repo": "arcade", + "title": "Remove self-reference from microbuild install templates", + "url": "https://github.com/dotnet/arcade/pull/16558", + "commit": "dotnet@9cbf747", + "is_security": false, + "local_repo_commit": "arcade@97f5d8a" + }, + { + "id": "arcade@2e8c949", + "repo": "arcade", + "title": "Quickly check if runtime is installed", + "url": "https://github.com/dotnet/arcade/pull/16580", + "commit": "dotnet@9cbf747", + "is_security": false, + "local_repo_commit": "arcade@2e8c949" + }, + { + "id": "arcade@763f00f", + "repo": "arcade", + "title": "Remove SDL from Arcade entirely", + "url": "https://github.com/dotnet/arcade/pull/16582", + "commit": "dotnet@9cbf747", + "is_security": false, + "local_repo_commit": "arcade@763f00f" + }, + { + "id": "arcade@566903f", + "repo": "arcade", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/arcade/pull/16578", + "commit": "dotnet@9cbf747", + "is_security": false, + "local_repo_commit": "arcade@566903f" + }, + { + "id": "arcade@12f2683", + "repo": "arcade", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/arcade/pull/16588", + "commit": "dotnet@9cbf747", + "is_security": false, + "local_repo_commit": "arcade@12f2683" + }, + { + "id": "arcade@9c14c8e", + "repo": "arcade", + "title": "Add non-portable RID for OpenBSD", + "url": "https://github.com/dotnet/arcade/pull/16564", + "commit": "dotnet@9cbf747", + "is_security": false, + "local_repo_commit": "arcade@9c14c8e" + }, + { + "id": "arcade@f7f177c", + "repo": "arcade", + "title": "Various Renovate improvements", + "url": "https://github.com/dotnet/arcade/pull/16569", + "commit": "dotnet@9b01a55", + "is_security": false, + "local_repo_commit": "arcade@f7f177c" + }, + { + "id": "arcade@b536294", + "repo": "arcade", + "title": "Add support for WarnNotAsError", + "url": "https://github.com/dotnet/arcade/pull/16592", + "commit": "dotnet@9b01a55", + "is_security": false, + "local_repo_commit": "arcade@b536294" + }, + { + "id": "arcade@bcbb938", + "repo": "arcade", + "title": "Add Aspire aka.ms links for install scripts", + "url": "https://github.com/dotnet/arcade/pull/16593", + "commit": "dotnet@9b01a55", + "is_security": false, + "local_repo_commit": "arcade@bcbb938" + }, + { + "id": "arcade@eab76e0", + "repo": "arcade", + "title": "SignCheck: report file and archive context on verification errors", + "url": "https://github.com/dotnet/arcade/pull/16595", + "commit": "dotnet@c7efe30", + "is_security": false, + "local_repo_commit": "arcade@eab76e0" + }, + { + "id": "arcade@3290ea9", + "repo": "arcade", + "title": "Add xunitv3assert", + "url": "https://github.com/dotnet/arcade/pull/16555", + "commit": "dotnet@c7efe30", + "is_security": false, + "local_repo_commit": "arcade@3290ea9" + }, + { + "id": "arcade@f7f7469", + "repo": "arcade", + "title": "Fix NU1009 CPM conflict for xunit.v3.core", + "url": "https://github.com/dotnet/arcade/pull/16608", + "commit": "dotnet@e921c3d", + "is_security": false, + "local_repo_commit": "arcade@f7f7469" + }, + { + "id": "arcade@b7e0a87", + "repo": "arcade", + "title": "Fix SignCheck EndOfStreamException on truncated PE files", + "url": "https://github.com/dotnet/arcade/pull/16607", + "commit": "dotnet@e921c3d", + "is_security": false, + "local_repo_commit": "arcade@b7e0a87" + }, + { + "id": "arcade@0512309", + "repo": "arcade", + "title": "Fix invalid reference to Renovate log path", + "url": "https://github.com/dotnet/arcade/pull/16610", + "commit": "dotnet@e921c3d", + "is_security": false, + "local_repo_commit": "arcade@0512309" + }, + { + "id": "arcade@edfa48e", + "repo": "arcade", + "title": "Add test to detect CPM conflicts with implicit PackageReferences", + "url": "https://github.com/dotnet/arcade/pull/16609", + "commit": "dotnet@e921c3d", + "is_security": false, + "local_repo_commit": "arcade@edfa48e" + }, + { + "id": "arcade@0e34dd8", + "repo": "arcade", + "title": "Revert \"Fix SignCheck EndOfStreamException on truncated PE files\"", + "url": "https://github.com/dotnet/arcade/pull/16613", + "commit": "dotnet@e921c3d", + "is_security": false, + "local_repo_commit": "arcade@0e34dd8" + }, + { + "id": "arcade@853171a", + "repo": "arcade", + "title": "Fix circular init in AOT equality comparer causing NRE on Mono", + "url": "https://github.com/dotnet/arcade/pull/16615", + "commit": "dotnet@e921c3d", + "is_security": false, + "local_repo_commit": "arcade@853171a" + }, + { + "id": "arcade@e385506", + "repo": "arcade", + "title": "Add VS 18.7-18.10 publishing", + "url": "https://github.com/dotnet/arcade/pull/16617", + "commit": "dotnet@561e25b", + "is_security": false, + "local_repo_commit": "arcade@e385506" + }, + { + "id": "arcade@feffa5f", + "repo": "arcade", + "title": "Fix VS NuGet restore loop caused by VSSDK property name conflict", + "url": "https://github.com/dotnet/arcade/pull/16594", + "commit": "dotnet@2615092", + "is_security": false, + "local_repo_commit": "arcade@feffa5f" + }, + { + "id": "arcade@291fa08", + "repo": "arcade", + "title": "Skip CG in SourceIndexStage1", + "url": "https://github.com/dotnet/arcade/pull/16619", + "commit": "dotnet@2615092", + "is_security": false, + "local_repo_commit": "arcade@291fa08" + }, + { + "id": "aspnetcore@bb01877", + "repo": "aspnetcore", + "title": "Add test helper and test cases to validate EventSource IDs", + "url": "https://github.com/dotnet/aspnetcore/pull/65408", + "commit": "dotnet@36ea4de", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@bb01877", + "labels": [ + "area-networking" + ] + }, + { + "id": "aspnetcore@3a973a5", + "repo": "aspnetcore", + "title": "Fix memory leaks in CertificateManager by improving certificate disposal patterns", + "url": "https://github.com/dotnet/aspnetcore/pull/63321", + "commit": "dotnet@36ea4de", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@3a973a5", + "labels": [ + "area-commandlinetools", + "pending-ci-rerun", + "Attention: Shared Code Modified" + ] + }, + { + "id": "aspnetcore@18b430f", + "repo": "aspnetcore", + "title": "Update dependencies from build 301564", + "url": "https://github.com/dotnet/aspnetcore/pull/65414", + "commit": "dotnet@36ea4de", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@18b430f", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@e626393", + "repo": "aspnetcore", + "title": "[release/10.0] AppContext for HttpSys CBT hardening", + "url": "https://github.com/dotnet/aspnetcore/pull/65387", + "commit": "dotnet@36ea4de", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@e626393", + "labels": [ + "area-networking" + ] + }, + { + "id": "aspnetcore@e356396", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/backport-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65422", + "commit": "dotnet@36ea4de", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@e356396", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@423a70f", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/inter-branch-merge-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65423", + "commit": "dotnet@36ea4de", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@423a70f", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@6bf45a7", + "repo": "aspnetcore", + "title": "fix SignalR http2 SkipNegotiation error", + "url": "https://github.com/dotnet/aspnetcore/pull/62940", + "commit": "dotnet@36ea4de", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@6bf45a7", + "labels": [ + "area-signalr", + "community-contribution", + "pending-ci-rerun" + ] + }, + { + "id": "aspnetcore@9ea8e2c", + "repo": "aspnetcore", + "title": "Update dependencies from build 301803", + "url": "https://github.com/dotnet/aspnetcore/pull/65428", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@9ea8e2c", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@105e935", + "repo": "aspnetcore", + "title": "Unquarantine HealthCheckPublisherHostedServiceTest.RunAsync_WaitsForCompletion_Single_RegistrationParameters", + "url": "https://github.com/dotnet/aspnetcore/pull/65404", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@105e935", + "labels": [ + "area-healthchecks", + "test-fixed" + ] + }, + { + "id": "aspnetcore@cb0202b", + "repo": "aspnetcore", + "title": "Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimization build 20260213.1", + "url": "https://github.com/dotnet/aspnetcore/pull/65441", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@cb0202b", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@f90e099", + "repo": "aspnetcore", + "title": "[main] (deps): Bump src/submodules/googletest", + "url": "https://github.com/dotnet/aspnetcore/pull/65421", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@f90e099", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@2027040", + "repo": "aspnetcore", + "title": "Add E2E tests for webworker template", + "url": "https://github.com/dotnet/aspnetcore/pull/65405", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@2027040", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@9bf9db6", + "repo": "aspnetcore", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/aspnetcore/pull/65431", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@9bf9db6", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@45f8aea", + "repo": "aspnetcore", + "title": "Make report-green.yml run on agentless server job", + "url": "https://github.com/dotnet/aspnetcore/pull/65444", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@45f8aea", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@16198d1", + "repo": "aspnetcore", + "title": "Update browser testing dependencies: Selenium 4.40.0, Playwright 1.57.0", + "url": "https://github.com/dotnet/aspnetcore/pull/65304", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@16198d1", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@7426595", + "repo": "aspnetcore", + "title": "Update dependencies from https://github.com/dotnet/extensions build 20260210.2", + "url": "https://github.com/dotnet/aspnetcore/pull/65437", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@7426595", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@06efb5f", + "repo": "aspnetcore", + "title": "Update dependencies from build 302061", + "url": "https://github.com/dotnet/aspnetcore/pull/65448", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@06efb5f", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@af25746", + "repo": "aspnetcore", + "title": "dont throw on having x-content-length", + "url": "https://github.com/dotnet/aspnetcore/pull/65445", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@af25746", + "labels": [ + "area-networking" + ] + }, + { + "id": "aspnetcore@637a267", + "repo": "aspnetcore", + "title": "Fix race in RST_STREAM_IncompleteRequest tests", + "url": "https://github.com/dotnet/aspnetcore/pull/65454", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@637a267", + "labels": [ + "area-networking" + ] + }, + { + "id": "aspnetcore@df6c8e9", + "repo": "aspnetcore", + "title": "Skip indexer properties in validation source generator", + "url": "https://github.com/dotnet/aspnetcore/pull/65432", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@df6c8e9", + "labels": [ + "area-minimal", + "feature-validation" + ] + }, + { + "id": "aspnetcore@5967f89", + "repo": "aspnetcore", + "title": "Fix Http3 connection close metric sometimes remaining Unset", + "url": "https://github.com/dotnet/aspnetcore/pull/65398", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@5967f89", + "labels": [ + "feature-kestrel", + "area-networking" + ] + }, + { + "id": "aspnetcore@74725c1", + "repo": "aspnetcore", + "title": "Port CI analysis Copilot skill and default it to aspnetcore", + "url": "https://github.com/dotnet/aspnetcore/pull/65464", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@74725c1", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@6e3747e", + "repo": "aspnetcore", + "title": "Update dependencies from build 302104", + "url": "https://github.com/dotnet/aspnetcore/pull/65455", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@6e3747e", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@97c3db9", + "repo": "aspnetcore", + "title": "Fix flaky Http2 test by using consistent ConnectionEndReason for closed streams", + "url": "https://github.com/dotnet/aspnetcore/pull/65456", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@97c3db9", + "labels": [ + "area-networking" + ] + }, + { + "id": "aspnetcore@5ad0444", + "repo": "aspnetcore", + "title": "feat: adds support for OpenAPI 3.2.0", + "url": "https://github.com/dotnet/aspnetcore/pull/65415", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@5ad0444", + "labels": [ + "community-contribution", + "feature-openapi", + "area-minimal" + ], + "score": 3, + "score_reason": "Important to OpenAPI users, but already covered in Preview 2 and not a new Preview 3 state change.", + "score_breakdown": { + "breadth": 1, + "reader_value": 1, + "clarity": 1 + }, + "breaking_changes": true + }, + { + "id": "aspnetcore@13dcbb4", + "repo": "aspnetcore", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/aspnetcore/pull/65467", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@13dcbb4", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@c0c593c", + "repo": "aspnetcore", + "title": "Update dependencies from build 302589", + "url": "https://github.com/dotnet/aspnetcore/pull/65480", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@c0c593c", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@ae50886", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/inter-branch-merge-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65486", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@ae50886", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@e742462", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/backport-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65487", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@e742462", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@53bb265", + "repo": "aspnetcore", + "title": "infra(main): proper branch name for mirroring within azdo", + "url": "https://github.com/dotnet/aspnetcore/pull/65472", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@53bb265", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@01bf0df", + "repo": "aspnetcore", + "title": "Fix Copilot not working in forks", + "url": "https://github.com/dotnet/aspnetcore/pull/65492", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@01bf0df", + "labels": [ + "area-infrastructure", + "community-contribution" + ] + }, + { + "id": "aspnetcore@8cf6a95", + "repo": "aspnetcore", + "title": "[main] (deps): Bump src/submodules/googletest", + "url": "https://github.com/dotnet/aspnetcore/pull/65485", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@8cf6a95", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@162a1f7", + "repo": "aspnetcore", + "title": "Update dependencies from build 302768", + "url": "https://github.com/dotnet/aspnetcore/pull/65496", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@162a1f7", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@7a2262d", + "repo": "aspnetcore", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/aspnetcore/pull/65500", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@7a2262d", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@93830e4", + "repo": "aspnetcore", + "title": "Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimization build 20260217.2", + "url": "https://github.com/dotnet/aspnetcore/pull/65507", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@93830e4", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@db50e77", + "repo": "aspnetcore", + "title": "upgrade cswin32 + fix build", + "url": "https://github.com/dotnet/aspnetcore/pull/65516", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@db50e77", + "labels": [ + "area-networking" + ] + }, + { + "id": "aspnetcore@2cf27e2", + "repo": "aspnetcore", + "title": "Support zstd Content-Encoding", + "url": "https://github.com/dotnet/aspnetcore/pull/65479", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@2cf27e2", + "labels": [ + "community-contribution", + "area-middleware" + ], + "score": 7, + "score_reason": "Zstandard response compression is easy to explain and useful to many API and web-app authors.", + "score_breakdown": { + "breadth": 3, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "aspnetcore@072d32a", + "repo": "aspnetcore", + "title": "Fixing JsonPatchDocument bug", + "url": "https://github.com/dotnet/aspnetcore/pull/65470", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@072d32a", + "labels": [ + "feature-json-patch", + "community-contribution", + "area-minimal" + ] + }, + { + "id": "aspnetcore@eec80e1", + "repo": "aspnetcore", + "title": "Update dependencies from build 303072", + "url": "https://github.com/dotnet/aspnetcore/pull/65520", + "commit": "dotnet@99f8332", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@eec80e1", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@c2ea7d8", + "repo": "aspnetcore", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/aspnetcore/pull/65534", + "commit": "dotnet@d9499bf", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@c2ea7d8", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@eb9e4b5", + "repo": "aspnetcore", + "title": "Add FrameworkReference to Microsoft.Aspnetcore.App for non-SharedFx projects with SharedFx-only references", + "url": "https://github.com/dotnet/aspnetcore/pull/65478", + "commit": "dotnet@d9499bf", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@eb9e4b5", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@8dc0b08", + "repo": "aspnetcore", + "title": "Update milestones for p3", + "url": "https://github.com/dotnet/aspnetcore/pull/65548", + "commit": "dotnet@d9499bf", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@8dc0b08", + "labels": [ + "needs-area-label" + ] + }, + { + "id": "aspnetcore@eec60ba", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/backport-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65552", + "commit": "dotnet@9efe2b7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@eec60ba", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@0f4a109", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/inter-branch-merge-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65553", + "commit": "dotnet@9efe2b7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@0f4a109", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@7350993", + "repo": "aspnetcore", + "title": "[main] (deps): Bump actions/upload-artifact from 6.0.0 to 7.0.0", + "url": "https://github.com/dotnet/aspnetcore/pull/65554", + "commit": "dotnet@9efe2b7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@7350993", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@83c5b49", + "repo": "aspnetcore", + "title": "Fix transitive framework references in sample projects", + "url": "https://github.com/dotnet/aspnetcore/pull/65560", + "commit": "dotnet@9efe2b7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@83c5b49", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@680a049", + "repo": "aspnetcore", + "title": "Fix SignalR StackExchangeRedis tests", + "url": "https://github.com/dotnet/aspnetcore/pull/65564", + "commit": "dotnet@9efe2b7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@680a049", + "labels": [ + "area-signalr" + ] + }, + { + "id": "aspnetcore@01129f7", + "repo": "aspnetcore", + "title": "Fix WebTransport test hang by draining all settings before CONNECT request", + "url": "https://github.com/dotnet/aspnetcore/pull/65562", + "commit": "dotnet@9efe2b7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@01129f7", + "labels": [ + "area-networking" + ] + }, + { + "id": "aspnetcore@888d231", + "repo": "aspnetcore", + "title": "Fix extraneous lines in webapi .http file using source modifiers", + "url": "https://github.com/dotnet/aspnetcore/pull/65318", + "commit": "dotnet@93f3a33", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@888d231", + "labels": [ + "area-mvc", + "pending-ci-rerun" + ] + }, + { + "id": "aspnetcore@9dbfe9d", + "repo": "aspnetcore", + "title": "Fix IJSObjectReference leak in ResourceCollectionProvider", + "url": "https://github.com/dotnet/aspnetcore/pull/65606", + "commit": "dotnet@93f3a33", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@9dbfe9d", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@5f2a8c6", + "repo": "aspnetcore", + "title": "Disable scheduled workflows in forks", + "url": "https://github.com/dotnet/aspnetcore/pull/65588", + "commit": "dotnet@93f3a33", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@5f2a8c6", + "labels": [ + "area-infrastructure", + "community-contribution" + ] + }, + { + "id": "aspnetcore@9f6184c", + "repo": "aspnetcore", + "title": "Update dependencies from build 303682", + "url": "https://github.com/dotnet/aspnetcore/pull/65563", + "commit": "dotnet@db38f08", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@9f6184c", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@07f13c1", + "repo": "aspnetcore", + "title": "Update dependencies from build 304069", + "url": "https://github.com/dotnet/aspnetcore/pull/65622", + "commit": "dotnet@db38f08", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@07f13c1", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@9857de8", + "repo": "aspnetcore", + "title": "Fix `Failed to load resource: net::ERR_CONNECTION_RESET`.", + "url": "https://github.com/dotnet/aspnetcore/pull/65625", + "commit": "dotnet@db38f08", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@9857de8", + "labels": [ + "area-perf" + ] + }, + { + "id": "aspnetcore@2fbb3f3", + "repo": "aspnetcore", + "title": "Fix Wasm.Performance benchmark Kestrel.Core FileNotFoundException", + "url": "https://github.com/dotnet/aspnetcore/pull/65631", + "commit": "dotnet@db38f08", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@2fbb3f3", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@69f3533", + "repo": "aspnetcore", + "title": "Update milestones for April", + "url": "https://github.com/dotnet/aspnetcore/pull/65641", + "commit": "dotnet@db38f08", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@69f3533", + "labels": [ + "needs-area-label" + ] + }, + { + "id": "aspnetcore@4e6e8eb", + "repo": "aspnetcore", + "title": "Update dependencies from https://github.com/dotnet/extensions build 20260227.4", + "url": "https://github.com/dotnet/aspnetcore/pull/65601", + "commit": "dotnet@205078e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@4e6e8eb", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@51f852f", + "repo": "aspnetcore", + "title": "Update dependencies from build 304338", + "url": "https://github.com/dotnet/aspnetcore/pull/65644", + "commit": "dotnet@205078e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@51f852f", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@0fcd46b", + "repo": "aspnetcore", + "title": "Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimization build 20260226.1", + "url": "https://github.com/dotnet/aspnetcore/pull/65603", + "commit": "dotnet@205078e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@0fcd46b", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@d17d872", + "repo": "aspnetcore", + "title": "Add openbsd RID", + "url": "https://github.com/dotnet/aspnetcore/pull/65628", + "commit": "dotnet@205078e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@d17d872", + "labels": [ + "area-infrastructure", + "community-contribution" + ], + "score": 2, + "score_reason": "OpenBSD RID support is welcome platform work, but too niche for headline release notes.", + "score_breakdown": { + "breadth": 0, + "reader_value": 1, + "clarity": 1 + } + }, + { + "id": "aspnetcore@5c76285", + "repo": "aspnetcore", + "title": "Use Wix5 in SharedFx/Targeting Pack .msi's", + "url": "https://github.com/dotnet/aspnetcore/pull/65637", + "commit": "dotnet@205078e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@5c76285", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@552c986", + "repo": "aspnetcore", + "title": "Fix oversized record length handling in TlsListener", + "url": "https://github.com/dotnet/aspnetcore/pull/65558", + "commit": "dotnet@205078e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@552c986", + "labels": [ + "feature-kestrel", + "area-networking" + ] + }, + { + "id": "aspnetcore@4e3592e", + "repo": "aspnetcore", + "title": "Revert media type change for Newtonsoft JsonPatch package", + "url": "https://github.com/dotnet/aspnetcore/pull/65559", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@4e3592e", + "labels": [ + "feature-json-patch", + "area-minimal" + ] + }, + { + "id": "aspnetcore@ab5185d", + "repo": "aspnetcore", + "title": "Update CONTRIBUTING.md", + "url": "https://github.com/dotnet/aspnetcore/pull/65616", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@ab5185d", + "labels": [ + "area-infrastructure", + "community-contribution" + ] + }, + { + "id": "aspnetcore@6dd7f70", + "repo": "aspnetcore", + "title": "Update dependencies from build 304425", + "url": "https://github.com/dotnet/aspnetcore/pull/65657", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@6dd7f70", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@5df2824", + "repo": "aspnetcore", + "title": "Remove unnecessary cache freshness check", + "url": "https://github.com/dotnet/aspnetcore/pull/65659", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@5df2824", + "labels": [ + "area-middleware" + ] + }, + { + "id": "aspnetcore@e3bebf7", + "repo": "aspnetcore", + "title": "Fix intermittent circular dependency build failure", + "url": "https://github.com/dotnet/aspnetcore/pull/65667", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@e3bebf7", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@708d724", + "repo": "aspnetcore", + "title": "Suppress MSB3026 warnings", + "url": "https://github.com/dotnet/aspnetcore/pull/65671", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@708d724", + "labels": [ + "needs-area-label" + ] + }, + { + "id": "aspnetcore@0b12e6f", + "repo": "aspnetcore", + "title": "Restore trimming test projects serially", + "url": "https://github.com/dotnet/aspnetcore/pull/65668", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@0b12e6f", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@1c8ced0", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/backport-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65683", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@1c8ced0", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@7390100", + "repo": "aspnetcore", + "title": "[main] (deps): Bump actions/setup-node from 6.2.0 to 6.3.0", + "url": "https://github.com/dotnet/aspnetcore/pull/65685", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@7390100", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@07cd5f8", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/inter-branch-merge-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65684", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@07cd5f8", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@865dc41", + "repo": "aspnetcore", + "title": "[main] (deps): Bump src/submodules/googletest", + "url": "https://github.com/dotnet/aspnetcore/pull/65682", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@865dc41", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@ea6182a", + "repo": "aspnetcore", + "title": "Update browser testing dependencies: Selenium 4.41.0, Playwright 1.58.0", + "url": "https://github.com/dotnet/aspnetcore/pull/65679", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@ea6182a", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@42a65bf", + "repo": "aspnetcore", + "title": "Fix HelixTestRunner using the wrong version of dotnet-ef", + "url": "https://github.com/dotnet/aspnetcore/pull/65676", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@42a65bf", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@2b1cb0a", + "repo": "aspnetcore", + "title": "Fix double-publish ILLink error in BasicTestApp", + "url": "https://github.com/dotnet/aspnetcore/pull/65675", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@2b1cb0a", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@4ca3d71", + "repo": "aspnetcore", + "title": "[Blazor] Fix cache headers for Blazor resource collection endpoint", + "url": "https://github.com/dotnet/aspnetcore/pull/65513", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@4ca3d71", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@086f563", + "repo": "aspnetcore", + "title": "Port PR 65532: fix Blazor template EF migration baseline", + "url": "https://github.com/dotnet/aspnetcore/pull/65692", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@086f563", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@3d53504", + "repo": "aspnetcore", + "title": "Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-optimization build 20260303.1", + "url": "https://github.com/dotnet/aspnetcore/pull/65708", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@3d53504", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@cb2bd84", + "repo": "aspnetcore", + "title": "Fix race in RST_STREAM_IncompleteRequest_AdditionalResetFrame test", + "url": "https://github.com/dotnet/aspnetcore/pull/65715", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@cb2bd84", + "labels": [ + "area-networking" + ] + }, + { + "id": "aspnetcore@e55796c", + "repo": "aspnetcore", + "title": "Fix TempData lazy loading bugs", + "url": "https://github.com/dotnet/aspnetcore/pull/65722", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@e55796c", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@c2daa92", + "repo": "aspnetcore", + "title": "Merged PR 57695: Fix cancellation with StatefulReconnect", + "url": "https://github.com/dotnet/aspnetcore/pull/65732", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@c2daa92", + "labels": [ + "area-signalr" + ] + }, + { + "id": "aspnetcore@1fd3d6a", + "repo": "aspnetcore", + "title": "Don't wait for control stream before processing requests", + "url": "https://github.com/dotnet/aspnetcore/pull/65399", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@1fd3d6a", + "labels": [ + "feature-kestrel", + "area-networking" + ], + "score": 5, + "score_reason": "Lower HTTP/3 first-request latency is a clear perf story, but smaller than the top preview features.", + "score_breakdown": { + "breadth": 2, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "aspnetcore@2a414e9", + "repo": "aspnetcore", + "title": "Fix null reference error in Virtualize component", + "url": "https://github.com/dotnet/aspnetcore/pull/65207", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@2a414e9", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@8842e08", + "repo": "aspnetcore", + "title": "fix http/2 header payload padding parsing", + "url": "https://github.com/dotnet/aspnetcore/pull/65729", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@8842e08", + "labels": [ + "feature-kestrel", + "area-networking" + ] + }, + { + "id": "aspnetcore@ae31b22", + "repo": "aspnetcore", + "title": "Bump serialize-javascript and @rollup/plugin-terser", + "url": "https://github.com/dotnet/aspnetcore/pull/65757", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@ae31b22", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "javascript", + "dependencies", + "build-ops" + ] + }, + { + "id": "aspnetcore@0efd832", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/backport-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65769", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@0efd832", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@8338afb", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/inter-branch-merge-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65770", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@8338afb", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@c892018", + "repo": "aspnetcore", + "title": "fix: Q/HPackDecoder limit validation after decoding", + "url": "https://github.com/dotnet/aspnetcore/pull/65771", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@c892018", + "labels": [ + "area-networking" + ] + }, + { + "id": "aspnetcore@810928e", + "repo": "aspnetcore", + "title": "Issue triage agent via agentic-workflow", + "url": "https://github.com/dotnet/aspnetcore/pull/65540", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@810928e", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@f8410f8", + "repo": "aspnetcore", + "title": "[main] (deps): Bump src/submodules/googletest", + "url": "https://github.com/dotnet/aspnetcore/pull/65768", + "commit": "dotnet@e2ab8e7", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@f8410f8", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@773e0c2", + "repo": "aspnetcore", + "title": "Fix typo in ResponseDrainingTests comment", + "url": "https://github.com/dotnet/aspnetcore/pull/65218", + "commit": "dotnet@1fe064f", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@773e0c2", + "labels": [ + "community-contribution", + "pending-ci-rerun", + "area-networking" + ] + }, + { + "id": "aspnetcore@a200b84", + "repo": "aspnetcore", + "title": "Migrate IIS in-process handler from DEFAULT_STACK_SIZE to System.Threading.DefaultStackSize", + "url": "https://github.com/dotnet/aspnetcore/pull/65737", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@a200b84", + "labels": [ + "feature-iis", + "area-networking" + ] + }, + { + "id": "aspnetcore@d77c401", + "repo": "aspnetcore", + "title": "Fix Virtualize scroll container detection with horizontal overflow", + "url": "https://github.com/dotnet/aspnetcore/pull/65744", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@d77c401", + "labels": [ + "area-blazor", + "feature-blazor-virtualization" + ] + }, + { + "id": "aspnetcore@245440c", + "repo": "aspnetcore", + "title": "fix HTTP/2: Content-Length mismatch with trailers split across CONTINUATION frames", + "url": "https://github.com/dotnet/aspnetcore/pull/65765", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@245440c", + "labels": [ + "area-networking" + ] + }, + { + "id": "aspnetcore@dedf040", + "repo": "aspnetcore", + "title": "Unquarantine `RoutePatternCompletionProviderTests`", + "url": "https://github.com/dotnet/aspnetcore/pull/65782", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@dedf040", + "labels": [ + "area-routing" + ] + }, + { + "id": "aspnetcore@ff3ea50", + "repo": "aspnetcore", + "title": "update roles:all", + "url": "https://github.com/dotnet/aspnetcore/pull/65780", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@ff3ea50", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@5bc9780", + "repo": "aspnetcore", + "title": "Use SetUnixFileMode for chmod in functional test", + "url": "https://github.com/dotnet/aspnetcore/pull/65790", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@5bc9780", + "labels": [ + "community-contribution", + "area-networking" + ] + }, + { + "id": "aspnetcore@7c53dac", + "repo": "aspnetcore", + "title": "Move PackageReference Update to .targets.in (imported after project)", + "url": "https://github.com/dotnet/aspnetcore/pull/65784", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@7c53dac", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@0fba831", + "repo": "aspnetcore", + "title": "Update create-pull-request action version", + "url": "https://github.com/dotnet/aspnetcore/pull/65795", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@0fba831", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@ab2e33a", + "repo": "aspnetcore", + "title": "Fix race condition in ProcessBufferedRenderBatches_WritesRenders", + "url": "https://github.com/dotnet/aspnetcore/pull/65783", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@ab2e33a", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@0807dd9", + "repo": "aspnetcore", + "title": "Update CODEOWNERS for directory ownership changes", + "url": "https://github.com/dotnet/aspnetcore/pull/65748", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@0807dd9", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@8288f56", + "repo": "aspnetcore", + "title": "Fix .devcontainer references to archived repo", + "url": "https://github.com/dotnet/aspnetcore/pull/65806", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@8288f56", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@5b89273", + "repo": "aspnetcore", + "title": "Fix 10.0 milestone for special patch", + "url": "https://github.com/dotnet/aspnetcore/pull/65818", + "commit": "dotnet@cee323e", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@5b89273", + "labels": [ + "needs-area-label" + ] + }, + { + "id": "aspnetcore@f7c186e", + "repo": "aspnetcore", + "title": "Remove transitive AspNetCore.App framework reference in trimming tests", + "url": "https://github.com/dotnet/aspnetcore/pull/65793", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@f7c186e", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@81dc76b", + "repo": "aspnetcore", + "title": "Switch default for useHostedUbuntu to false and use dnceng pool", + "url": "https://github.com/dotnet/aspnetcore/pull/64842", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@81dc76b", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@50fe923", + "repo": "aspnetcore", + "title": "fix: issue-triage agent to not post noop-issue", + "url": "https://github.com/dotnet/aspnetcore/pull/65826", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@50fe923", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@cad82f1", + "repo": "aspnetcore", + "title": "Update npm dependencies", + "url": "https://github.com/dotnet/aspnetcore/pull/65830", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@cad82f1", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@659206f", + "repo": "aspnetcore", + "title": "Add agentic workflow for quarantining/unquarantining tests", + "url": "https://github.com/dotnet/aspnetcore/pull/65716", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@659206f", + "labels": [ + "needs-area-label" + ] + }, + { + "id": "aspnetcore@65ae876", + "repo": "aspnetcore", + "title": "Fixup for quarantine workflow", + "url": "https://github.com/dotnet/aspnetcore/pull/65834", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@65ae876", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@27a9115", + "repo": "aspnetcore", + "title": "Update to latest ci-analysis skill", + "url": "https://github.com/dotnet/aspnetcore/pull/65835", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@27a9115", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@9657193", + "repo": "aspnetcore", + "title": "Allow more domains & more files for ci-analysis", + "url": "https://github.com/dotnet/aspnetcore/pull/65850", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@9657193", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@b571f34", + "repo": "aspnetcore", + "title": "Improve test harness crash detection in CI status script", + "url": "https://github.com/dotnet/aspnetcore/pull/65822", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@b571f34", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@d984f78", + "repo": "aspnetcore", + "title": "Fix Ubuntu build image", + "url": "https://github.com/dotnet/aspnetcore/pull/65867", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@d984f78", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@d601f7c", + "repo": "aspnetcore", + "title": "Test quarantine workflow follow-ups, again", + "url": "https://github.com/dotnet/aspnetcore/pull/65866", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@d601f7c", + "labels": [ + "needs-area-label" + ] + }, + { + "id": "aspnetcore@7c63bad", + "repo": "aspnetcore", + "title": "Unquarantine Http2ConnectionTests.OutputFlowControl_ConnectionAndRequestAborted_NoException", + "url": "https://github.com/dotnet/aspnetcore/pull/65862", + "commit": "dotnet@f9f6ec2", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@7c63bad", + "labels": [ + "test-failure", + "area-networking" + ] + }, + { + "id": "aspnetcore@0c878b3", + "repo": "aspnetcore", + "title": "Unquarantine HeartbeatTests.HeartbeatLoopRunsWithSpecifiedInterval", + "url": "https://github.com/dotnet/aspnetcore/pull/65865", + "commit": "dotnet@f494a49", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@0c878b3", + "labels": [ + "test-failure", + "area-networking" + ] + }, + { + "id": "aspnetcore@37375a8", + "repo": "aspnetcore", + "title": "Unquarantine OutputCacheMiddlewareTests.Locking_ExecuteAllRequestsWhenDisabled", + "url": "https://github.com/dotnet/aspnetcore/pull/65863", + "commit": "dotnet@f494a49", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@37375a8", + "labels": [ + "test-failure", + "area-middleware" + ] + }, + { + "id": "aspnetcore@7b5aa5e", + "repo": "aspnetcore", + "title": "Quarantine Http2TimeoutTests.HEADERS_ReceivedWithoutAllCONTINUATIONs_WithinRequestHeadersTimeout_AbortsConnection", + "url": "https://github.com/dotnet/aspnetcore/pull/65858", + "commit": "dotnet@f494a49", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@7b5aa5e", + "labels": [ + "test-failure", + "area-networking" + ] + }, + { + "id": "aspnetcore@0289caa", + "repo": "aspnetcore", + "title": "Quarantine TestServerTests.LongPollingWorks", + "url": "https://github.com/dotnet/aspnetcore/pull/65859", + "commit": "dotnet@f494a49", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@0289caa", + "labels": [ + "test-failure", + "area-signalr" + ] + }, + { + "id": "aspnetcore@d4edb13", + "repo": "aspnetcore", + "title": "Unquarantine LoggingConnectionMiddlewareTests.LoggingConnectionMiddlewareCanBeAddedBeforeAndAfterHttps", + "url": "https://github.com/dotnet/aspnetcore/pull/65861", + "commit": "dotnet@f494a49", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@d4edb13", + "labels": [ + "test-failure", + "area-networking" + ] + }, + { + "id": "aspnetcore@01549b2", + "repo": "aspnetcore", + "title": "Quarantine VirtualizationTest E2E tests", + "url": "https://github.com/dotnet/aspnetcore/pull/65857", + "commit": "dotnet@f494a49", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@01549b2", + "labels": [ + "test-failure", + "area-blazor" + ] + }, + { + "id": "aspnetcore@706ce53", + "repo": "aspnetcore", + "title": "Quarantine Kestrel TLS tests failing with OpenSSL error code 77", + "url": "https://github.com/dotnet/aspnetcore/pull/65856", + "commit": "dotnet@f494a49", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@706ce53", + "labels": [ + "test-failure", + "area-networking" + ] + }, + { + "id": "aspnetcore@1855c53", + "repo": "aspnetcore", + "title": "Unquarantine Razor runtime compilation tests (issue #56553)", + "url": "https://github.com/dotnet/aspnetcore/pull/65864", + "commit": "dotnet@f494a49", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@1855c53", + "labels": [ + "test-failure", + "area-mvc" + ] + }, + { + "id": "aspnetcore@d375204", + "repo": "aspnetcore", + "title": "[wasm][coreCLR] do not use mono internals", + "url": "https://github.com/dotnet/aspnetcore/pull/65029", + "commit": "dotnet@f494a49", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@d375204", + "labels": [ + "area-blazor", + "arch-wasm" + ] + }, + { + "id": "aspnetcore@ca7652f", + "repo": "aspnetcore", + "title": "Update ReasonPhrase validation", + "url": "https://github.com/dotnet/aspnetcore/pull/65797", + "commit": "dotnet@f494a49", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@ca7652f", + "labels": [ + "area-networking" + ] + }, + { + "id": "aspnetcore@83662b1", + "repo": "aspnetcore", + "title": "[main] (deps): Bump github/gh-aw-actions", + "url": "https://github.com/dotnet/aspnetcore/pull/65882", + "commit": "dotnet@95a45c6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@83662b1", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@abda9bd", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/backport-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65883", + "commit": "dotnet@95a45c6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@abda9bd", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@606caee", + "repo": "aspnetcore", + "title": "[main] (deps): Bump dotnet/arcade/.github/workflows/inter-branch-merge-base.yml", + "url": "https://github.com/dotnet/aspnetcore/pull/65884", + "commit": "dotnet@95a45c6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@606caee", + "labels": [ + "area-infrastructure", + "Type: Dependency Update :arrow_up_small:", + "build-ops" + ] + }, + { + "id": "aspnetcore@e9e6afa", + "repo": "aspnetcore", + "title": "Quarantine RazorRuntimeCompilationHostingStartupTest tests (issue #56553)", + "url": "https://github.com/dotnet/aspnetcore/pull/65881", + "commit": "dotnet@95a45c6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@e9e6afa", + "labels": [ + "test-failure", + "area-mvc" + ] + }, + { + "id": "aspnetcore@faf0ea0", + "repo": "aspnetcore", + "title": "Virtualization supports variable-height items", + "url": "https://github.com/dotnet/aspnetcore/pull/64964", + "commit": "dotnet@95a45c6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@faf0ea0", + "labels": [ + "area-blazor" + ], + "score": 8, + "score_reason": "Variable-height virtualization unlocks a very tangible Blazor scenario that many readers immediately understand.", + "score_breakdown": { + "breadth": 3, + "reader_value": 4, + "clarity": 1 + } + }, + { + "id": "aspnetcore@3dafd5c", + "repo": "aspnetcore", + "title": "[blazor] eslint", + "url": "https://github.com/dotnet/aspnetcore/pull/65896", + "commit": "dotnet@491bbab", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@3dafd5c", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@8bba19e", + "repo": "aspnetcore", + "title": "[blazor][wasm] Convert more interop to JSImport", + "url": "https://github.com/dotnet/aspnetcore/pull/65895", + "commit": "dotnet@d2f30e6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@8bba19e", + "labels": [ + "area-blazor" + ], + "score": 5, + "score_reason": "Part of a real Blazor WebAssembly performance and size story, but best grouped rather than promoted alone.", + "score_breakdown": { + "breadth": 1, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "aspnetcore@41822ee", + "repo": "aspnetcore", + "title": "[blazor][wasm] JSExport for events", + "url": "https://github.com/dotnet/aspnetcore/pull/65897", + "commit": "dotnet@d2f30e6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@41822ee", + "labels": [ + "area-blazor" + ], + "score": 5, + "score_reason": "Part of the same WASM interop cluster; useful when rolled into one story.", + "score_breakdown": { + "breadth": 1, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "aspnetcore@472d942", + "repo": "aspnetcore", + "title": "Quarantine TestServerTests.WebSocketsWorks", + "url": "https://github.com/dotnet/aspnetcore/pull/65916", + "commit": "dotnet@d2f30e6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@472d942", + "labels": [ + "test-failure", + "area-signalr" + ] + }, + { + "id": "aspnetcore@3741588", + "repo": "aspnetcore", + "title": "Fix ManagedAuthenticatedEncryptor calculations", + "url": "https://github.com/dotnet/aspnetcore/pull/65890", + "commit": "dotnet@d2f30e6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@3741588", + "labels": [ + "area-dataprotection" + ] + }, + { + "id": "aspnetcore@bf7d552", + "repo": "aspnetcore", + "title": "Quarantine Http2ConnectionTests.RequestHeaderStringReuse_MultipleStreams_KnownHeaderReused", + "url": "https://github.com/dotnet/aspnetcore/pull/65917", + "commit": "dotnet@d2f30e6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@bf7d552", + "labels": [ + "test-failure", + "area-networking" + ] + }, + { + "id": "aspnetcore@5b7bc39", + "repo": "aspnetcore", + "title": "Quarantine RazorBuildTest flaky tests (issue #56553)", + "url": "https://github.com/dotnet/aspnetcore/pull/65927", + "commit": "dotnet@d2f30e6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@5b7bc39", + "labels": [ + "test-failure", + "area-mvc" + ] + }, + { + "id": "aspnetcore@e0f509f", + "repo": "aspnetcore", + "title": "Unquarantine OpenApiDocumentConcurrentRequestTests.MapOpenApi_HandlesConcurrentRequests (issue #58128)", + "url": "https://github.com/dotnet/aspnetcore/pull/65924", + "commit": "dotnet@d2f30e6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@e0f509f", + "labels": [ + "test-failure", + "area-mvc" + ] + }, + { + "id": "aspnetcore@ece07c5", + "repo": "aspnetcore", + "title": "Unquarantine dotnet-openapi tests (issue #61225)", + "url": "https://github.com/dotnet/aspnetcore/pull/65919", + "commit": "dotnet@d2f30e6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@ece07c5", + "labels": [ + "test-failure", + "area-mvc" + ] + }, + { + "id": "aspnetcore@1d9cbfa", + "repo": "aspnetcore", + "title": "Unquarantine MapIdentityApiTests.CanResetSharedKey (issue #54840)", + "url": "https://github.com/dotnet/aspnetcore/pull/65923", + "commit": "dotnet@d2f30e6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@1d9cbfa", + "labels": [ + "test-failure", + "area-identity" + ] + }, + { + "id": "aspnetcore@a2abc03", + "repo": "aspnetcore", + "title": "Unquarantine W3CLoggerTests.WritesDateTime (issue #61614)", + "url": "https://github.com/dotnet/aspnetcore/pull/65922", + "commit": "dotnet@d2f30e6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@a2abc03", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@7ee3019", + "repo": "aspnetcore", + "title": "Unquarantine TargetTest (issue #50662)", + "url": "https://github.com/dotnet/aspnetcore/pull/65918", + "commit": "dotnet@d2f30e6", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@7ee3019", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@cac95fb", + "repo": "aspnetcore", + "title": "Unquarantine CacheTagHelperTest.ProcessAsync_AwaitersUseTheResultOfExecutor (issue #57567)", + "url": "https://github.com/dotnet/aspnetcore/pull/65925", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@cac95fb", + "labels": [ + "test-failure", + "area-mvc" + ] + }, + { + "id": "aspnetcore@2fdaffc", + "repo": "aspnetcore", + "title": "Unquarantine OutputCaching.CachedResponseBodyTests.Copy_MultipleSegments (issue #60904)", + "url": "https://github.com/dotnet/aspnetcore/pull/65921", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@2fdaffc", + "labels": [ + "test-failure", + "area-middleware" + ] + }, + { + "id": "aspnetcore@d8491f4", + "repo": "aspnetcore", + "title": "Use full git history in test-quarantine workflow", + "url": "https://github.com/dotnet/aspnetcore/pull/65932", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@d8491f4", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@d14f00b", + "repo": "aspnetcore", + "title": "Fix WebWorker template failing in published Blazor WASM apps", + "url": "https://github.com/dotnet/aspnetcore/pull/65885", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@d14f00b", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@7e307f4", + "repo": "aspnetcore", + "title": "Unquarantine QuicConnectionContextTests.StreamPool_ManyConcurrentStreams_StreamPoolFull (issue #56517)", + "url": "https://github.com/dotnet/aspnetcore/pull/65948", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@7e307f4", + "labels": [ + "test-failure", + "area-networking" + ] + }, + { + "id": "aspnetcore@ff787d9", + "repo": "aspnetcore", + "title": "Unquarantine KestrelConfigurationLoaderTests.ConfigureEndpointDevelopmentCertificateGetsLoadedWhenPresent (issue #48736)", + "url": "https://github.com/dotnet/aspnetcore/pull/65949", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@ff787d9", + "labels": [ + "test-failure", + "area-networking" + ] + }, + { + "id": "aspnetcore@379c93b", + "repo": "aspnetcore", + "title": "Unquarantine StartupTests.CheckStdoutWithLargeWrites_TestSink (issue #52734)", + "url": "https://github.com/dotnet/aspnetcore/pull/65945", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@379c93b", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@4b53b87", + "repo": "aspnetcore", + "title": "Unquarantine HealthCheckPublisherHostedServiceTest.RunAsync_CanFilterHealthChecks (issue #56245)", + "url": "https://github.com/dotnet/aspnetcore/pull/65946", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@4b53b87", + "labels": [ + "test-failure", + "area-healthchecks" + ] + }, + { + "id": "aspnetcore@6aad0fa", + "repo": "aspnetcore", + "title": "Unquarantine NamedPipeConnectionTests.BidirectionalStream_ServerReadsDataAndCompletes_GracefullyClosed (issue #52462)", + "url": "https://github.com/dotnet/aspnetcore/pull/65942", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@6aad0fa", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@002e2fd", + "repo": "aspnetcore", + "title": "Virtualize: reduce JS-to-.NET surface and extract E2E test helpers", + "url": "https://github.com/dotnet/aspnetcore/pull/65913", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@002e2fd", + "labels": [ + "area-blazor" + ] + }, + { + "id": "aspnetcore@7de8efd", + "repo": "aspnetcore", + "title": "Unquarantine MessagePumpTests.UseDefaultAddress_WhenNoServerAddressAndNoDirectConfiguration (issue #28993)", + "url": "https://github.com/dotnet/aspnetcore/pull/65941", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@7de8efd", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@5f25968", + "repo": "aspnetcore", + "title": "Unquarantine ResponseCaching.CachedResponseBodyTests.Copy_MultipleSegments (issue #61293)", + "url": "https://github.com/dotnet/aspnetcore/pull/65920", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@5f25968", + "labels": [ + "test-failure", + "area-middleware" + ] + }, + { + "id": "aspnetcore@cc983ac", + "repo": "aspnetcore", + "title": "Unquarantine ShutdownTests.ShutdownTimeoutIsApplied (issue #52676)", + "url": "https://github.com/dotnet/aspnetcore/pull/65943", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@cc983ac", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@70329cf", + "repo": "aspnetcore", + "title": "Unquarantine Http3RequestTests.POST_Expect100Continue_Get100Continue (issue #57373)", + "url": "https://github.com/dotnet/aspnetcore/pull/65950", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@70329cf", + "labels": [ + "test-failure", + "area-networking" + ] + }, + { + "id": "aspnetcore@5c96464", + "repo": "aspnetcore", + "title": "Unquarantine HtmlGenerationWithCultureTest.CacheTagHelper_VaryByCultureComposesWithOtherVaryByOptions (issue #56440)", + "url": "https://github.com/dotnet/aspnetcore/pull/65947", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@5c96464", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@a6285e2", + "repo": "aspnetcore", + "title": "Unquarantine StartupTests.WrongApplicationPath_FailedToRun (issue #52889)", + "url": "https://github.com/dotnet/aspnetcore/pull/65944", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@a6285e2", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@43bf870", + "repo": "aspnetcore", + "title": "Disable parallel restore for BuildPass2 projects", + "url": "https://github.com/dotnet/aspnetcore/pull/65954", + "commit": "dotnet@44f7171", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@43bf870", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@53559dd", + "repo": "aspnetcore", + "title": "Re-quarantine CacheTagHelperTest.ProcessAsync_AwaitersUseTheResultOfExecutor (issue #57567)", + "url": "https://github.com/dotnet/aspnetcore/pull/65963", + "commit": "dotnet@17aaf56", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@53559dd", + "labels": [ + "test-failure", + "needs-area-label", + "re-quarantine" + ] + }, + { + "id": "aspnetcore@9d746bd", + "repo": "aspnetcore", + "title": "Update milestones for May", + "url": "https://github.com/dotnet/aspnetcore/pull/65976", + "commit": "dotnet@17aaf56", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@9d746bd", + "labels": [ + "needs-area-label" + ] + }, + { + "id": "aspnetcore@e0d31d9", + "repo": "aspnetcore", + "title": "Fix test quarantine agent budgeting", + "url": "https://github.com/dotnet/aspnetcore/pull/65977", + "commit": "dotnet@17aaf56", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@e0d31d9", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@5d3e13d", + "repo": "aspnetcore", + "title": "Unquarantine dotnet-openapi URL tests (issue #61348)", + "url": "https://github.com/dotnet/aspnetcore/pull/65965", + "commit": "dotnet@17aaf56", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@5d3e13d", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@8feb203", + "repo": "aspnetcore", + "title": "Update PR build criteria for Quarantine workflow", + "url": "https://github.com/dotnet/aspnetcore/pull/65983", + "commit": "dotnet@17aaf56", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@8feb203", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "aspnetcore@17fb030", + "repo": "aspnetcore", + "title": "Unquarantine QuicStreamContextTests.BidirectionalStream_MultipleStreamsOnConnection_ReusedFromPool (issue #59978)", + "url": "https://github.com/dotnet/aspnetcore/pull/65971", + "commit": "dotnet@17aaf56", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@17fb030", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@1e4711c", + "repo": "aspnetcore", + "title": "Unquarantine RemoteRendererTest.ProcessBufferedRenderBatches_WritesRenders (issue #61807)", + "url": "https://github.com/dotnet/aspnetcore/pull/65966", + "commit": "dotnet@17aaf56", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@1e4711c", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@cdea7e1", + "repo": "aspnetcore", + "title": "[test-quarantine] Quarantine ServerRoutingTest and ServerVirtualizationTest flaky tests", + "url": "https://github.com/dotnet/aspnetcore/pull/65964", + "commit": "dotnet@17aaf56", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@cdea7e1", + "labels": [ + "test-failure", + "area-blazor" + ] + }, + { + "id": "aspnetcore@20cea47", + "repo": "aspnetcore", + "title": "Unquarantine Kestrel ResponseTests.AppCanHandleClientAbortingConnectionMidResponse (issue #60110)", + "url": "https://github.com/dotnet/aspnetcore/pull/65969", + "commit": "dotnet@17aaf56", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@20cea47", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@ade5151", + "repo": "aspnetcore", + "title": "Unquarantine Kestrel ResponseTests.ConnectionClosedWhenResponseDoesNotSatisfyMinimumDataRate (issue #49974)", + "url": "https://github.com/dotnet/aspnetcore/pull/65970", + "commit": "dotnet@17aaf56", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@ade5151", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "aspnetcore@655f41d", + "repo": "aspnetcore", + "title": "Unquarantine Http3RequestTests.POST_ClientCancellationBidirectional_RequestAbortRaised (issue #38008)", + "url": "https://github.com/dotnet/aspnetcore/pull/65972", + "commit": "dotnet@17aaf56", + "is_security": false, + "product": "dotnet-aspnetcore", + "local_repo_commit": "aspnetcore@655f41d", + "labels": [ + "test-failure", + "needs-area-label" + ] + }, + { + "id": "command-line-api@a3bae7d", + "repo": "command-line-api", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/command-line-api/pull/2762", + "commit": "dotnet@7535708", + "is_security": false, + "local_repo_commit": "command-line-api@a3bae7d" + }, + { + "id": "command-line-api@0b720d0", + "repo": "command-line-api", + "title": "Include name of argument when an argument is missing", + "url": "https://github.com/dotnet/command-line-api/pull/2747", + "commit": "dotnet@6e01e62", + "is_security": false, + "local_repo_commit": "command-line-api@0b720d0" + }, + { + "id": "deployment-tools@e83794f", + "repo": "deployment-tools", + "title": "Update dependencies", + "url": "https://github.com/dotnet/deployment-tools/pull/531", + "commit": "dotnet@9d2430d", + "is_security": false, + "product": "dotnet-deployment-tools", + "local_repo_commit": "deployment-tools@e83794f" + }, + { + "id": "deployment-tools@71f5b36", + "repo": "deployment-tools", + "title": "Run the issue-labeler over pull requests using polling", + "url": "https://github.com/dotnet/deployment-tools/pull/534", + "commit": "dotnet@9d2430d", + "is_security": false, + "product": "dotnet-deployment-tools", + "local_repo_commit": "deployment-tools@71f5b36" + }, + { + "id": "deployment-tools@24caf42", + "repo": "deployment-tools", + "title": "Update dependencies from build 306701", + "url": "https://github.com/dotnet/deployment-tools/pull/536", + "commit": "dotnet@9d2430d", + "is_security": false, + "product": "dotnet-deployment-tools", + "local_repo_commit": "deployment-tools@24caf42" + }, + { + "id": "deployment-tools@bdad519", + "repo": "deployment-tools", + "title": "Update dependencies from build 307118", + "url": "https://github.com/dotnet/deployment-tools/pull/537", + "commit": "dotnet@9d2430d", + "is_security": false, + "product": "dotnet-deployment-tools", + "local_repo_commit": "deployment-tools@bdad519" + }, + { + "id": "deployment-tools@73e2836", + "repo": "deployment-tools", + "title": "React to SDLValdiationParameters removal", + "url": "https://github.com/dotnet/deployment-tools/pull/539", + "commit": "dotnet@9d2430d", + "is_security": false, + "product": "dotnet-deployment-tools", + "local_repo_commit": "deployment-tools@73e2836" + }, + { + "id": "efcore@88ad5f0", + "repo": "efcore", + "title": "Update branding to 8.0.25", + "url": "https://github.com/dotnet/efcore/pull/37613", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@88ad5f0" + }, + { + "id": "efcore@fe8711d", + "repo": "efcore", + "title": "Merging internal commits for release/8.0", + "url": "https://github.com/dotnet/efcore/pull/37667", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@fe8711d" + }, + { + "id": "efcore@ce4c061", + "repo": "efcore", + "title": "Merging internal commits for release/9.0", + "url": "https://github.com/dotnet/efcore/pull/37666", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@ce4c061" + }, + { + "id": "efcore@2171920", + "repo": "efcore", + "title": "[automated] Merge branch 'release/8.0' => 'release/9.0'", + "url": "https://github.com/dotnet/efcore/pull/37669", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@2171920" + }, + { + "id": "efcore@05a2ee4", + "repo": "efcore", + "title": "[release/10.0] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/efcore/pull/37692", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@05a2ee4" + }, + { + "id": "efcore@c214374", + "repo": "efcore", + "title": "[release/10.0] Fix struct complex property nullability when reading EF Core 8.x/9.x model snapshots", + "url": "https://github.com/dotnet/efcore/pull/37690", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@c214374", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "efcore@c413a34", + "repo": "efcore", + "title": "[release/10.0] Fix NullReferenceException in dbcontext optimize with cross-version compatibility", + "url": "https://github.com/dotnet/efcore/pull/37547", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@c413a34", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "efcore@f2d8cf2", + "repo": "efcore", + "title": "Update dependencies from build 301818", + "url": "https://github.com/dotnet/efcore/pull/37704", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@f2d8cf2" + }, + { + "id": "efcore@272a411", + "repo": "efcore", + "title": "Update dependencies from build 301859", + "url": "https://github.com/dotnet/efcore/pull/37705", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@272a411" + }, + { + "id": "efcore@b215568", + "repo": "efcore", + "title": "Update dependencies from build 301880", + "url": "https://github.com/dotnet/efcore/pull/37709", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@b215568" + }, + { + "id": "efcore@f0533e3", + "repo": "efcore", + "title": "Update dependencies from build 301892", + "url": "https://github.com/dotnet/efcore/pull/37712", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@f0533e3" + }, + { + "id": "efcore@fa02541", + "repo": "efcore", + "title": "Update dependencies from build 301911", + "url": "https://github.com/dotnet/efcore/pull/37713", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@fa02541" + }, + { + "id": "efcore@13b022a", + "repo": "efcore", + "title": "Update dependencies from https://github.com/dotnet/arcade build 20260210.2", + "url": "https://github.com/dotnet/efcore/pull/37718", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@13b022a", + "labels": [ + "area-infrastructure", + "type-dependency update :arrow_up_small:" + ] + }, + { + "id": "efcore@0d5f479", + "repo": "efcore", + "title": "Update dependencies from build 301945", + "url": "https://github.com/dotnet/efcore/pull/37716", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@0d5f479" + }, + { + "id": "efcore@9db9403", + "repo": "efcore", + "title": "Update dependencies from build 301941", + "url": "https://github.com/dotnet/efcore/pull/37717", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@9db9403" + }, + { + "id": "efcore@ae8da6d", + "repo": "efcore", + "title": "Update dependencies from build 302031", + "url": "https://github.com/dotnet/efcore/pull/37722", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@ae8da6d" + }, + { + "id": "efcore@197e23b", + "repo": "efcore", + "title": "Update dependencies from build 302056", + "url": "https://github.com/dotnet/efcore/pull/37723", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@197e23b" + }, + { + "id": "efcore@a1198d4", + "repo": "efcore", + "title": "Update dependencies from build 302124", + "url": "https://github.com/dotnet/efcore/pull/37728", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@a1198d4" + }, + { + "id": "efcore@4740247", + "repo": "efcore", + "title": "Record latest migration ID in model snapshot as property to detect diverged migration trees", + "url": "https://github.com/dotnet/efcore/pull/37689", + "commit": "dotnet@9cbaa7e", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@4740247", + "score": 5, + "score_reason": "Diverged migration-tree detection addresses a real team workflow pain point.", + "score_breakdown": { + "breadth": 2, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "efcore@239465b", + "repo": "efcore", + "title": "Add EF.Functions.JsonContains for SQL Server 2025", + "url": "https://github.com/dotnet/efcore/pull/37714", + "commit": "dotnet@2b330ce", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@239465b", + "score": 6, + "score_reason": "JsonContains for SQL Server 2025 is a concrete new API for a clear database scenario.", + "score_breakdown": { + "breadth": 1, + "reader_value": 4, + "clarity": 1 + } + }, + { + "id": "efcore@0e146f5", + "repo": "efcore", + "title": "[automated] Merge branch 'release/9.0' => 'release/10.0'", + "url": "https://github.com/dotnet/efcore/pull/37678", + "commit": "dotnet@2b330ce", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@0e146f5" + }, + { + "id": "efcore@9dae88e", + "repo": "efcore", + "title": "Update dependencies from build 302254", + "url": "https://github.com/dotnet/efcore/pull/37736", + "commit": "dotnet@2b330ce", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@9dae88e" + }, + { + "id": "efcore@35514be", + "repo": "efcore", + "title": "Improve error reporting when using spatial/HierarchyId types without provider configured", + "url": "https://github.com/dotnet/efcore/pull/37733", + "commit": "dotnet@2b330ce", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@35514be", + "labels": [ + "community-contribution" + ] + }, + { + "id": "efcore@35089f2", + "repo": "efcore", + "title": "Fix: Named query filters cannot override convention-set filters", + "url": "https://github.com/dotnet/efcore/pull/37710", + "commit": "dotnet@2b330ce", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@35089f2" + }, + { + "id": "efcore@04fc72c", + "repo": "efcore", + "title": "Update dependencies from build 302411", + "url": "https://github.com/dotnet/efcore/pull/37743", + "commit": "dotnet@2b330ce", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@04fc72c" + }, + { + "id": "efcore@fb96b4a", + "repo": "efcore", + "title": "Workflow to automatically add preview/rc labels for merged PRs", + "url": "https://github.com/dotnet/efcore/pull/37737", + "commit": "dotnet@2b330ce", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@fb96b4a" + }, + { + "id": "efcore@6f19809", + "repo": "efcore", + "title": "[automated] Merge branch 'release/10.0' => 'main'", + "url": "https://github.com/dotnet/efcore/pull/37701", + "commit": "dotnet@2b330ce", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@6f19809" + }, + { + "id": "efcore@48dc694", + "repo": "efcore", + "title": "Update dependencies from build 302542", + "url": "https://github.com/dotnet/efcore/pull/37746", + "commit": "dotnet@51587e2", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@48dc694" + }, + { + "id": "efcore@9f06179", + "repo": "efcore", + "title": "[release/10.0] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/efcore/pull/37752", + "commit": "dotnet@51587e2", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@9f06179" + }, + { + "id": "efcore@56a682a", + "repo": "efcore", + "title": "Rename JsonExists to JsonPathExists", + "url": "https://github.com/dotnet/efcore/pull/37732", + "commit": "dotnet@51587e2", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@56a682a", + "score": 4, + "score_reason": "Renaming JsonExists to JsonPathExists is mainly a migration note for early adopters.", + "score_breakdown": { + "breadth": 1, + "reader_value": 2, + "clarity": 1 + }, + "breaking_changes": true + }, + { + "id": "efcore@f74c457", + "repo": "efcore", + "title": "[TINY] Use InterceptableLocation for precompiled query interceptor generation", + "url": "https://github.com/dotnet/efcore/pull/37734", + "commit": "dotnet@51587e2", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@f74c457" + }, + { + "id": "efcore@31e3250", + "repo": "efcore", + "title": "[release/10.0] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/efcore/pull/37753", + "commit": "dotnet@51587e2", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@31e3250" + }, + { + "id": "efcore@a00f52a", + "repo": "efcore", + "title": "Route dotnet-ef diagnostic output to stderr, fix premature help exit code", + "url": "https://github.com/dotnet/efcore/pull/37744", + "commit": "dotnet@51587e2", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@a00f52a", + "score": 4, + "score_reason": "Routing dotnet ef diagnostics to stderr is a practical CLI fix for scripting and redirection.", + "score_breakdown": { + "breadth": 1, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "efcore@4797ba9", + "repo": "efcore", + "title": "Update dependencies from build 302699", + "url": "https://github.com/dotnet/efcore/pull/37757", + "commit": "dotnet@51587e2", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@4797ba9" + }, + { + "id": "efcore@4707794", + "repo": "efcore", + "title": "[automated] Merge branch 'release/10.0' => 'main'", + "url": "https://github.com/dotnet/efcore/pull/37749", + "commit": "dotnet@51587e2", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@4707794" + }, + { + "id": "efcore@5f9c2c3", + "repo": "efcore", + "title": "Fix ArgumentOutOfRangeException when deleting from ComplexCollection with nested arrays", + "url": "https://github.com/dotnet/efcore/pull/37702", + "commit": "dotnet@605aaa9", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@5f9c2c3", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "efcore@5740ed8", + "repo": "efcore", + "title": "[release/10.0] Fix named query filter conventions", + "url": "https://github.com/dotnet/efcore/pull/37738", + "commit": "dotnet@605aaa9", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@5740ed8", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "efcore@ac1a32c", + "repo": "efcore", + "title": "Update dependencies from build 302754", + "url": "https://github.com/dotnet/efcore/pull/37759", + "commit": "dotnet@605aaa9", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@ac1a32c" + }, + { + "id": "efcore@59291da", + "repo": "efcore", + "title": "Restore ordinals when changing entity state from Deleted/Added", + "url": "https://github.com/dotnet/efcore/pull/37729", + "commit": "dotnet@605aaa9", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@59291da", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "efcore@0c22a71", + "repo": "efcore", + "title": "[release/10.0] Fix Microsoft.EntityFrameworkCore.Tools for net8.0", + "url": "https://github.com/dotnet/efcore/pull/37731", + "commit": "dotnet@605aaa9", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@0c22a71", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "efcore@873db19", + "repo": "efcore", + "title": "Update dependencies from build 302799", + "url": "https://github.com/dotnet/efcore/pull/37764", + "commit": "dotnet@605aaa9", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@873db19" + }, + { + "id": "efcore@fb11d70", + "repo": "efcore", + "title": "Remove servicing PR template from Copilot instructions", + "url": "https://github.com/dotnet/efcore/pull/37761", + "commit": "dotnet@605aaa9", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@fb11d70" + }, + { + "id": "efcore@a06277e", + "repo": "efcore", + "title": "Update dependencies from build 302824", + "url": "https://github.com/dotnet/efcore/pull/37767", + "commit": "dotnet@5d0ff92", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@a06277e" + }, + { + "id": "efcore@62b0941", + "repo": "efcore", + "title": "Remove UseOldBehavior quirk switches", + "url": "https://github.com/dotnet/efcore/pull/37770", + "commit": "dotnet@5d0ff92", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@62b0941" + }, + { + "id": "efcore@5ccb348", + "repo": "efcore", + "title": "Update dependencies from build 302854", + "url": "https://github.com/dotnet/efcore/pull/37772", + "commit": "dotnet@5d0ff92", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@5ccb348" + }, + { + "id": "efcore@6b4f383", + "repo": "efcore", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/efcore/pull/37773", + "commit": "dotnet@5d0ff92", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@6b4f383" + }, + { + "id": "efcore@45d3267", + "repo": "efcore", + "title": "Update dependencies from build 303025", + "url": "https://github.com/dotnet/efcore/pull/37777", + "commit": "dotnet@5d0ff92", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@45d3267" + }, + { + "id": "efcore@fc6f21d", + "repo": "efcore", + "title": "Fix InvalidCastException in ArrayPropertyValues.ToObject() with nested nullable complex properties", + "url": "https://github.com/dotnet/efcore/pull/37762", + "commit": "dotnet@5d0ff92", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@fc6f21d" + }, + { + "id": "efcore@4957f0e", + "repo": "efcore", + "title": "[automated] Merge branch 'release/10.0' => 'main'", + "url": "https://github.com/dotnet/efcore/pull/37760", + "commit": "dotnet@debd236", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@4957f0e" + }, + { + "id": "efcore@f69c365", + "repo": "efcore", + "title": "Update dependencies from build 303089", + "url": "https://github.com/dotnet/efcore/pull/37782", + "commit": "dotnet@debd236", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@f69c365" + }, + { + "id": "efcore@ebc7591", + "repo": "efcore", + "title": "Fix projection of entities with complex collections through subqueries", + "url": "https://github.com/dotnet/efcore/pull/37747", + "commit": "dotnet@debd236", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@ebc7591", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "efcore@1460789", + "repo": "efcore", + "title": "Update dependencies from build 303150", + "url": "https://github.com/dotnet/efcore/pull/37789", + "commit": "dotnet@debd236", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@1460789" + }, + { + "id": "efcore@8a06ad4", + "repo": "efcore", + "title": "Emit all properties on the join type, even when there's no extra configuration on them.", + "url": "https://github.com/dotnet/efcore/pull/37783", + "commit": "dotnet@debd236", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@8a06ad4" + }, + { + "id": "efcore@1d245f3", + "repo": "efcore", + "title": "RevEng: Always scaffold HasPrecision for decimal columns in SQL Server", + "url": "https://github.com/dotnet/efcore/pull/37730", + "commit": "dotnet@debd236", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@1d245f3", + "labels": [ + "community-contribution" + ] + }, + { + "id": "efcore@1d6294e", + "repo": "efcore", + "title": "Update dependencies from build 303190", + "url": "https://github.com/dotnet/efcore/pull/37793", + "commit": "dotnet@a40fded", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@1d6294e" + }, + { + "id": "efcore@0cc9a4b", + "repo": "efcore", + "title": "Update dependencies from build 303263", + "url": "https://github.com/dotnet/efcore/pull/37801", + "commit": "dotnet@a40fded", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@0cc9a4b" + }, + { + "id": "efcore@4077099", + "repo": "efcore", + "title": "[automated] Merge branch 'release/10.0' => 'main'", + "url": "https://github.com/dotnet/efcore/pull/37790", + "commit": "dotnet@a40fded", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@4077099" + }, + { + "id": "efcore@bbba406", + "repo": "efcore", + "title": "Fix HasDiscriminator with default name \"Discriminator\" failing for non-string types", + "url": "https://github.com/dotnet/efcore/pull/37785", + "commit": "dotnet@a40fded", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@bbba406" + }, + { + "id": "efcore@fbf051c", + "repo": "efcore", + "title": "Fix RowVersion concurrency issue when replacing entities with TPH inheritance and owned types", + "url": "https://github.com/dotnet/efcore/pull/37788", + "commit": "dotnet@a40fded", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@fbf051c" + }, + { + "id": "efcore@aa10d1d", + "repo": "efcore", + "title": "[release/10.0] Fix InvalidCastException in OriginalValues.ToObject() with nested nullable complex properties", + "url": "https://github.com/dotnet/efcore/pull/37703", + "commit": "dotnet@a40fded", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@aa10d1d", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "efcore@150afc9", + "repo": "efcore", + "title": "Fix FK dependency ordering when replacing row-sharing owned entity", + "url": "https://github.com/dotnet/efcore/pull/37799", + "commit": "dotnet@a40fded", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@150afc9" + }, + { + "id": "efcore@3eabbaf", + "repo": "efcore", + "title": "Fix in-memory corruption of nested owned entities after SaveChanges when navigation is replaced", + "url": "https://github.com/dotnet/efcore/pull/37787", + "commit": "dotnet@c4221be", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@3eabbaf" + }, + { + "id": "efcore@2f5c7f3", + "repo": "efcore", + "title": "[automated] Merge branch 'release/10.0' => 'main'", + "url": "https://github.com/dotnet/efcore/pull/37806", + "commit": "dotnet@c4221be", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@2f5c7f3" + }, + { + "id": "efcore@8132028", + "repo": "efcore", + "title": "Add parameterless overload for AddPooledDbContextFactory aligning pooled factory with ConfigureDbContext.", + "url": "https://github.com/dotnet/efcore/pull/37144", + "commit": "dotnet@c4221be", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@8132028", + "labels": [ + "community-contribution" + ], + "score": 5, + "score_reason": "The parameterless pooled factory overload removes boilerplate from a common DI pattern.", + "score_breakdown": { + "breadth": 2, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "efcore@1c16df9", + "repo": "efcore", + "title": "Fix owned entities with default values not saved in TPH with shared columns", + "url": "https://github.com/dotnet/efcore/pull/37751", + "commit": "dotnet@352ee4c", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@1c16df9" + }, + { + "id": "efcore@0518708", + "repo": "efcore", + "title": "Fix NullReferenceException when accessing null complex properties in TPH with shared columns", + "url": "https://github.com/dotnet/efcore/pull/37695", + "commit": "dotnet@352ee4c", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@0518708" + }, + { + "id": "efcore@209f088", + "repo": "efcore", + "title": "[release/10.0] Fix invalid SQL parameter names for switch/case pattern-matched variables", + "url": "https://github.com/dotnet/efcore/pull/37805", + "commit": "dotnet@352ee4c", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@209f088", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "efcore@39531c8", + "repo": "efcore", + "title": "Fix ExecuteUpdate over scalar projections", + "url": "https://github.com/dotnet/efcore/pull/37791", + "commit": "dotnet@352ee4c", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@39531c8", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "efcore@f254706", + "repo": "efcore", + "title": "Preserve batch terminators in migration scripts for SQL operations with GO separators", + "url": "https://github.com/dotnet/efcore/pull/37810", + "commit": "dotnet@352ee4c", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@f254706" + }, + { + "id": "efcore@a707320", + "repo": "efcore", + "title": "Bump actions/upload-artifact from 6 to 7", + "url": "https://github.com/dotnet/efcore/pull/37813", + "commit": "dotnet@352ee4c", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@a707320", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "efcore@15af73b", + "repo": "efcore", + "title": "Add helpful exception when a property\u2019s backing field cannot be found.", + "url": "https://github.com/dotnet/efcore/pull/36720", + "commit": "dotnet@0f9b4fe", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@15af73b", + "labels": [ + "community-contribution" + ] + }, + { + "id": "efcore@a5a6356", + "repo": "efcore", + "title": "Remove accidental auto-approve workflow", + "url": "https://github.com/dotnet/efcore/pull/37814", + "commit": "dotnet@0f9b4fe", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@a5a6356" + }, + { + "id": "efcore@9c4450c", + "repo": "efcore", + "title": "Update dependencies from https://github.com/dotnet/arcade build 20260217.2", + "url": "https://github.com/dotnet/efcore/pull/37816", + "commit": "dotnet@ed58d9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@9c4450c", + "labels": [ + "area-infrastructure", + "type-dependency update :arrow_up_small:" + ] + }, + { + "id": "efcore@d0d82d2", + "repo": "efcore", + "title": "Allow query test classes to have non-shared tests", + "url": "https://github.com/dotnet/efcore/pull/37681", + "commit": "dotnet@ed58d9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@d0d82d2" + }, + { + "id": "efcore@76c0497", + "repo": "efcore", + "title": "Update dependencies from https://github.com/dotnet/arcade build 20260223.3", + "url": "https://github.com/dotnet/efcore/pull/37820", + "commit": "dotnet@ed58d9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@76c0497", + "labels": [ + "area-infrastructure", + "type-dependency update :arrow_up_small:" + ] + }, + { + "id": "efcore@39c16b2", + "repo": "efcore", + "title": "Update dependencies from build 303883", + "url": "https://github.com/dotnet/efcore/pull/37821", + "commit": "dotnet@ed58d9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@39c16b2" + }, + { + "id": "efcore@e006093", + "repo": "efcore", + "title": "[automated] Merge branch 'release/10.0' => 'main'", + "url": "https://github.com/dotnet/efcore/pull/37811", + "commit": "dotnet@ed58d9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@e006093" + }, + { + "id": "efcore@c2941e7", + "repo": "efcore", + "title": "[release/10.0] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/efcore/pull/37822", + "commit": "dotnet@ed58d9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@c2941e7" + }, + { + "id": "efcore@d072427", + "repo": "efcore", + "title": "Update dependencies from build 304097", + "url": "https://github.com/dotnet/efcore/pull/37828", + "commit": "dotnet@ed58d9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@d072427" + }, + { + "id": "efcore@41811eb", + "repo": "efcore", + "title": "Fix NRE in FindJsonPartialUpdateInfo when replacing TPH derived entity with owned JSON", + "url": "https://github.com/dotnet/efcore/pull/37823", + "commit": "dotnet@ed58d9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@41811eb" + }, + { + "id": "efcore@fdf01ed", + "repo": "efcore", + "title": "[release/10.0] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/efcore/pull/37830", + "commit": "dotnet@ed58d9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@fdf01ed" + }, + { + "id": "efcore@a24cf33", + "repo": "efcore", + "title": "Update dependencies from build 304232", + "url": "https://github.com/dotnet/efcore/pull/37832", + "commit": "dotnet@ed58d9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@a24cf33" + }, + { + "id": "efcore@f0fd83c", + "repo": "efcore", + "title": "Remove checked-in nuspec files to resolve build issues", + "url": "https://github.com/dotnet/efcore/pull/37826", + "commit": "dotnet@ed58d9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@f0fd83c" + }, + { + "id": "efcore@8f03289", + "repo": "efcore", + "title": "Update branding on release/9.0", + "url": "https://github.com/dotnet/efcore/pull/37833", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@8f03289" + }, + { + "id": "efcore@28fec6b", + "repo": "efcore", + "title": "Update branding on release/8.0", + "url": "https://github.com/dotnet/efcore/pull/37834", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@28fec6b" + }, + { + "id": "efcore@c538920", + "repo": "efcore", + "title": "[release/9.0] Update SDK to 9.0.114", + "url": "https://github.com/dotnet/efcore/pull/37779", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@c538920" + }, + { + "id": "efcore@1ade1a4", + "repo": "efcore", + "title": "Update SDK and dotnet versions to 8.0.124", + "url": "https://github.com/dotnet/efcore/pull/37780", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@1ade1a4" + }, + { + "id": "efcore@b75d148", + "repo": "efcore", + "title": "Model building and change tracking changes to avoid loading vector properties", + "url": "https://github.com/dotnet/efcore/pull/37829", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@b75d148", + "score": 3, + "score_reason": "Supports the same scenario as partial property loading, but still reads as foundational plumbing more than a release-note feature.", + "score_breakdown": { + "breadth": 1, + "reader_value": 1, + "clarity": 1 + } + }, + { + "id": "efcore@1422c65", + "repo": "efcore", + "title": "Remove EFCore.Design dependency from EFCore.Tools and EFCore.Tasks", + "url": "https://github.com/dotnet/efcore/pull/37837", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@1422c65", + "score": 3, + "score_reason": "Useful migration note for tooling/package users, but too narrow for a major section.", + "score_breakdown": { + "breadth": 1, + "reader_value": 1, + "clarity": 1 + }, + "breaking_changes": true + }, + { + "id": "efcore@251f5d3", + "repo": "efcore", + "title": "Add ChangeTracker.GetEntriesForState()", + "url": "https://github.com/dotnet/efcore/pull/37847", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@251f5d3", + "score": 6, + "score_reason": "GetEntriesForState is a concrete, verified API that helps change-tracking-heavy apps immediately.", + "score_breakdown": { + "breadth": 2, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "efcore@9bad67c", + "repo": "efcore", + "title": "Use migration ID as scaffolded migration type name", + "url": "https://github.com/dotnet/efcore/pull/37841", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@9bad67c" + }, + { + "id": "efcore@a6f77af", + "repo": "efcore", + "title": "Throw on RelationalEventId.MigrationsNotFound by default", + "url": "https://github.com/dotnet/efcore/pull/37839", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@a6f77af", + "score": 4, + "score_reason": "Throwing on missing migrations is a behavior change that can catch configuration mistakes earlier.", + "score_breakdown": { + "breadth": 1, + "reader_value": 2, + "clarity": 1 + }, + "breaking_changes": true + }, + { + "id": "efcore@6a7fa61", + "repo": "efcore", + "title": "Fix complex property JSON column not marked nullable in TPH hierarchy", + "url": "https://github.com/dotnet/efcore/pull/37781", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@6a7fa61" + }, + { + "id": "efcore@59aa0ae", + "repo": "efcore", + "title": "Update dependencies from build 304482", + "url": "https://github.com/dotnet/efcore/pull/37845", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@59aa0ae" + }, + { + "id": "efcore@253f08d", + "repo": "efcore", + "title": "Log warning and skip discovery for compiled models built for a different provider", + "url": "https://github.com/dotnet/efcore/pull/37840", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@253f08d", + "score": 4, + "score_reason": "Provider-aware compiled-model warnings are useful, but more of a guardrail than a headline feature.", + "score_breakdown": { + "breadth": 1, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "efcore@d3e476b", + "repo": "efcore", + "title": "[automated] Merge branch 'release/8.0' => 'release/9.0'", + "url": "https://github.com/dotnet/efcore/pull/37836", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@d3e476b" + }, + { + "id": "efcore@a75602c", + "repo": "efcore", + "title": "Allow excluding foreign key from migrations", + "url": "https://github.com/dotnet/efcore/pull/37815", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@a75602c", + "score": 5, + "score_reason": "Excluding foreign keys from migrations solves a real advanced-modeling scenario with a clear new API.", + "score_breakdown": { + "breadth": 1, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "efcore@ddea54e", + "repo": "efcore", + "title": "Remove EFOptimizeContext property from EF targets", + "url": "https://github.com/dotnet/efcore/pull/37838", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@ddea54e" + }, + { + "id": "efcore@df4e613", + "repo": "efcore", + "title": "Update dependencies from build 304539", + "url": "https://github.com/dotnet/efcore/pull/37850", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@df4e613" + }, + { + "id": "efcore@9f8fd9c", + "repo": "efcore", + "title": "[automated] Merge branch 'release/10.0' => 'main'", + "url": "https://github.com/dotnet/efcore/pull/37848", + "commit": "dotnet@f03ea81", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@9f8fd9c" + }, + { + "id": "efcore@462bcf0", + "repo": "efcore", + "title": "[automated] Merge branch 'release/9.0' => 'release/10.0'", + "url": "https://github.com/dotnet/efcore/pull/37835", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@462bcf0" + }, + { + "id": "efcore@d34c72b", + "repo": "efcore", + "title": "[automated] Merge branch 'release/10.0' => 'main'", + "url": "https://github.com/dotnet/efcore/pull/37853", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@d34c72b" + }, + { + "id": "efcore@20d5fef", + "repo": "efcore", + "title": "Update dependencies from build 304615", + "url": "https://github.com/dotnet/efcore/pull/37854", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@20d5fef" + }, + { + "id": "efcore@9141489", + "repo": "efcore", + "title": "Update dependencies from build 304701", + "url": "https://github.com/dotnet/efcore/pull/37858", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@9141489" + }, + { + "id": "efcore@63f9baa", + "repo": "efcore", + "title": "Allow using foreign keys in Dataverse reverse engineering", + "url": "https://github.com/dotnet/efcore/pull/34689", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@63f9baa", + "labels": [ + "community-contribution" + ] + }, + { + "id": "efcore@1b36259", + "repo": "efcore", + "title": "Fix NRE in AddJsonNavigationBindings when combining DbFunction with OwnsOne/OwnsMany ToJson", + "url": "https://github.com/dotnet/efcore/pull/37855", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@1b36259", + "labels": [ + "poachable" + ] + }, + { + "id": "efcore@94f0b72", + "repo": "efcore", + "title": "Throw when IsExcludedFromMigrations is executed on the runtime model", + "url": "https://github.com/dotnet/efcore/pull/37869", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@94f0b72" + }, + { + "id": "efcore@11a0a69", + "repo": "efcore", + "title": "Refactor GetConversion", + "url": "https://github.com/dotnet/efcore/pull/37867", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@11a0a69" + }, + { + "id": "efcore@589a82f", + "repo": "efcore", + "title": "Configure dependabot to use nuget.org only and add a version switch for MSBuild/Roslyn versions", + "url": "https://github.com/dotnet/efcore/pull/37866", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@589a82f" + }, + { + "id": "efcore@35c6d03", + "repo": "efcore", + "title": "Add background information skills for EF Core subsystems", + "url": "https://github.com/dotnet/efcore/pull/37768", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@35c6d03" + }, + { + "id": "efcore@b3caffb", + "repo": "efcore", + "title": "Make GetContainerColumnType() always return the expected type", + "url": "https://github.com/dotnet/efcore/pull/37864", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@b3caffb" + }, + { + "id": "efcore@69db2b6", + "repo": "efcore", + "title": "Bump Microsoft.Build.NoTargets from 3.7.0 to 3.7.134", + "url": "https://github.com/dotnet/efcore/pull/37873", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@69db2b6", + "labels": [ + "area-infrastructure" + ] + }, + { + "id": "efcore@82f974b", + "repo": "efcore", + "title": "Update dependencies from build 304915", + "url": "https://github.com/dotnet/efcore/pull/37876", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@82f974b" + }, + { + "id": "efcore@3817d73", + "repo": "efcore", + "title": "Implement partial property loading in relational query", + "url": "https://github.com/dotnet/efcore/pull/37857", + "commit": "dotnet@ee56b9a", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@3817d73", + "score": 3, + "score_reason": "Potentially useful for vector-heavy apps, but the new public API story is not obvious enough to headline yet.", + "score_breakdown": { + "breadth": 1, + "reader_value": 1, + "clarity": 1 + } + }, + { + "id": "efcore@017b6f1", + "repo": "efcore", + "title": "Update Dependabot configuration for NuGet registry", + "url": "https://github.com/dotnet/efcore/pull/37879", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@017b6f1" + }, + { + "id": "efcore@45eaef0", + "repo": "efcore", + "title": "Address review comments for partial property loading", + "url": "https://github.com/dotnet/efcore/pull/37882", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@45eaef0" + }, + { + "id": "efcore@a4a91fb", + "repo": "efcore", + "title": "Update dependencies from build 305024", + "url": "https://github.com/dotnet/efcore/pull/37881", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@a4a91fb" + }, + { + "id": "efcore@3781593", + "repo": "efcore", + "title": "Add KeysUniqueAcrossSchemas property to SharedTableConvention", + "url": "https://github.com/dotnet/efcore/pull/37861", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@3781593" + }, + { + "id": "efcore@356ecab", + "repo": "efcore", + "title": "Reenable F# tests", + "url": "https://github.com/dotnet/efcore/pull/37871", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@356ecab" + }, + { + "id": "efcore@2277164", + "repo": "efcore", + "title": "Update dependencies from build 305074", + "url": "https://github.com/dotnet/efcore/pull/37886", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@2277164" + }, + { + "id": "efcore@f29112a", + "repo": "efcore", + "title": "Update MSBuild and Roslyn dependencies for non-servicing builds", + "url": "https://github.com/dotnet/efcore/pull/37875", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@f29112a" + }, + { + "id": "efcore@ecc3936", + "repo": "efcore", + "title": "Update dependencies from build 305271", + "url": "https://github.com/dotnet/efcore/pull/37892", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@ecc3936" + }, + { + "id": "efcore@be6a920", + "repo": "efcore", + "title": "Better SQL for to-one joins", + "url": "https://github.com/dotnet/efcore/pull/37819", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@be6a920", + "score": 5, + "score_reason": "Cleaner SQL for to-one joins is a real query-quality improvement, though it needs only a short writeup.", + "score_breakdown": { + "breadth": 2, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "efcore@79c8ce7", + "repo": "efcore", + "title": "Automate setting closed issue milestones", + "url": "https://github.com/dotnet/efcore/pull/37872", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@79c8ce7" + }, + { + "id": "efcore@b48ea4d", + "repo": "efcore", + "title": "Update dependencies from build 305389", + "url": "https://github.com/dotnet/efcore/pull/37894", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@b48ea4d" + }, + { + "id": "efcore@b20350a", + "repo": "efcore", + "title": "Update dependencies from build 305413", + "url": "https://github.com/dotnet/efcore/pull/37896", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@b20350a" + }, + { + "id": "efcore@92de1c1", + "repo": "efcore", + "title": "Update dependencies from build 305495", + "url": "https://github.com/dotnet/efcore/pull/37898", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@92de1c1" + }, + { + "id": "efcore@31144c5", + "repo": "efcore", + "title": "Add RemoveExtension and RemoveDbContext APIs for removing provider configuration", + "url": "https://github.com/dotnet/efcore/pull/37891", + "commit": "dotnet@4f6fd25", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@31144c5", + "score": 5, + "score_reason": "RemoveDbContext and RemoveExtension make test-time provider swapping clearer and less error-prone.", + "score_breakdown": { + "breadth": 1, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "efcore@3a8fcc4", + "repo": "efcore", + "title": "Update dependencies from build 305569", + "url": "https://github.com/dotnet/efcore/pull/37902", + "commit": "dotnet@c12d1f5", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@3a8fcc4" + }, + { + "id": "efcore@50d0a10", + "repo": "efcore", + "title": "Update dependencies from build 305648", + "url": "https://github.com/dotnet/efcore/pull/37904", + "commit": "dotnet@c12d1f5", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@50d0a10" + }, + { + "id": "efcore@0cdfa6e", + "repo": "efcore", + "title": "Cosmos: Complex properties Query", + "url": "https://github.com/dotnet/efcore/pull/37577", + "commit": "dotnet@c12d1f5", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@0cdfa6e", + "labels": [ + "community-contribution" + ] + }, + { + "id": "efcore@8bf0f7f", + "repo": "efcore", + "title": "Fix misc issues found by Copilot", + "url": "https://github.com/dotnet/efcore/pull/37916", + "commit": "dotnet@c12d1f5", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@8bf0f7f" + }, + { + "id": "efcore@5117a26", + "repo": "efcore", + "title": "Update dependencies from build 306135", + "url": "https://github.com/dotnet/efcore/pull/37922", + "commit": "dotnet@4c1c254", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@5117a26" + }, + { + "id": "efcore@d06927c", + "repo": "efcore", + "title": "Update dependencies from build 306176", + "url": "https://github.com/dotnet/efcore/pull/37925", + "commit": "dotnet@4c1c254", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@d06927c" + }, + { + "id": "efcore@79fdc9f", + "repo": "efcore", + "title": "Update dependencies from build 306234", + "url": "https://github.com/dotnet/efcore/pull/37930", + "commit": "dotnet@4c1c254", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@79fdc9f" + }, + { + "id": "efcore@1af4e91", + "repo": "efcore", + "title": "Update dependencies from build 306251", + "url": "https://github.com/dotnet/efcore/pull/37931", + "commit": "dotnet@4c1c254", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@1af4e91" + }, + { + "id": "efcore@3031b80", + "repo": "efcore", + "title": "Update dependencies from build 306357", + "url": "https://github.com/dotnet/efcore/pull/37936", + "commit": "dotnet@4c1c254", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@3031b80" + }, + { + "id": "efcore@397179c", + "repo": "efcore", + "title": "Remove SqlExpressionVisitor from Cosmos", + "url": "https://github.com/dotnet/efcore/pull/37927", + "commit": "dotnet@4c1c254", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@397179c" + }, + { + "id": "efcore@8bfecfd", + "repo": "efcore", + "title": "Add triage skill", + "url": "https://github.com/dotnet/efcore/pull/37917", + "commit": "dotnet@4c1c254", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@8bfecfd" + }, + { + "id": "efcore@3b8b5b8", + "repo": "efcore", + "title": "Avoid hardcoded TFMs in source code", + "url": "https://github.com/dotnet/efcore/pull/37865", + "commit": "dotnet@4c1c254", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@3b8b5b8" + }, + { + "id": "efcore@39beebf", + "repo": "efcore", + "title": "Fix struct complex type boxing in collection materialization", + "url": "https://github.com/dotnet/efcore/pull/37934", + "commit": "dotnet@803eb28", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@39beebf" + }, + { + "id": "efcore@f1817b2", + "repo": "efcore", + "title": "Update dependencies from build 306438", + "url": "https://github.com/dotnet/efcore/pull/37938", + "commit": "dotnet@803eb28", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@f1817b2" + }, + { + "id": "efcore@41d1ffd", + "repo": "efcore", + "title": "Cosmos: Complex properties model building support for specifying property names", + "url": "https://github.com/dotnet/efcore/pull/37919", + "commit": "dotnet@803eb28", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@41d1ffd", + "labels": [ + "community-contribution" + ] + }, + { + "id": "efcore@1ff287c", + "repo": "efcore", + "title": "Fix projection of required complex type via left join", + "url": "https://github.com/dotnet/efcore/pull/37928", + "commit": "dotnet@b4ddb57", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@1ff287c", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "efcore@8416688", + "repo": "efcore", + "title": "Create milestone if missing in label-and-milestone workflow", + "url": "https://github.com/dotnet/efcore/pull/37946", + "commit": "dotnet@b4ddb57", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@8416688" + }, + { + "id": "efcore@3441962", + "repo": "efcore", + "title": "Fix persisting null optional complex property with default values", + "url": "https://github.com/dotnet/efcore/pull/37944", + "commit": "dotnet@b4ddb57", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@3441962", + "labels": [ + "community-contribution" + ] + }, + { + "id": "efcore@b2174cf", + "repo": "efcore", + "title": "Add ci-analysis skill and GitHub Actions workflow skill", + "url": "https://github.com/dotnet/efcore/pull/37950", + "commit": "dotnet@b4ddb57", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@b2174cf" + }, + { + "id": "efcore@6f682a4", + "repo": "efcore", + "title": "Improve triage skill", + "url": "https://github.com/dotnet/efcore/pull/37955", + "commit": "dotnet@b4ddb57", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@6f682a4" + }, + { + "id": "efcore@f9393e7", + "repo": "efcore", + "title": "Fix validate-pr-target-branch: handle unknown users and case-insensitive Copilot check", + "url": "https://github.com/dotnet/efcore/pull/37953", + "commit": "dotnet@b4ddb57", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@f9393e7" + }, + { + "id": "efcore@d08003c", + "repo": "efcore", + "title": "[automated] Merge branch 'release/10.0' => 'main'", + "url": "https://github.com/dotnet/efcore/pull/37945", + "commit": "dotnet@bf0350c", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@d08003c" + }, + { + "id": "efcore@aeda6f5", + "repo": "efcore", + "title": "Add more detailed steps for skill testing", + "url": "https://github.com/dotnet/efcore/pull/37959", + "commit": "dotnet@bf0350c", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@aeda6f5" + }, + { + "id": "efcore@a81cc59", + "repo": "efcore", + "title": "Update dependencies from build 307198", + "url": "https://github.com/dotnet/efcore/pull/37968", + "commit": "dotnet@c5dbcf5", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@a81cc59" + }, + { + "id": "efcore@c5a0f6b", + "repo": "efcore", + "title": "Add scripts to run Cosmos tests on a container", + "url": "https://github.com/dotnet/efcore/pull/37110", + "commit": "dotnet@c5dbcf5", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@c5a0f6b" + }, + { + "id": "efcore@9817145", + "repo": "efcore", + "title": "Cosmos: Projection binding initialize empty collections", + "url": "https://github.com/dotnet/efcore/pull/37971", + "commit": "dotnet@c5dbcf5", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@9817145", + "labels": [ + "community-contribution" + ] + }, + { + "id": "efcore@97db209", + "repo": "efcore", + "title": "Fix SetProperty discard lambda failing for nullable value type properties in ExecuteUpdate", + "url": "https://github.com/dotnet/efcore/pull/37975", + "commit": "dotnet@c5dbcf5", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@97db209" + }, + { + "id": "efcore@f8d2760", + "repo": "efcore", + "title": "Infer version from tags/branches instead of Versions.props", + "url": "https://github.com/dotnet/efcore/pull/37985", + "commit": "dotnet@591f22b", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@f8d2760" + }, + { + "id": "efcore@68bb873", + "repo": "efcore", + "title": "Skip branch-PR validation in validate-pr-target-branch workflow", + "url": "https://github.com/dotnet/efcore/pull/37988", + "commit": "dotnet@591f22b", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@68bb873" + }, + { + "id": "efcore@7f484b1", + "repo": "efcore", + "title": "Copy over community-contribution label from closing PR to issue", + "url": "https://github.com/dotnet/efcore/pull/37989", + "commit": "dotnet@591f22b", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@7f484b1" + }, + { + "id": "efcore@30dca55", + "repo": "efcore", + "title": "Fix memory leak in LazyLoaderFactory", + "url": "https://github.com/dotnet/efcore/pull/37977", + "commit": "dotnet@591f22b", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@30dca55", + "labels": [ + "community-contribution" + ] + }, + { + "id": "efcore@ba4ebfe", + "repo": "efcore", + "title": "Fix ComplexCollection ToJson migration default value: use \"[]\" instead of \"{}\"", + "url": "https://github.com/dotnet/efcore/pull/37965", + "commit": "dotnet@591f22b", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@ba4ebfe" + }, + { + "id": "efcore@365cbc3", + "repo": "efcore", + "title": "Fix NullReferenceException in SqlServerStringMethodTranslator.TranslateIndexOf for casted parameters", + "url": "https://github.com/dotnet/efcore/pull/37956", + "commit": "dotnet@86d7aba", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@365cbc3" + }, + { + "id": "efcore@bfad1f2", + "repo": "efcore", + "title": "Show a warning when the tools are used with a platform-specific app", + "url": "https://github.com/dotnet/efcore/pull/37868", + "commit": "dotnet@86d7aba", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@bfad1f2", + "score": 4, + "score_reason": "Clearer warnings for platform-specific startup projects save time, but fit better as a shorter note.", + "score_breakdown": { + "breadth": 1, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "efcore@0842c55", + "repo": "efcore", + "title": "Update Microsoft.Data.SqlClient to 7.0.0", + "url": "https://github.com/dotnet/efcore/pull/37949", + "commit": "dotnet@86d7aba", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@0842c55", + "labels": [ + "breaking-change", + "community-contribution" + ], + "score": 3, + "score_reason": "SqlClient 7.0 matters mainly as a dependency/breaking-change note for SQL Server users.", + "score_breakdown": { + "breadth": 1, + "reader_value": 1, + "clarity": 1 + }, + "breaking_changes": true + }, + { + "id": "efcore@3445554", + "repo": "efcore", + "title": "Cosmos: Track session tokens for Pre-Condition, Conflict and document NotFound failures", + "url": "https://github.com/dotnet/efcore/pull/37941", + "commit": "dotnet@86d7aba", + "is_security": false, + "product": "dotnet-efcore", + "local_repo_commit": "efcore@3445554", + "labels": [ + "community-contribution" + ] + }, + { + "id": "emsdk@62354f3", + "repo": "emsdk", + "title": "Update dependencies", + "url": "https://github.com/dotnet/emsdk/pull/1557", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@62354f3" + }, + { + "id": "emsdk@8ac03c2", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1561", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@8ac03c2" + }, + { + "id": "emsdk@394c283", + "repo": "emsdk", + "title": "Update dependencies", + "url": "https://github.com/dotnet/emsdk/pull/1568", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@394c283" + }, + { + "id": "emsdk@1adfd1f", + "repo": "emsdk", + "title": "[main] Update dependencies from dotnet/binaryen, dotnet/emscripten", + "url": "https://github.com/dotnet/emsdk/pull/1564", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@1adfd1f" + }, + { + "id": "emsdk@5ff7edc", + "repo": "emsdk", + "title": "Update dependencies from https://github.com/dotnet/cpython build 20260125.1", + "url": "https://github.com/dotnet/emsdk/pull/1572", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@5ff7edc" + }, + { + "id": "emsdk@afe7a79", + "repo": "emsdk", + "title": "[main] Update dependencies from dotnet/binaryen, dotnet/cpython, dotnet/emscripten", + "url": "https://github.com/dotnet/emsdk/pull/1580", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@afe7a79" + }, + { + "id": "emsdk@9994979", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1573", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@9994979" + }, + { + "id": "emsdk@20e1677", + "repo": "emsdk", + "title": "Update dependencies", + "url": "https://github.com/dotnet/emsdk/pull/1584", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@20e1677" + }, + { + "id": "emsdk@1cf2cba", + "repo": "emsdk", + "title": "Update dependencies from build 300976", + "url": "https://github.com/dotnet/emsdk/pull/1590", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@1cf2cba" + }, + { + "id": "emsdk@4c20000", + "repo": "emsdk", + "title": "[main] Update dependencies from dotnet/binaryen, dotnet/emscripten", + "url": "https://github.com/dotnet/emsdk/pull/1586", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@4c20000" + }, + { + "id": "emsdk@f801db5", + "repo": "emsdk", + "title": "Update dependencies from https://github.com/dotnet/cpython build 20260209.1", + "url": "https://github.com/dotnet/emsdk/pull/1593", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@f801db5" + }, + { + "id": "emsdk@062d1d8", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1594", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@062d1d8" + }, + { + "id": "emsdk@113a4b4", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1596", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@113a4b4" + }, + { + "id": "emsdk@90915b7", + "repo": "emsdk", + "title": "[main] Update dependencies from dotnet/binaryen, dotnet/emscripten", + "url": "https://github.com/dotnet/emsdk/pull/1600", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@90915b7" + }, + { + "id": "emsdk@08d0c10", + "repo": "emsdk", + "title": "Update dependencies from build 302061", + "url": "https://github.com/dotnet/emsdk/pull/1601", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@08d0c10" + }, + { + "id": "emsdk@ee4b2f7", + "repo": "emsdk", + "title": "Update dependencies from https://github.com/dotnet/cpython build 20260215.1", + "url": "https://github.com/dotnet/emsdk/pull/1602", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@ee4b2f7" + }, + { + "id": "emsdk@5a0edd4", + "repo": "emsdk", + "title": "Update dependencies from build 302104", + "url": "https://github.com/dotnet/emsdk/pull/1604", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@5a0edd4" + }, + { + "id": "emsdk@112bfc2", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1606", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@112bfc2" + }, + { + "id": "emsdk@22404dd", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1607", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@22404dd" + }, + { + "id": "emsdk@d3326da", + "repo": "emsdk", + "title": "[main] Update dependencies from dotnet/binaryen, dotnet/cpython, dotnet/emscripten", + "url": "https://github.com/dotnet/emsdk/pull/1610", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@d3326da" + }, + { + "id": "emsdk@2a18dd9", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1611", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@2a18dd9" + }, + { + "id": "emsdk@79dafee", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1614", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@79dafee" + }, + { + "id": "emsdk@b06720c", + "repo": "emsdk", + "title": "Update dependencies from build 304069", + "url": "https://github.com/dotnet/emsdk/pull/1625", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@b06720c" + }, + { + "id": "emsdk@2ac1a6e", + "repo": "emsdk", + "title": "[main] Update dependencies from dotnet/cpython, dotnet/emscripten", + "url": "https://github.com/dotnet/emsdk/pull/1620", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@2ac1a6e" + }, + { + "id": "emsdk@c70f075", + "repo": "emsdk", + "title": "Update dependencies from build 304338", + "url": "https://github.com/dotnet/emsdk/pull/1631", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@c70f075" + }, + { + "id": "emsdk@776fcb4", + "repo": "emsdk", + "title": "[main] Update dependencies from dotnet/binaryen, dotnet/emscripten", + "url": "https://github.com/dotnet/emsdk/pull/1628", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@776fcb4" + }, + { + "id": "emsdk@ef73528", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1634", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@ef73528" + }, + { + "id": "emsdk@3e71182", + "repo": "emsdk", + "title": "Update dependencies from build 304998", + "url": "https://github.com/dotnet/emsdk/pull/1635", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@3e71182" + }, + { + "id": "emsdk@bc4c4fb", + "repo": "emsdk", + "title": "Update dependencies from build 305296", + "url": "https://github.com/dotnet/emsdk/pull/1642", + "commit": "dotnet@6c584d9", + "is_security": false, + "local_repo_commit": "emsdk@bc4c4fb" + }, + { + "id": "emsdk@c0a0f5f", + "repo": "emsdk", + "title": "[main] Update dependencies from dotnet/binaryen, dotnet/cpython, dotnet/emscripten", + "url": "https://github.com/dotnet/emsdk/pull/1643", + "commit": "dotnet@dd9825a", + "is_security": false, + "local_repo_commit": "emsdk@c0a0f5f" + }, + { + "id": "emsdk@35f3868", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1644", + "commit": "dotnet@dd9825a", + "is_security": false, + "local_repo_commit": "emsdk@35f3868" + }, + { + "id": "emsdk@0426e0c", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1646", + "commit": "dotnet@dd9825a", + "is_security": false, + "local_repo_commit": "emsdk@0426e0c" + }, + { + "id": "emsdk@41bf542", + "repo": "emsdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/emsdk/pull/1649", + "commit": "dotnet@dd9825a", + "is_security": false, + "local_repo_commit": "emsdk@41bf542" + }, + { + "id": "emsdk@506ea9f", + "repo": "emsdk", + "title": "Use azurelinux 3 build image", + "url": "https://github.com/dotnet/emsdk/pull/1655", + "commit": "dotnet@dd9825a", + "is_security": false, + "local_repo_commit": "emsdk@506ea9f" + }, + { + "id": "fsharp@1890128", + "repo": "fsharp", + "title": "remove duplicate FlatErrors file", + "url": "https://github.com/dotnet/fsharp/pull/19383", + "commit": "dotnet@0697b32", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@1890128" + }, + { + "id": "fsharp@87dc60c", + "repo": "fsharp", + "title": "Update dependencies from https://github.com/dotnet/arcade build 20260302.1", + "url": "https://github.com/dotnet/fsharp/pull/19379", + "commit": "dotnet@0697b32", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@87dc60c" + }, + { + "id": "fsharp@1c0cc5e", + "repo": "fsharp", + "title": "[main] Update dependencies from dotnet/msbuild", + "url": "https://github.com/dotnet/fsharp/pull/19021", + "commit": "dotnet@0697b32", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@1c0cc5e", + "labels": [ + "NO_RELEASE_NOTES" + ] + }, + { + "id": "fsharp@761162d", + "repo": "fsharp", + "title": "Add fsharp-release-announcement agent", + "url": "https://github.com/dotnet/fsharp/pull/19390", + "commit": "dotnet@0697b32", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@761162d" + }, + { + "id": "fsharp@6479611", + "repo": "fsharp", + "title": "Fix Seq.empty rendering as \"EmptyEnumerable\" in serializers", + "url": "https://github.com/dotnet/fsharp/pull/19317", + "commit": "dotnet@0697b32", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@6479611" + }, + { + "id": "fsharp@966cb0c", + "repo": "fsharp", + "title": "Update FileContentMapping.fs", + "url": "https://github.com/dotnet/fsharp/pull/19391", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@966cb0c" + }, + { + "id": "fsharp@8b46242", + "repo": "fsharp", + "title": "Fix flaky help_options test: restore enableConsoleColoring after mutation", + "url": "https://github.com/dotnet/fsharp/pull/19385", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@8b46242" + }, + { + "id": "fsharp@68373f5", + "repo": "fsharp", + "title": "isolate checker", + "url": "https://github.com/dotnet/fsharp/pull/19393", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@68373f5" + }, + { + "id": "fsharp@635a57e", + "repo": "fsharp", + "title": "Introduce CallRelatedSymbolSink to avoid affect name resolution with related symbols", + "url": "https://github.com/dotnet/fsharp/pull/19361", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@635a57e", + "labels": [ + "NO_RELEASE_NOTES" + ] + }, + { + "id": "fsharp@3b1218b", + "repo": "fsharp", + "title": "[main] Update dependencies from dnceng/internal/dotnet-optimization", + "url": "https://github.com/dotnet/fsharp/pull/19380", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@3b1218b" + }, + { + "id": "fsharp@56d1363", + "repo": "fsharp", + "title": "Warn when function type passed to interpolated string", + "url": "https://github.com/dotnet/fsharp/pull/19289", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@56d1363" + }, + { + "id": "fsharp@66c4f0f", + "repo": "fsharp", + "title": "Fix flaky type-provider test in MultiProjectAnalysisTests by isolating its checker and disabling parallelization", + "url": "https://github.com/dotnet/fsharp/pull/19395", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@66c4f0f" + }, + { + "id": "fsharp@3f33dbb", + "repo": "fsharp", + "title": "Update dependencies from https://github.com/dotnet/arcade build 20260303.3", + "url": "https://github.com/dotnet/fsharp/pull/19386", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@3f33dbb" + }, + { + "id": "fsharp@2bfd488", + "repo": "fsharp", + "title": "Update dependencies from https://github.com/dotnet/msbuild build 20260303.5", + "url": "https://github.com/dotnet/fsharp/pull/19387", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@2bfd488" + }, + { + "id": "fsharp@afd9294", + "repo": "fsharp", + "title": "Remove RoslynForTestingButNotForVSLayer hack", + "url": "https://github.com/dotnet/fsharp/pull/19375", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@afd9294" + }, + { + "id": "fsharp@6f1cc37", + "repo": "fsharp", + "title": "FSharpType: add more predefined type checks", + "url": "https://github.com/dotnet/fsharp/pull/19325", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@6f1cc37" + }, + { + "id": "fsharp@c80d142", + "repo": "fsharp", + "title": "Add #version;; directive to F# Interactive", + "url": "https://github.com/dotnet/fsharp/pull/19332", + "commit": "dotnet@542fea6", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@c80d142" + }, + { + "id": "fsharp@a5baeaa", + "repo": "fsharp", + "title": "[main] Update dependencies from dotnet/roslyn", + "url": "https://github.com/dotnet/fsharp/pull/19392", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@a5baeaa" + }, + { + "id": "fsharp@5111aeb", + "repo": "fsharp", + "title": "Update dependencies from https://github.com/dotnet/msbuild build 20260306.2", + "url": "https://github.com/dotnet/fsharp/pull/19400", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@5111aeb" + }, + { + "id": "fsharp@a581d51", + "repo": "fsharp", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/fsharp/pull/19401", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@a581d51" + }, + { + "id": "fsharp@6609928", + "repo": "fsharp", + "title": "Fix YieldFromFinal/ReturnFromFinal being called in non-tail positions", + "url": "https://github.com/dotnet/fsharp/pull/19403", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@6609928" + }, + { + "id": "fsharp@7424154", + "repo": "fsharp", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/fsharp/pull/19413", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@7424154" + }, + { + "id": "fsharp@ab1f6ce", + "repo": "fsharp", + "title": "Remove leading spaces from warn directive range", + "url": "https://github.com/dotnet/fsharp/pull/19408", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@ab1f6ce" + }, + { + "id": "fsharp@4b36640", + "repo": "fsharp", + "title": "Move System.* package versions to Version.Details.xml for source-build", + "url": "https://github.com/dotnet/fsharp/pull/19397", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@4b36640" + }, + { + "id": "fsharp@e199206", + "repo": "fsharp", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 499: Build ID 2917180", + "url": "https://github.com/dotnet/fsharp/pull/19378", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@e199206" + }, + { + "id": "fsharp@66beb38", + "repo": "fsharp", + "title": "Update dependencies from https://github.com/dotnet/msbuild build 20260309.5", + "url": "https://github.com/dotnet/fsharp/pull/19410", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@66beb38" + }, + { + "id": "fsharp@7981cb5", + "repo": "fsharp", + "title": "Resolve ILVerify errors \u2014 adjust codegen (551 \u2192 56 errors)", + "url": "https://github.com/dotnet/fsharp/pull/19372", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@7981cb5" + }, + { + "id": "fsharp@e6f00ee", + "repo": "fsharp", + "title": "Update dependencies from https://github.com/dotnet/arcade build 20260309.1", + "url": "https://github.com/dotnet/fsharp/pull/19409", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@e6f00ee" + }, + { + "id": "fsharp@b54ff0a", + "repo": "fsharp", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/fsharp/pull/19425", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@b54ff0a" + }, + { + "id": "fsharp@7a075f3", + "repo": "fsharp", + "title": "[main] Update dependencies from dotnet/msbuild", + "url": "https://github.com/dotnet/fsharp/pull/19423", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@7a075f3" + }, + { + "id": "fsharp@20aa5a4", + "repo": "fsharp", + "title": "VS: make Alt-F1 work for inline hints", + "url": "https://github.com/dotnet/fsharp/pull/19421", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@20aa5a4" + }, + { + "id": "fsharp@71c0951", + "repo": "fsharp", + "title": "Use union merge strategy for release notes to avoid conflicts", + "url": "https://github.com/dotnet/fsharp/pull/19420", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@71c0951" + }, + { + "id": "fsharp@4a7df88", + "repo": "fsharp", + "title": "[main] Update dependencies from dotnet/roslyn", + "url": "https://github.com/dotnet/fsharp/pull/19411", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@4a7df88" + }, + { + "id": "fsharp@1dd1db0", + "repo": "fsharp", + "title": "Bugfix :: Sequence points", + "url": "https://github.com/dotnet/fsharp/pull/19278", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@1dd1db0" + }, + { + "id": "fsharp@1b1deba", + "repo": "fsharp", + "title": "[main] Update dependencies from dotnet/roslyn", + "url": "https://github.com/dotnet/fsharp/pull/19431", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@1b1deba" + }, + { + "id": "fsharp@5a0255a", + "repo": "fsharp", + "title": "Update dependencies from https://github.com/dotnet/msbuild build 20260313.3", + "url": "https://github.com/dotnet/fsharp/pull/19430", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@5a0255a" + }, + { + "id": "fsharp@3f5a346", + "repo": "fsharp", + "title": "Fix flaky tests and add flaky-test-detector skill", + "url": "https://github.com/dotnet/fsharp/pull/19427", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@3f5a346" + }, + { + "id": "fsharp@552ef9d", + "repo": "fsharp", + "title": "Add limited repo assist to identify very old issues that are already fixed", + "url": "https://github.com/dotnet/fsharp/pull/19436", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@552ef9d" + }, + { + "id": "fsharp@487aa8b", + "repo": "fsharp", + "title": "[main] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/fsharp/pull/19422", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@487aa8b" + }, + { + "id": "fsharp@67a56a4", + "repo": "fsharp", + "title": "Fix UoM ToString codegen with checknulls", + "url": "https://github.com/dotnet/fsharp/pull/19440", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@67a56a4" + }, + { + "id": "fsharp@afdccf9", + "repo": "fsharp", + "title": "Allow repo-assist to create monthly report", + "url": "https://github.com/dotnet/fsharp/pull/19437", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@afdccf9" + }, + { + "id": "fsharp@6f6440a", + "repo": "fsharp", + "title": "Fix PublicSign with full key pair embedding private key material in assembly", + "url": "https://github.com/dotnet/fsharp/pull/19442", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@6f6440a" + }, + { + "id": "fsharp@f80d20f", + "repo": "fsharp", + "title": "Cache attributes read by compiler\u2014 replace repeated string matching with O(1) enum lookups", + "url": "https://github.com/dotnet/fsharp/pull/19394", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@f80d20f", + "labels": [ + "Refactoring", + "NO_RELEASE_NOTES" + ] + }, + { + "id": "fsharp@0a710a8", + "repo": "fsharp", + "title": "Split CI tests based on namespace", + "url": "https://github.com/dotnet/fsharp/pull/19354", + "commit": "dotnet@34a1648", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@0a710a8", + "labels": [ + "AI-reviewed" + ] + }, + { + "id": "fsharp@4a2c294", + "repo": "fsharp", + "title": "Adding Copilot skills+instructions+agent for specialized compiler review (trained on historical feedback here)", + "url": "https://github.com/dotnet/fsharp/pull/19447", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@4a2c294" + }, + { + "id": "fsharp@ff81858", + "repo": "fsharp", + "title": "Copilot reviewer - drop overfitted learnings, turn into generalized rules", + "url": "https://github.com/dotnet/fsharp/pull/19451", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@ff81858" + }, + { + "id": "fsharp@f00319f", + "repo": "fsharp", + "title": "Update issue label workflow", + "url": "https://github.com/dotnet/fsharp/pull/19454", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@f00319f" + }, + { + "id": "fsharp@0fe04d0", + "repo": "fsharp", + "title": "Update dependencies from https://github.com/dotnet/arcade build 20260318.1", + "url": "https://github.com/dotnet/fsharp/pull/19452", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@0fe04d0" + }, + { + "id": "fsharp@9c01f26", + "repo": "fsharp", + "title": "[main] Update dependencies from dotnet/roslyn", + "url": "https://github.com/dotnet/fsharp/pull/19444", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@9c01f26" + }, + { + "id": "fsharp@6908bca", + "repo": "fsharp", + "title": "[main] Update dependencies from dotnet/msbuild", + "url": "https://github.com/dotnet/fsharp/pull/19443", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@6908bca" + }, + { + "id": "fsharp@d04f46f", + "repo": "fsharp", + "title": "Reduce Repo Assist schedule from hourly to 4x daily", + "url": "https://github.com/dotnet/fsharp/pull/19459", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@d04f46f" + }, + { + "id": "fsharp@be84684", + "repo": "fsharp", + "title": "Add regression test for #14057: Renaming operator with dot only renames right of dot", + "url": "https://github.com/dotnet/fsharp/pull/19488", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@be84684", + "labels": [ + "NO_RELEASE_NOTES", + "AI-Issue-Regression-PR" + ] + }, + { + "id": "fsharp@fdea689", + "repo": "fsharp", + "title": "Add regression test for #14969: FindReferences for active patterns in .fsi", + "url": "https://github.com/dotnet/fsharp/pull/19487", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@fdea689", + "labels": [ + "NO_RELEASE_NOTES", + "AI-Issue-Regression-PR" + ] + }, + { + "id": "fsharp@38f78a9", + "repo": "fsharp", + "title": "Add regression test for #13194: Completion/tooltip with quote in member name", + "url": "https://github.com/dotnet/fsharp/pull/19486", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@38f78a9", + "labels": [ + "NO_RELEASE_NOTES", + "AI-Issue-Regression-PR" + ] + }, + { + "id": "fsharp@64e384d", + "repo": "fsharp", + "title": "Update dependencies from https://github.com/dotnet/roslyn build 20260323.11", + "url": "https://github.com/dotnet/fsharp/pull/19462", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@64e384d" + }, + { + "id": "fsharp@38b455d", + "repo": "fsharp", + "title": "Update dependencies from https://github.com/dotnet/msbuild build 20260323.2", + "url": "https://github.com/dotnet/fsharp/pull/19461", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@38b455d" + }, + { + "id": "fsharp@59581dc", + "repo": "fsharp", + "title": "Bugfix :: Fix emitted method signatures: outref and static abstract byref params", + "url": "https://github.com/dotnet/fsharp/pull/19340", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@59581dc" + }, + { + "id": "fsharp@f915353", + "repo": "fsharp", + "title": "Bugfix :: Fix closure capture and let-rec initialization codegen", + "url": "https://github.com/dotnet/fsharp/pull/19339", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@f915353" + }, + { + "id": "fsharp@9e37b2c", + "repo": "fsharp", + "title": "Add regression test for #6750: Mutually recursive DU values initialization", + "url": "https://github.com/dotnet/fsharp/pull/19483", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@9e37b2c", + "labels": [ + "NO_RELEASE_NOTES", + "AI-Issue-Regression-PR" + ] + }, + { + "id": "fsharp@1cd0ca0", + "repo": "fsharp", + "title": "Add regression tests for #14308 and #14310: Signature generation improvements", + "url": "https://github.com/dotnet/fsharp/pull/19490", + "commit": "dotnet@fb19a97", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@1cd0ca0", + "labels": [ + "NO_RELEASE_NOTES", + "AI-Issue-Regression-PR" + ] + }, + { + "id": "fsharp@5ee6d09", + "repo": "fsharp", + "title": "Add regression test for #16410: no spurious FS3570 with KeyValue active pattern", + "url": "https://github.com/dotnet/fsharp/pull/19481", + "commit": "dotnet@646090b", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@5ee6d09", + "labels": [ + "NO_RELEASE_NOTES", + "AI-Issue-Regression-PR" + ] + }, + { + "id": "fsharp@632a0ab", + "repo": "fsharp", + "title": "Add regression test for #3841: Hash directive indentation in nested module", + "url": "https://github.com/dotnet/fsharp/pull/19489", + "commit": "dotnet@646090b", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@632a0ab", + "labels": [ + "NO_RELEASE_NOTES", + "AI-Issue-Regression-PR" + ] + }, + { + "id": "fsharp@fb1ca7e", + "repo": "fsharp", + "title": "Add regression test for #14152: nowarn directive before module declaration", + "url": "https://github.com/dotnet/fsharp/pull/19477", + "commit": "dotnet@646090b", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@fb1ca7e", + "labels": [ + "NO_RELEASE_NOTES", + "AI-Issue-Regression-PR" + ] + }, + { + "id": "fsharp@0db49dd", + "repo": "fsharp", + "title": "Add regression test: #6929, Literal bindings preserve units of measure", + "url": "https://github.com/dotnet/fsharp/pull/19463", + "commit": "dotnet@646090b", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@0db49dd", + "labels": [ + "NO_RELEASE_NOTES", + "AI-Issue-Regression-PR" + ] + }, + { + "id": "fsharp@251aaf2", + "repo": "fsharp", + "title": "Add regression test: #3660, array of functions invocation correctness", + "url": "https://github.com/dotnet/fsharp/pull/19479", + "commit": "dotnet@646090b", + "is_security": false, + "product": "dotnet-fsharp", + "local_repo_commit": "fsharp@251aaf2", + "labels": [ + "NO_RELEASE_NOTES", + "AI-Issue-Regression-PR" + ] + }, + { + "id": "msbuild@28e6097", + "repo": "msbuild", + "title": "Remove Shouldly from ProjectCachePlugin sample", + "url": "https://github.com/dotnet/msbuild/pull/13219", + "commit": "dotnet@8103dd0", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@28e6097" + }, + { + "id": "msbuild@885e1bb", + "repo": "msbuild", + "title": "Tweak build and test instructions in AGENTS", + "url": "https://github.com/dotnet/msbuild/pull/13251", + "commit": "dotnet@8103dd0", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@885e1bb" + }, + { + "id": "msbuild@6fdc193", + "repo": "msbuild", + "title": "Rationalize Microsoft.Build.Framework string resources and add ThrowIf* polyfills for exceptions", + "url": "https://github.com/dotnet/msbuild/pull/13276", + "commit": "dotnet@8103dd0", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@6fdc193" + }, + { + "id": "msbuild@9cc6c63", + "repo": "msbuild", + "title": "[IBuildEngine callbacks] Stage 1: Packet infrastructure + IsRunningMultipleNodes", + "url": "https://github.com/dotnet/msbuild/pull/13149", + "commit": "dotnet@8103dd0", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@9cc6c63" + }, + { + "id": "msbuild@1a818e7", + "repo": "msbuild", + "title": "Changewave doc updates", + "url": "https://github.com/dotnet/msbuild/pull/13275", + "commit": "dotnet@8103dd0", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@1a818e7" + }, + { + "id": "msbuild@a2c1035", + "repo": "msbuild", + "title": "Improve crash telemetry: enums, FaultEvent, remove noise, dedup host detection", + "url": "https://github.com/dotnet/msbuild/pull/13289", + "commit": "dotnet@8103dd0", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@a2c1035" + }, + { + "id": "msbuild@b781c76", + "repo": "msbuild", + "title": "[main] Update dependencies from nuget/nuget.client", + "url": "https://github.com/dotnet/msbuild/pull/13279", + "commit": "dotnet@8103dd0", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@b781c76" + }, + { + "id": "msbuild@c48fb46", + "repo": "msbuild", + "title": "Improve cross-platform node discovery for reuse with NodeMode filtering", + "url": "https://github.com/dotnet/msbuild/pull/13256", + "commit": "dotnet@8103dd0", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@c48fb46", + "labels": [ + "User Experience", + "Area: Engine" + ] + }, + { + "id": "msbuild@326f6a7", + "repo": "msbuild", + "title": "Updated common types XSD to remove errors from redefining `Include` attributes", + "url": "https://github.com/dotnet/msbuild/pull/13284", + "commit": "dotnet@8be2ae1", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@326f6a7" + }, + { + "id": "msbuild@b8f5ea0", + "repo": "msbuild", + "title": "Update VersionPrefix to 18.6.0 + insertion flow", + "url": "https://github.com/dotnet/msbuild/pull/13296", + "commit": "dotnet@8be2ae1", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@b8f5ea0" + }, + { + "id": "msbuild@ab7dbb6", + "repo": "msbuild", + "title": "Log warnings for skipped STR resource keys instead of failing the build", + "url": "https://github.com/dotnet/msbuild/pull/13291", + "commit": "dotnet@8be2ae1", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@ab7dbb6" + }, + { + "id": "msbuild@5ac8ab0", + "repo": "msbuild", + "title": "Isolate MSBuildTaskHost from the rest of MSBuild Codebase", + "url": "https://github.com/dotnet/msbuild/pull/13232", + "commit": "dotnet@8be2ae1", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@5ac8ab0" + }, + { + "id": "msbuild@414f0ac", + "repo": "msbuild", + "title": "Improve error messages when ToolTask overrides exit code 0 to -1 due to logged errors", + "url": "https://github.com/dotnet/msbuild/pull/13303", + "commit": "dotnet@1056a87", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@414f0ac" + }, + { + "id": "msbuild@074bba0", + "repo": "msbuild", + "title": "Migrate Exec task to TaskEnvironment API", + "url": "https://github.com/dotnet/msbuild/pull/13171", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@074bba0" + }, + { + "id": "msbuild@77c8e1f", + "repo": "msbuild", + "title": "Enhance crash telemetry with richer diagnostics and EndBuild hang detection", + "url": "https://github.com/dotnet/msbuild/pull/13304", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@77c8e1f" + }, + { + "id": "msbuild@ec66ab6", + "repo": "msbuild", + "title": "[main] Update dependencies from nuget/nuget.client", + "url": "https://github.com/dotnet/msbuild/pull/13309", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@ec66ab6" + }, + { + "id": "msbuild@7d3313c", + "repo": "msbuild", + "title": "[IBuildEngine callbacks] Stage 2: RequestCores/ReleaseCores", + "url": "https://github.com/dotnet/msbuild/pull/13306", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@7d3313c" + }, + { + "id": "msbuild@ac21192", + "repo": "msbuild", + "title": "Only get command line args names on modern .NET", + "url": "https://github.com/dotnet/msbuild/pull/13314", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@ac21192", + "labels": [ + "Area: Performance" + ] + }, + { + "id": "msbuild@98231a0", + "repo": "msbuild", + "title": "Detect and correct worker node over-provisioning", + "url": "https://github.com/dotnet/msbuild/pull/13220", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@98231a0", + "labels": [ + "User Experience", + "Area: Engine" + ] + }, + { + "id": "msbuild@c8011cb", + "repo": "msbuild", + "title": "Add App Host Support for MSBuild", + "url": "https://github.com/dotnet/msbuild/pull/13175", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@c8011cb" + }, + { + "id": "msbuild@8b542c4", + "repo": "msbuild", + "title": "[main] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/msbuild/pull/13311", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@8b542c4" + }, + { + "id": "msbuild@4b59b45", + "repo": "msbuild", + "title": "Fix ObjectDisposedException in BuildsWhileBuildIsRunningOnServer test", + "url": "https://github.com/dotnet/msbuild/pull/13316", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@4b59b45" + }, + { + "id": "msbuild@9f3a7a5", + "repo": "msbuild", + "title": "Add PoC of pipelines check skill", + "url": "https://github.com/dotnet/msbuild/pull/13242", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@9f3a7a5" + }, + { + "id": "msbuild@3477e49", + "repo": "msbuild", + "title": "Fix CodeSign.MissingSigningCert for xsd/Update-MSBuildXsds.ps1", + "url": "https://github.com/dotnet/msbuild/pull/13320", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@3477e49" + }, + { + "id": "msbuild@b481c50", + "repo": "msbuild", + "title": "Fix task host launch regressions from apphost support", + "url": "https://github.com/dotnet/msbuild/pull/13325", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@b481c50" + }, + { + "id": "msbuild@b93059c", + "repo": "msbuild", + "title": "Enlighten GetFrameworkPath and GetFrameworkSdkPath.", + "url": "https://github.com/dotnet/msbuild/pull/13282", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@b93059c" + }, + { + "id": "msbuild@399d597", + "repo": "msbuild", + "title": "Add VMR codeflow health check to pipelines skill", + "url": "https://github.com/dotnet/msbuild/pull/13326", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@399d597" + }, + { + "id": "msbuild@676f32c", + "repo": "msbuild", + "title": "[main] Update dependencies from dotnet/roslyn", + "url": "https://github.com/dotnet/msbuild/pull/13281", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@676f32c" + }, + { + "id": "msbuild@9d58c2f", + "repo": "msbuild", + "title": "Fix GenerateResource to track all ResXFileRef linked files for incremental builds", + "url": "https://github.com/dotnet/msbuild/pull/13327", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@9d58c2f" + }, + { + "id": "msbuild@0b2773e", + "repo": "msbuild", + "title": "Add escape hatch for not sharing assemblies from tools directory", + "url": "https://github.com/dotnet/msbuild/pull/13305", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@0b2773e" + }, + { + "id": "msbuild@986a951", + "repo": "msbuild", + "title": "Add merge-dependency-updates skill for bot PR triage", + "url": "https://github.com/dotnet/msbuild/pull/13331", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@986a951" + }, + { + "id": "msbuild@6500dd2", + "repo": "msbuild", + "title": "Add diagnostic data to crash/hang telemetry and move null-Project check after RetrieveFromCache", + "url": "https://github.com/dotnet/msbuild/pull/13332", + "commit": "dotnet@5f4c69f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@6500dd2" + }, + { + "id": "msbuild@bf9f757", + "repo": "msbuild", + "title": "Update remote-host-object.md with SDK .tlb shipping and IDispatch example", + "url": "https://github.com/dotnet/msbuild/pull/13324", + "commit": "dotnet@e311f21", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@bf9f757" + }, + { + "id": "msbuild@fee9971", + "repo": "msbuild", + "title": "[main] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/msbuild/pull/13341", + "commit": "dotnet@e311f21", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@fee9971" + }, + { + "id": "msbuild@0655967", + "repo": "msbuild", + "title": "improve task migration skill", + "url": "https://github.com/dotnet/msbuild/pull/13234", + "commit": "dotnet@e311f21", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@0655967" + }, + { + "id": "msbuild@fd46d4a", + "repo": "msbuild", + "title": "Fix telemetry PII concerns: sanitize exceptions, project paths, and custom names", + "url": "https://github.com/dotnet/msbuild/pull/13344", + "commit": "dotnet@e311f21", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@fd46d4a" + }, + { + "id": "msbuild@ef957b7", + "repo": "msbuild", + "title": "Use .exe.config when loading \"as full Framework\"", + "url": "https://github.com/dotnet/msbuild/pull/13349", + "commit": "dotnet@e311f21", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@ef957b7" + }, + { + "id": "msbuild@6fa57bb", + "repo": "msbuild", + "title": "Fix RequestCores/ReleaseCores fallback in OOP TaskHost: throw NotImplementedException instead of logging error", + "url": "https://github.com/dotnet/msbuild/pull/13345", + "commit": "dotnet@da71424", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@6fa57bb" + }, + { + "id": "msbuild@e2b57d0", + "repo": "msbuild", + "title": "Fixed indentation for _GetCopyToOutputDirectoryItemsFromTransitiveProjectReferences", + "url": "https://github.com/dotnet/msbuild/pull/13358", + "commit": "dotnet@da71424", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@e2b57d0" + }, + { + "id": "msbuild@6a4c26f", + "repo": "msbuild", + "title": "Fix Unix SessionId in handshake to enable cross-terminal node reuse", + "url": "https://github.com/dotnet/msbuild/pull/13354", + "commit": "dotnet@da71424", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@6a4c26f" + }, + { + "id": "msbuild@7d73e8e", + "repo": "msbuild", + "title": "Revert \"Migrate Exec task to TaskEnvironment API\"", + "url": "https://github.com/dotnet/msbuild/pull/13367", + "commit": "dotnet@da71424", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@7d73e8e" + }, + { + "id": "msbuild@8cee1da", + "repo": "msbuild", + "title": "Look for apphost when considering node reuse", + "url": "https://github.com/dotnet/msbuild/pull/13368", + "commit": "dotnet@da71424", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@8cee1da" + }, + { + "id": "msbuild@df3c977", + "repo": "msbuild", + "title": "Move lots of shared code to Microsoft.Build.Framework", + "url": "https://github.com/dotnet/msbuild/pull/13364", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@df3c977" + }, + { + "id": "msbuild@aac4696", + "repo": "msbuild", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/msbuild/pull/13353", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@aac4696" + }, + { + "id": "msbuild@5215c7e", + "repo": "msbuild", + "title": "Fix ScheduleTimeRecord.AccumulatedTime hang during solution close", + "url": "https://github.com/dotnet/msbuild/pull/13375", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@5215c7e" + }, + { + "id": "msbuild@4ca2875", + "repo": "msbuild", + "title": "Update runtime package references to 10.0.3", + "url": "https://github.com/dotnet/msbuild/pull/13376", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@4ca2875" + }, + { + "id": "msbuild@337c123", + "repo": "msbuild", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/msbuild/pull/13378", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@337c123" + }, + { + "id": "msbuild@1cbd743", + "repo": "msbuild", + "title": "Fix ProjectImports.zip regression from shared FileUtilities statics", + "url": "https://github.com/dotnet/msbuild/pull/13382", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@1cbd743" + }, + { + "id": "msbuild@1f15113", + "repo": "msbuild", + "title": "Enrich EndBuild hang diagnostics with logging service and submission state", + "url": "https://github.com/dotnet/msbuild/pull/13385", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@1f15113" + }, + { + "id": "msbuild@72d89ab", + "repo": "msbuild", + "title": "Enhance path normalization: add handling for consecutive directory separators", + "url": "https://github.com/dotnet/msbuild/pull/13369", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@72d89ab", + "labels": [ + "regression" + ] + }, + { + "id": "msbuild@f2213b0", + "repo": "msbuild", + "title": "Move task environment drivers to Framework.", + "url": "https://github.com/dotnet/msbuild/pull/13380", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@f2213b0" + }, + { + "id": "msbuild@1688a71", + "repo": "msbuild", + "title": "Update MicrosoftBuildVersion in analyzer template", + "url": "https://github.com/dotnet/msbuild/pull/13298", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@1688a71" + }, + { + "id": "msbuild@0bd8bb3", + "repo": "msbuild", + "title": "Add agentic workflow to auto-close PRs older than 180 days", + "url": "https://github.com/dotnet/msbuild/pull/13400", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@0bd8bb3" + }, + { + "id": "msbuild@52f1e9d", + "repo": "msbuild", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 9434: Build ID 13575337", + "url": "https://github.com/dotnet/msbuild/pull/13394", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@52f1e9d" + }, + { + "id": "msbuild@18baac8", + "repo": "msbuild", + "title": "Respect MSBUILDPRESERVETOOLTEMPFILES in ProcessExit cleanup", + "url": "https://github.com/dotnet/msbuild/pull/13395", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@18baac8" + }, + { + "id": "msbuild@17e89c7", + "repo": "msbuild", + "title": "Fix stale PR workflow: enable close_pull_request tool and add 30+7 day inactivity grace period", + "url": "https://github.com/dotnet/msbuild/pull/13402", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@17e89c7" + }, + { + "id": "msbuild@cb266c7", + "repo": "msbuild", + "title": "Fix RecursiveDir metadata loss in -mt builds (TaskHost boundary only)", + "url": "https://github.com/dotnet/msbuild/pull/13318", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@cb266c7" + }, + { + "id": "msbuild@2a728a3", + "repo": "msbuild", + "title": "Improve logging for AppDomain assembly load tracking", + "url": "https://github.com/dotnet/msbuild/pull/13359", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@2a728a3" + }, + { + "id": "msbuild@32d344d", + "repo": "msbuild", + "title": "Proposal: instructions, skills and review agent", + "url": "https://github.com/dotnet/msbuild/pull/13397", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@32d344d" + }, + { + "id": "msbuild@960ca3c", + "repo": "msbuild", + "title": "Fix System.IO.File/Directory property functions with relative paths in -mt mode", + "url": "https://github.com/dotnet/msbuild/pull/13239", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@960ca3c" + }, + { + "id": "msbuild@6bde8dc", + "repo": "msbuild", + "title": "Add skill for patching VS with build msbuild", + "url": "https://github.com/dotnet/msbuild/pull/13405", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@6bde8dc" + }, + { + "id": "msbuild@8d5ad98", + "repo": "msbuild", + "title": "[main] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/msbuild/pull/13388", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@8d5ad98" + }, + { + "id": "msbuild@673ef31", + "repo": "msbuild", + "title": "Fix macOS symlink handshake mismatch in .NET task host (MSB4216)", + "url": "https://github.com/dotnet/msbuild/pull/13406", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@673ef31" + }, + { + "id": "msbuild@b717f6f", + "repo": "msbuild", + "title": "Pre-size MultiDictionary in CreateEvaluatedIncludeSnapshotIfRequested to avoid resize allocations", + "url": "https://github.com/dotnet/msbuild/pull/13377", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@b717f6f" + }, + { + "id": "msbuild@05668ef", + "repo": "msbuild", + "title": "Remove wrong review instructinons", + "url": "https://github.com/dotnet/msbuild/pull/13414", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@05668ef" + }, + { + "id": "msbuild@82c3923", + "repo": "msbuild", + "title": "Add default fallback TaskEnvironment to all IMultiThreadableTask implementations", + "url": "https://github.com/dotnet/msbuild/pull/13415", + "commit": "dotnet@13db7a6", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@82c3923" + }, + { + "id": "msbuild@6e04068", + "repo": "msbuild", + "title": "Simplify vs-insertion pipelines: remove obsolete rel/dX.Y branch logic", + "url": "https://github.com/dotnet/msbuild/pull/13409", + "commit": "dotnet@7e7ab8a", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@6e04068" + }, + { + "id": "msbuild@dfe5370", + "repo": "msbuild", + "title": "Fix thread safety issues in WorkerNodeTelemetryData", + "url": "https://github.com/dotnet/msbuild/pull/13413", + "commit": "dotnet@7e7ab8a", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@dfe5370" + }, + { + "id": "msbuild@5071b11", + "repo": "msbuild", + "title": "Skip results transfer in MT mode to fix ResultsNodeId race", + "url": "https://github.com/dotnet/msbuild/pull/13417", + "commit": "dotnet@7e7ab8a", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@5071b11" + }, + { + "id": "msbuild@ec15050", + "repo": "msbuild", + "title": "Move more shared files to a single binary", + "url": "https://github.com/dotnet/msbuild/pull/13370", + "commit": "dotnet@eca1665", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@ec15050" + }, + { + "id": "msbuild@6c499a7", + "repo": "msbuild", + "title": "Fix ToolTask hang when grandchild processes inherit pipe handles", + "url": "https://github.com/dotnet/msbuild/pull/13351", + "commit": "dotnet@eca1665", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@6c499a7" + }, + { + "id": "msbuild@37cc8b7", + "repo": "msbuild", + "title": "Fix ShouldTreatWarningAsError in OOP TaskHost checking wrong collection", + "url": "https://github.com/dotnet/msbuild/pull/13440", + "commit": "dotnet@8cb849f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@37cc8b7" + }, + { + "id": "msbuild@168763b", + "repo": "msbuild", + "title": "Add MSBuild.Benchmarks and greatly improve ItemSpecModifiers and BuiltInMetadata performance", + "url": "https://github.com/dotnet/msbuild/pull/13386", + "commit": "dotnet@8cb849f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@168763b" + }, + { + "id": "msbuild@d84a0dc", + "repo": "msbuild", + "title": "Fix Unix paths normalization in properties in /mt mode.", + "url": "https://github.com/dotnet/msbuild/pull/13439", + "commit": "dotnet@8cb849f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@d84a0dc" + }, + { + "id": "msbuild@1b923e2", + "repo": "msbuild", + "title": "Fix race conditions in AssemblyTaskFactory class.", + "url": "https://github.com/dotnet/msbuild/pull/13422", + "commit": "dotnet@8cb849f", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@1b923e2" + }, + { + "id": "msbuild@0f7f8dd", + "repo": "msbuild", + "title": "Allow referencing virtual projects", + "url": "https://github.com/dotnet/msbuild/pull/13389", + "commit": "dotnet@d22e935", + "is_security": false, + "product": "dotnet-msbuild", + "local_repo_commit": "msbuild@0f7f8dd" + }, + { + "id": "nuget-client@88c27a6", + "repo": "nuget-client", + "title": "Resolve dependency graph items reduce allocation size", + "url": "https://github.com/nuget/nuget.client/pull/7174", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@88c27a6", + "labels": [ + "Community" + ] + }, + { + "id": "nuget-client@f826ad4", + "repo": "nuget-client", + "title": "Remove Intent assignment in CopilotRequest", + "url": "https://github.com/nuget/nuget.client/pull/7177", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@f826ad4" + }, + { + "id": "nuget-client@1158132", + "repo": "nuget-client", + "title": "Nullable annotations for most of NuGet.ProjectModel", + "url": "https://github.com/nuget/nuget.client/pull/7172", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@1158132" + }, + { + "id": "nuget-client@d4425db", + "repo": "nuget-client", + "title": "Enabling nullability in NuGet.Packaging - phase 1, models and simple classes", + "url": "https://github.com/nuget/nuget.client/pull/7176", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@d4425db" + }, + { + "id": "nuget-client@c041177", + "repo": "nuget-client", + "title": "Move to manifest based event source", + "url": "https://github.com/nuget/nuget.client/pull/7164", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@c041177" + }, + { + "id": "nuget-client@2ba46c4", + "repo": "nuget-client", + "title": "Remove global.json sdk property", + "url": "https://github.com/nuget/nuget.client/pull/7182", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@2ba46c4" + }, + { + "id": "nuget-client@76b9210", + "repo": "nuget-client", + "title": "Use Themed Context menus and remove custom FontSize converters", + "url": "https://github.com/nuget/nuget.client/pull/7179", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@76b9210" + }, + { + "id": "nuget-client@a561a5b", + "repo": "nuget-client", + "title": "Move all CI to VS stable agent pool", + "url": "https://github.com/nuget/nuget.client/pull/7187", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@a561a5b" + }, + { + "id": "nuget-client@a52c5c1", + "repo": "nuget-client", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 8117: Build ID 13442077", + "url": "https://github.com/nuget/nuget.client/pull/7188", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@a52c5c1" + }, + { + "id": "nuget-client@3534a18", + "repo": "nuget-client", + "title": "Update branding to 7.6", + "url": "https://github.com/nuget/nuget.client/pull/7189", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@3534a18", + "labels": [ + "Engineering" + ] + }, + { + "id": "nuget-client@8a9eabb", + "repo": "nuget-client", + "title": "Normalize line endings in CommandsEventSource.cs", + "url": "https://github.com/nuget/nuget.client/pull/7190", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@8a9eabb", + "labels": [ + "Engineering" + ] + }, + { + "id": "nuget-client@a4675d8", + "repo": "nuget-client", + "title": "Add CI information to User-Agent header", + "url": "https://github.com/nuget/nuget.client/pull/7103", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@a4675d8" + }, + { + "id": "nuget-client@c0c368a", + "repo": "nuget-client", + "title": "Enabling nullability in NuGet.Packaging - Phase 2, declare some interfaces", + "url": "https://github.com/nuget/nuget.client/pull/7178", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@c0c368a" + }, + { + "id": "nuget-client@a3f6e96", + "repo": "nuget-client", + "title": "dotnet package search tests use default width", + "url": "https://github.com/nuget/nuget.client/pull/7171", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@a3f6e96" + }, + { + "id": "nuget-client@8deb76a", + "repo": "nuget-client", + "title": "AOT compatible: set IsAOTcompatible", + "url": "https://github.com/nuget/nuget.client/pull/7152", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@8deb76a" + }, + { + "id": "nuget-client@ab7d0d6", + "repo": "nuget-client", + "title": "Fix `dotnet add package --no-restore` ignoring Central Package Management", + "url": "https://github.com/nuget/nuget.client/pull/7148", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@ab7d0d6", + "labels": [ + "Community" + ] + }, + { + "id": "nuget-client@a553524", + "repo": "nuget-client", + "title": "Handle missing TargetFramework in nomination", + "url": "https://github.com/nuget/nuget.client/pull/7196", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@a553524" + }, + { + "id": "nuget-client@f424430", + "repo": "nuget-client", + "title": "AOT compatible: make NuGet.ProjectModel AOT compatible", + "url": "https://github.com/nuget/nuget.client/pull/7191", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@f424430" + }, + { + "id": "nuget-client@3619c9f", + "repo": "nuget-client", + "title": "Centralize the definition of MCP Server and Tool names into Constants class", + "url": "https://github.com/nuget/nuget.client/pull/7168", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@3619c9f" + }, + { + "id": "nuget-client@b761098", + "repo": "nuget-client", + "title": "Remove NU5105 suppressions", + "url": "https://github.com/nuget/nuget.client/pull/7202", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@b761098", + "labels": [ + "Engineering" + ] + }, + { + "id": "nuget-client@2233ffd", + "repo": "nuget-client", + "title": "Enabling nullability in NuGet.Packaging - Annotate ContentModel, LicenseMetadata & some extraction types", + "url": "https://github.com/nuget/nuget.client/pull/7195", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@2233ffd" + }, + { + "id": "nuget-client@e0311a9", + "repo": "nuget-client", + "title": "Show CRL and OCSP URLs in verify output", + "url": "https://github.com/nuget/nuget.client/pull/7181", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@e0311a9" + }, + { + "id": "nuget-client@efaba6a", + "repo": "nuget-client", + "title": "Ensure props/targets imports are generated correctly for aliased projects", + "url": "https://github.com/nuget/nuget.client/pull/7203", + "commit": "dotnet@4c361a5", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@efaba6a" + }, + { + "id": "nuget-client@60d1ab4", + "repo": "nuget-client", + "title": "AOT compatible: make NuGet.Commandline.Xplat Aot compatible", + "url": "https://github.com/nuget/nuget.client/pull/7207", + "commit": "dotnet@0061c2b", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@60d1ab4" + }, + { + "id": "nuget-client@b8bbe4b", + "repo": "nuget-client", + "title": "List package uses aliases as pivot when printing packages; Fix list package not supporting aliased frameworks", + "url": "https://github.com/nuget/nuget.client/pull/7146", + "commit": "dotnet@435654e", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@b8bbe4b" + }, + { + "id": "nuget-client@1edb104", + "repo": "nuget-client", + "title": "Revert \"dotnet nuget why reports requested as well as resolved versions \"", + "url": "https://github.com/nuget/nuget.client/pull/7017", + "commit": "dotnet@435654e", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@1edb104", + "labels": [ + "Breaking-change", + "needs-breaking-change-doc-created" + ] + }, + { + "id": "nuget-client@105e1d3", + "repo": "nuget-client", + "title": "Enabling nullability in NuGet.Packaging - Package Reading APIs, PackageArchiveReader and all its interfaces", + "url": "https://github.com/nuget/nuget.client/pull/7210", + "commit": "dotnet@08797ec", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@105e1d3" + }, + { + "id": "nuget-client@21c6db6", + "repo": "nuget-client", + "title": "AOT compatible: enable in NuGet.Protocol", + "url": "https://github.com/nuget/nuget.client/pull/7193", + "commit": "dotnet@08797ec", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@21c6db6" + }, + { + "id": "nuget-client@460c27e", + "repo": "nuget-client", + "title": "Update E2E WebApplication templates to fix tests errors in project creation", + "url": "https://github.com/nuget/nuget.client/pull/7208", + "commit": "dotnet@08797ec", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@460c27e" + }, + { + "id": "nuget-client@be185b4", + "repo": "nuget-client", + "title": "Aot compatible: NuGet.Packaging", + "url": "https://github.com/nuget/nuget.client/pull/7197", + "commit": "dotnet@08797ec", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@be185b4" + }, + { + "id": "nuget-client@7cc1f0a", + "repo": "nuget-client", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 8117: Build ID 13566335", + "url": "https://github.com/nuget/nuget.client/pull/7205", + "commit": "dotnet@08797ec", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@7cc1f0a" + }, + { + "id": "nuget-client@15db684", + "repo": "nuget-client", + "title": "Replace GetInstalled with result.LockFile.Libraries", + "url": "https://github.com/nuget/nuget.client/pull/7216", + "commit": "dotnet@08797ec", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@15db684" + }, + { + "id": "nuget-client@15dafc4", + "repo": "nuget-client", + "title": "Enabling nullability in NuGet.Packaging - Package Creation", + "url": "https://github.com/nuget/nuget.client/pull/7217", + "commit": "dotnet@8abef4f", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@15dafc4" + }, + { + "id": "nuget-client@6840069", + "repo": "nuget-client", + "title": "Get reference nearest disambiguates with an alias too", + "url": "https://github.com/nuget/nuget.client/pull/7218", + "commit": "dotnet@8abef4f", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@6840069" + }, + { + "id": "nuget-client@5e65b14", + "repo": "nuget-client", + "title": "Add --allow-untrusted-root flag to nuget sign and dotnet nuget sign", + "url": "https://github.com/nuget/nuget.client/pull/7201", + "commit": "dotnet@c141211", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@5e65b14", + "labels": [ + "Community" + ] + }, + { + "id": "nuget-client@b5ca9db", + "repo": "nuget-client", + "title": "Use Ordinal string comparison for TargetAlias", + "url": "https://github.com/nuget/nuget.client/pull/7224", + "commit": "dotnet@865f098", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@b5ca9db", + "labels": [ + "Community" + ] + }, + { + "id": "nuget-client@279cdad", + "repo": "nuget-client", + "title": "Pack is aliased framework aware and supports deduplication to allowed aliased projects to be packed.", + "url": "https://github.com/nuget/nuget.client/pull/7227", + "commit": "dotnet@865f098", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@279cdad" + }, + { + "id": "nuget-client@cfc4937", + "repo": "nuget-client", + "title": "NuGet.Packaging nullability - Signing APIs", + "url": "https://github.com/nuget/nuget.client/pull/7219", + "commit": "dotnet@865f098", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@cfc4937" + }, + { + "id": "nuget-client@9b4c24b", + "repo": "nuget-client", + "title": "Fix up null annotations for CertificateChainUtility.GetCertificateChain", + "url": "https://github.com/nuget/nuget.client/pull/7230", + "commit": "dotnet@865f098", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@9b4c24b", + "labels": [ + "Engineering" + ] + }, + { + "id": "nuget-client@4ee8cd0", + "repo": "nuget-client", + "title": "Update NuGet MCP version in Visual Studio to 1.2.3", + "url": "https://github.com/nuget/nuget.client/pull/7232", + "commit": "dotnet@6a24598", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@4ee8cd0" + }, + { + "id": "nuget-client@d070eb6", + "repo": "nuget-client", + "title": "Add support for file-based apps to the XPlat CLI", + "url": "https://github.com/nuget/nuget.client/pull/7169", + "commit": "dotnet@6a24598", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@d070eb6", + "labels": [ + "Community" + ] + }, + { + "id": "nuget-client@9131f71", + "repo": "nuget-client", + "title": "Make virtual project builder parameter required in MSBuildAPIUtility", + "url": "https://github.com/nuget/nuget.client/pull/7233", + "commit": "dotnet@6a24598", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@9131f71", + "labels": [ + "Community", + "Engineering" + ] + }, + { + "id": "nuget-client@45c7a1b", + "repo": "nuget-client", + "title": "Add telemetry for NUGET_USE_LEGACY_ASSET_TARGET_FALLBACK_DEPENDENCY_RESOLUTION", + "url": "https://github.com/nuget/nuget.client/pull/7231", + "commit": "dotnet@6a24598", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@45c7a1b" + }, + { + "id": "nuget-client@6ca6f21", + "repo": "nuget-client", + "title": "Migrate 10 end to end tests to apex", + "url": "https://github.com/nuget/nuget.client/pull/7222", + "commit": "dotnet@6a24598", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@6ca6f21", + "labels": [ + "Engineering" + ] + }, + { + "id": "nuget-client@a690ce6", + "repo": "nuget-client", + "title": "Fix `` with packages.config ignoring all suppressions after the first", + "url": "https://github.com/nuget/nuget.client/pull/7234", + "commit": "dotnet@6a24598", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@a690ce6" + }, + { + "id": "nuget-client@13353c2", + "repo": "nuget-client", + "title": "Publish NuGet gate tests to version-based drop path", + "url": "https://github.com/nuget/nuget.client/pull/7236", + "commit": "dotnet@6a24598", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@13353c2" + }, + { + "id": "nuget-client@bff510e", + "repo": "nuget-client", + "title": "Lazily load unconfigured project only when it's needed", + "url": "https://github.com/nuget/nuget.client/pull/7238", + "commit": "dotnet@6a24598", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@bff510e" + }, + { + "id": "nuget-client@36a9adb", + "repo": "nuget-client", + "title": "Fix NU1107 message guidance for CPVM with transitive pinning", + "url": "https://github.com/nuget/nuget.client/pull/7235", + "commit": "dotnet@6a24598", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@36a9adb" + }, + { + "id": "nuget-client@9065b8f", + "repo": "nuget-client", + "title": "Fix flaky ResolverGather_TimeoutFromPrimaryRepositoryThrows test", + "url": "https://github.com/nuget/nuget.client/pull/7242", + "commit": "dotnet@6a24598", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@9065b8f" + }, + { + "id": "nuget-client@d502477", + "repo": "nuget-client", + "title": "Test: remove elevation requirement from some tests", + "url": "https://github.com/nuget/nuget.client/pull/7241", + "commit": "dotnet@6a24598", + "is_security": false, + "product": "dotnet-nuget", + "local_repo_commit": "nuget-client@d502477", + "labels": [ + "Engineering" + ] + }, + { + "id": "razor@e449a2e", + "repo": "razor", + "title": "Remove the old language server", + "url": "https://github.com/dotnet/razor/pull/12871", + "commit": "dotnet@893864c", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@e449a2e" + }, + { + "id": "razor@10ec240", + "repo": "razor", + "title": "CG: Update .NET SDK from 10.0.102 to 10.0.103", + "url": "https://github.com/dotnet/razor/pull/12881", + "commit": "dotnet@cb76c30", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@10ec240" + }, + { + "id": "razor@7b8f170", + "repo": "razor", + "title": "Remove cohost feature flag and various associated non-cohosting features", + "url": "https://github.com/dotnet/razor/pull/12874", + "commit": "dotnet@cb76c30", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@7b8f170" + }, + { + "id": "razor@bd6b73c", + "repo": "razor", + "title": "Simplify copilot instructions", + "url": "https://github.com/dotnet/razor/pull/12870", + "commit": "dotnet@cb76c30", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@bd6b73c" + }, + { + "id": "razor@2c1a9a0", + "repo": "razor", + "title": "Add troubleshooting section for additional files", + "url": "https://github.com/dotnet/razor/pull/12861", + "commit": "dotnet@cb76c30", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@2c1a9a0" + }, + { + "id": "razor@c5f489f", + "repo": "razor", + "title": "Port a few skills from the runtime repo to here", + "url": "https://github.com/dotnet/razor/pull/12882", + "commit": "dotnet@41b5534", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@c5f489f" + }, + { + "id": "razor@d7e6869", + "repo": "razor", + "title": "Update dependencies from build 305398", + "url": "https://github.com/dotnet/razor/pull/12886", + "commit": "dotnet@41b5534", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@d7e6869" + }, + { + "id": "razor@81bd809", + "repo": "razor", + "title": "Turn integration test retries down to 2", + "url": "https://github.com/dotnet/razor/pull/12884", + "commit": "dotnet@41b5534", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@81bd809" + }, + { + "id": "razor@59e5a0d", + "repo": "razor", + "title": "Remove unused serialization code", + "url": "https://github.com/dotnet/razor/pull/12885", + "commit": "dotnet@41b5534", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@59e5a0d" + }, + { + "id": "razor@616486b", + "repo": "razor", + "title": "Expand docs to cover another property", + "url": "https://github.com/dotnet/razor/pull/12892", + "commit": "dotnet@41b5534", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@616486b" + }, + { + "id": "razor@afc2753", + "repo": "razor", + "title": "Treat unmapped directive spans as Razor for code actions", + "url": "https://github.com/dotnet/razor/pull/12893", + "commit": "dotnet@41b5534", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@afc2753" + }, + { + "id": "razor@c3788ee", + "repo": "razor", + "title": "[main] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/razor/pull/12887", + "commit": "dotnet@5ff448a", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@c3788ee", + "labels": [ + "area-infrastructure", + "type-dependency update :arrow_up_small:" + ] + }, + { + "id": "razor@4d608b8", + "repo": "razor", + "title": "Try to fix build clashes", + "url": "https://github.com/dotnet/razor/pull/12894", + "commit": "dotnet@5ff448a", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@4d608b8" + }, + { + "id": "razor@bad1bd6", + "repo": "razor", + "title": "Update formatting docs and error to hopefully get logs front loaded", + "url": "https://github.com/dotnet/razor/pull/12896", + "commit": "dotnet@5ff448a", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@bad1bd6" + }, + { + "id": "razor@c4c12a2", + "repo": "razor", + "title": "Centralize how we handle C# using directive edits", + "url": "https://github.com/dotnet/razor/pull/12895", + "commit": "dotnet@5ff448a", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@c4c12a2" + }, + { + "id": "razor@640fe55", + "repo": "razor", + "title": "Update dependencies from https://github.com/dotnet/arcade build 20260314.1", + "url": "https://github.com/dotnet/razor/pull/12899", + "commit": "dotnet@0088929", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@640fe55", + "labels": [ + "area-infrastructure", + "type-dependency update :arrow_up_small:" + ] + }, + { + "id": "razor@f64530d", + "repo": "razor", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 262: Build ID 2928257", + "url": "https://github.com/dotnet/razor/pull/12905", + "commit": "dotnet@0088929", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@f64530d" + }, + { + "id": "razor@78e7891", + "repo": "razor", + "title": "MSBuild anti-pattern cleanup: quote conditions, add PrivateAssets, remove dead code", + "url": "https://github.com/dotnet/razor/pull/12907", + "commit": "dotnet@0088929", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@78e7891" + }, + { + "id": "razor@00b8803", + "repo": "razor", + "title": "Hopefully bring stability to completion integration tests", + "url": "https://github.com/dotnet/razor/pull/12908", + "commit": "dotnet@b9fcd94", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@00b8803" + }, + { + "id": "razor@0e1af56", + "repo": "razor", + "title": "Fix NRE when remote call fails", + "url": "https://github.com/dotnet/razor/pull/12912", + "commit": "dotnet@b9fcd94", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@0e1af56" + }, + { + "id": "razor@57eaac5", + "repo": "razor", + "title": "Cache base project in source generator tests for ~60% speedup", + "url": "https://github.com/dotnet/razor/pull/12911", + "commit": "dotnet@b9fcd94", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@57eaac5" + }, + { + "id": "razor@dcfc37e", + "repo": "razor", + "title": "Fix block bodied lambda attribute formatting", + "url": "https://github.com/dotnet/razor/pull/12913", + "commit": "dotnet@b9fcd94", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@dcfc37e" + }, + { + "id": "razor@bd9d77d", + "repo": "razor", + "title": "Clean up CollectionExpression and Select combined usage", + "url": "https://github.com/dotnet/razor/pull/12919", + "commit": "dotnet@b9fcd94", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@bd9d77d" + }, + { + "id": "razor@7a25669", + "repo": "razor", + "title": "Add run-toolset-tests skill for ecosystem validation", + "url": "https://github.com/dotnet/razor/pull/12920", + "commit": "dotnet@b9fcd94", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@7a25669" + }, + { + "id": "razor@42fb27d", + "repo": "razor", + "title": "Update dependencies from https://github.com/dotnet/arcade build 20260318.1", + "url": "https://github.com/dotnet/razor/pull/12923", + "commit": "dotnet@b9fcd94", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@42fb27d", + "labels": [ + "area-infrastructure", + "type-dependency update :arrow_up_small:" + ] + }, + { + "id": "razor@07169ff", + "repo": "razor", + "title": "Don't squiggle unused directives in VS Code", + "url": "https://github.com/dotnet/razor/pull/12932", + "commit": "dotnet@5e22ce0", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@07169ff" + }, + { + "id": "razor@75d8b7d", + "repo": "razor", + "title": "Change service connection", + "url": "https://github.com/dotnet/razor/pull/12931", + "commit": "dotnet@5e22ce0", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@75d8b7d" + }, + { + "id": "razor@15665b9", + "repo": "razor", + "title": "Don't need node no more", + "url": "https://github.com/dotnet/razor/pull/12937", + "commit": "dotnet@5e22ce0", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@15665b9" + }, + { + "id": "razor@21fccf2", + "repo": "razor", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/razor/pull/12945", + "commit": "dotnet@1948989", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@21fccf2" + }, + { + "id": "razor@9ecf467", + "repo": "razor", + "title": "Add test to validate section brace-on-next-line formatting (issue #10796)", + "url": "https://github.com/dotnet/razor/pull/12947", + "commit": "dotnet@1948989", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@9ecf467" + }, + { + "id": "razor@381882d", + "repo": "razor", + "title": "Add regression test for array initializer indentation inside HTML elements", + "url": "https://github.com/dotnet/razor/pull/12946", + "commit": "dotnet@1948989", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@381882d" + }, + { + "id": "razor@19513d3", + "repo": "razor", + "title": "Fix attribute formatting for short Html tags", + "url": "https://github.com/dotnet/razor/pull/12944", + "commit": "dotnet@1948989", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@19513d3" + }, + { + "id": "razor@e9acb82", + "repo": "razor", + "title": "More completion integration test \"fixes\"", + "url": "https://github.com/dotnet/razor/pull/12933", + "commit": "dotnet@1948989", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@e9acb82" + }, + { + "id": "razor@d9362b9", + "repo": "razor", + "title": "Fix formatting of script tags that have/are tag helpers", + "url": "https://github.com/dotnet/razor/pull/12922", + "commit": "dotnet@1948989", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@d9362b9" + }, + { + "id": "razor@30f6cf0", + "repo": "razor", + "title": "Remove unused GetOrParseCSharpSyntaxTree helper", + "url": "https://github.com/dotnet/razor/pull/12951", + "commit": "dotnet@be7bfd8", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@30f6cf0" + }, + { + "id": "razor@3c2c573", + "repo": "razor", + "title": "Create an indent cache for formatting", + "url": "https://github.com/dotnet/razor/pull/12950", + "commit": "dotnet@be7bfd8", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@3c2c573" + }, + { + "id": "razor@2b0c51d", + "repo": "razor", + "title": "Enable CFSClean* policies for Razor", + "url": "https://github.com/dotnet/razor/pull/12955", + "commit": "dotnet@be7bfd8", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@2b0c51d" + }, + { + "id": "razor@599013a", + "repo": "razor", + "title": "Handle when there is non-whitespace content after the end of a Razor comment", + "url": "https://github.com/dotnet/razor/pull/12961", + "commit": "dotnet@be7bfd8", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@599013a" + }, + { + "id": "razor@06c797e", + "repo": "razor", + "title": "Remove the UseCache property and old benchmark", + "url": "https://github.com/dotnet/razor/pull/12962", + "commit": "dotnet@be7bfd8", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@06c797e" + }, + { + "id": "razor@1fb1d4b", + "repo": "razor", + "title": "Support Generate Method code action in Razor and C# editors", + "url": "https://github.com/dotnet/razor/pull/12960", + "commit": "dotnet@be7bfd8", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@1fb1d4b", + "score": 6, + "score_reason": "Generate Method in Razor files is a straightforward developer-productivity improvement.", + "score_breakdown": { + "breadth": 2, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "razor@c5b4ff3", + "repo": "razor", + "title": "Update dependencies from https://github.com/dotnet/arcade build 20260327.7", + "url": "https://github.com/dotnet/razor/pull/12966", + "commit": "dotnet@be7bfd8", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@c5b4ff3", + "labels": [ + "area-infrastructure", + "type-dependency update :arrow_up_small:" + ] + }, + { + "id": "razor@20feb9c", + "repo": "razor", + "title": "Follow ups to Generate Method", + "url": "https://github.com/dotnet/razor/pull/12972", + "commit": "dotnet@be7bfd8", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@20feb9c" + }, + { + "id": "razor@6d1913a", + "repo": "razor", + "title": "Try to fix integration tests take 4", + "url": "https://github.com/dotnet/razor/pull/12978", + "commit": "dotnet@be7bfd8", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@6d1913a" + }, + { + "id": "razor@afb8471", + "repo": "razor", + "title": "Post-snap configuration updates", + "url": "https://github.com/dotnet/razor/pull/12976", + "commit": "dotnet@be7bfd8", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@afb8471" + }, + { + "id": "razor@e626c1b", + "repo": "razor", + "title": "Only have one menu resource provided by the razor package.", + "url": "https://github.com/dotnet/razor/pull/12979", + "commit": "dotnet@be7bfd8", + "is_security": false, + "product": "dotnet-razor", + "local_repo_commit": "razor@e626c1b" + }, + { + "id": "roslyn@dcc3438", + "repo": "roslyn", + "title": "Update insert.yml to use roslyn-tools for insertions", + "url": "https://github.com/dotnet/roslyn/pull/82615", + "commit": "dotnet@a2179ce", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@dcc3438", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@f4ce901", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82655", + "commit": "dotnet@a2179ce", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@f4ce901", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@2bc2bb6", + "repo": "roslyn", + "title": "Use `FieldTypeEncoder` API to emit field metadata.", + "url": "https://github.com/dotnet/roslyn/pull/82651", + "commit": "dotnet@a2179ce", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@2bc2bb6", + "labels": [ + "Area-Compilers", + "Community" + ] + }, + { + "id": "roslyn@0d88ffd", + "repo": "roslyn", + "title": "Copy specific skills from the dotnet/runtime repo", + "url": "https://github.com/dotnet/roslyn/pull/82656", + "commit": "dotnet@a2179ce", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@0d88ffd", + "labels": [ + "Area-IDE" + ] + }, + { + "id": "roslyn@07e15c1", + "repo": "roslyn", + "title": "Improve trivia handling in 'use as expression'.", + "url": "https://github.com/dotnet/roslyn/pull/82577", + "commit": "dotnet@a2179ce", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@07e15c1", + "labels": [ + "Area-IDE", + "Community", + "VSCode" + ] + }, + { + "id": "roslyn@115a597", + "repo": "roslyn", + "title": "Use a sequence point for custom awaiters with runtime async", + "url": "https://github.com/dotnet/roslyn/pull/82605", + "commit": "dotnet@e959381", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@115a597", + "labels": [ + "Area-Compilers", + "Feature - Runtime Async" + ] + }, + { + "id": "roslyn@e9a5618", + "repo": "roslyn", + "title": "Fix IDE0059 to not flag writes to by-ref parameters or ref locals as redundant", + "url": "https://github.com/dotnet/roslyn/pull/82664", + "commit": "dotnet@e959381", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@e9a5618", + "labels": [ + "VSCode" + ] + }, + { + "id": "roslyn@0a8d4b9", + "repo": "roslyn", + "title": "[main] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/roslyn/pull/82671", + "commit": "dotnet@e959381", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@0a8d4b9", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@170fc84", + "repo": "roslyn", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 327: Build ID 2922671", + "url": "https://github.com/dotnet/roslyn/pull/82676", + "commit": "dotnet@e959381", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@170fc84", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@26be960", + "repo": "roslyn", + "title": "Add a CodeFlow link to new pull requests", + "url": "https://github.com/dotnet/roslyn/pull/82684", + "commit": "dotnet@e959381", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@26be960", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@cb64e68", + "repo": "roslyn", + "title": "Use more informative assert for FBA multi file test", + "url": "https://github.com/dotnet/roslyn/pull/82688", + "commit": "dotnet@e959381", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@cb64e68", + "labels": [ + "VSCode" + ] + }, + { + "id": "roslyn@0b12a91", + "repo": "roslyn", + "title": "Reduce allocations in DocumentAnalysisExecutor ctor", + "url": "https://github.com/dotnet/roslyn/pull/82669", + "commit": "dotnet@e959381", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@0b12a91", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@d4f7c35", + "repo": "roslyn", + "title": "Convert ComputeDocumentDiagnosticsAsync to a static method", + "url": "https://github.com/dotnet/roslyn/pull/82670", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@d4f7c35", + "labels": [ + "Area-Analyzers", + "VSCode" + ] + }, + { + "id": "roslyn@859b23f", + "repo": "roslyn", + "title": "[main] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/roslyn/pull/82695", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@859b23f", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@36c7834", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82699", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@36c7834", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@d70faac", + "repo": "roslyn", + "title": "Fix visiting unreachable `when` clauses in NullableWalker", + "url": "https://github.com/dotnet/roslyn/pull/82563", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@d70faac", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@06bff44", + "repo": "roslyn", + "title": "Implement SynthesizedBackingFieldSymbolBase.TryGetFirstLocation", + "url": "https://github.com/dotnet/roslyn/pull/82679", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@06bff44", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@46e9530", + "repo": "roslyn", + "title": "Avoid duplicate TFM in Microsoft.CodeAnalysis.ExternalAccess.Razor.Features.csproj", + "url": "https://github.com/dotnet/roslyn/pull/82705", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@46e9530", + "labels": [ + "Area-IDE" + ] + }, + { + "id": "roslyn@ef0c5bb", + "repo": "roslyn", + "title": "Report progress when we're doing the auto-load of the project", + "url": "https://github.com/dotnet/roslyn/pull/82700", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@ef0c5bb", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@ff1aa5b", + "repo": "roslyn", + "title": "Fix/76886 await nullable value type", + "url": "https://github.com/dotnet/roslyn/pull/82146", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@ff1aa5b", + "labels": [ + "Area-Compilers", + "Community", + "VSCode" + ] + }, + { + "id": "roslyn@6b75273", + "repo": "roslyn", + "title": "Use VS2026 Helix image for Desktop test CI", + "url": "https://github.com/dotnet/roslyn/pull/82720", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@6b75273", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@18f1f01", + "repo": "roslyn", + "title": "Unsafe evolution: add LangVersion error for updated memory safety rules", + "url": "https://github.com/dotnet/roslyn/pull/82687", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@18f1f01", + "labels": [ + "Area-Compilers", + "Feature - Unsafe Evolution" + ], + "score": 6, + "score_reason": "Unsafe evolution becomes more visible to developers through clearer diagnostics and language-version checks.", + "score_breakdown": { + "breadth": 1, + "reader_value": 4, + "clarity": 1 + }, + "breaking_changes": true + }, + { + "id": "roslyn@a73833a", + "repo": "roslyn", + "title": "Unsafe evolution: add more tests", + "url": "https://github.com/dotnet/roslyn/pull/82683", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@a73833a", + "labels": [ + "Area-Compilers", + "Test-Gap", + "Feature - Unsafe Evolution" + ] + }, + { + "id": "roslyn@836ffa6", + "repo": "roslyn", + "title": "Unsafe evolution: handle `new()` constraint", + "url": "https://github.com/dotnet/roslyn/pull/82647", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@836ffa6", + "labels": [ + "Area-Compilers", + "Feature - Unsafe Evolution" + ], + "score": 5, + "score_reason": "Part of the unsafe-evolution cluster; useful in aggregate, but specialized on its own.", + "score_breakdown": { + "breadth": 1, + "reader_value": 3, + "clarity": 1 + }, + "breaking_changes": true + }, + { + "id": "roslyn@ea63049", + "repo": "roslyn", + "title": "Cache diagnostics for method body compilation.", + "url": "https://github.com/dotnet/roslyn/pull/82667", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@ea63049", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@5128876", + "repo": "roslyn", + "title": "Remove the support for server-created pipes", + "url": "https://github.com/dotnet/roslyn/pull/82715", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@5128876", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@38c1d17", + "repo": "roslyn", + "title": "Use NamedPipeUtil to create named pipes in interactive host", + "url": "https://github.com/dotnet/roslyn/pull/82728", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@38c1d17", + "labels": [ + "Area-Interactive" + ] + }, + { + "id": "roslyn@f6f8bd5", + "repo": "roslyn", + "title": "Proposal Adjuster - Keep line endings in line with original source text", + "url": "https://github.com/dotnet/roslyn/pull/82611", + "commit": "dotnet@afb647c", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@f6f8bd5", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@30c9b18", + "repo": "roslyn", + "title": "Update AutoLoad so LSP can read defaultSolution from .vscode/settings.json", + "url": "https://github.com/dotnet/roslyn/pull/82690", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@30c9b18", + "labels": [ + "Area-Infrastructure", + "VSCode" + ] + }, + { + "id": "roslyn@d9ab6fd", + "repo": "roslyn", + "title": "Create a builder for AnalyzerActions", + "url": "https://github.com/dotnet/roslyn/pull/82682", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@d9ab6fd", + "labels": [ + "Area-Analyzers" + ] + }, + { + "id": "roslyn@f881263", + "repo": "roslyn", + "title": "Reduce allocations in GetEscapedMetadataName", + "url": "https://github.com/dotnet/roslyn/pull/82716", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@f881263", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@28bd949", + "repo": "roslyn", + "title": "Use VS2026 for building integration tests", + "url": "https://github.com/dotnet/roslyn/pull/82740", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@28bd949", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@822aba7", + "repo": "roslyn", + "title": "Avoid flaky \"rules missing documentation\" check due to rate limiting", + "url": "https://github.com/dotnet/roslyn/pull/82745", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@822aba7" + }, + { + "id": "roslyn@d05575c", + "repo": "roslyn", + "title": "Clean up menu handler registration", + "url": "https://github.com/dotnet/roslyn/pull/82554", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@d05575c", + "labels": [ + "Area-IDE" + ] + }, + { + "id": "roslyn@a8d3977", + "repo": "roslyn", + "title": "Exclude implement interface/abstract member fixes from code cleanup", + "url": "https://github.com/dotnet/roslyn/pull/82703", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@a8d3977", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@1f1d220", + "repo": "roslyn", + "title": "Update titlePrefix parameter in PR validation", + "url": "https://github.com/dotnet/roslyn/pull/82753", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@1f1d220", + "labels": [ + "Area-IDE" + ] + }, + { + "id": "roslyn@db4a70a", + "repo": "roslyn", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 327: Build ID 2926188", + "url": "https://github.com/dotnet/roslyn/pull/82751", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@db4a70a", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@f808321", + "repo": "roslyn", + "title": "Reduce allocations in normal elfie usage", + "url": "https://github.com/dotnet/roslyn/pull/82743", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@f808321", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@d8168bc", + "repo": "roslyn", + "title": "[main] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/roslyn/pull/82766", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@d8168bc", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@de6d596", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82760", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@de6d596", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@c3de0e6", + "repo": "roslyn", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 327: Build ID 2926848", + "url": "https://github.com/dotnet/roslyn/pull/82772", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@c3de0e6", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@60ccee8", + "repo": "roslyn", + "title": "Fix small LookupResult pooling leak in NameofBinder.LookupSymbolsInSingleBinder", + "url": "https://github.com/dotnet/roslyn/pull/82764", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@60ccee8", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@781516d", + "repo": "roslyn", + "title": "Update build pool name in PR-Val pipeline", + "url": "https://github.com/dotnet/roslyn/pull/82778", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@781516d" + }, + { + "id": "roslyn@1538767", + "repo": "roslyn", + "title": "Reduce allocations in GreenNode.To(Full)String", + "url": "https://github.com/dotnet/roslyn/pull/82718", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@1538767", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@9788e10", + "repo": "roslyn", + "title": "[main] Update dependencies from dotnet/roslyn", + "url": "https://github.com/dotnet/roslyn/pull/82783", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@9788e10", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@489667e", + "repo": "roslyn", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 327: Build ID 2927614", + "url": "https://github.com/dotnet/roslyn/pull/82774", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@489667e", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@73136ae", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82785", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@73136ae", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@20ee1e9", + "repo": "roslyn", + "title": "Fix another RuntimeAsync NRE with hoisted methods", + "url": "https://github.com/dotnet/roslyn/pull/82624", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@20ee1e9", + "labels": [ + "Area-Compilers", + "Feature - Runtime Async" + ] + }, + { + "id": "roslyn@28d629d", + "repo": "roslyn", + "title": "[Hot Reload] Include exception details in internal error message", + "url": "https://github.com/dotnet/roslyn/pull/82732", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@28d629d", + "labels": [ + "Area-Interactive", + "VSCode" + ] + }, + { + "id": "roslyn@947ca38", + "repo": "roslyn", + "title": "Fix `CSharpSimplifyPropertyAccessorDiagnosticAnalyzer`", + "url": "https://github.com/dotnet/roslyn/pull/82776", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@947ca38", + "labels": [ + "Area-Analyzers", + "Community", + "VSCode" + ] + }, + { + "id": "roslyn@915f7a6", + "repo": "roslyn", + "title": "Allow running roslyn insert tool on newer runtime", + "url": "https://github.com/dotnet/roslyn/pull/82796", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@915f7a6", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@d2d357d", + "repo": "roslyn", + "title": "Reduce allocations in TextBufferFactoryCloneService.Clone", + "url": "https://github.com/dotnet/roslyn/pull/82777", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@d2d357d", + "labels": [ + "Area-IDE" + ] + }, + { + "id": "roslyn@491aa49", + "repo": "roslyn", + "title": "Small optimization reducing repeated int.ToString calls in completion", + "url": "https://github.com/dotnet/roslyn/pull/82765", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@491aa49", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@1ea3352", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82801", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@1ea3352", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@eb56329", + "repo": "roslyn", + "title": "Add componentBuildProjectName to PR validation configuration", + "url": "https://github.com/dotnet/roslyn/pull/82803", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@eb56329", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@7467800", + "repo": "roslyn", + "title": "Unsafe evolution: add warning for `unsafe` delegates", + "url": "https://github.com/dotnet/roslyn/pull/82730", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@7467800", + "labels": [ + "Area-Compilers", + "Feature - Unsafe Evolution" + ], + "score": 5, + "score_reason": "New warnings for unsafe delegates help make intent and risk more explicit in advanced code.", + "score_breakdown": { + "breadth": 1, + "reader_value": 3, + "clarity": 1 + }, + "breaking_changes": true + }, + { + "id": "roslyn@b1eaa1a", + "repo": "roslyn", + "title": "[EnC] Fix reporting emit errors in telemetry", + "url": "https://github.com/dotnet/roslyn/pull/82805", + "commit": "dotnet@f7fe5df", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@b1eaa1a", + "labels": [ + "Area-Interactive", + "VSCode" + ] + }, + { + "id": "roslyn@b8e6208", + "repo": "roslyn", + "title": "Add documentation for roslyn-language-server Copilot plugin", + "url": "https://github.com/dotnet/roslyn/pull/82797", + "commit": "dotnet@281ef27", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@b8e6208", + "labels": [ + "Documentation" + ] + }, + { + "id": "roslyn@1f7fae4", + "repo": "roslyn", + "title": "Reduce allocations in TextDocumentStates.AddRange", + "url": "https://github.com/dotnet/roslyn/pull/82806", + "commit": "dotnet@281ef27", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@1f7fae4", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@9bd232f", + "repo": "roslyn", + "title": "Implement LSP `textDocument/selectionRange` handler", + "url": "https://github.com/dotnet/roslyn/pull/82809", + "commit": "dotnet@281ef27", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@9bd232f", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@8007c87", + "repo": "roslyn", + "title": "Include `[RequiresUnsafe]` in PublicAPI signatures", + "url": "https://github.com/dotnet/roslyn/pull/82731", + "commit": "dotnet@281ef27", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@8007c87", + "labels": [ + "Area-Analyzers", + "Feature - Unsafe Evolution" + ] + }, + { + "id": "roslyn@02833a6", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82812", + "commit": "dotnet@281ef27", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@02833a6", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@06a735c", + "repo": "roslyn", + "title": "Simplifying internal structure and logic for the SyntaxNodeCache", + "url": "https://github.com/dotnet/roslyn/pull/80825", + "commit": "dotnet@281ef27", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@06a735c", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@3f4c548", + "repo": "roslyn", + "title": "[main] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/roslyn/pull/82841", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@3f4c548", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@787432e", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82847", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@787432e", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@611c993", + "repo": "roslyn", + "title": "Add user name to PR validation titles", + "url": "https://github.com/dotnet/roslyn/pull/82839", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@611c993", + "labels": [ + "Area-IDE" + ] + }, + { + "id": "roslyn@e5de3cd", + "repo": "roslyn", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 327: Build ID 2930317", + "url": "https://github.com/dotnet/roslyn/pull/82848", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@e5de3cd", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@79038db", + "repo": "roslyn", + "title": "Skip building test projects in official builds", + "url": "https://github.com/dotnet/roslyn/pull/82818", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@79038db", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@7e25adf", + "repo": "roslyn", + "title": "Use correct length for Slice in object initializer", + "url": "https://github.com/dotnet/roslyn/pull/82794", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@7e25adf", + "labels": [ + "Area-Compilers", + "Feature - Range" + ] + }, + { + "id": "roslyn@7f59aed", + "repo": "roslyn", + "title": "Refactor fbp workspace management", + "url": "https://github.com/dotnet/roslyn/pull/82509", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@7f59aed", + "labels": [ + "Area-Infrastructure", + "VSCode" + ] + }, + { + "id": "roslyn@8b8aebd", + "repo": "roslyn", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 327: Build ID 2931040", + "url": "https://github.com/dotnet/roslyn/pull/82858", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@8b8aebd", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@373490c", + "repo": "roslyn", + "title": "Optimize codegen for slicing to end", + "url": "https://github.com/dotnet/roslyn/pull/82729", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@373490c", + "labels": [ + "Area-Compilers", + "Code Gen Quality" + ] + }, + { + "id": "roslyn@bb74f15", + "repo": "roslyn", + "title": "Implement csproj-in-cone check for file-based app heuristic detection", + "url": "https://github.com/dotnet/roslyn/pull/82633", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@bb74f15", + "labels": [ + "Area-Infrastructure", + "VSCode" + ] + }, + { + "id": "roslyn@5d06c25", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82860", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@5d06c25", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@ebc4231", + "repo": "roslyn", + "title": "Remove logging from CanonicalMiscellaneousFilesProjectProvider", + "url": "https://github.com/dotnet/roslyn/pull/82861", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@ebc4231", + "labels": [ + "Area-Infrastructure", + "VSCode" + ] + }, + { + "id": "roslyn@c2a993b", + "repo": "roslyn", + "title": "Unsafe evolution: update RequiresUnsafeAttribute namespace", + "url": "https://github.com/dotnet/roslyn/pull/82813", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@c2a993b", + "labels": [ + "Area-Compilers", + "Feature - Unsafe Evolution" + ], + "score": 4, + "score_reason": "Namespace cleanup for RequiresUnsafeAttribute supports the same story, but is best grouped with the rest of the feature.", + "score_breakdown": { + "breadth": 1, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "roslyn@0376bcd", + "repo": "roslyn", + "title": "Fix bug in the remote the dart pipeline pulls from", + "url": "https://github.com/dotnet/roslyn/pull/82873", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@0376bcd", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@909ec10", + "repo": "roslyn", + "title": "Update issue template URLs for CAxxxx rules", + "url": "https://github.com/dotnet/roslyn/pull/82872", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@909ec10", + "labels": [ + "Area-IDE" + ] + }, + { + "id": "roslyn@a1696dd", + "repo": "roslyn", + "title": "Exclude Replay tool from official builds", + "url": "https://github.com/dotnet/roslyn/pull/82866", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@a1696dd", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@bf28202", + "repo": "roslyn", + "title": "Fix git pull failure in PR validation setup script", + "url": "https://github.com/dotnet/roslyn/pull/82880", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@bf28202", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@9ed174d", + "repo": "roslyn", + "title": "Put binder for object initializers in the binder map", + "url": "https://github.com/dotnet/roslyn/pull/82543", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@9ed174d", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@216a7f2", + "repo": "roslyn", + "title": "Enable CFSClean* policies for dotnet-roslyn-official pipeline (main)", + "url": "https://github.com/dotnet/roslyn/pull/82820", + "commit": "dotnet@5f8ce37", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@216a7f2", + "labels": [ + "Area-IDE" + ] + }, + { + "id": "roslyn@70ce379", + "repo": "roslyn", + "title": "Adjust preconditions in CsprojInConeChecker", + "url": "https://github.com/dotnet/roslyn/pull/82877", + "commit": "dotnet@15791d9", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@70ce379", + "labels": [ + "Area-Infrastructure", + "VSCode" + ] + }, + { + "id": "roslyn@af65eb7", + "repo": "roslyn", + "title": "Reduce allocations in MergedNamespaceDeclaration.addNamespacesToChildren", + "url": "https://github.com/dotnet/roslyn/pull/82819", + "commit": "dotnet@15791d9", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@af65eb7", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@d83e85b", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82886", + "commit": "dotnet@15791d9", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@d83e85b", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@2742db7", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82888", + "commit": "dotnet@15791d9", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@2742db7", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@6e85e46", + "repo": "roslyn", + "title": "Optimize annotation search to avoid unnecessary red node creation", + "url": "https://github.com/dotnet/roslyn/pull/82816", + "commit": "dotnet@15791d9", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@6e85e46", + "labels": [ + "Area-Compilers", + "Community", + "VSCode" + ] + }, + { + "id": "roslyn@3af8cfc", + "repo": "roslyn", + "title": "[main] Update dependencies from dotnet/roslyn", + "url": "https://github.com/dotnet/roslyn/pull/82898", + "commit": "dotnet@15791d9", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@3af8cfc", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@e5041dd", + "repo": "roslyn", + "title": "Fix InvalidCastException in split-if refactoring for top-level statements", + "url": "https://github.com/dotnet/roslyn/pull/82807", + "commit": "dotnet@15791d9", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@e5041dd", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@bd2083f", + "repo": "roslyn", + "title": "DeterministicKeyBuilder: deduplicate ParseOptions across SyntaxTrees", + "url": "https://github.com/dotnet/roslyn/pull/82895", + "commit": "dotnet@15791d9", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@bd2083f", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@12c7798", + "repo": "roslyn", + "title": "Make the fetch of the VisualStudioWorkspace lazy in ObjectBrowser", + "url": "https://github.com/dotnet/roslyn/pull/82883", + "commit": "dotnet@905a186", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@12c7798", + "labels": [ + "Area-IDE" + ] + }, + { + "id": "roslyn@3ff19bf", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82908", + "commit": "dotnet@905a186", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@3ff19bf", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@e794aa9", + "repo": "roslyn", + "title": "Add missing buildQueueName parameter to scouting pipeline", + "url": "https://github.com/dotnet/roslyn/pull/82901", + "commit": "dotnet@905a186", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@e794aa9", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@ce4f889", + "repo": "roslyn", + "title": "Fix handling of added import trivia", + "url": "https://github.com/dotnet/roslyn/pull/82788", + "commit": "dotnet@905a186", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@ce4f889", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@287981c", + "repo": "roslyn", + "title": "Modify SyntaxNode trivia search/walk methods to utilize green node checks", + "url": "https://github.com/dotnet/roslyn/pull/82893", + "commit": "dotnet@905a186", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@287981c", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@9a06091", + "repo": "roslyn", + "title": "Update Microsoft.Bcl.Memory used by Basic.CompilerLog.Util to a non-vulnerable version", + "url": "https://github.com/dotnet/roslyn/pull/82817", + "commit": "dotnet@905a186", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@9a06091", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@3d3a43b", + "repo": "roslyn", + "title": "Update status of 'Unsafe evolution' feature", + "url": "https://github.com/dotnet/roslyn/pull/82910", + "commit": "dotnet@905a186", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@3d3a43b", + "labels": [ + "Area-Compilers", + "Documentation", + "Feature - Unsafe Evolution" + ], + "score": 4, + "score_reason": "Status and follow-up work on unsafe evolution are noteworthy mainly as part of the larger cluster.", + "score_breakdown": { + "breadth": 1, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "roslyn@e8a04ee", + "repo": "roslyn", + "title": "Add completion provider for `#:include` directives", + "url": "https://github.com/dotnet/roslyn/pull/82625", + "commit": "dotnet@9886077", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@e8a04ee", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@7762e77", + "repo": "roslyn", + "title": "Add IAsyncDisposable support to IWorkspaceProjectContext", + "url": "https://github.com/dotnet/roslyn/pull/82907", + "commit": "dotnet@9886077", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@7762e77", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@d3724ec", + "repo": "roslyn", + "title": "Update PublicApi changes in 5.3", + "url": "https://github.com/dotnet/roslyn/pull/82904", + "commit": "dotnet@9886077", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@d3724ec", + "labels": [ + "Area-Compilers", + "Needs API Review" + ] + }, + { + "id": "roslyn@f3b5991", + "repo": "roslyn", + "title": "Add regex search support to NavigateTo", + "url": "https://github.com/dotnet/roslyn/pull/82706", + "commit": "dotnet@9886077", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@f3b5991", + "labels": [ + "Area-IDE", + "Community", + "VSCode" + ] + }, + { + "id": "roslyn@1ba62c4", + "repo": "roslyn", + "title": "Add support for skipping analyzing banned API analysis in generated files", + "url": "https://github.com/dotnet/roslyn/pull/82713", + "commit": "dotnet@9886077", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@1ba62c4", + "labels": [ + "Area-Analyzers", + "VSCode" + ] + }, + { + "id": "roslyn@d3fa672", + "repo": "roslyn", + "title": "Embed AnalyzerConfigFiles in binlog", + "url": "https://github.com/dotnet/roslyn/pull/82741", + "commit": "dotnet@9886077", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@d3fa672", + "labels": [ + "Area-Compilers" + ] + }, + { + "id": "roslyn@5f04355", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82925", + "commit": "dotnet@9886077", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@5f04355", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@89a024e", + "repo": "roslyn", + "title": "Change service connection", + "url": "https://github.com/dotnet/roslyn/pull/82856", + "commit": "dotnet@9886077", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@89a024e", + "labels": [ + "Area-Infrastructure", + "Community" + ] + }, + { + "id": "roslyn@675bbbd", + "repo": "roslyn", + "title": "Improve classification of file-based app directives", + "url": "https://github.com/dotnet/roslyn/pull/82627", + "commit": "dotnet@9886077", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@675bbbd", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@a13c229", + "repo": "roslyn", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 327: Build ID 2935907", + "url": "https://github.com/dotnet/roslyn/pull/82940", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@a13c229", + "labels": [ + "Area-IDE" + ] + }, + { + "id": "roslyn@8ebf7d5", + "repo": "roslyn", + "title": "Only cache diagnostics for legacy projects", + "url": "https://github.com/dotnet/roslyn/pull/82643", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@8ebf7d5", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@c8f805e", + "repo": "roslyn", + "title": "Ensure we properly dispose our loggers during MSBuildWorkspace tests", + "url": "https://github.com/dotnet/roslyn/pull/82942", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@c8f805e", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@9636481", + "repo": "roslyn", + "title": "Add tests for inline regex options in conditional expression branches", + "url": "https://github.com/dotnet/roslyn/pull/82834", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@9636481", + "labels": [ + "Area-IDE", + "Community" + ] + }, + { + "id": "roslyn@c43cd69", + "repo": "roslyn", + "title": "Fix issues with reentrancy due to pumping in lock acquisition", + "url": "https://github.com/dotnet/roslyn/pull/82522", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@c43cd69" + }, + { + "id": "roslyn@439635a", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82959", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@439635a", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@9bfaa97", + "repo": "roslyn", + "title": "Thread cancellation more deeply into ProjectSystemProjectFactory.Create", + "url": "https://github.com/dotnet/roslyn/pull/82922", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@9bfaa97", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@e94e90e", + "repo": "roslyn", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 327: Build ID 2937106", + "url": "https://github.com/dotnet/roslyn/pull/82952", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@e94e90e", + "labels": [ + "Area-IDE" + ] + }, + { + "id": "roslyn@a4627ec", + "repo": "roslyn", + "title": "Navigate to position instead of span for Go to Implementation", + "url": "https://github.com/dotnet/roslyn/pull/82906", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@a4627ec", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@00f4340", + "repo": "roslyn", + "title": "Fix structure guideline anchor for initializer expressions with multi-line argument lists", + "url": "https://github.com/dotnet/roslyn/pull/82946", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@00f4340", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@d6e77ba", + "repo": "roslyn", + "title": "Update codespaces definitions", + "url": "https://github.com/dotnet/roslyn/pull/82963", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@d6e77ba", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@e6ea27b", + "repo": "roslyn", + "title": "Update CCA", + "url": "https://github.com/dotnet/roslyn/pull/82965", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@e6ea27b" + }, + { + "id": "roslyn@849bed6", + "repo": "roslyn", + "title": "Handle misc project having an AdditionalDocument and not a Document", + "url": "https://github.com/dotnet/roslyn/pull/82956", + "commit": "dotnet@2cfc8f5", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@849bed6", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@1068905", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82972", + "commit": "dotnet@3b3d683", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@1068905", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@68d99b2", + "repo": "roslyn", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/roslyn/pull/82990", + "commit": "dotnet@3b3d683", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@68d99b2", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@0b95158", + "repo": "roslyn", + "title": "Post-snap configuration updates", + "url": "https://github.com/dotnet/roslyn/pull/82984", + "commit": "dotnet@3b3d683", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@0b95158", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@750f95c", + "repo": "roslyn", + "title": "[main] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/roslyn/pull/82967", + "commit": "dotnet@3b3d683", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@750f95c", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "roslyn@abacf67", + "repo": "roslyn", + "title": "Move CallHierarchy logic to the Features layer", + "url": "https://github.com/dotnet/roslyn/pull/82864", + "commit": "dotnet@3b3d683", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@abacf67", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "roslyn@f2bb266", + "repo": "roslyn", + "title": "[Hot Reload] Unify ManagedHotReloadLanguageService across DevKit and VS", + "url": "https://github.com/dotnet/roslyn/pull/82905", + "commit": "dotnet@3b3d683", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@f2bb266", + "labels": [ + "Area-Interactive", + "VSCode" + ] + }, + { + "id": "roslyn@c208079", + "repo": "roslyn", + "title": "Correct arrow direction in project layering diagram", + "url": "https://github.com/dotnet/roslyn/pull/83004", + "commit": "dotnet@3b3d683", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@c208079" + }, + { + "id": "roslyn@ebe25bb", + "repo": "roslyn", + "title": "Improve Copilot instruction files and extract analyzer/codefix skill", + "url": "https://github.com/dotnet/roslyn/pull/82937", + "commit": "dotnet@3b3d683", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@ebe25bb" + }, + { + "id": "roslyn@83c179c", + "repo": "roslyn", + "title": "Add LSP CallHierarchy support", + "url": "https://github.com/dotnet/roslyn/pull/82865", + "commit": "dotnet@3b3d683", + "is_security": false, + "product": "dotnet-roslyn", + "local_repo_commit": "roslyn@83c179c", + "labels": [ + "Area-IDE", + "VSCode" + ] + }, + { + "id": "runtime@1c7b5c4", + "repo": "runtime", + "title": "Re-enable SslStreamTlsResumeTests.ClientDisableTlsResume_Succeeds", + "url": "https://github.com/dotnet/runtime/pull/124463", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1c7b5c4", + "labels": [ + "area-System.Net.Security" + ] + }, + { + "id": "runtime@9268ae6", + "repo": "runtime", + "title": "Add default value when FeatureDynamicCodeCompiled is undefined", + "url": "https://github.com/dotnet/runtime/pull/124476", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9268ae6", + "labels": [ + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@e399e13", + "repo": "runtime", + "title": "Build zstd with `/source-charset:utf-8` option", + "url": "https://github.com/dotnet/runtime/pull/124475", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e399e13", + "labels": [ + "area-System.IO.Compression", + "community-contribution" + ] + }, + { + "id": "runtime@868a890", + "repo": "runtime", + "title": "Use IndexOfAny/SearchValues in more places around Uri", + "url": "https://github.com/dotnet/runtime/pull/124433", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@868a890", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@35ad59d", + "repo": "runtime", + "title": "[HTTP] Fix HttpListener tests blocking xunit workers", + "url": "https://github.com/dotnet/runtime/pull/21870", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@35ad59d" + }, + { + "id": "runtime@11edfaf", + "repo": "runtime", + "title": "Add InstructionSet_VectorT for ARM64", + "url": "https://github.com/dotnet/runtime/pull/123992", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@11edfaf", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@dad8dcc", + "repo": "runtime", + "title": "Rename SVE2 AddSaturate signed/unsigned addend API", + "url": "https://github.com/dotnet/runtime/pull/122283", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@dad8dcc", + "labels": [ + "area-System.Runtime.Intrinsics", + "community-contribution" + ] + }, + { + "id": "runtime@0928e2d", + "repo": "runtime", + "title": "Implement SVE2 non-temporal scatter stores", + "url": "https://github.com/dotnet/runtime/pull/123892", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0928e2d", + "labels": [ + "area-System.Runtime.Intrinsics", + "community-contribution" + ] + }, + { + "id": "runtime@766f6f1", + "repo": "runtime", + "title": "[browser] Emit symbols in WasmSDK", + "url": "https://github.com/dotnet/runtime/pull/124500", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@766f6f1", + "labels": [ + "arch-wasm", + "area-Build-mono", + "os-browser" + ], + "score": 4, + "score_reason": "Improves browser/WASM debugging, but the audience is still relatively specialized.", + "score_breakdown": { + "breadth": 1, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "runtime@7f0095f", + "repo": "runtime", + "title": "[RuntimeAsync] Remove [RequiresPreviewFeatures] on runtime async API", + "url": "https://github.com/dotnet/runtime/pull/124488", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7f0095f", + "labels": [ + "area-VM-coreclr", + "linkable-framework", + "runtime-async" + ], + "score": 9, + "score_reason": "Meaningful preview-to-preview state change: runtime async no longer needs preview opt-in for net11 apps.", + "score_breakdown": { + "breadth": 4, + "reader_value": 4, + "clarity": 1 + } + }, + { + "id": "runtime@54570b5", + "repo": "runtime", + "title": "Extract ManifestBuilder and EventListener", + "url": "https://github.com/dotnet/runtime/pull/124323", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@54570b5", + "labels": [ + "needs-area-label" + ] + }, + { + "id": "runtime@e02e618", + "repo": "runtime", + "title": "[WIP] Fix threshold exceeded exception in HTTP tests", + "url": "https://github.com/dotnet/runtime/pull/124517", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e02e618", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@fd9316c", + "repo": "runtime", + "title": "Remove support for issues.targets", + "url": "https://github.com/dotnet/runtime/pull/123909", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fd9316c", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@1933e44", + "repo": "runtime", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/runtime/pull/124495", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1933e44", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@3fbc6d0", + "repo": "runtime", + "title": "Add null check in LCGMethodResolver::GetManagedResolver", + "url": "https://github.com/dotnet/runtime/pull/124457", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3fbc6d0", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@6f242ac", + "repo": "runtime", + "title": "[RyuJit/WASM] Register allocation for multiply used operands", + "url": "https://github.com/dotnet/runtime/pull/124481", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6f242ac", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@0de478b", + "repo": "runtime", + "title": "Fixed potential integer overflow in coreclr", + "url": "https://github.com/dotnet/runtime/pull/124047", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0de478b", + "labels": [ + "area-GC-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@786c1e3", + "repo": "runtime", + "title": "Fix missing upper-bound guard in LastIndexOf and FindLastIndex", + "url": "https://github.com/dotnet/runtime/pull/124161", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@786c1e3", + "labels": [ + "area-System.Collections", + "community-contribution" + ] + }, + { + "id": "runtime@2ff39b5", + "repo": "runtime", + "title": "`PersistedAssemblyBuilder`: Fix encoding of custom modifiers.", + "url": "https://github.com/dotnet/runtime/pull/123925", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2ff39b5", + "labels": [ + "area-System.Reflection.Emit", + "community-contribution" + ] + }, + { + "id": "runtime@49e6723", + "repo": "runtime", + "title": "[Runtime Async] do not hold to continuation state when completing reusable valuetask sources", + "url": "https://github.com/dotnet/runtime/pull/124491", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@49e6723", + "labels": [ + "area-System.Threading", + "runtime-async" + ], + "score": 4, + "score_reason": "Nice runtime-async cleanup, but too implementation-specific to headline on its own.", + "score_breakdown": { + "breadth": 1, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "runtime@bd81308", + "repo": "runtime", + "title": "Convert CustomMarshalerInfo GetInstance to UnmanagedCallersOnly", + "url": "https://github.com/dotnet/runtime/pull/124440", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@bd81308", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@9bfbe13", + "repo": "runtime", + "title": "Add legs to run crossgenned libraries tests with runtime-async enabled", + "url": "https://github.com/dotnet/runtime/pull/124400", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9bfbe13", + "labels": [ + "area-crossgen2-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@d9a0bf4", + "repo": "runtime", + "title": "[Android][NativeAOT] Fix SIGSEGV in RandomNumberGenerator by providing weak JNI_OnLoad symbol", + "url": "https://github.com/dotnet/runtime/pull/123694", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d9a0bf4", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@deb797f", + "repo": "runtime", + "title": "JIT: Check for inline candidates in gtTreeContainsAsyncCall", + "url": "https://github.com/dotnet/runtime/pull/124502", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@deb797f", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@8e6e74e", + "repo": "runtime", + "title": "Remove INodeWithSize interface, use IMAGE_REL_SYMBOL_SIZE relocation, and restructure ModuleInfoRow", + "url": "https://github.com/dotnet/runtime/pull/124202", + "commit": "dotnet@1394de1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8e6e74e", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@efc5e35", + "repo": "runtime", + "title": "Quote a few cmake commands to allow spaces", + "url": "https://github.com/dotnet/runtime/pull/124479", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@efc5e35", + "labels": [ + "area-Infrastructure-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@5c12c98", + "repo": "runtime", + "title": "Add more null checks to request.cpp", + "url": "https://github.com/dotnet/runtime/pull/124451", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5c12c98", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@7c6a676", + "repo": "runtime", + "title": "Fix comment in eng/Versions.props", + "url": "https://github.com/dotnet/runtime/pull/124543", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7c6a676", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@823bec2", + "repo": "runtime", + "title": "Add ProcessStartOptions class with platform-aware path resolution", + "url": "https://github.com/dotnet/runtime/pull/124271", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@823bec2", + "labels": [ + "area-System.Diagnostics.Process" + ], + "score": 0, + "score_reason": "Do not promote: ProcessStartOptions was removed again before the end of the preview and should not be told as a shipped API story.", + "score_breakdown": { + "breadth": 0, + "reader_value": 0, + "clarity": 0 + } + }, + { + "id": "runtime@6051699", + "repo": "runtime", + "title": "Avoid resolving direct awaits to thunks (IL scanner part)", + "url": "https://github.com/dotnet/runtime/pull/124536", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6051699", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@d29eec6", + "repo": "runtime", + "title": "[mono][interp] Add missing intrinsic for Volatile.ReadBarrier/WriteBarrier", + "url": "https://github.com/dotnet/runtime/pull/124538", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d29eec6", + "labels": [ + "area-Codegen-Interpreter-mono" + ] + }, + { + "id": "runtime@ad38fcd", + "repo": "runtime", + "title": "Revert \"Re-enable SslStreamTlsResumeTests.ClientDisableTlsResume_Succeeds\"", + "url": "https://github.com/dotnet/runtime/pull/124542", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ad38fcd", + "labels": [ + "area-System.Net.Security" + ] + }, + { + "id": "runtime@5679b73", + "repo": "runtime", + "title": "JIT: Handle LCL_ADDR in TreeLifeUpdater for async liveness", + "url": "https://github.com/dotnet/runtime/pull/124472", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5679b73", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@179f34d", + "repo": "runtime", + "title": "[Android CoreCLR] Log managed callstacks on native crash", + "url": "https://github.com/dotnet/runtime/pull/123824", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@179f34d", + "labels": [ + "area-VM-coreclr", + "os-android" + ] + }, + { + "id": "runtime@f557d6d", + "repo": "runtime", + "title": "Support Profile Optimization for single file deployment", + "url": "https://github.com/dotnet/runtime/pull/124501", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f557d6d", + "labels": [ + "area-VM-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@d69bdbe", + "repo": "runtime", + "title": "Fix Optimization Profile read", + "url": "https://github.com/dotnet/runtime/pull/124497", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d69bdbe", + "labels": [ + "area-VM-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@f68ae3c", + "repo": "runtime", + "title": "[browser] no sockets", + "url": "https://github.com/dotnet/runtime/pull/124347", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f68ae3c", + "labels": [ + "arch-wasm", + "area-System.Net.Sockets", + "os-browser" + ] + }, + { + "id": "runtime@49154df", + "repo": "runtime", + "title": "JIT: Disqualify inlinees using AsyncSuspend intrinsic", + "url": "https://github.com/dotnet/runtime/pull/124503", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@49154df", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@736475c", + "repo": "runtime", + "title": "Add SHA-384 and SHA-512 hash algorithms to metadata spec", + "url": "https://github.com/dotnet/runtime/pull/124573", + "commit": "dotnet@a4cbc2d", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@736475c", + "labels": [ + "area-Meta" + ] + }, + { + "id": "runtime@57ff75e", + "repo": "runtime", + "title": "Add a config switch to fully disable hot-reload", + "url": "https://github.com/dotnet/runtime/pull/123744", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@57ff75e", + "labels": [ + "enhancement", + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@1451f24", + "repo": "runtime", + "title": "#124513 - Guard Base64Url.DecodeFromChars against non-ASCII input", + "url": "https://github.com/dotnet/runtime/pull/124540", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1451f24", + "labels": [ + "area-System.Buffers", + "community-contribution" + ] + }, + { + "id": "runtime@5cae5ef", + "repo": "runtime", + "title": "Add ActiveIssue to GetTotalAllocatedBytes test", + "url": "https://github.com/dotnet/runtime/pull/124539", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5cae5ef", + "labels": [ + "area-GC-coreclr" + ] + }, + { + "id": "runtime@eee8b59", + "repo": "runtime", + "title": "Pass EncApproxFieldDescIterator::FixUpEncFields instead of TRUE", + "url": "https://github.com/dotnet/runtime/pull/124554", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@eee8b59", + "labels": [ + "area-VM-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@1774582", + "repo": "runtime", + "title": "Simple ComWrappers APIs", + "url": "https://github.com/dotnet/runtime/pull/120114", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1774582", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@cae181e", + "repo": "runtime", + "title": "Preserve ninja=false via msbuild", + "url": "https://github.com/dotnet/runtime/pull/124562", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cae181e", + "labels": [ + "area-Infrastructure-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@8274262", + "repo": "runtime", + "title": "Handle RFC 6761 special-use domain names in Dns resolution", + "url": "https://github.com/dotnet/runtime/pull/123076", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8274262", + "labels": [ + "area-System.Net", + "community-contribution" + ] + }, + { + "id": "runtime@fbd060d", + "repo": "runtime", + "title": "[maccatalyst][coreclr] Fix native build failure on Xcode 26.2", + "url": "https://github.com/dotnet/runtime/pull/124220", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fbd060d", + "labels": [ + "area-Infrastructure-coreclr", + "os-maccatalyst" + ] + }, + { + "id": "runtime@2af34ab", + "repo": "runtime", + "title": "[ios] HelloiOS - Set RunAOTCompilation only on Mono", + "url": "https://github.com/dotnet/runtime/pull/124265", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2af34ab", + "labels": [ + "documentation", + "os-ios", + "needs-area-label" + ] + }, + { + "id": "runtime@8181c67", + "repo": "runtime", + "title": "Improve test coverage for System.Formats.Tar APIs", + "url": "https://github.com/dotnet/runtime/pull/123989", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8181c67", + "labels": [ + "area-System.Formats.Tar" + ] + }, + { + "id": "runtime@9583f33", + "repo": "runtime", + "title": "[browser][coreCLR] native stack trace symbols", + "url": "https://github.com/dotnet/runtime/pull/124483", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9583f33", + "labels": [ + "arch-wasm", + "area-Host", + "os-browser" + ], + "score": 5, + "score_reason": "Managed stack symbols make browser/CoreCLR debugging more legible and help the WebAssembly cluster feel real.", + "score_breakdown": { + "breadth": 1, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "runtime@de80f78", + "repo": "runtime", + "title": "Eliminate redundant bounds checks for arr[^N-1] after arr[^N]", + "url": "https://github.com/dotnet/runtime/pull/124571", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@de80f78", + "labels": [ + "area-CodeGen-coreclr", + "reduce-unsafe" + ], + "score": 6, + "score_reason": "Common index-from-end access patterns benefit automatically from better bounds-check elimination.", + "score_breakdown": { + "breadth": 3, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "runtime@b268dec", + "repo": "runtime", + "title": "Fix RangeOps::Multiply to handle dependent ranges", + "url": "https://github.com/dotnet/runtime/pull/124533", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b268dec", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@00e753c", + "repo": "runtime", + "title": "[HTTP] Re-enable Http3 nginx interop test", + "url": "https://github.com/dotnet/runtime/pull/124591", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@00e753c", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@c667ebc", + "repo": "runtime", + "title": "Skip SocketsHttpHandler_Http1_TrailingHeaders_Test on Browser", + "url": "https://github.com/dotnet/runtime/pull/124466", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c667ebc", + "labels": [ + "area-System.Net.Http", + "os-browser" + ] + }, + { + "id": "runtime@d9747b7", + "repo": "runtime", + "title": "SPMI: Fix relocs into new RO data section", + "url": "https://github.com/dotnet/runtime/pull/124383", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d9747b7", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@f937645", + "repo": "runtime", + "title": "Improve performance-benchmark/SKILL.md", + "url": "https://github.com/dotnet/runtime/pull/124574", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f937645", + "labels": [ + "area-skills" + ] + }, + { + "id": "runtime@f84f009", + "repo": "runtime", + "title": "[browser] Marshalling support float[], Span and ArraySegment", + "url": "https://github.com/dotnet/runtime/pull/123642", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f84f009", + "labels": [ + "arch-wasm", + "area-System.Runtime.InteropServices.JavaScript", + "community-contribution", + "os-browser" + ], + "score": 4, + "score_reason": "Useful browser interop work, but best grouped with the rest of the WASM story.", + "score_breakdown": { + "breadth": 1, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "runtime@960dca4", + "repo": "runtime", + "title": "[wasm][coreclr] runtime tests on CI", + "url": "https://github.com/dotnet/runtime/pull/123377", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@960dca4", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr", + "os-browser" + ] + }, + { + "id": "runtime@3e35839", + "repo": "runtime", + "title": "[RyuJit] Remove the `gtCallCookie` operand from calls", + "url": "https://github.com/dotnet/runtime/pull/124572", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3e35839", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@f475ab8", + "repo": "runtime", + "title": "Fix memory leak in ICorDebugEnum::Clone on CordbEnumerator", + "url": "https://github.com/dotnet/runtime/pull/124580", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f475ab8", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@f8ac08f", + "repo": "runtime", + "title": "Skip unloadable-type tests under ReadyToRun; update ActiveIssue to #124031", + "url": "https://github.com/dotnet/runtime/pull/124619", + "commit": "dotnet@267adfa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f8ac08f", + "labels": [ + "area-TypeSystem-coreclr" + ] + }, + { + "id": "runtime@075204c", + "repo": "runtime", + "title": "Fix FromBase64Transform.TransformFinalBlock to consistently reset state", + "url": "https://github.com/dotnet/runtime/pull/124480", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@075204c", + "labels": [ + "area-System.Security" + ] + }, + { + "id": "runtime@c14a194", + "repo": "runtime", + "title": "Publish AOT managed-ilasm and include in Core_Root", + "url": "https://github.com/dotnet/runtime/pull/124600", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c14a194", + "labels": [ + "area-ILTools-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@c8f006d", + "repo": "runtime", + "title": "[r2r] Don't skip methods with AggressiveOptimization attribute on ios", + "url": "https://github.com/dotnet/runtime/pull/124549", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c8f006d", + "labels": [ + "area-ReadyToRun-coreclr" + ] + }, + { + "id": "runtime@ab11a45", + "repo": "runtime", + "title": "Remove unused PInvokeTransitionFrame_MAX_SIZE and PInvokeTransitionFrame_SaveRegs_count macros", + "url": "https://github.com/dotnet/runtime/pull/124627", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ab11a45", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@29e53cc", + "repo": "runtime", + "title": "[r2r] Fix verbose logging", + "url": "https://github.com/dotnet/runtime/pull/124622", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@29e53cc", + "labels": [ + "area-ReadyToRun-coreclr" + ] + }, + { + "id": "runtime@fca6e86", + "repo": "runtime", + "title": "[browser] move loader JS code", + "url": "https://github.com/dotnet/runtime/pull/124606", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fca6e86", + "labels": [ + "arch-wasm", + "area-Host", + "os-browser" + ] + }, + { + "id": "runtime@e7b2a9b", + "repo": "runtime", + "title": "[clr-ios] Run full test suite on Apple mobile platforms", + "url": "https://github.com/dotnet/runtime/pull/123033", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e7b2a9b", + "labels": [ + "os-ios", + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@cef61f9", + "repo": "runtime", + "title": "Replace HashMap COOP transitions with Epoch-Based Reclamation (EBR)", + "url": "https://github.com/dotnet/runtime/pull/124307", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cef61f9", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@503a82e", + "repo": "runtime", + "title": "Fix P/Invoke IL stub race in DoPrestub", + "url": "https://github.com/dotnet/runtime/pull/124579", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@503a82e", + "labels": [ + "area-Interop-coreclr" + ] + }, + { + "id": "runtime@8f2cee4", + "repo": "runtime", + "title": "Add host tests for resolving serviceable assets", + "url": "https://github.com/dotnet/runtime/pull/119109", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8f2cee4", + "labels": [ + "test-enhancement", + "area-Host" + ] + }, + { + "id": "runtime@d97a9c1", + "repo": "runtime", + "title": "Move diagnostic generation from LibraryImportGenerator to LibraryImportDiagnosticsAnalyzer", + "url": "https://github.com/dotnet/runtime/pull/123780", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d97a9c1", + "labels": [ + "area-System.Runtime.InteropServices" + ] + }, + { + "id": "runtime@d6ea462", + "repo": "runtime", + "title": "Update OneCollect.RecordTrace to 0.1.33304 and re-enable UserEvents NativeAOT tests", + "url": "https://github.com/dotnet/runtime/pull/124616", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d6ea462", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@c802860", + "repo": "runtime", + "title": "[cDAC] UEWatsonBucketTrackerBuckets is not available on non-windows platforms", + "url": "https://github.com/dotnet/runtime/pull/124657", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c802860", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@f7fc065", + "repo": "runtime", + "title": "Fix abandoned jit regression tests", + "url": "https://github.com/dotnet/runtime/pull/124605", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f7fc065", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@27cda88", + "repo": "runtime", + "title": "renames to IsMultithreadingSupported", + "url": "https://github.com/dotnet/runtime/pull/124653", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@27cda88", + "labels": [ + "area-System.Threading" + ] + }, + { + "id": "runtime@44e21b7", + "repo": "runtime", + "title": "Run ILC after ComputeResolvedFilesToPublishList", + "url": "https://github.com/dotnet/runtime/pull/111514", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@44e21b7", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@127fe2d", + "repo": "runtime", + "title": "Write ExpectedExitCode marker in GenerateMarkerFiles", + "url": "https://github.com/dotnet/runtime/pull/124582", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@127fe2d", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@07e1dcc", + "repo": "runtime", + "title": "Remove unused `src/native/managed/cdacreader` directory", + "url": "https://github.com/dotnet/runtime/pull/124675", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@07e1dcc", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@0601ec7", + "repo": "runtime", + "title": "Clarify wording for suppressing CI failure modes", + "url": "https://github.com/dotnet/runtime/pull/124681", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0601ec7", + "labels": [ + "area-Meta" + ] + }, + { + "id": "runtime@213a41d", + "repo": "runtime", + "title": "[Wasm RyuJit] Null checks for calls, overflow checks for int to int casts, resolve stack ordering, more", + "url": "https://github.com/dotnet/runtime/pull/124534", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@213a41d", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@c5d5be4", + "repo": "runtime", + "title": "JIT: Add a \"default value analysis\" for async hoisting", + "url": "https://github.com/dotnet/runtime/pull/124514", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c5d5be4", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@c5c9ddd", + "repo": "runtime", + "title": "[Wasm RyuJit] fix issue in RewriteLocalStackStore", + "url": "https://github.com/dotnet/runtime/pull/124673", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c5c9ddd", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@e2a94a1", + "repo": "runtime", + "title": "[Wasm RyuJit] codegen for some intrinsics", + "url": "https://github.com/dotnet/runtime/pull/124575", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e2a94a1", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@5302011", + "repo": "runtime", + "title": "Add `CORINFO_RUNTIME_LOOKUP::helperEntryPoint`", + "url": "https://github.com/dotnet/runtime/pull/124683", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5302011", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@2fbf43f", + "repo": "runtime", + "title": "Refine PersistedAssemblyBuilder test coverage per review feedback, helper deduplication, and AssemblyNameInfo-based identity validation", + "url": "https://github.com/dotnet/runtime/pull/124626", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2fbf43f", + "labels": [ + "area-System.Reflection.Emit" + ] + }, + { + "id": "runtime@4349c24", + "repo": "runtime", + "title": "[Wasm RyuJit] fix some issues with calls", + "url": "https://github.com/dotnet/runtime/pull/124679", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4349c24", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@f4d21a8", + "repo": "runtime", + "title": "[wasm][coreclr] Use 4GB limit for corerun", + "url": "https://github.com/dotnet/runtime/pull/124633", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f4d21a8", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@a48fa8e", + "repo": "runtime", + "title": "[RyuJit/WASM] Rewrite SP references into PHYSREGs", + "url": "https://github.com/dotnet/runtime/pull/124710", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a48fa8e", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@0ff5be7", + "repo": "runtime", + "title": "Remove duplicate typeof(decimal) check in IsKnownComparable", + "url": "https://github.com/dotnet/runtime/pull/124737", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0ff5be7", + "labels": [ + "area-System.Collections", + "community-contribution" + ] + }, + { + "id": "runtime@1b3a93f", + "repo": "runtime", + "title": "Fix Uri.GetHashCode hash/equality contract violation for file: URIs", + "url": "https://github.com/dotnet/runtime/pull/124652", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1b3a93f", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@711e2aa", + "repo": "runtime", + "title": "Add remarks docs to DI Add*/TryAdd* methods in DependencyInjection.Abstractions", + "url": "https://github.com/dotnet/runtime/pull/124592", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@711e2aa", + "labels": [ + "documentation", + "area-Extensions-DependencyInjection" + ] + }, + { + "id": "runtime@2012f26", + "repo": "runtime", + "title": "[HTTP] Re-enable AuthProxy__ValidCreds_ProxySendsRequestToServer test", + "url": "https://github.com/dotnet/runtime/pull/124595", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2012f26", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@6e15912", + "repo": "runtime", + "title": "[HTTP] Re-enable PostAsync_Cancel_CancellationTokenPassedToContent test", + "url": "https://github.com/dotnet/runtime/pull/124597", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6e15912", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@23bc7e3", + "repo": "runtime", + "title": "More AP-related optimizations", + "url": "https://github.com/dotnet/runtime/pull/124711", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@23bc7e3", + "labels": [ + "area-CodeGen-coreclr", + "reduce-unsafe" + ] + }, + { + "id": "runtime@93d49b4", + "repo": "runtime", + "title": "Propagate _abortException in Http2Connection.SetupAsync", + "url": "https://github.com/dotnet/runtime/pull/119022", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@93d49b4" + }, + { + "id": "runtime@bd273d0", + "repo": "runtime", + "title": "Allow range check cloning for BBJ_RETURN blocks", + "url": "https://github.com/dotnet/runtime/pull/124705", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@bd273d0", + "labels": [ + "area-CodeGen-coreclr", + "reduce-unsafe" + ], + "score": 4, + "score_reason": "More loops benefit from range-check cloning, but the value is clearer in a grouped JIT summary.", + "score_breakdown": { + "breadth": 1, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "runtime@84057bb", + "repo": "runtime", + "title": "Fix ManagedNtlm on big-endian architectures", + "url": "https://github.com/dotnet/runtime/pull/124598", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@84057bb", + "labels": [ + "area-System.Net.Security", + "community-contribution" + ] + }, + { + "id": "runtime@0548fed", + "repo": "runtime", + "title": "[HTTP] Re-enable GetAsync_CancelDuringResponseBodyReceived_Buffered test", + "url": "https://github.com/dotnet/runtime/pull/124594", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0548fed", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@cb26605", + "repo": "runtime", + "title": "[browser][CoreCLR] smoke test libraries on V8 and Firefox", + "url": "https://github.com/dotnet/runtime/pull/124641", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cb26605", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr", + "os-browser" + ] + }, + { + "id": "runtime@1ece45f", + "repo": "runtime", + "title": "Disable localhost subdomain AddressFamily tests on Android", + "url": "https://github.com/dotnet/runtime/pull/124752", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1ece45f", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@a7094a3", + "repo": "runtime", + "title": "[HTTP] Remove GetAsync_UnicodeHostName_SuccessStatusCodeInResponse test", + "url": "https://github.com/dotnet/runtime/pull/124596", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a7094a3", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@884a44c", + "repo": "runtime", + "title": "[HTTP] Re-disable quic.nginx.org interop test", + "url": "https://github.com/dotnet/runtime/pull/124743", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@884a44c", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@b1f031d", + "repo": "runtime", + "title": "Improve jit-regression-test skill with structured description and stop signals", + "url": "https://github.com/dotnet/runtime/pull/124734", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b1f031d", + "labels": [ + "area-skills" + ] + }, + { + "id": "runtime@e5f7893", + "repo": "runtime", + "title": "[Wasm RyuJIT] Block stores", + "url": "https://github.com/dotnet/runtime/pull/123738", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e5f7893", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@ec52b77", + "repo": "runtime", + "title": "JIT: minor cleanups in RBO", + "url": "https://github.com/dotnet/runtime/pull/124759", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ec52b77", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@202f33c", + "repo": "runtime", + "title": "[browser][CoreCLR] Loading Webcil - JS part", + "url": "https://github.com/dotnet/runtime/pull/124758", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@202f33c", + "labels": [ + "arch-wasm", + "area-Host", + "os-browser" + ], + "score": 4, + "score_reason": "WebCIL loading is an important browser building block, though still specialist for most readers.", + "score_breakdown": { + "breadth": 1, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "runtime@66f3596", + "repo": "runtime", + "title": "Managed fixes for async task tracking", + "url": "https://github.com/dotnet/runtime/pull/123727", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@66f3596", + "labels": [ + "area-Diagnostics-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@c7ba7f9", + "repo": "runtime", + "title": "Don't build managed ilasm in the VMR yet", + "url": "https://github.com/dotnet/runtime/pull/124762", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c7ba7f9", + "labels": [ + "area-ILTools-coreclr" + ] + }, + { + "id": "runtime@2dac4d5", + "repo": "runtime", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/runtime/pull/124532", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2dac4d5", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@4594a58", + "repo": "runtime", + "title": "[cDAC] Add infrastructure to run cDAC tests using CLRMD and dumps", + "url": "https://github.com/dotnet/runtime/pull/124564", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4594a58", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@ca778ae", + "repo": "runtime", + "title": "Don't crash when walking callstack roots in the debugger", + "url": "https://github.com/dotnet/runtime/pull/124402", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ca778ae", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@58f1455", + "repo": "runtime", + "title": "[Wasm RyuJit] Crossgen fixes", + "url": "https://github.com/dotnet/runtime/pull/124763", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@58f1455", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@ae967fe", + "repo": "runtime", + "title": "[cDAC] Compute MethodDesc size directly to support more heap dump scenarios", + "url": "https://github.com/dotnet/runtime/pull/124772", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ae967fe", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@df9f260", + "repo": "runtime", + "title": "Use Requires.Range in LastIndexOf", + "url": "https://github.com/dotnet/runtime/pull/124560", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@df9f260", + "labels": [ + "area-System.Collections", + "community-contribution" + ] + }, + { + "id": "runtime@dad73ab", + "repo": "runtime", + "title": "Strip ARM64 TBI tag byte from addresses before pread on /proc//mem", + "url": "https://github.com/dotnet/runtime/pull/124709", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@dad73ab", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@3b61bfa", + "repo": "runtime", + "title": "JIT: Less optimistic checking for const vector to pattern checks", + "url": "https://github.com/dotnet/runtime/pull/124599", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3b61bfa", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@904ecbb", + "repo": "runtime", + "title": "Move Zstandard APIs from System.IO.Compression.Zstandard to System.IO.Compression", + "url": "https://github.com/dotnet/runtime/pull/124634", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@904ecbb", + "labels": [ + "area-System.IO.Compression" + ], + "score": 5, + "score_reason": "A clear packaging/story change for Zstandard APIs, though it is more of a short note than a lead story.", + "score_breakdown": { + "breadth": 2, + "reader_value": 2, + "clarity": 1 + }, + "breaking_changes": true + }, + { + "id": "runtime@3b504c5", + "repo": "runtime", + "title": "Process Iri_UnicodePlane3_13 test in 0x10000-character chunks", + "url": "https://github.com/dotnet/runtime/pull/124486", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3b504c5", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@81c46c6", + "repo": "runtime", + "title": "Fix debug assert in Uri.CreateThisFromUri when combining UNC base with \"file:\" relative URI", + "url": "https://github.com/dotnet/runtime/pull/124660", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@81c46c6", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@132599d", + "repo": "runtime", + "title": "Update API review meeting frequency to once a week", + "url": "https://github.com/dotnet/runtime/pull/124793", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@132599d", + "labels": [ + "area-Meta" + ] + }, + { + "id": "runtime@f714f86", + "repo": "runtime", + "title": "Set __NumProc on OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/124775", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f714f86", + "labels": [ + "area-Infrastructure-coreclr", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@a7a54a5", + "repo": "runtime", + "title": "Add OpenBSD target", + "url": "https://github.com/dotnet/runtime/pull/124776", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a7a54a5", + "labels": [ + "area-Infrastructure", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@0339995", + "repo": "runtime", + "title": "Fix native aot outerloop", + "url": "https://github.com/dotnet/runtime/pull/124773", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0339995", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@97de220", + "repo": "runtime", + "title": "Publish Uri and UriBuilder threat models", + "url": "https://github.com/dotnet/runtime/pull/124273", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@97de220", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@c94ed87", + "repo": "runtime", + "title": "JIT: Convert multi-target switches to branchless checks", + "url": "https://github.com/dotnet/runtime/pull/124567", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c94ed87", + "labels": [ + "area-CodeGen-coreclr" + ], + "score": 6, + "score_reason": "Everyday C# patterns such as multi-target switches now generate tighter code with no app changes required.", + "score_breakdown": { + "breadth": 3, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "runtime@d203c6c", + "repo": "runtime", + "title": "Build mscordac on OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/124774", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d203c6c", + "labels": [ + "area-Infrastructure-coreclr", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@27689b6", + "repo": "runtime", + "title": "[r2r] Add helpers for class init", + "url": "https://github.com/dotnet/runtime/pull/124649", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@27689b6", + "labels": [ + "area-ReadyToRun-coreclr" + ] + }, + { + "id": "runtime@19db7ab", + "repo": "runtime", + "title": "Fail inner build when running coreclr tests", + "url": "https://github.com/dotnet/runtime/pull/124767", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@19db7ab", + "labels": [ + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@da4894b", + "repo": "runtime", + "title": "Fix Uri.TryUnescapeDataString throwing instead of returning false with small destination buffers", + "url": "https://github.com/dotnet/runtime/pull/124655", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@da4894b", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@a90eed2", + "repo": "runtime", + "title": "Add GetStackLimits cDAC API", + "url": "https://github.com/dotnet/runtime/pull/124682", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a90eed2", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@689ceb6", + "repo": "runtime", + "title": "Improve exception message for empty assembly loading", + "url": "https://github.com/dotnet/runtime/pull/124301", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@689ceb6", + "labels": [ + "area-AssemblyLoader-coreclr" + ] + }, + { + "id": "runtime@1c7e395", + "repo": "runtime", + "title": "Fix NRange.GetOffsetAndLength truncation: cast to nuint instead of uint", + "url": "https://github.com/dotnet/runtime/pull/124300", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1c7e395", + "labels": [ + "area-System.Numerics.Tensors" + ] + }, + { + "id": "runtime@52114b6", + "repo": "runtime", + "title": "Fix LoadExactInterfaceMap for sub-interfaces with complex type arguments under special marker parents", + "url": "https://github.com/dotnet/runtime/pull/124684", + "commit": "dotnet@4c6f71e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@52114b6", + "labels": [ + "area-TypeSystem-coreclr" + ] + }, + { + "id": "runtime@619214e", + "repo": "runtime", + "title": "fix: CreateSubdirectory failing for root directories", + "url": "https://github.com/dotnet/runtime/pull/121906", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@619214e", + "labels": [ + "area-System.IO", + "community-contribution" + ] + }, + { + "id": "runtime@b613202", + "repo": "runtime", + "title": "Enable case-sensitive LeadingStrings with frequency-based heuristic", + "url": "https://github.com/dotnet/runtime/pull/124736", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b613202", + "labels": [ + "area-System.Text.RegularExpressions" + ] + }, + { + "id": "runtime@46d35c2", + "repo": "runtime", + "title": "Delete CORINFO_HELP_ENDCATCH", + "url": "https://github.com/dotnet/runtime/pull/124820", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@46d35c2", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@6e58274", + "repo": "runtime", + "title": "[Wasm RyuJit] more fixes from crossgen2 of spc", + "url": "https://github.com/dotnet/runtime/pull/124837", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6e58274", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@9511672", + "repo": "runtime", + "title": "Fix premature returns for argument/pointer checks in SOSDacImpl.cs", + "url": "https://github.com/dotnet/runtime/pull/124814", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9511672", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@fdc3e49", + "repo": "runtime", + "title": "Fix hijacking on arm32", + "url": "https://github.com/dotnet/runtime/pull/124831", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fdc3e49", + "labels": [ + "area-NativeAOT-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@f5ba5f6", + "repo": "runtime", + "title": "[Wasm RyuJit] internal registers, integer binop overflow checks", + "url": "https://github.com/dotnet/runtime/pull/124731", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f5ba5f6", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@85b9bc5", + "repo": "runtime", + "title": "Allow box_this pattern on composite r2r", + "url": "https://github.com/dotnet/runtime/pull/124519", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@85b9bc5", + "labels": [ + "area-ReadyToRun-coreclr" + ] + }, + { + "id": "runtime@33e63ad", + "repo": "runtime", + "title": "Remove calls to ToArray because string.Join already has overload for ROS.", + "url": "https://github.com/dotnet/runtime/pull/124792", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@33e63ad", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@9b312a6", + "repo": "runtime", + "title": "LoggerMessage source generator: preserve `ref readonly`; forbid `params`, `scoped`, and ref struct parameters", + "url": "https://github.com/dotnet/runtime/pull/124589", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9b312a6", + "labels": [ + "area-Extensions-Logging" + ] + }, + { + "id": "runtime@40f1da5", + "repo": "runtime", + "title": "Fix Arm64: for 124357", + "url": "https://github.com/dotnet/runtime/pull/124765", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@40f1da5", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@b08387a", + "repo": "runtime", + "title": "Add CoreCLR runtime build for browser-wasm performance benchmarks", + "url": "https://github.com/dotnet/runtime/pull/124786", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b08387a", + "labels": [ + "area-VM-coreclr", + "perf-pipeline" + ] + }, + { + "id": "runtime@0f12574", + "repo": "runtime", + "title": "Fix ALPN protocol list size field type and add boundary tests", + "url": "https://github.com/dotnet/runtime/pull/124590", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0f12574", + "labels": [ + "area-System.Net.Security" + ] + }, + { + "id": "runtime@adc1912", + "repo": "runtime", + "title": "Add missing GC.KeepAlives to WMIInterop", + "url": "https://github.com/dotnet/runtime/pull/124796", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@adc1912", + "labels": [ + "area-System.Management" + ] + }, + { + "id": "runtime@77b5f2f", + "repo": "runtime", + "title": "Use ConditionalFact/ConditionalTheory ctor that passes type", + "url": "https://github.com/dotnet/runtime/pull/124791", + "commit": "dotnet@58ab089", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@77b5f2f", + "labels": [ + "area-Meta" + ] + }, + { + "id": "runtime@b5f00c7", + "repo": "runtime", + "title": "[cDAC] GetCodeHeaderData fork", + "url": "https://github.com/dotnet/runtime/pull/120275", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b5f00c7", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@e4a99ce", + "repo": "runtime", + "title": "Implement ISOSDacInterface::GetRegisterName in cDAC SOSDacImpl", + "url": "https://github.com/dotnet/runtime/pull/124803", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e4a99ce", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@df19ee7", + "repo": "runtime", + "title": "Implement ISOSDacInterface12::GetGlobalAllocationContext in cDAC SOSDacImpl", + "url": "https://github.com/dotnet/runtime/pull/124805", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@df19ee7", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@4a31f31", + "repo": "runtime", + "title": "Mono: increase default stack size on s390x/ppc64le; support DOTNET_Thread_DefaultStackSize for setting stack size.", + "url": "https://github.com/dotnet/runtime/pull/124588", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4a31f31", + "labels": [ + "area-VM-meta-mono", + "community-contribution" + ] + }, + { + "id": "runtime@78222e6", + "repo": "runtime", + "title": "Fix reachable Debug.Assert in SubReadStream.Read when seeked past end", + "url": "https://github.com/dotnet/runtime/pull/124813", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@78222e6", + "labels": [ + "area-System.IO.Compression" + ] + }, + { + "id": "runtime@770d929", + "repo": "runtime", + "title": "[runtime-diagnostics] Publish test dumps on failure", + "url": "https://github.com/dotnet/runtime/pull/124821", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@770d929", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@bdf19d3", + "repo": "runtime", + "title": "Add SSH and Copilot CLI features to devcontainer", + "url": "https://github.com/dotnet/runtime/pull/124855", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@bdf19d3", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@69e4ae5", + "repo": "runtime", + "title": "[cDAC] Fix AMD64 epilogue unwinder reading register number from wrong byte offset", + "url": "https://github.com/dotnet/runtime/pull/124845", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@69e4ae5", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@7b14f37", + "repo": "runtime", + "title": "Fix three cDAC managed AMD64/X86 unwinder bugs found by native audit", + "url": "https://github.com/dotnet/runtime/pull/124848", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7b14f37", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@0fe50ea", + "repo": "runtime", + "title": "[cDAC] Fix DebugInfo error codes for methods without debug metadata and add P/Invoke dump tests", + "url": "https://github.com/dotnet/runtime/pull/124783", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0fe50ea", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@68be26b", + "repo": "runtime", + "title": "Backport XML doc comments for DispatchProxy from dotnet-api-docs", + "url": "https://github.com/dotnet/runtime/pull/124361", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@68be26b", + "labels": [ + "area-System.Reflection" + ] + }, + { + "id": "runtime@3390dc8", + "repo": "runtime", + "title": "Fix inverted IsNull check in RangeSectionMap::EnumMemoryRangeSectionMapLevel", + "url": "https://github.com/dotnet/runtime/pull/124862", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3390dc8", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@d63c175", + "repo": "runtime", + "title": "Fuzz Json Deserializing", + "url": "https://github.com/dotnet/runtime/pull/117956", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d63c175", + "labels": [ + "area-System.Text.Json" + ] + }, + { + "id": "runtime@6a67552", + "repo": "runtime", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/runtime/pull/124778", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6a67552", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@133c7bd", + "repo": "runtime", + "title": "Arm64: Add SM4 and SHA3 instructions", + "url": "https://github.com/dotnet/runtime/pull/124504", + "commit": "dotnet@43760d2", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@133c7bd", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ], + "score": 4, + "score_reason": "More ARM64 intrinsics matter to performance specialists, but most readers only need a short grouped mention.", + "score_breakdown": { + "breadth": 1, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "runtime@cb7c257", + "repo": "runtime", + "title": "Delete unnecessary test", + "url": "https://github.com/dotnet/runtime/pull/124884", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cb7c257", + "labels": [ + "area-TypeSystem-coreclr" + ] + }, + { + "id": "runtime@a71427e", + "repo": "runtime", + "title": "Disable FileSystemWatcher_SymbolicLink_TargetsDirectory_Create_IncludeSubdirectories", + "url": "https://github.com/dotnet/runtime/pull/124849", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a71427e", + "labels": [ + "area-System.IO" + ] + }, + { + "id": "runtime@e5dde0c", + "repo": "runtime", + "title": "[browser][CoreCLR] lazy and satelite assemblies", + "url": "https://github.com/dotnet/runtime/pull/124853", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e5dde0c", + "labels": [ + "arch-wasm", + "area-Host", + "os-browser" + ] + }, + { + "id": "runtime@eae0a64", + "repo": "runtime", + "title": "JIT: Fix assert in JIT:new() during early initialization", + "url": "https://github.com/dotnet/runtime/pull/124715", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@eae0a64", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@4203f01", + "repo": "runtime", + "title": "Fix GC handle dac bug", + "url": "https://github.com/dotnet/runtime/pull/124875", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4203f01", + "labels": [ + "area-GC-coreclr" + ] + }, + { + "id": "runtime@c0a9bef", + "repo": "runtime", + "title": "[browser] Add chrome provisioning on macos/arm64", + "url": "https://github.com/dotnet/runtime/pull/124852", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c0a9bef", + "labels": [ + "arch-wasm", + "area-Infrastructure" + ] + }, + { + "id": "runtime@7a5e8fc", + "repo": "runtime", + "title": "Fix memory leak in Assembler::EmitGenericParamConstraints", + "url": "https://github.com/dotnet/runtime/pull/124586", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7a5e8fc", + "labels": [ + "area-ILTools-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@0cc4cf9", + "repo": "runtime", + "title": "JIT: SVE2 Scatters need a temp register for indices", + "url": "https://github.com/dotnet/runtime/pull/124865", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0cc4cf9", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@c746487", + "repo": "runtime", + "title": "Implement ISOSDacInterface::GetThreadAllocData in cDAC SOSDacImpl", + "url": "https://github.com/dotnet/runtime/pull/124817", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c746487", + "labels": [ + "area-System.Threading" + ] + }, + { + "id": "runtime@fcff831", + "repo": "runtime", + "title": "[Wasm RyuJit] localloc", + "url": "https://github.com/dotnet/runtime/pull/124250", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fcff831", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@63bdcc4", + "repo": "runtime", + "title": "Tar: Only treat reparse points marked as junctions or symlinks as actual tar symlinks", + "url": "https://github.com/dotnet/runtime/pull/124753", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@63bdcc4", + "labels": [ + "area-System.Formats.Tar" + ] + }, + { + "id": "runtime@1be4689", + "repo": "runtime", + "title": "Cleanup EH / stackwalk interpreter frame handling", + "url": "https://github.com/dotnet/runtime/pull/124296", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1be4689", + "labels": [ + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@371aca3", + "repo": "runtime", + "title": "Handle single-node branches in ExtractCommonPrefixNode", + "url": "https://github.com/dotnet/runtime/pull/124881", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@371aca3", + "labels": [ + "area-System.Text.RegularExpressions" + ] + }, + { + "id": "runtime@7756d81", + "repo": "runtime", + "title": "Eliminate forwarder stubs by reusing method precodes for call counting indirection", + "url": "https://github.com/dotnet/runtime/pull/124664", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7756d81", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@a1df4fb", + "repo": "runtime", + "title": "Implement ISOSDacInterface::GetObjectClassName in cDAC SOSDacImpl", + "url": "https://github.com/dotnet/runtime/pull/124816", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a1df4fb", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@b04a3f5", + "repo": "runtime", + "title": "Fix reachable Debug.Assert in StreamPipeReader.AdvanceTo", + "url": "https://github.com/dotnet/runtime/pull/123810", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b04a3f5", + "labels": [ + "area-System.IO.Pipelines" + ] + }, + { + "id": "runtime@eeedc34", + "repo": "runtime", + "title": "Annotate `ServiceDescriptor.IsKeyedService` for nullability flow and sync ref assembly", + "url": "https://github.com/dotnet/runtime/pull/124493", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@eeedc34", + "labels": [ + "area-Extensions-DependencyInjection" + ] + }, + { + "id": "runtime@c142b2a", + "repo": "runtime", + "title": "cDAC - fix ReJIT IsEnabled", + "url": "https://github.com/dotnet/runtime/pull/124441", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c142b2a", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@fc9084d", + "repo": "runtime", + "title": "JIT: Fix bugs and typos in objectalloc.cpp, extract AnalyzePseudoForCloning", + "url": "https://github.com/dotnet/runtime/pull/124809", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fc9084d", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@42b1679", + "repo": "runtime", + "title": "Backport XML documentation for WebProxy and IWebProxyScript", + "url": "https://github.com/dotnet/runtime/pull/124396", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@42b1679", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@ea5071e", + "repo": "runtime", + "title": "Vectorize Adler32", + "url": "https://github.com/dotnet/runtime/pull/124409", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ea5071e", + "labels": [ + "area-System.IO.Hashing" + ] + }, + { + "id": "runtime@c603c98", + "repo": "runtime", + "title": "Change Interpreter to share code with the JIT and use its CompAllocator", + "url": "https://github.com/dotnet/runtime/pull/123830", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c603c98", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@e99d522", + "repo": "runtime", + "title": "[Wasm RyuJit] Type Index Relocation Support in Wasm Object Writer", + "url": "https://github.com/dotnet/runtime/pull/124685", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e99d522", + "labels": [ + "arch-wasm", + "area-crossgen2-coreclr" + ] + }, + { + "id": "runtime@17ca03d", + "repo": "runtime", + "title": "Replace GCX_COOP with EBR for EEHashTable bucket reclamation", + "url": "https://github.com/dotnet/runtime/pull/124822", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@17ca03d", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@71ffd70", + "repo": "runtime", + "title": "Revert \"Increase number of assertions (GlobalAP) + VN cache \"", + "url": "https://github.com/dotnet/runtime/pull/124132", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@71ffd70", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@9c52f8f", + "repo": "runtime", + "title": "Adding GetHandleEnum and GetHandleEnumForTypes cDAC APIs", + "url": "https://github.com/dotnet/runtime/pull/124760", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9c52f8f", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@de761a5", + "repo": "runtime", + "title": "Improve System.Reflection.Context.Tests code coverage from ~35% to 87%", + "url": "https://github.com/dotnet/runtime/pull/123026", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@de761a5", + "labels": [ + "area-System.Reflection" + ] + }, + { + "id": "runtime@8dc23df", + "repo": "runtime", + "title": "Enable runtime-async feature switch for NativeAOT System.Private.CoreLib", + "url": "https://github.com/dotnet/runtime/pull/123952", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8dc23df", + "labels": [ + "area-NativeAOT-coreclr", + "runtime-async" + ], + "score": 7, + "score_reason": "Extends the runtime-async story to NativeAOT, making the feature more practical to try.", + "score_breakdown": { + "breadth": 3, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "runtime@25eb60e", + "repo": "runtime", + "title": "[API] RuntimeFeature.IsMultithreadingSupported", + "url": "https://github.com/dotnet/runtime/pull/124603", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@25eb60e", + "labels": [ + "arch-wasm", + "area-System.Threading", + "os-browser" + ], + "score": 4, + "score_reason": "Useful for browser/WASI scenarios, but still specialized enough for a smaller grouped mention.", + "score_breakdown": { + "breadth": 1, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "runtime@a7b56d0", + "repo": "runtime", + "title": "Implement `AsyncHelpers.TailAwait` in the interpreter and use it for instantiating and unboxing stubs on CoreCLR", + "url": "https://github.com/dotnet/runtime/pull/124861", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a7b56d0", + "labels": [ + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@7b67779", + "repo": "runtime", + "title": "[browser] Webcil alignment", + "url": "https://github.com/dotnet/runtime/pull/124905", + "commit": "dotnet@8d610ff", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7b67779", + "labels": [ + "arch-wasm", + "area-Host", + "os-browser" + ] + }, + { + "id": "runtime@b5fef80", + "repo": "runtime", + "title": "Bump actions/upload-artifact from 6 to 7", + "url": "https://github.com/dotnet/runtime/pull/124924", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b5fef80", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@e1c62a5", + "repo": "runtime", + "title": "Logging source generator: support generic methods (lift SYSLIB1011)", + "url": "https://github.com/dotnet/runtime/pull/124638", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e1c62a5", + "labels": [ + "area-Extensions-Logging" + ], + "score": 4, + "score_reason": "Helpful source-generator polish, but not central enough to the preview to headline separately.", + "score_breakdown": { + "breadth": 1, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "runtime@03d7b4c", + "repo": "runtime", + "title": "Convert verbatim string literals to raw string literals in System.Text.Json tests", + "url": "https://github.com/dotnet/runtime/pull/124892", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@03d7b4c", + "labels": [ + "area-System.Text.Json" + ] + }, + { + "id": "runtime@c30eec2", + "repo": "runtime", + "title": "[wasm][coreclr] Fix prestub of methods with IL helper stubs", + "url": "https://github.com/dotnet/runtime/pull/124873", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c30eec2", + "labels": [ + "arch-wasm", + "area-VM-coreclr" + ] + }, + { + "id": "runtime@23855bf", + "repo": "runtime", + "title": "[browser][coreCLR] adopt new API for async main", + "url": "https://github.com/dotnet/runtime/pull/124909", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@23855bf", + "labels": [ + "arch-wasm", + "area-Host", + "os-browser" + ] + }, + { + "id": "runtime@f297dfb", + "repo": "runtime", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 679: Build ID 2914130", + "url": "https://github.com/dotnet/runtime/pull/124957", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f297dfb", + "labels": [ + "area-Extensions-Logging" + ] + }, + { + "id": "runtime@cdcb8f3", + "repo": "runtime", + "title": "Fix type formatting in logging source generator test", + "url": "https://github.com/dotnet/runtime/pull/124962", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cdcb8f3", + "labels": [ + "area-Extensions-Logging" + ] + }, + { + "id": "runtime@9b47894", + "repo": "runtime", + "title": "Bump rollup from 4.52.2 to 4.59.0 in /src/mono/browser/runtime", + "url": "https://github.com/dotnet/runtime/pull/124910", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9b47894", + "labels": [ + "area-Infrastructure", + "javascript", + "dependencies" + ] + }, + { + "id": "runtime@c69c476", + "repo": "runtime", + "title": "[cDAC] Fix EEClass validation corner case", + "url": "https://github.com/dotnet/runtime/pull/124780", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c69c476", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@3176283", + "repo": "runtime", + "title": "[cDAC] Strip collectible tag bit from RangeSectionFragment.Next pointer", + "url": "https://github.com/dotnet/runtime/pull/124929", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3176283", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@7356734", + "repo": "runtime", + "title": "[runtime-diagnostics] Workaround for publish test results regression", + "url": "https://github.com/dotnet/runtime/pull/124859", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7356734", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@b6a3e78", + "repo": "runtime", + "title": "[cDAC] Add managed definitions for IXCLRData COM interfaces", + "url": "https://github.com/dotnet/runtime/pull/124922", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b6a3e78", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@06d5e82", + "repo": "runtime", + "title": "Enclose keywords in quotes in logging generator messages, to improve translation quality", + "url": "https://github.com/dotnet/runtime/pull/124960", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@06d5e82", + "labels": [ + "area-Extensions-Logging" + ] + }, + { + "id": "runtime@6ef43c5", + "repo": "runtime", + "title": "Fix copy-paste error in `is` check for character base64 decoding", + "url": "https://github.com/dotnet/runtime/pull/124936", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6ef43c5", + "labels": [ + "area-System.Buffers" + ] + }, + { + "id": "runtime@d7362ec", + "repo": "runtime", + "title": "Cleanup flowgraph files", + "url": "https://github.com/dotnet/runtime/pull/124882", + "commit": "dotnet@9125b13", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d7362ec", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@aede44d", + "repo": "runtime", + "title": "[cDAC] Fix com lifetime bug in GetHandleEnum", + "url": "https://github.com/dotnet/runtime/pull/124983", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@aede44d", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@b41bbea", + "repo": "runtime", + "title": "Introduce DOTNET_JitReportMetrics", + "url": "https://github.com/dotnet/runtime/pull/124975", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b41bbea", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@09865a9", + "repo": "runtime", + "title": "Move diagnostics out of DownlevelLibraryImportGenerator into a separate analyzer", + "url": "https://github.com/dotnet/runtime/pull/124670", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@09865a9", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@e191851", + "repo": "runtime", + "title": "Fix pal_error_common.h on OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/124991", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e191851", + "labels": [ + "area-PAL-coreclr", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@50f4fec", + "repo": "runtime", + "title": "Fix StackOverflowException from deeply nested character class subtractions", + "url": "https://github.com/dotnet/runtime/pull/124995", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@50f4fec", + "labels": [ + "area-System.Text.RegularExpressions" + ] + }, + { + "id": "runtime@aba6825", + "repo": "runtime", + "title": "JIT: Refactor async-to-sync call optimization", + "url": "https://github.com/dotnet/runtime/pull/124798", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@aba6825", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@6aa153f", + "repo": "runtime", + "title": "Remove ActiveIssue from src/tests/JIT/jit64/regress/vsw/373472/test.il", + "url": "https://github.com/dotnet/runtime/pull/124953", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6aa153f", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@e756eed", + "repo": "runtime", + "title": "Add GetSyncBlockData cDAC API", + "url": "https://github.com/dotnet/runtime/pull/124933", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e756eed", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@a064f10", + "repo": "runtime", + "title": "Fix Directory.Delete(path, recursive: true) failing on directories containing junctions", + "url": "https://github.com/dotnet/runtime/pull/124830", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a064f10", + "labels": [ + "area-ExceptionHandling-coreclr" + ] + }, + { + "id": "runtime@9eeb791", + "repo": "runtime", + "title": "Bump rollup from 4.52.2 to 4.59.0 in /src/native", + "url": "https://github.com/dotnet/runtime/pull/124987", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9eeb791", + "labels": [ + "area-Infrastructure", + "javascript", + "dependencies" + ] + }, + { + "id": "runtime@1c94b86", + "repo": "runtime", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 679: Build ID 2914804", + "url": "https://github.com/dotnet/runtime/pull/124988", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1c94b86", + "labels": [ + "area-Extensions-Logging" + ] + }, + { + "id": "runtime@faf542a", + "repo": "runtime", + "title": "Delete ArrayEEClass - compute multidim array rank from BaseSize", + "url": "https://github.com/dotnet/runtime/pull/124944", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@faf542a", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@1d9d70a", + "repo": "runtime", + "title": "MachObjectWriter: Fix calculation of segment file offset and size", + "url": "https://github.com/dotnet/runtime/pull/125006", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1d9d70a", + "labels": [ + "area-crossgen2-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@de40d80", + "repo": "runtime", + "title": "Adjust how we access thread ID for header thin locks", + "url": "https://github.com/dotnet/runtime/pull/124878", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@de40d80", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@d78ab5a", + "repo": "runtime", + "title": "Link pthread on OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/125011", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d78ab5a", + "labels": [ + "area-System.Threading", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@4353591", + "repo": "runtime", + "title": "Fix operator precedence bug in SystemNative_FSync causing silent fsync errors on macOS SMB shares", + "url": "https://github.com/dotnet/runtime/pull/124725", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4353591", + "labels": [ + "area-System.IO" + ] + }, + { + "id": "runtime@6c9a038", + "repo": "runtime", + "title": "Fix src/minipal/thread.h on OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/124999", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6c9a038", + "labels": [ + "area-System.Threading", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@5306ee8", + "repo": "runtime", + "title": "Fix browser-targeting builds: move `declare global` from public-api.ts to export-api.ts", + "url": "https://github.com/dotnet/runtime/pull/125014", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5306ee8", + "labels": [ + "arch-wasm", + "area-System.Runtime.InteropServices.JavaScript" + ] + }, + { + "id": "runtime@348ad67", + "repo": "runtime", + "title": "Update EncodingTable to use ConcurrentDictionary for performance", + "url": "https://github.com/dotnet/runtime/pull/125001", + "commit": "dotnet@a66d14e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@348ad67", + "labels": [ + "area-System.Globalization" + ] + }, + { + "id": "runtime@23cced9", + "repo": "runtime", + "title": "Fix TypeLoadException in GetMarshalAs when SafeArray has zero-length user-defined type name", + "url": "https://github.com/dotnet/runtime/pull/124408", + "commit": "dotnet@370cba6", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@23cced9", + "labels": [ + "area-Interop-coreclr" + ] + }, + { + "id": "runtime@a659059", + "repo": "runtime", + "title": "[WBT] enable coreCLR", + "url": "https://github.com/dotnet/runtime/pull/124850", + "commit": "dotnet@370cba6", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a659059", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr", + "os-browser" + ] + }, + { + "id": "runtime@f1b1b93", + "repo": "runtime", + "title": "Reduce lock contention in socket on Windows", + "url": "https://github.com/dotnet/runtime/pull/124997", + "commit": "dotnet@370cba6", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f1b1b93", + "labels": [ + "area-System.Net.Sockets" + ] + }, + { + "id": "runtime@9b46e58", + "repo": "runtime", + "title": "Skip NonBacktracking CharClassSubtraction_DeepNesting on browser-wasm", + "url": "https://github.com/dotnet/runtime/pull/125021", + "commit": "dotnet@370cba6", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9b46e58", + "labels": [ + "area-System.Text.RegularExpressions" + ] + }, + { + "id": "runtime@07ad470", + "repo": "runtime", + "title": "Make `CustomizeTrimming` virtual", + "url": "https://github.com/dotnet/runtime/pull/124973", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@07ad470", + "labels": [ + "linkable-framework", + "community-contribution", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@2afb4c5", + "repo": "runtime", + "title": "Clean up `SkipUnresolved` handling in linker test framework.", + "url": "https://github.com/dotnet/runtime/pull/124972", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2afb4c5", + "labels": [ + "linkable-framework", + "community-contribution", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@97f4414", + "repo": "runtime", + "title": "Drop RequiresProcessIsolation from Loader tests", + "url": "https://github.com/dotnet/runtime/pull/124883", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@97f4414", + "labels": [ + "area-TypeSystem-coreclr" + ] + }, + { + "id": "runtime@fdd418a", + "repo": "runtime", + "title": "Add blittable color types Argb and Rgba to System.Numerics.Vectors", + "url": "https://github.com/dotnet/runtime/pull/124663", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fdd418a", + "labels": [ + "area-System.Numerics" + ] + }, + { + "id": "runtime@1fd4dda", + "repo": "runtime", + "title": "[wasm] Bump chrome for testing - linux: 145.0.7632.109, windows: 145.0.7632.77", + "url": "https://github.com/dotnet/runtime/pull/124714", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1fd4dda", + "labels": [ + "arch-wasm", + "area-Infrastructure-mono" + ] + }, + { + "id": "runtime@56ed396", + "repo": "runtime", + "title": "[wasm][coreclr] Make run.cmd work with wasm arch", + "url": "https://github.com/dotnet/runtime/pull/124795", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@56ed396", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@ad33dab", + "repo": "runtime", + "title": "Convert IDacDbiInterface to return HRESULT to fix cross-DSO exception handling on mobile platforms", + "url": "https://github.com/dotnet/runtime/pull/124836", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ad33dab", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@a550606", + "repo": "runtime", + "title": "[clr-interp] Support for breakpoints and stepping", + "url": "https://github.com/dotnet/runtime/pull/123251", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a550606", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@ab91a5c", + "repo": "runtime", + "title": "[wasm][coreclr] Re-enable runtime tests", + "url": "https://github.com/dotnet/runtime/pull/125043", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ab91a5c", + "labels": [ + "arch-wasm", + "area-ExceptionHandling-coreclr" + ] + }, + { + "id": "runtime@44451f3", + "repo": "runtime", + "title": "Fix pal_io.c on OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/124992", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@44451f3", + "labels": [ + "area-System.IO.Compression", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@96bb371", + "repo": "runtime", + "title": "Add an api-proposal Copilot skill", + "url": "https://github.com/dotnet/runtime/pull/124808", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@96bb371", + "labels": [ + "area-skills" + ] + }, + { + "id": "runtime@e014236", + "repo": "runtime", + "title": "Disable stackoverflowtester on unix-x64", + "url": "https://github.com/dotnet/runtime/pull/125048", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e014236", + "labels": [ + "area-ExceptionHandling-coreclr" + ] + }, + { + "id": "runtime@77f0e35", + "repo": "runtime", + "title": "Convert exception-related MethodDescCallSite calls to UnmanagedCallersOnly", + "url": "https://github.com/dotnet/runtime/pull/124834", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@77f0e35", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@64d10ef", + "repo": "runtime", + "title": "Replace string.Compare == 0 patterns with Equals/StartsWith/AsSpan calls", + "url": "https://github.com/dotnet/runtime/pull/124566", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@64d10ef", + "labels": [ + "area-Meta" + ] + }, + { + "id": "runtime@e0d7d73", + "repo": "runtime", + "title": "Disable superpmi tests on Mono", + "url": "https://github.com/dotnet/runtime/pull/125007", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e0d7d73", + "labels": [ + "os-linux", + "area-Infrastructure-mono" + ] + }, + { + "id": "runtime@4a0bfed", + "repo": "runtime", + "title": "JIT: Fix reordering of inlinee return expression with async save/restore", + "url": "https://github.com/dotnet/runtime/pull/125044", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4a0bfed", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@20650a9", + "repo": "runtime", + "title": "Fix StreamPipeReader.CopyToAsync not advancing past buffered data", + "url": "https://github.com/dotnet/runtime/pull/124989", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@20650a9", + "labels": [ + "bug", + "area-System.IO.Pipelines" + ] + }, + { + "id": "runtime@8277247", + "repo": "runtime", + "title": "Cleanup basic block", + "url": "https://github.com/dotnet/runtime/pull/124915", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8277247", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@e01d40a", + "repo": "runtime", + "title": "Array stack iterators", + "url": "https://github.com/dotnet/runtime/pull/125027", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e01d40a", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@12dbdb7", + "repo": "runtime", + "title": "[browser][coreCLR] throttling + WBT", + "url": "https://github.com/dotnet/runtime/pull/124969", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@12dbdb7", + "labels": [ + "arch-wasm", + "area-Host", + "os-browser" + ] + }, + { + "id": "runtime@b0bc48e", + "repo": "runtime", + "title": "[Wasm RyuJIT] Block Stores pt. 2", + "url": "https://github.com/dotnet/runtime/pull/124846", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b0bc48e", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@3a04c26", + "repo": "runtime", + "title": "[RISC-V] Enable instruction printing for the `Generate code` phase in JIT dumps", + "url": "https://github.com/dotnet/runtime/pull/122485", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3a04c26", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution", + "arch-riscv" + ] + }, + { + "id": "runtime@0b62fdf", + "repo": "runtime", + "title": "[cDAC] Fix NonVirtualEntry2MethodDesc to handle invalid precode addresses", + "url": "https://github.com/dotnet/runtime/pull/124986", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0b62fdf", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@daa66d1", + "repo": "runtime", + "title": "Add guidelines for RequiresProcessIsolation in tests", + "url": "https://github.com/dotnet/runtime/pull/125034", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@daa66d1", + "labels": [ + "area-System.Diagnostics.Process" + ] + }, + { + "id": "runtime@371f3c3", + "repo": "runtime", + "title": "Switch ilasm to Antlr4BuildTasks", + "url": "https://github.com/dotnet/runtime/pull/124764", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@371f3c3", + "labels": [ + "area-ILTools-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@264cff6", + "repo": "runtime", + "title": "Fix WASM boot config ContentRoot to use IntermediateOutputPath", + "url": "https://github.com/dotnet/runtime/pull/124125", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@264cff6", + "labels": [ + "arch-wasm", + "area-Meta", + "os-browser" + ] + }, + { + "id": "runtime@442f29b", + "repo": "runtime", + "title": "JIT: Fix late devirtualization debug info for inlining", + "url": "https://github.com/dotnet/runtime/pull/125045", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@442f29b", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@3f4b0c5", + "repo": "runtime", + "title": "fix SupportsWasmIntrinsics", + "url": "https://github.com/dotnet/runtime/pull/125046", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3f4b0c5", + "labels": [ + "arch-wasm", + "os-browser", + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@b4cf4e4", + "repo": "runtime", + "title": "JIT: Normalize optimizations for ConditionalSelect and BlendVariable", + "url": "https://github.com/dotnet/runtime/pull/123146", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b4cf4e4", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@5fcfea1", + "repo": "runtime", + "title": "Move diagnostics out of JSImportGenerator and JSExportGenerator into a separate analyzer", + "url": "https://github.com/dotnet/runtime/pull/124671", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5fcfea1", + "labels": [ + "area-System.Runtime.InteropServices.JavaScript" + ] + }, + { + "id": "runtime@f3ee269", + "repo": "runtime", + "title": "Move diagnostics from ComInterfaceGenerator and VtableIndexStubGenerator into separate analyzers", + "url": "https://github.com/dotnet/runtime/pull/124669", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f3ee269", + "labels": [ + "area-System.Runtime.InteropServices" + ] + }, + { + "id": "runtime@a155715", + "repo": "runtime", + "title": "[Tests][UserEvents] Improve test timing and re-enable tests", + "url": "https://github.com/dotnet/runtime/pull/124919", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a155715", + "labels": [ + "area-Tracing-coreclr" + ] + }, + { + "id": "runtime@0f01e11", + "repo": "runtime", + "title": "Implement TraverseRCWCleanupList cDAC API", + "url": "https://github.com/dotnet/runtime/pull/124938", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0f01e11", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@56ddfa0", + "repo": "runtime", + "title": "[Wasm RyuJit] annotate (some) local accesses with var nums", + "url": "https://github.com/dotnet/runtime/pull/124880", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@56ddfa0", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@9766d74", + "repo": "runtime", + "title": "Convert PREPARE_SIMPLE_VIRTUAL_CALLSITE usages to use the UCO pattern", + "url": "https://github.com/dotnet/runtime/pull/124921", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9766d74", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@39403ad", + "repo": "runtime", + "title": "Fix DuplicateRootAssembly assert failure", + "url": "https://github.com/dotnet/runtime/pull/125032", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@39403ad", + "labels": [ + "linkable-framework", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@df1ab13", + "repo": "runtime", + "title": "[wasm][coreclr] Disable tests which need native relinking in Pri1", + "url": "https://github.com/dotnet/runtime/pull/125062", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@df1ab13", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@744234e", + "repo": "runtime", + "title": "[clr-interp] Add reverse P/Invoke support for the Swift calling convention to the CoreCLR interpreter on arm64", + "url": "https://github.com/dotnet/runtime/pull/124927", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@744234e", + "labels": [ + "os-ios", + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@d5cfd7b", + "repo": "runtime", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 679: Build ID 2917025", + "url": "https://github.com/dotnet/runtime/pull/125081", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d5cfd7b", + "labels": [ + "area-Extensions-Logging" + ] + }, + { + "id": "runtime@ce7caaf", + "repo": "runtime", + "title": "Fixed some potential null derefs in coreclr", + "url": "https://github.com/dotnet/runtime/pull/123939", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ce7caaf", + "labels": [ + "area-PAL-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@17b089f", + "repo": "runtime", + "title": "Fix incorrect `excludeAgent` identifier in copilot-instructions.md", + "url": "https://github.com/dotnet/runtime/pull/125082", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@17b089f", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@a964328", + "repo": "runtime", + "title": "[wasm][coreclr] Improve method portable entrypoints lifecycle", + "url": "https://github.com/dotnet/runtime/pull/124868", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a964328", + "labels": [ + "arch-wasm", + "area-VM-coreclr" + ] + }, + { + "id": "runtime@0a4a347", + "repo": "runtime", + "title": "[HTTP] Small comment", + "url": "https://github.com/dotnet/runtime/pull/125106", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0a4a347", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@4d392de", + "repo": "runtime", + "title": "Fix Copilot not working in forks", + "url": "https://github.com/dotnet/runtime/pull/125112", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4d392de", + "labels": [ + "area-Infrastructure", + "community-contribution" + ] + }, + { + "id": "runtime@cc61b18", + "repo": "runtime", + "title": "Remove Debug.Assert in SetSslCertificate that aborts process during dispose-during-handshake race", + "url": "https://github.com/dotnet/runtime/pull/124631", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cc61b18", + "labels": [ + "area-System.Net.Security" + ] + }, + { + "id": "runtime@f2abb7c", + "repo": "runtime", + "title": "Use SetValueTruncating instead of SetIconValue", + "url": "https://github.com/dotnet/runtime/pull/125055", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f2abb7c", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@0e73bdc", + "repo": "runtime", + "title": "Fix max_slots in DacHandleTableMemoryEnumerator::Init() to use g_totalCpuCount", + "url": "https://github.com/dotnet/runtime/pull/125067", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0e73bdc", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@a8a0309", + "repo": "runtime", + "title": "Fix variable shadowing bug in DacFreeRegionEnumerator::AddServerRegions", + "url": "https://github.com/dotnet/runtime/pull/125068", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a8a0309", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@8af6d06", + "repo": "runtime", + "title": "arm64: Fixed using ands/bics to compare against static unsigned constant 0", + "url": "https://github.com/dotnet/runtime/pull/124601", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8af6d06", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@ee282ee", + "repo": "runtime", + "title": "Implement ISOSDacInterface::GetJitManagerList in cDAC SOSDacImpl", + "url": "https://github.com/dotnet/runtime/pull/124815", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ee282ee", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@b18bf5e", + "repo": "runtime", + "title": "[Wasm RyuJIT] Block Stores follow-ups", + "url": "https://github.com/dotnet/runtime/pull/125078", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b18bf5e", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@df927b5", + "repo": "runtime", + "title": "Revert \"[HTTP] Small comment\"", + "url": "https://github.com/dotnet/runtime/pull/125120", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@df927b5", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@d8aa6be", + "repo": "runtime", + "title": "Prefer partial declarations with commented-out existing APIs in api-proposal skill", + "url": "https://github.com/dotnet/runtime/pull/125104", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d8aa6be", + "labels": [ + "area-skills" + ] + }, + { + "id": "runtime@9524c93", + "repo": "runtime", + "title": "Code review skill: support verifying approved APIs when new APIs are added.", + "url": "https://github.com/dotnet/runtime/pull/125130", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9524c93", + "labels": [ + "area-skills" + ] + }, + { + "id": "runtime@0034033", + "repo": "runtime", + "title": "Remove stale information in ArrayPool.Shared remarks", + "url": "https://github.com/dotnet/runtime/pull/125109", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0034033", + "labels": [ + "area-System.Buffers", + "community-contribution" + ] + }, + { + "id": "runtime@523aab9", + "repo": "runtime", + "title": "cDAC: implement GetSyncBlockCleanupData", + "url": "https://github.com/dotnet/runtime/pull/125009", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@523aab9", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@60ed188", + "repo": "runtime", + "title": "Pass `MessageOrigin` to the `DoAdditional*Processing` methods.", + "url": "https://github.com/dotnet/runtime/pull/124971", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@60ed188", + "labels": [ + "linkable-framework", + "community-contribution", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@92dc544", + "repo": "runtime", + "title": "Wasm loop aware rpo compute last block in loop quickly", + "url": "https://github.com/dotnet/runtime/pull/125101", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@92dc544", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@6bd4752", + "repo": "runtime", + "title": "Add metric usage diff to SPMI reports", + "url": "https://github.com/dotnet/runtime/pull/124943", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6bd4752", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@3bd006f", + "repo": "runtime", + "title": "JIT: Accelerate uint->floating casts on pre-AVX-512 x86", + "url": "https://github.com/dotnet/runtime/pull/124114", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3bd006f", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution", + "avx512" + ], + "score": 6, + "score_reason": "Widely used numeric casts get faster on older x86 hardware with no code changes required.", + "score_breakdown": { + "breadth": 2, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "runtime@4172d0e", + "repo": "runtime", + "title": "[RyuJit] Add `VisitOperandUses`", + "url": "https://github.com/dotnet/runtime/pull/125073", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4172d0e", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@f62984c", + "repo": "runtime", + "title": "Add AVX512 BMM API", + "url": "https://github.com/dotnet/runtime/pull/124804", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f62984c", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ], + "score": 3, + "score_reason": "New AVX-512 intrinsics are real, but too specialized for a broad Preview 3 audience.", + "score_breakdown": { + "breadth": 1, + "reader_value": 1, + "clarity": 1 + } + }, + { + "id": "runtime@9f2179d", + "repo": "runtime", + "title": "New function pointer APIs", + "url": "https://github.com/dotnet/runtime/pull/123819", + "commit": "dotnet@08b4f88", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9f2179d", + "labels": [ + "area-System.Reflection", + "community-contribution" + ] + }, + { + "id": "runtime@4fa917e", + "repo": "runtime", + "title": "Add a regression test to validate sample profiling events", + "url": "https://github.com/dotnet/runtime/pull/124410", + "commit": "dotnet@c722a3a", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4fa917e", + "labels": [ + "area-Tracing-coreclr" + ] + }, + { + "id": "runtime@9515659", + "repo": "runtime", + "title": "Fix JIT `assert` resolving to C runtime assert after jitshared introduction", + "url": "https://github.com/dotnet/runtime/pull/124977", + "commit": "dotnet@c722a3a", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9515659", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@e524be6", + "repo": "runtime", + "title": "Use a platform-neutral name for `Microsoft.DiaSymReader.Native`", + "url": "https://github.com/dotnet/runtime/pull/125165", + "commit": "dotnet@c722a3a", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e524be6", + "labels": [ + "area-crossgen2-coreclr" + ] + }, + { + "id": "runtime@350951d", + "repo": "runtime", + "title": "docs: document that ServiceProvider.Dispose() throws for async-only disposables, recommend DisposeAsync()", + "url": "https://github.com/dotnet/runtime/pull/124966", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@350951d", + "labels": [ + "area-Extensions-DependencyInjection" + ] + }, + { + "id": "runtime@e4c1aa0", + "repo": "runtime", + "title": "Align HttpListener.GetContext() exception across platforms for Stop/Abort/Close", + "url": "https://github.com/dotnet/runtime/pull/123360", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e4c1aa0", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@4895491", + "repo": "runtime", + "title": "Add cDAC tests and implementation for GetGenerationTable and GetFinalizationFillPointers", + "url": "https://github.com/dotnet/runtime/pull/124674", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4895491", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@334619b", + "repo": "runtime", + "title": "JIT: Lower aggressiveRefCnt minimum threshold for CSE promotion", + "url": "https://github.com/dotnet/runtime/pull/125028", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@334619b", + "labels": [ + "area-CodeGen-coreclr" + ], + "score": 4, + "score_reason": "Real JIT improvement, but the payoff is best described as part of a grouped optimization story.", + "score_breakdown": { + "breadth": 1, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "runtime@3a74e2a", + "repo": "runtime", + "title": "Improve range analysis for checked bounds in GlobalAP", + "url": "https://github.com/dotnet/runtime/pull/125056", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3a74e2a", + "labels": [ + "area-CodeGen-coreclr" + ], + "score": 4, + "score_reason": "Helpful range-analysis work, but too internal to stand alone in release notes.", + "score_breakdown": { + "breadth": 1, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "runtime@39fda2c", + "repo": "runtime", + "title": "Disable System.Net.Http.Functional.Tests on Android CoreCLR", + "url": "https://github.com/dotnet/runtime/pull/125171", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@39fda2c", + "labels": [ + "area-System.Net.Http", + "os-android" + ] + }, + { + "id": "runtime@917aa94", + "repo": "runtime", + "title": "Update copilot testing instructions", + "url": "https://github.com/dotnet/runtime/pull/124421", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@917aa94", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@ac68348", + "repo": "runtime", + "title": "Remove dead Windows 7 conditions and inline CheckKeyConsistency in PfxFormatTests", + "url": "https://github.com/dotnet/runtime/pull/125142", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ac68348", + "labels": [ + "area-System.Security", + "test-enhancement" + ] + }, + { + "id": "runtime@4417a32", + "repo": "runtime", + "title": "Add initial cross-build support for OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/125088", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4417a32", + "labels": [ + "area-Infrastructure", + "os-openbsd" + ] + }, + { + "id": "runtime@14c4360", + "repo": "runtime", + "title": "Ignore PhiArgs without matching actual preds", + "url": "https://github.com/dotnet/runtime/pull/125093", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@14c4360", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@4d77205", + "repo": "runtime", + "title": "Add tests for Volatile.ReadBarrier and Volatile.WriteBarrier", + "url": "https://github.com/dotnet/runtime/pull/124558", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4d77205", + "labels": [ + "area-System.Threading" + ] + }, + { + "id": "runtime@86a9fbf", + "repo": "runtime", + "title": "Fix native AOT test failures in System.Reflection.Context tests", + "url": "https://github.com/dotnet/runtime/pull/125080", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@86a9fbf", + "labels": [ + "area-System.Reflection" + ] + }, + { + "id": "runtime@96fbbc2", + "repo": "runtime", + "title": "More flowgraph cleanup", + "url": "https://github.com/dotnet/runtime/pull/125100", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@96fbbc2", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@8ffb906", + "repo": "runtime", + "title": "Fix locating files in `GetCommonSourceFiles`", + "url": "https://github.com/dotnet/runtime/pull/125123", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8ffb906", + "labels": [ + "linkable-framework", + "community-contribution", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@7603a59", + "repo": "runtime", + "title": "Detect circular dependencies in factory-based service registrations at runtime", + "url": "https://github.com/dotnet/runtime/pull/124331", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7603a59", + "labels": [ + "area-Extensions-DependencyInjection" + ], + "score": 5, + "score_reason": "Circular dependency detection for DI factories is broadly useful, but fits best as a shorter callout.", + "score_breakdown": { + "breadth": 2, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "runtime@3ee5a25", + "repo": "runtime", + "title": "JIT: fix don't remove issue for loop/try split", + "url": "https://github.com/dotnet/runtime/pull/125188", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3ee5a25", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@fc40302", + "repo": "runtime", + "title": "Add CodeQL query exclusions for dangerous deserialization rules", + "url": "https://github.com/dotnet/runtime/pull/125016", + "commit": "dotnet@23952a4", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fc40302", + "labels": [ + "area-Meta" + ] + }, + { + "id": "runtime@ef560fa", + "repo": "runtime", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/runtime/pull/125030", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ef560fa", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@d906a29", + "repo": "runtime", + "title": "[browser][coreclr] Conditionally disable tests which need MT in Pri1", + "url": "https://github.com/dotnet/runtime/pull/125119", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d906a29", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@349bdb0", + "repo": "runtime", + "title": "Add RecommendedReaderVersion advisory mechanism to cDAC RuntimeInfo contract", + "url": "https://github.com/dotnet/runtime/pull/125029", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@349bdb0", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@8e672f4", + "repo": "runtime", + "title": "[RyuJit/WASM] Disable args sorting", + "url": "https://github.com/dotnet/runtime/pull/125187", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8e672f4", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@0a4314b", + "repo": "runtime", + "title": "SVE: truncate Extract results for small types", + "url": "https://github.com/dotnet/runtime/pull/125172", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0a4314b", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@79898c7", + "repo": "runtime", + "title": "[mono][sgen] Fix card scanning in LOS non-array objects", + "url": "https://github.com/dotnet/runtime/pull/125116", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@79898c7", + "labels": [ + "area-GC-mono" + ] + }, + { + "id": "runtime@e722f65", + "repo": "runtime", + "title": "Add visit budget checks to IsMonotonicallyIncreasing and ComputeDoesOverflow", + "url": "https://github.com/dotnet/runtime/pull/125156", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e722f65", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@1136c24", + "repo": "runtime", + "title": "Reduce custom operator behavior in the Volatile structure", + "url": "https://github.com/dotnet/runtime/pull/124244", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1136c24", + "labels": [ + "area-PAL-coreclr" + ] + }, + { + "id": "runtime@fd34985", + "repo": "runtime", + "title": "[RyuJit/WASW] Insert temporaries when needed in the stackifier", + "url": "https://github.com/dotnet/runtime/pull/125146", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fd34985", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@b9d3bb8", + "repo": "runtime", + "title": "Add gap fill yaml for gap fill tool", + "url": "https://github.com/dotnet/runtime/pull/125154", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b9d3bb8", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@57b4485", + "repo": "runtime", + "title": "[cDAC] Implement GetCurrentAppDomain on IXCLRDataTask", + "url": "https://github.com/dotnet/runtime/pull/124996", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@57b4485", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@41437b2", + "repo": "runtime", + "title": "Remove mcs stuff from linker test framework.", + "url": "https://github.com/dotnet/runtime/pull/125223", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@41437b2", + "labels": [ + "linkable-framework", + "community-contribution", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@7023c7c", + "repo": "runtime", + "title": "Mark SampleProfilerSampleType.TestEntryPoint with [ActiveIssue] for Native AOT", + "url": "https://github.com/dotnet/runtime/pull/125218", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7023c7c", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@fbcde99", + "repo": "runtime", + "title": "Adjustments to how compiler generated types are ignored.", + "url": "https://github.com/dotnet/runtime/pull/125183", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fbcde99", + "labels": [ + "linkable-framework", + "community-contribution", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@d4a8aa2", + "repo": "runtime", + "title": "Make MarkAssembly virtual again", + "url": "https://github.com/dotnet/runtime/pull/125190", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d4a8aa2", + "labels": [ + "linkable-framework", + "community-contribution", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@51b1e92", + "repo": "runtime", + "title": "Revert \"A few fixes in the threadpool semaphore. Unify Windows/Unix implementation of LIFO policy.\"", + "url": "https://github.com/dotnet/runtime/pull/125193", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@51b1e92", + "labels": [ + "area-System.Threading" + ] + }, + { + "id": "runtime@c86ebf2", + "repo": "runtime", + "title": "Fix `getAsyncOtherVariant` JIT-EE implementation in VM", + "url": "https://github.com/dotnet/runtime/pull/125225", + "commit": "dotnet@4395a78", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c86ebf2", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@b85f109", + "repo": "runtime", + "title": "Allocate all long-lived contents of interpreter memory via the jit interface allocation apis", + "url": "https://github.com/dotnet/runtime/pull/125091", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b85f109", + "labels": [ + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@7db8a8c", + "repo": "runtime", + "title": "Fix zstd install rules breaking clr.runtime clean build", + "url": "https://github.com/dotnet/runtime/pull/125063", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7db8a8c", + "labels": [ + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@289f5cd", + "repo": "runtime", + "title": "Remove Windows 7 support code from System.Net.Security", + "url": "https://github.com/dotnet/runtime/pull/124555", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@289f5cd", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@8b63bd2", + "repo": "runtime", + "title": "Expose HTTP.sys kernel response buffering control for HttpListener on Windows", + "url": "https://github.com/dotnet/runtime/pull/124720", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8b63bd2", + "labels": [ + "area-System.Net.Http", + "new-api-needs-documentation", + "community-contribution" + ], + "score": 4, + "score_reason": "Kernel response buffering control helps HttpListener users, but that audience is relatively small today.", + "score_breakdown": { + "breadth": 1, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "runtime@eab25ef", + "repo": "runtime", + "title": "Fix NTLM ProcessTargetInfo returning wrong buffer slice when skipping entries", + "url": "https://github.com/dotnet/runtime/pull/125201", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@eab25ef", + "labels": [ + "area-System.Net.Security" + ] + }, + { + "id": "runtime@a32dd4a", + "repo": "runtime", + "title": "Change bbAssertionOut if BBJ_COND was folded in morph", + "url": "https://github.com/dotnet/runtime/pull/125222", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a32dd4a", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@c863d2e", + "repo": "runtime", + "title": "Skip cross process mutex on OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/125089", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c863d2e", + "labels": [ + "area-System.Threading", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@b7a0ff8", + "repo": "runtime", + "title": "[wasm][coreclr] Re-enable few runtime tests", + "url": "https://github.com/dotnet/runtime/pull/125216", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b7a0ff8", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@d0118d9", + "repo": "runtime", + "title": "Fix bounds checks in #123085 repro", + "url": "https://github.com/dotnet/runtime/pull/125235", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d0118d9", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@dd20361", + "repo": "runtime", + "title": "[cDAC] Relax HRESULT validation to allow divergent failure codes", + "url": "https://github.com/dotnet/runtime/pull/125236", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@dd20361", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@dd2f6d3", + "repo": "runtime", + "title": "[Wasm RyuJit] More crossgen assert fixes", + "url": "https://github.com/dotnet/runtime/pull/125102", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@dd2f6d3", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@defb8dc", + "repo": "runtime", + "title": "[Tests][UserEvents] Bump tracee timeout and add logs", + "url": "https://github.com/dotnet/runtime/pull/125232", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@defb8dc", + "labels": [ + "area-Tracing-coreclr" + ] + }, + { + "id": "runtime@5794053", + "repo": "runtime", + "title": "[RyuJit] Remove dead code from `genCallInstruction`", + "url": "https://github.com/dotnet/runtime/pull/125239", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5794053", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@fa46e22", + "repo": "runtime", + "title": "Remove obsolete ILLink dependency analyzer project and references", + "url": "https://github.com/dotnet/runtime/pull/125242", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fa46e22", + "labels": [ + "linkable-framework", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@64efb69", + "repo": "runtime", + "title": "Convert priority 3 MethodDescCallSite calls to UnmanagedCallersOnly", + "url": "https://github.com/dotnet/runtime/pull/124854", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@64efb69", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@df0800e", + "repo": "runtime", + "title": "Remove resolved ActiveIssue skip attributes from IO.FileSystem tests", + "url": "https://github.com/dotnet/runtime/pull/14378", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@df0800e" + }, + { + "id": "runtime@6bf2076", + "repo": "runtime", + "title": "[cDAC] Add custom marshallers for COM interface parameters", + "url": "https://github.com/dotnet/runtime/pull/125132", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6bf2076", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@87a63e2", + "repo": "runtime", + "title": "[cDAC] Add continuation support to RuntimeTypeSystem", + "url": "https://github.com/dotnet/runtime/pull/124918", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@87a63e2", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@54bc18d", + "repo": "runtime", + "title": "Remove some unnecessary EventSource suppressions", + "url": "https://github.com/dotnet/runtime/pull/125258", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@54bc18d", + "labels": [ + "area-System.Diagnostics.Tracing" + ] + }, + { + "id": "runtime@703be08", + "repo": "runtime", + "title": "JIT: Handle some def/use conflicts less conservatively in LSRA", + "url": "https://github.com/dotnet/runtime/pull/125214", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@703be08", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@777eae3", + "repo": "runtime", + "title": "Fix interpreter async suspend DiagnosticIP calculation", + "url": "https://github.com/dotnet/runtime/pull/125282", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@777eae3", + "labels": [ + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@f25f0e2", + "repo": "runtime", + "title": "Fix BOL anchor not writing back updated position in TryFindNextPossibleStartingPosition", + "url": "https://github.com/dotnet/runtime/pull/125280", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f25f0e2", + "labels": [ + "area-System.Text.RegularExpressions" + ] + }, + { + "id": "runtime@5db8084", + "repo": "runtime", + "title": "Revert \"Eliminate forwarder stubs by reusing method precodes for call counting indirection\"", + "url": "https://github.com/dotnet/runtime/pull/125285", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5db8084", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@72e6a29", + "repo": "runtime", + "title": "Implement cDAC API GetCCWInterfaces", + "url": "https://github.com/dotnet/runtime/pull/124940", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@72e6a29", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@f09bc75", + "repo": "runtime", + "title": "Replace MemoryBarrier with Volatile operations in HashMap", + "url": "https://github.com/dotnet/runtime/pull/125259", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f09bc75", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@28baa45", + "repo": "runtime", + "title": "Fix GetModule_ReturnsModule test failure on browser-wasm", + "url": "https://github.com/dotnet/runtime/pull/125286", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@28baa45", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@8151eb1", + "repo": "runtime", + "title": "Issue 125270", + "url": "https://github.com/dotnet/runtime/pull/125271", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8151eb1", + "labels": [ + "area-Meta", + "community-contribution" + ] + }, + { + "id": "runtime@363f8a1", + "repo": "runtime", + "title": "Fix interpreting baud rate bitmask as decimal value", + "url": "https://github.com/dotnet/runtime/pull/123348", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@363f8a1", + "labels": [ + "community-contribution", + "area-System.IO.Ports" + ] + }, + { + "id": "runtime@d36b8cc", + "repo": "runtime", + "title": "Add missing Invalidate() calls to FileInfo state-changing methods", + "url": "https://github.com/dotnet/runtime/pull/124429", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d36b8cc", + "labels": [ + "area-System.IO", + "community-contribution" + ] + }, + { + "id": "runtime@9e13695", + "repo": "runtime", + "title": "Binary writer fix", + "url": "https://github.com/dotnet/runtime/pull/107369", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9e13695", + "labels": [ + "area-System.IO", + "community-contribution" + ] + }, + { + "id": "runtime@cd38a58", + "repo": "runtime", + "title": "Refactor C# DIM resolution to match C++ structure and fix static virtual dispatch", + "url": "https://github.com/dotnet/runtime/pull/125205", + "commit": "dotnet@4c9f444", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cd38a58", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@e9ec642", + "repo": "runtime", + "title": "Ensure DAC volatile globals included in mini dump", + "url": "https://github.com/dotnet/runtime/pull/125310", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e9ec642", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@2255eec", + "repo": "runtime", + "title": "[wasm][coreclr] Fix call delegate with IL stubs", + "url": "https://github.com/dotnet/runtime/pull/125138", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2255eec", + "labels": [ + "arch-wasm", + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@bd3fd16", + "repo": "runtime", + "title": "Disable AIA certificate downloads for server client-cert validation by default", + "url": "https://github.com/dotnet/runtime/pull/125049", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@bd3fd16", + "labels": [ + "area-System.Net.Security", + "breaking-change", + "needs-breaking-change-doc-created" + ], + "score": 3, + "score_reason": "Important security-related behavior change, but narrow enough that a short callout is more appropriate than a feature section.", + "score_breakdown": { + "breadth": 1, + "reader_value": 1, + "clarity": 1 + }, + "breaking_changes": true + }, + { + "id": "runtime@a962f34", + "repo": "runtime", + "title": "Pre-compute and cache boundary delimiter in MultipartContent", + "url": "https://github.com/dotnet/runtime/pull/124963", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a962f34", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@0d0e129", + "repo": "runtime", + "title": "JIT: Disallow partial compilation of runtime async functions", + "url": "https://github.com/dotnet/runtime/pull/125267", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0d0e129", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@d7c26f7", + "repo": "runtime", + "title": "Add FileHandleType enum and SafeFileHandle.Type property", + "url": "https://github.com/dotnet/runtime/pull/124561", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d7c26f7", + "labels": [ + "area-System.IO" + ], + "score": 6, + "score_reason": "File and pipe handle classification is a concrete new API that systems developers can use immediately.", + "score_breakdown": { + "breadth": 2, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "runtime@da21ce4", + "repo": "runtime", + "title": "Re-enable PlatformHandlerTest_Cookies_Http2 for WinHttpHandler", + "url": "https://github.com/dotnet/runtime/pull/125261", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@da21ce4", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@4694968", + "repo": "runtime", + "title": "JIT: Clean up comments and remove redundancy in flowgraph.cpp", + "url": "https://github.com/dotnet/runtime/pull/125292", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4694968", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@1b78ef7", + "repo": "runtime", + "title": "Implement SVE2 Counting APIs", + "url": "https://github.com/dotnet/runtime/pull/122602", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1b78ef7", + "labels": [ + "area-System.Runtime.Intrinsics", + "community-contribution" + ] + }, + { + "id": "runtime@fdb01f4", + "repo": "runtime", + "title": "Re-enable Manual_CertificateOnlySentWhenValid_Success for WinHttpHandler", + "url": "https://github.com/dotnet/runtime/pull/125262", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fdb01f4", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@9641dda", + "repo": "runtime", + "title": "Bump serialize-javascript and @rollup/plugin-terser in /src/native", + "url": "https://github.com/dotnet/runtime/pull/125230", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9641dda", + "labels": [ + "area-codeflow", + "javascript", + "dependencies" + ] + }, + { + "id": "runtime@8d8e749", + "repo": "runtime", + "title": "[Wasm RyuJIT] Fix classifier embiggening small structs that are being passed-as a wasm primitive", + "url": "https://github.com/dotnet/runtime/pull/125278", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8d8e749", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@c1db431", + "repo": "runtime", + "title": "Revert \"Bump serialize-javascript and @rollup/plugin-terser in /src/native\"", + "url": "https://github.com/dotnet/runtime/pull/125340", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c1db431", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@6b6bfe3", + "repo": "runtime", + "title": "Move NullableBool to Common with sbyte backing; replace scattered tri-state int/sbyte patterns", + "url": "https://github.com/dotnet/runtime/pull/125307", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6b6bfe3", + "labels": [ + "area-Meta" + ] + }, + { + "id": "runtime@e717462", + "repo": "runtime", + "title": "Stop ilasm from printing warnings when -ERR option is specified", + "url": "https://github.com/dotnet/runtime/pull/125320", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e717462", + "labels": [ + "area-ILTools-coreclr" + ] + }, + { + "id": "runtime@1709ae0", + "repo": "runtime", + "title": "[wasm] Bump chrome for testing - linux: 145.0.7632.116, windows: 146.0.7680.31", + "url": "https://github.com/dotnet/runtime/pull/125017", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1709ae0", + "labels": [ + "arch-wasm", + "area-Infrastructure-mono" + ] + }, + { + "id": "runtime@a6a3b3d", + "repo": "runtime", + "title": "Implement ISOSDacInterface::GetLoaderAllocatorHeapNames and GetLoaderAllocatorHeaps in cDAC SOSDacImpl", + "url": "https://github.com/dotnet/runtime/pull/124818", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a6a3b3d", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@376038b", + "repo": "runtime", + "title": "SVE: Match, NoMatch", + "url": "https://github.com/dotnet/runtime/pull/125163", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@376038b", + "labels": [ + "area-System.Runtime.Intrinsics" + ] + }, + { + "id": "runtime@919358b", + "repo": "runtime", + "title": "[X86][APX] Update the CPUID check logics for APX.", + "url": "https://github.com/dotnet/runtime/pull/124624", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@919358b", + "labels": [ + "area-Infrastructure", + "community-contribution" + ] + }, + { + "id": "runtime@d19b7ca", + "repo": "runtime", + "title": "[Wasm RyuJIT] Call signatures", + "url": "https://github.com/dotnet/runtime/pull/125153", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d19b7ca", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@0f023aa", + "repo": "runtime", + "title": "[Wasm RyuJIT] Handle case where a TYP_STRUCT return has had its type information erased and we are trying to write it to a TYP_STRUCT local", + "url": "https://github.com/dotnet/runtime/pull/125279", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0f023aa", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@e3b528c", + "repo": "runtime", + "title": "JIT: Expand simple stfld addresses early and spill data nodes to retain evaluation order", + "url": "https://github.com/dotnet/runtime/pull/125141", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e3b528c", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@535c5de", + "repo": "runtime", + "title": "Rework and simplify initial versioning and tiering rules", + "url": "https://github.com/dotnet/runtime/pull/125243", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@535c5de", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@173bdac", + "repo": "runtime", + "title": "Do not AOT compile ilc/crossgen2 twice", + "url": "https://github.com/dotnet/runtime/pull/125316", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@173bdac", + "labels": [ + "area-crossgen2-coreclr" + ] + }, + { + "id": "runtime@8a0eb39", + "repo": "runtime", + "title": "[wasm][coreclr] Improve reverse thunk lookup", + "url": "https://github.com/dotnet/runtime/pull/124730", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8a0eb39", + "labels": [ + "arch-wasm", + "area-VM-coreclr" + ] + }, + { + "id": "runtime@68de53c", + "repo": "runtime", + "title": "JIT: Disallow op2 for `mulx` to be in `edx`", + "url": "https://github.com/dotnet/runtime/pull/125331", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@68de53c", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@78af167", + "repo": "runtime", + "title": "Read USTAR prefix field for PAX format entries in TarReader", + "url": "https://github.com/dotnet/runtime/pull/125344", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@78af167", + "labels": [ + "area-System.Formats.Tar" + ] + }, + { + "id": "runtime@aa40c57", + "repo": "runtime", + "title": "Improve documentation for ServiceProvider.DisposeAsync.", + "url": "https://github.com/dotnet/runtime/pull/125369", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@aa40c57", + "labels": [ + "area-Extensions-DependencyInjection" + ] + }, + { + "id": "runtime@2e14703", + "repo": "runtime", + "title": "[browser][coreclr] Fix corerun to run in browser again", + "url": "https://github.com/dotnet/runtime/pull/125322", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2e14703", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@59dc3d0", + "repo": "runtime", + "title": "[Tests][UserEvents] Fix tracee discovery race and improve failure diagnostics", + "url": "https://github.com/dotnet/runtime/pull/125345", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@59dc3d0", + "labels": [ + "area-Tracing-coreclr" + ] + }, + { + "id": "runtime@b78173c", + "repo": "runtime", + "title": "Fix fatal sched_setaffinity EPERM failure during PAL initialization on restricted kernels", + "url": "https://github.com/dotnet/runtime/pull/125361", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b78173c", + "labels": [ + "area-PAL-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@3b580ea", + "repo": "runtime", + "title": "Adding _tls_index global pointer to DACVARs", + "url": "https://github.com/dotnet/runtime/pull/125318", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3b580ea", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@cebec3d", + "repo": "runtime", + "title": "Run CI for all copilot/* PRs", + "url": "https://github.com/dotnet/runtime/pull/125380", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cebec3d", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@e07aba4", + "repo": "runtime", + "title": "[coreclr] Fix LoadLibraryInitializer test", + "url": "https://github.com/dotnet/runtime/pull/125176", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e07aba4", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr", + "os-browser" + ] + }, + { + "id": "runtime@2a4ede4", + "repo": "runtime", + "title": "JIT: Fix patchpoint info out-of-bounds read for special OSR locals", + "url": "https://github.com/dotnet/runtime/pull/125378", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2a4ede4", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@5ed2d9b", + "repo": "runtime", + "title": "[RyuJIT] Add a JIT flag for Portable Entry Points and set it by default for Browser compilations", + "url": "https://github.com/dotnet/runtime/pull/125284", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5ed2d9b", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@3b64f3d", + "repo": "runtime", + "title": "[main] Update dependencies from dotnet/icu, dotnet/runtime-assets", + "url": "https://github.com/dotnet/runtime/pull/125390", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3b64f3d", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@65b2bc1", + "repo": "runtime", + "title": "Emit runtime-async methods in crossgen2", + "url": "https://github.com/dotnet/runtime/pull/124203", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@65b2bc1", + "labels": [ + "area-crossgen2-coreclr", + "runtime-async" + ], + "score": 7, + "score_reason": "ReadyToRun support makes runtime async more usable in ahead-of-time and startup-sensitive scenarios.", + "score_breakdown": { + "breadth": 3, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "runtime@85149f3", + "repo": "runtime", + "title": "[Wasm RyuJIT] Disable multireg ret assert on Wasm because we don't have multireg rets there", + "url": "https://github.com/dotnet/runtime/pull/125342", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@85149f3", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@093df0c", + "repo": "runtime", + "title": "Extract diagnostic reporting out of COM class generator", + "url": "https://github.com/dotnet/runtime/pull/125308", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@093df0c", + "labels": [ + "area-System.Runtime.InteropServices", + "community-contribution" + ] + }, + { + "id": "runtime@f5a27eb", + "repo": "runtime", + "title": "Implement SVE2 non-temporal gather loads", + "url": "https://github.com/dotnet/runtime/pull/123890", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f5a27eb", + "labels": [ + "area-System.Runtime.Intrinsics", + "community-contribution" + ] + }, + { + "id": "runtime@4466dad", + "repo": "runtime", + "title": "Fix Ping RoundtripTime returning 0 for TtlExpired replies", + "url": "https://github.com/dotnet/runtime/pull/124424", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4466dad", + "labels": [ + "area-System.Net", + "community-contribution" + ] + }, + { + "id": "runtime@338e288", + "repo": "runtime", + "title": "[Wasm RyuJIT] Move genHomeRegisterParams' output out of the prolog", + "url": "https://github.com/dotnet/runtime/pull/125398", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@338e288", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@85e141e", + "repo": "runtime", + "title": "JIT: Stop treating GT_LCLHEAP as inherently exceptional and remove dead StackOverflowException flag", + "url": "https://github.com/dotnet/runtime/pull/125362", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@85e141e", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@1e1bbed", + "repo": "runtime", + "title": "[main] Update dependencies from dotnet/xharness", + "url": "https://github.com/dotnet/runtime/pull/124164", + "commit": "dotnet@e405b1f", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1e1bbed", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@ab6d333", + "repo": "runtime", + "title": "Update copilot-instructions with git confirmation and code-review skip rules", + "url": "https://github.com/dotnet/runtime/pull/125414", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ab6d333", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@9a9b322", + "repo": "runtime", + "title": "[cDAC] Implement SOSDacImpl.GetRCWInterfaces", + "url": "https://github.com/dotnet/runtime/pull/124939", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9a9b322", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@de40271", + "repo": "runtime", + "title": "Fix Directory_Delete_MountVolume test: guard Unmount calls with Directory.Exists check", + "url": "https://github.com/dotnet/runtime/pull/125348", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@de40271", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@12d9fad", + "repo": "runtime", + "title": "Add Antlr license in THIRD-PARTY-NOTICES.TXT", + "url": "https://github.com/dotnet/runtime/pull/125387", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@12d9fad", + "labels": [ + "area-Setup", + "community-contribution" + ] + }, + { + "id": "runtime@f827a66", + "repo": "runtime", + "title": "[wasm][coreclr] Fix vtable issue and interpreter I4/I8 arithmetic", + "url": "https://github.com/dotnet/runtime/pull/125376", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f827a66", + "labels": [ + "arch-wasm", + "area-VM-coreclr" + ] + }, + { + "id": "runtime@3090433", + "repo": "runtime", + "title": "[LoongArch64] Place async resumption info in read-write section which reference #123433", + "url": "https://github.com/dotnet/runtime/pull/124213", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3090433", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution", + "arch-loongarch64" + ] + }, + { + "id": "runtime@a6d3a3e", + "repo": "runtime", + "title": "[LoongArch64] Enable Runtime Async. (issue#124935)", + "url": "https://github.com/dotnet/runtime/pull/125114", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a6d3a3e", + "labels": [ + "area-VM-coreclr", + "community-contribution", + "arch-loongarch64", + "runtime-async" + ] + }, + { + "id": "runtime@6b49b5c", + "repo": "runtime", + "title": "JIT: Fix invalid IR and weights in if-conversion", + "url": "https://github.com/dotnet/runtime/pull/125072", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6b49b5c", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@2aef513", + "repo": "runtime", + "title": "[LoongArch64] Fix the risk of boundary overflow for Unsigned GT_LE in CodeGen::genCodeForCompare().", + "url": "https://github.com/dotnet/runtime/pull/125382", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2aef513", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution", + "arch-loongarch64" + ] + }, + { + "id": "runtime@2c7ee19", + "repo": "runtime", + "title": "Fix source generator diagnostics to support #pragma warning disable", + "url": "https://github.com/dotnet/runtime/pull/124994", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2c7ee19", + "labels": [ + "area-System.Text.Json", + "source-generator" + ] + }, + { + "id": "runtime@07dc6fa", + "repo": "runtime", + "title": "[wasm] Bump chrome for testing - linux: 145.0.7632.159, windows: 146.0.7680.66", + "url": "https://github.com/dotnet/runtime/pull/125297", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@07dc6fa", + "labels": [ + "arch-wasm", + "area-Infrastructure-mono" + ] + }, + { + "id": "runtime@c346735", + "repo": "runtime", + "title": "[wasm][coreclr] Enable async v2 in tests", + "url": "https://github.com/dotnet/runtime/pull/125430", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c346735", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr", + "os-browser" + ] + }, + { + "id": "runtime@32a7ecb", + "repo": "runtime", + "title": "[RyuJit Wasm] Fix Signature Generation Bug with Un-called methods", + "url": "https://github.com/dotnet/runtime/pull/125090", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@32a7ecb", + "labels": [ + "arch-wasm", + "area-crossgen2-coreclr" + ] + }, + { + "id": "runtime@3f56fbb", + "repo": "runtime", + "title": "[cDAC] Implement GetContext and GetAppDomain on ClrDataFrame", + "url": "https://github.com/dotnet/runtime/pull/125064", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3f56fbb", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@a1b5da1", + "repo": "runtime", + "title": "Remove duplicated SVE GatherVector APIs", + "url": "https://github.com/dotnet/runtime/pull/124033", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a1b5da1", + "labels": [ + "area-System.Runtime.Intrinsics", + "community-contribution" + ] + }, + { + "id": "runtime@eb47fb6", + "repo": "runtime", + "title": "Fix TOCTOU race in AppDomain::LoadAssembly fast-path", + "url": "https://github.com/dotnet/runtime/pull/125408", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@eb47fb6", + "labels": [ + "area-AssemblyLoader-coreclr" + ] + }, + { + "id": "runtime@b27a8d2", + "repo": "runtime", + "title": "arm64: Remove widening casts before truncating", + "url": "https://github.com/dotnet/runtime/pull/123546", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b27a8d2", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@c77d32c", + "repo": "runtime", + "title": "Align final section to file alignment, not to virtual image size", + "url": "https://github.com/dotnet/runtime/pull/124984", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c77d32c", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@f5407bd", + "repo": "runtime", + "title": "Mark Runtime_76219 GC regression test as CLRTestTargetUnsupported", + "url": "https://github.com/dotnet/runtime/pull/125249", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f5407bd", + "labels": [ + "area-System.Runtime" + ] + }, + { + "id": "runtime@83573d2", + "repo": "runtime", + "title": "Fix a regression to collection asserting in `AssemblyChecker`", + "url": "https://github.com/dotnet/runtime/pull/125443", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@83573d2", + "labels": [ + "linkable-framework", + "community-contribution", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@34547f7", + "repo": "runtime", + "title": "Fix running native aot testing locally", + "url": "https://github.com/dotnet/runtime/pull/125354", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@34547f7", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@1f6255e", + "repo": "runtime", + "title": "Add html.escape to func_name in superpmi diffs report", + "url": "https://github.com/dotnet/runtime/pull/125442", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1f6255e", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@6e762f5", + "repo": "runtime", + "title": "Support for variable sized locals in morph and lclmorph", + "url": "https://github.com/dotnet/runtime/pull/124516", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6e762f5", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@8f06b3c", + "repo": "runtime", + "title": "Enable devirtualization of async methods in crossgen2", + "url": "https://github.com/dotnet/runtime/pull/125420", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8f06b3c", + "labels": [ + "area-crossgen2-coreclr" + ], + "score": 6, + "score_reason": "Async-aware devirtualization improves the same runtime-async workflow, but is more specialized than the headline change.", + "score_breakdown": { + "breadth": 2, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "runtime@b797348", + "repo": "runtime", + "title": "fix #125301 (NOL bug for partial loads/stores)", + "url": "https://github.com/dotnet/runtime/pull/125425", + "commit": "dotnet@85f49ae", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b797348", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@b36efcf", + "repo": "runtime", + "title": "arm64: Fix and/bic issue when bailing early", + "url": "https://github.com/dotnet/runtime/pull/125428", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b36efcf", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@92969f4", + "repo": "runtime", + "title": "Fix crossgen2 crash on Apple mobile for InstantiatedType token resolution in async methods", + "url": "https://github.com/dotnet/runtime/pull/125444", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@92969f4", + "labels": [ + "area-crossgen2-coreclr", + "os-ios", + "runtime-async" + ] + }, + { + "id": "runtime@807db36", + "repo": "runtime", + "title": "[browser][CoreCLR] startup helpers cleanup", + "url": "https://github.com/dotnet/runtime/pull/125429", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@807db36", + "labels": [ + "arch-wasm", + "area-Host", + "os-browser" + ] + }, + { + "id": "runtime@8236b65", + "repo": "runtime", + "title": "Add TraverseEHInfo cDAC API", + "url": "https://github.com/dotnet/runtime/pull/125198", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8236b65", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@d391453", + "repo": "runtime", + "title": "Streamline `SystemIPGlobalProperties`", + "url": "https://github.com/dotnet/runtime/pull/125002", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d391453", + "labels": [ + "area-System.Net", + "community-contribution" + ] + }, + { + "id": "runtime@1f98758", + "repo": "runtime", + "title": "Convert some COM interop to UCO", + "url": "https://github.com/dotnet/runtime/pull/125326", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1f98758", + "labels": [ + "area-VM-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@e7daed6", + "repo": "runtime", + "title": "[clr-interp] Fix Swift error handling for marshaled P/Invokes in interpreter", + "url": "https://github.com/dotnet/runtime/pull/125177", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e7daed6", + "labels": [ + "os-ios", + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@8f762a2", + "repo": "runtime", + "title": "Add `SafeFileHandle.CreateAnonymousPipe` with per-end async support, non-blocking I/O support, and `Process.Windows` adoption", + "url": "https://github.com/dotnet/runtime/pull/125220", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8f762a2", + "labels": [ + "area-System.IO", + "breaking-change", + "needs-breaking-change-doc-created" + ], + "score": 5, + "score_reason": "Anonymous-pipe creation is useful low-level API work, but narrower than the headline library features.", + "score_breakdown": { + "breadth": 1, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "runtime@dca0fe3", + "repo": "runtime", + "title": "Sync cDAC's RV64/LA64 implementations with ARM64", + "url": "https://github.com/dotnet/runtime/pull/125353", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@dca0fe3", + "labels": [ + "area-Diagnostics-coreclr", + "community-contribution", + "arch-loongarch64", + "arch-riscv" + ] + }, + { + "id": "runtime@9af7d04", + "repo": "runtime", + "title": "Feature and ifdef FEATURE_MULTITHREADING", + "url": "https://github.com/dotnet/runtime/pull/124959", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9af7d04", + "labels": [ + "arch-wasm", + "area-Infrastructure-libraries", + "os-browser" + ] + }, + { + "id": "runtime@f7be6d5", + "repo": "runtime", + "title": "Fix memory overwrites in SystemNative_GetNetworkInterfaces", + "url": "https://github.com/dotnet/runtime/pull/125022", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f7be6d5", + "labels": [ + "area-System.Net", + "community-contribution" + ] + }, + { + "id": "runtime@b4b0bdc", + "repo": "runtime", + "title": "Fix missing big-endian conversions for multi-byte NTLM wire fields", + "url": "https://github.com/dotnet/runtime/pull/125039", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b4b0bdc", + "labels": [ + "area-System.Net.Security" + ] + }, + { + "id": "runtime@860eddb", + "repo": "runtime", + "title": "Prepare for xunit.v3.assert migration: forward-compatibility changes", + "url": "https://github.com/dotnet/runtime/pull/125413", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@860eddb", + "labels": [ + "area-Infrastructure", + "linkable-framework" + ] + }, + { + "id": "runtime@bc449db", + "repo": "runtime", + "title": "Add tests for lazy quantifier inside optional group", + "url": "https://github.com/dotnet/runtime/pull/125474", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@bc449db", + "labels": [ + "area-System.Text.RegularExpressions" + ] + }, + { + "id": "runtime@7d664a9", + "repo": "runtime", + "title": "Fix clang -Walloc-size error in CloseHandle test by removing unused WriteBuffer", + "url": "https://github.com/dotnet/runtime/pull/125360", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7d664a9", + "labels": [ + "area-PAL-coreclr" + ] + }, + { + "id": "runtime@540910d", + "repo": "runtime", + "title": "Fix race condition leak in RegisterResumptionStub", + "url": "https://github.com/dotnet/runtime/pull/125407", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@540910d", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@12bcd5d", + "repo": "runtime", + "title": "[wasm] Restore net472 multi-targeting for WasmAppBuilder", + "url": "https://github.com/dotnet/runtime/pull/125373", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@12bcd5d", + "labels": [ + "area-Build-mono" + ] + }, + { + "id": "runtime@281d01c", + "repo": "runtime", + "title": "Fix Tensor stride computation for single-element (length <= 1) tensors", + "url": "https://github.com/dotnet/runtime/pull/125403", + "commit": "dotnet@1b989af", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@281d01c", + "labels": [ + "area-System.Numerics.Tensors" + ] + }, + { + "id": "runtime@6def7ef", + "repo": "runtime", + "title": "Fix RhpThrowImpl on ARM32", + "url": "https://github.com/dotnet/runtime/pull/125253", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6def7ef", + "labels": [ + "area-System.Diagnostics" + ] + }, + { + "id": "runtime@9a2c40b", + "repo": "runtime", + "title": "Remove redundant NULL check for pDir in ClrDataAccess::GetMetaDataFileInfoFromPEFile", + "url": "https://github.com/dotnet/runtime/pull/125502", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9a2c40b", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@959957c", + "repo": "runtime", + "title": "[HTTP] Stress fix for the new Windows VM", + "url": "https://github.com/dotnet/runtime/pull/125125", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@959957c", + "labels": [ + "area-Build-mono" + ] + }, + { + "id": "runtime@2110077", + "repo": "runtime", + "title": "Propagate BackgroundService exceptions from the host", + "url": "https://github.com/dotnet/runtime/pull/124863", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2110077", + "labels": [ + "breaking-change", + "area-Extensions-Hosting" + ], + "score": 4, + "score_reason": "Apps that relied on swallowed BackgroundService exceptions may need to adjust host behavior or monitoring.", + "score_breakdown": { + "breadth": 1, + "reader_value": 2, + "clarity": 1 + }, + "breaking_changes": true + }, + { + "id": "runtime@0b874d8", + "repo": "runtime", + "title": "Support reload in ChainedConfigurationSource", + "url": "https://github.com/dotnet/runtime/pull/125122", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0b874d8", + "labels": [ + "area-Extensions-Configuration", + "community-contribution" + ] + }, + { + "id": "runtime@aaf2994", + "repo": "runtime", + "title": "Fix CallSiteFactoryResolvesIEnumerableOfOpenGenericServiceAfterResolvingClosedImplementation test for issue #57333", + "url": "https://github.com/dotnet/runtime/pull/124326", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@aaf2994", + "labels": [ + "area-Extensions-DependencyInjection" + ] + }, + { + "id": "runtime@755fa8f", + "repo": "runtime", + "title": "[tvOS] Skip symlink and named pipe tests that fail on iOS/tvOS", + "url": "https://github.com/dotnet/runtime/pull/125503", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@755fa8f", + "labels": [ + "area-System.IO" + ] + }, + { + "id": "runtime@e1feb1b", + "repo": "runtime", + "title": "JIT: Bump JIT-EE GUID after removal of hardware intrinsics", + "url": "https://github.com/dotnet/runtime/pull/125515", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e1feb1b", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@41ac7d5", + "repo": "runtime", + "title": "[browser][coreCLR] Loading WebCIL", + "url": "https://github.com/dotnet/runtime/pull/124904", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@41ac7d5", + "labels": [ + "arch-wasm", + "area-AssemblyLoader-coreclr", + "os-browser" + ], + "score": 4, + "score_reason": "Continues the WebCIL/browser story, but still better as one grouped note than a headline feature.", + "score_breakdown": { + "breadth": 1, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "runtime@9b1347c", + "repo": "runtime", + "title": "Simplify ILLink/ILC root assembly handling: TrimmerRootAssembly assembly names only", + "url": "https://github.com/dotnet/runtime/pull/125365", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9b1347c", + "labels": [ + "area-AssemblyLoader-coreclr", + "linkable-framework" + ] + }, + { + "id": "runtime@11c5b17", + "repo": "runtime", + "title": "Add curl retry flags to wasi-sdk Linux download", + "url": "https://github.com/dotnet/runtime/pull/125488", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@11c5b17", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@2517f63", + "repo": "runtime", + "title": "[cDAC] Implement GetCurrentExceptionState on IXCLRDataTask", + "url": "https://github.com/dotnet/runtime/pull/125161", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2517f63", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@8cf2e90", + "repo": "runtime", + "title": "Exclude noisy crypto rules from the repo's CodeQL runs", + "url": "https://github.com/dotnet/runtime/pull/125364", + "commit": "dotnet@60a26bb", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8cf2e90", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@ac8e763", + "repo": "runtime", + "title": "cDAC: Implement ISOSDacInterface::GetRCWData", + "url": "https://github.com/dotnet/runtime/pull/125426", + "commit": "dotnet@5568120", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ac8e763", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@c9b272f", + "repo": "runtime", + "title": "Convert constructor invocations from the runtime to use UnmanagedCallersOnly", + "url": "https://github.com/dotnet/runtime/pull/124920", + "commit": "dotnet@5568120", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c9b272f", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@98e3338", + "repo": "runtime", + "title": "Fix gssapi headers on OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/125546", + "commit": "dotnet@5568120", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@98e3338", + "labels": [ + "area-Infrastructure", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@0d6db56", + "repo": "runtime", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/runtime/pull/125419", + "commit": "dotnet@5568120", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0d6db56", + "labels": [ + "linkable-framework", + "area-codeflow" + ] + }, + { + "id": "runtime@e429373", + "repo": "runtime", + "title": "Fix wasm Playwright TargetClosedException caused by wrong Helix queue", + "url": "https://github.com/dotnet/runtime/pull/125548", + "commit": "dotnet@5568120", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e429373", + "labels": [ + "area-Infrastructure-mono" + ] + }, + { + "id": "runtime@28009ec", + "repo": "runtime", + "title": "Fix some CMake definitions on OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/125294", + "commit": "dotnet@5568120", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@28009ec", + "labels": [ + "area-PAL-coreclr", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@9f85e5d", + "repo": "runtime", + "title": "Replace fixed buffers with InlineArray", + "url": "https://github.com/dotnet/runtime/pull/125514", + "commit": "dotnet@5568120", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9f85e5d", + "labels": [ + "area-System.Runtime.InteropServices", + "reduce-unsafe" + ] + }, + { + "id": "runtime@388a7c4", + "repo": "runtime", + "title": "Cache debugger patches to speed up x64 stackwalk epilogue/prologue scanning", + "url": "https://github.com/dotnet/runtime/pull/125459", + "commit": "dotnet@5568120", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@388a7c4", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@c38f37a", + "repo": "runtime", + "title": "Remove unnecessary volatile from fields in Libraries", + "url": "https://github.com/dotnet/runtime/pull/125274", + "commit": "dotnet@5568120", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c38f37a", + "labels": [ + "area-Meta" + ] + }, + { + "id": "runtime@da46c68", + "repo": "runtime", + "title": "Fix XmlReader ArgumentOutOfRangeException for malformed UTF-8 in XML \u2026", + "url": "https://github.com/dotnet/runtime/pull/124428", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@da46c68", + "labels": [ + "area-System.Xml", + "community-contribution" + ] + }, + { + "id": "runtime@8e05ac9", + "repo": "runtime", + "title": "Fix flaky TestResourceManagerIsSafeForConcurrentAccessAndEnumeration timeout", + "url": "https://github.com/dotnet/runtime/pull/125573", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8e05ac9", + "labels": [ + "area-System.Resources" + ] + }, + { + "id": "runtime@1cfdd48", + "repo": "runtime", + "title": "[wasm][coreclr] Enable passing coreclr tests", + "url": "https://github.com/dotnet/runtime/pull/125496", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1cfdd48", + "labels": [ + "arch-wasm", + "area-Infrastructure-libraries", + "os-browser" + ] + }, + { + "id": "runtime@64021d8", + "repo": "runtime", + "title": "Use PF_LINK on SunOS", + "url": "https://github.com/dotnet/runtime/pull/124728", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@64021d8", + "labels": [ + "area-System.Net.Sockets", + "os-SunOS", + "community-contribution" + ] + }, + { + "id": "runtime@85b61ab", + "repo": "runtime", + "title": "Include propertyName in KeyNotFoundException thrown by JsonElement.GetProperty", + "url": "https://github.com/dotnet/runtime/pull/124965", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@85b61ab", + "labels": [ + "area-System.Text.Json" + ] + }, + { + "id": "runtime@f27c573", + "repo": "runtime", + "title": "JIT: Preference SDSU intervals away from killed registers", + "url": "https://github.com/dotnet/runtime/pull/125219", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f27c573", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@95f2498", + "repo": "runtime", + "title": "Fix missing call to write barrier in static constructors of ref structs", + "url": "https://github.com/dotnet/runtime/pull/125418", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@95f2498", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@6992c24", + "repo": "runtime", + "title": "Fix Mono AOT crash on struct fields with unsupported marshal conversion", + "url": "https://github.com/dotnet/runtime/pull/125575", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6992c24", + "labels": [ + "area-VM-meta-mono" + ] + }, + { + "id": "runtime@7a7c166", + "repo": "runtime", + "title": "[mono] Fix jit_mm mismatch in delegate trampoline creation for dynamic methods", + "url": "https://github.com/dotnet/runtime/pull/125583", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7a7c166", + "labels": [ + "area-VM-meta-mono" + ] + }, + { + "id": "runtime@0f80728", + "repo": "runtime", + "title": "JIT: Create suspensions/resumptions separately from processing calls in async transformation", + "url": "https://github.com/dotnet/runtime/pull/125497", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0f80728", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@ffdfb26", + "repo": "runtime", + "title": "Add cdac.slnx solution file for cDAC development", + "url": "https://github.com/dotnet/runtime/pull/125614", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ffdfb26", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@eee3c7c", + "repo": "runtime", + "title": "Update create-pull-request action version", + "url": "https://github.com/dotnet/runtime/pull/125620", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@eee3c7c", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@bb542bd", + "repo": "runtime", + "title": "[browser] Fix WasmEmitTypeScriptDefinitions making builds non-incremental", + "url": "https://github.com/dotnet/runtime/pull/125509", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@bb542bd", + "labels": [ + "arch-wasm", + "area-Build-mono", + "os-browser" + ] + }, + { + "id": "runtime@d1f028f", + "repo": "runtime", + "title": "Fix aspnetcore-sync.yml", + "url": "https://github.com/dotnet/runtime/pull/125622", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d1f028f", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@933c5e8", + "repo": "runtime", + "title": "Sync shared HPack/QPack changes from aspnetcore", + "url": "https://github.com/dotnet/runtime/pull/125526", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@933c5e8", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@b48ada0", + "repo": "runtime", + "title": "Fix racy mvid tests.", + "url": "https://github.com/dotnet/runtime/pull/125537", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b48ada0", + "labels": [ + "linkable-framework", + "community-contribution", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@611b2cb", + "repo": "runtime", + "title": "CodeQL ilasm fixes", + "url": "https://github.com/dotnet/runtime/pull/125152", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@611b2cb", + "labels": [ + "area-ILTools-coreclr" + ] + }, + { + "id": "runtime@84ebfcd", + "repo": "runtime", + "title": "Add pipeline legs for crossgen2 with --large_version_bubble", + "url": "https://github.com/dotnet/runtime/pull/125538", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@84ebfcd", + "labels": [ + "area-crossgen2-coreclr" + ] + }, + { + "id": "runtime@15da421", + "repo": "runtime", + "title": "Decouple ILC from ManagedAssemblyToLink", + "url": "https://github.com/dotnet/runtime/pull/124801", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@15da421", + "labels": [ + "linkable-framework", + "area-Tools-ILLink" + ] + }, + { + "id": "runtime@585f70d", + "repo": "runtime", + "title": "Initialize WebProxy credentials from URI UserInfo", + "url": "https://github.com/dotnet/runtime/pull/125384", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@585f70d", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@934cd4d", + "repo": "runtime", + "title": "[cDAC] Implement GetLastExceptionState on IXCLRDataTask", + "url": "https://github.com/dotnet/runtime/pull/125540", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@934cd4d", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@930edb9", + "repo": "runtime", + "title": "NativeAOT: Use `lib` prefix by default on Unix for native library outputs", + "url": "https://github.com/dotnet/runtime/pull/124611", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@930edb9", + "labels": [ + "breaking-change", + "area-NativeAOT-coreclr" + ], + "score": 4, + "score_reason": "Users publishing Unix native libraries may need to react to the new output naming convention.", + "score_breakdown": { + "breadth": 1, + "reader_value": 2, + "clarity": 1 + }, + "breaking_changes": true + }, + { + "id": "runtime@902b10f", + "repo": "runtime", + "title": "Port `ComClassGenerator` to string writing instead of constructing syntax nodes", + "url": "https://github.com/dotnet/runtime/pull/125527", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@902b10f", + "labels": [ + "area-System.Runtime.InteropServices", + "community-contribution" + ] + }, + { + "id": "runtime@e2f9257", + "repo": "runtime", + "title": "Fix libs.native subset on OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/125562", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e2f9257", + "labels": [ + "area-PAL-coreclr", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@b954bd7", + "repo": "runtime", + "title": "Do not store result of cast in IDynIntfCastable scenarios", + "url": "https://github.com/dotnet/runtime/pull/125605", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b954bd7", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@e2322af", + "repo": "runtime", + "title": "Fix UdpClient.EnableBroadcast not preventing broadcast sends", + "url": "https://github.com/dotnet/runtime/pull/124482", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e2322af", + "labels": [ + "area-System.Net.Sockets", + "community-contribution" + ] + }, + { + "id": "runtime@133f6a8", + "repo": "runtime", + "title": "Remove more fixed buffers and replace them with InlineArray", + "url": "https://github.com/dotnet/runtime/pull/125574", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@133f6a8", + "labels": [ + "area-System.Net", + "reduce-unsafe" + ] + }, + { + "id": "runtime@28c5a4d", + "repo": "runtime", + "title": "Fix GCHandle double-free race in WinHttpRequestState", + "url": "https://github.com/dotnet/runtime/pull/125293", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@28c5a4d", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@9e58389", + "repo": "runtime", + "title": "switch to AZL as build platform to avoid disk problems", + "url": "https://github.com/dotnet/runtime/pull/125628", + "commit": "dotnet@681a2b1", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9e58389", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@ab699a4", + "repo": "runtime", + "title": "[cDAC]: Flush contract caches", + "url": "https://github.com/dotnet/runtime/pull/125627", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ab699a4", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@7fdd64e", + "repo": "runtime", + "title": "Fix crossgen2 JitHost OOM crash: throw on allocation failure", + "url": "https://github.com/dotnet/runtime/pull/125422", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7fdd64e", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@fc52927", + "repo": "runtime", + "title": "Add RegexOptions.AnyNewLine via parser lowering", + "url": "https://github.com/dotnet/runtime/pull/124701", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fc52927", + "labels": [ + "area-System.Text.RegularExpressions" + ], + "score": 6, + "score_reason": "RegexOptions.AnyNewLine is a concrete, verifiable API that solves a real text-processing edge case.", + "score_breakdown": { + "breadth": 2, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "runtime@6fd3636", + "repo": "runtime", + "title": "[r2r] Fix rule for skipping compilation of methods with CompExactlyDependsOn", + "url": "https://github.com/dotnet/runtime/pull/125372", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6fd3636", + "labels": [ + "area-crossgen2-coreclr" + ] + }, + { + "id": "runtime@fcddb04", + "repo": "runtime", + "title": "[Wasm RyuJIT] Generate element section and populate function pointer table", + "url": "https://github.com/dotnet/runtime/pull/125531", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fcddb04", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@8d88e2b", + "repo": "runtime", + "title": "Fix race condition in BackgroundServiceExceptionTests", + "url": "https://github.com/dotnet/runtime/pull/125570", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8d88e2b", + "labels": [ + "area-Extensions-Hosting" + ] + }, + { + "id": "runtime@05cc2d0", + "repo": "runtime", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/runtime/pull/125593", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@05cc2d0", + "labels": [ + "Servicing-approved", + "area-codeflow" + ] + }, + { + "id": "runtime@31aee70", + "repo": "runtime", + "title": "Add missing XML documentation for Microsoft.Extensions.FileSystemGlobbing APIs", + "url": "https://github.com/dotnet/runtime/pull/125447", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@31aee70", + "labels": [ + "area-Extensions-FileSystem" + ] + }, + { + "id": "runtime@e1b5a1d", + "repo": "runtime", + "title": "Re-enable generator tests on big endian architectures", + "url": "https://github.com/dotnet/runtime/pull/125228", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e1b5a1d", + "labels": [ + "area-Extensions-Configuration" + ] + }, + { + "id": "runtime@8f7b6b5", + "repo": "runtime", + "title": "Add missing API documentation for Microsoft.Extensions.FileProvider", + "url": "https://github.com/dotnet/runtime/pull/125445", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8f7b6b5", + "labels": [ + "area-Extensions-FileSystem" + ] + }, + { + "id": "runtime@c9def27", + "repo": "runtime", + "title": "Fix race in BackgroundService exception aggregation during Host shutdown", + "url": "https://github.com/dotnet/runtime/pull/125590", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c9def27", + "labels": [ + "area-Extensions-Hosting" + ] + }, + { + "id": "runtime@39368f6", + "repo": "runtime", + "title": "Improve api-proposal skill using skill-creator analysis", + "url": "https://github.com/dotnet/runtime/pull/125494", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@39368f6", + "labels": [ + "area-skills" + ] + }, + { + "id": "runtime@c5c184a", + "repo": "runtime", + "title": "Fix non-dense TensorSpan handling in SequenceEqual, Fill*, Resize*, IndexOf*, and ConcatenateOnDimension", + "url": "https://github.com/dotnet/runtime/pull/124225", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c5c184a", + "labels": [ + "area-System.Numerics.Tensors" + ] + }, + { + "id": "runtime@d4189be", + "repo": "runtime", + "title": "Port coreclr interpreter to loongarch64", + "url": "https://github.com/dotnet/runtime/pull/125591", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d4189be", + "labels": [ + "community-contribution", + "arch-loongarch64", + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@e2415a7", + "repo": "runtime", + "title": "Fix getdomainname for SunOS", + "url": "https://github.com/dotnet/runtime/pull/125053", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e2415a7", + "labels": [ + "area-System.Net", + "os-SunOS", + "community-contribution" + ] + }, + { + "id": "runtime@7e7296d", + "repo": "runtime", + "title": "Add issue-triage Copilot skill with type-specific guides", + "url": "https://github.com/dotnet/runtime/pull/125273", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7e7296d", + "labels": [ + "area-skills" + ] + }, + { + "id": "runtime@2ae0bc7", + "repo": "runtime", + "title": "Add support for pre-compiling interop type maps in crossgen2", + "url": "https://github.com/dotnet/runtime/pull/124352", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2ae0bc7", + "labels": [ + "area-crossgen2-coreclr", + "linkable-framework" + ] + }, + { + "id": "runtime@93ec72d", + "repo": "runtime", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/runtime/pull/125649", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@93ec72d", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@5b3d729", + "repo": "runtime", + "title": "[cDAC] Use BinaryThenLinearSearch in GetExceptionClauses", + "url": "https://github.com/dotnet/runtime/pull/125667", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5b3d729", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@c31475e", + "repo": "runtime", + "title": "Restore blocking mode after successful ConnectAsync on Unix", + "url": "https://github.com/dotnet/runtime/pull/124200", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c31475e", + "labels": [ + "area-System.Net.Sockets" + ] + }, + { + "id": "runtime@db3c54c", + "repo": "runtime", + "title": "[runtime tests] Make 2 tests conditional on MT enabled", + "url": "https://github.com/dotnet/runtime/pull/125658", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@db3c54c", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@cf53805", + "repo": "runtime", + "title": "Handle Capture nodes in TryGetOrdinalCaseInsensitiveString", + "url": "https://github.com/dotnet/runtime/pull/124842", + "commit": "dotnet@b8a322b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cf53805", + "labels": [ + "area-System.Text.RegularExpressions" + ] + }, + { + "id": "runtime@0389510", + "repo": "runtime", + "title": "Fix CrstILStubGen/CrstLoaderAllocatorReferences lock level violation", + "url": "https://github.com/dotnet/runtime/pull/125675", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0389510", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@8614f78", + "repo": "runtime", + "title": "Switch to azurelinux 3 build image in public as well", + "url": "https://github.com/dotnet/runtime/pull/125686", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8614f78", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@c89371d", + "repo": "runtime", + "title": "[QUIC] Disable Quic tests on AzL3 VM", + "url": "https://github.com/dotnet/runtime/pull/125665", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c89371d", + "labels": [ + "area-System.Net.Quic" + ] + }, + { + "id": "runtime@fe555be", + "repo": "runtime", + "title": "Enable linux_arm64 coreclr build for SVE perf benchmarks.", + "url": "https://github.com/dotnet/runtime/pull/125719", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fe555be", + "labels": [ + "arch-wasm", + "area-Infrastructure", + "perf-pipeline" + ] + }, + { + "id": "runtime@36b4d74", + "repo": "runtime", + "title": "Fix most of the diagnostic EH tests with interpreter", + "url": "https://github.com/dotnet/runtime/pull/125525", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@36b4d74", + "labels": [ + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@cc9f348", + "repo": "runtime", + "title": "[clr-ios] Add options to strip inlining and debug info in Crossgen2 on Apple mobile", + "url": "https://github.com/dotnet/runtime/pull/124604", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cc9f348", + "labels": [ + "area-crossgen2-coreclr", + "os-ios" + ] + }, + { + "id": "runtime@c5ad69e", + "repo": "runtime", + "title": "[wasm][interpreter] Defer managed calli cookie resolution to execution time", + "url": "https://github.com/dotnet/runtime/pull/125455", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c5ad69e", + "labels": [ + "arch-wasm", + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@dfc0377", + "repo": "runtime", + "title": "Fix `ConnectAsync_WithBuffer_Succeeds` test to include Apple mobile platforms", + "url": "https://github.com/dotnet/runtime/pull/125717", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@dfc0377", + "labels": [ + "area-System.Net.Sockets", + "os-ios" + ] + }, + { + "id": "runtime@fdbedda", + "repo": "runtime", + "title": "Re-enable the WhenDiskIsFullTheErrorMessageContainsAllDetails test on Windows", + "url": "https://github.com/dotnet/runtime/pull/125707", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fdbedda", + "labels": [ + "area-System.IO", + "test-enhancement" + ] + }, + { + "id": "runtime@ca1a734", + "repo": "runtime", + "title": "Unify SECURITY_ATTRIBUTES code across the codebase", + "url": "https://github.com/dotnet/runtime/pull/125709", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ca1a734", + "labels": [ + "area-System.IO" + ] + }, + { + "id": "runtime@4c78a14", + "repo": "runtime", + "title": "Optimize Version JSON deserialization with UTF-8 parsing", + "url": "https://github.com/dotnet/runtime/pull/118207", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4c78a14", + "labels": [ + "area-System.Text.Json" + ] + }, + { + "id": "runtime@1ab6d1d", + "repo": "runtime", + "title": "Fix GetValue() and TryGetValue on JsonValueOfJsonPrimitive types", + "url": "https://github.com/dotnet/runtime/pull/125139", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1ab6d1d", + "labels": [ + "area-System.Text.Json" + ] + }, + { + "id": "runtime@593e566", + "repo": "runtime", + "title": "Fix: Allow inline regex options in conditional expression branches", + "url": "https://github.com/dotnet/runtime/pull/124699", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@593e566", + "labels": [ + "area-System.Text.RegularExpressions" + ] + }, + { + "id": "runtime@165a653", + "repo": "runtime", + "title": "[main] Update dependencies from dotnet/hotreload-utils, dotnet/icu, dotnet/runtime-assets", + "url": "https://github.com/dotnet/runtime/pull/125571", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@165a653", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@636d736", + "repo": "runtime", + "title": "[main] Update dependencies from dotnet/xharness", + "url": "https://github.com/dotnet/runtime/pull/125482", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@636d736", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@9351b38", + "repo": "runtime", + "title": "[cDAC] Remove reflection from register access in ContextHolder", + "url": "https://github.com/dotnet/runtime/pull/125621", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9351b38", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@2d26dce", + "repo": "runtime", + "title": "Add a directive to asm files to manually inject a .note.GNU-stack section when using clang 22", + "url": "https://github.com/dotnet/runtime/pull/125471", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2d26dce", + "labels": [ + "area-PAL-coreclr" + ] + }, + { + "id": "runtime@4683d7f", + "repo": "runtime", + "title": "Add property and event parent lookup table entries in AddPropertyToPropertyMap and AddEventToEventMap", + "url": "https://github.com/dotnet/runtime/pull/125536", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4683d7f", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@bf23c95", + "repo": "runtime", + "title": "Migrate Windows build pools from VS2026 preview scout to production VS2026 image", + "url": "https://github.com/dotnet/runtime/pull/124902", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@bf23c95", + "labels": [ + "area-Infrastructure-libraries" + ] + }, + { + "id": "runtime@4687f9a", + "repo": "runtime", + "title": "Process: use overlapped I/O for parent end of stdout/stderr pipes on Windows", + "url": "https://github.com/dotnet/runtime/pull/125643", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4687f9a", + "labels": [ + "area-System.Diagnostics.Process" + ], + "score": 5, + "score_reason": "Improves redirected process I/O automatically on Windows, with clear value for process-heavy apps.", + "score_breakdown": { + "breadth": 2, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "runtime@c05c6a4", + "repo": "runtime", + "title": "Reduce backtracking for greedy loops followed by subsumed literals", + "url": "https://github.com/dotnet/runtime/pull/125636", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c05c6a4", + "labels": [ + "area-System.Text.RegularExpressions" + ] + }, + { + "id": "runtime@0d2f781", + "repo": "runtime", + "title": "Increase FileSystemWatcher test event timeout to 1000ms", + "url": "https://github.com/dotnet/runtime/pull/125744", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0d2f781", + "labels": [ + "area-System.IO" + ] + }, + { + "id": "runtime@12cdada", + "repo": "runtime", + "title": "[Wasm RyuJIT] Insert r2r ind cell at the end of the args list instead of after 'this'", + "url": "https://github.com/dotnet/runtime/pull/125669", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@12cdada", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@3e79783", + "repo": "runtime", + "title": "Partially revert PR #125326: revert ComActivator/LicenseInteropProxy changes", + "url": "https://github.com/dotnet/runtime/pull/125706", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3e79783", + "labels": [ + "area-Interop-coreclr" + ] + }, + { + "id": "runtime@b93ce19", + "repo": "runtime", + "title": "Add CRC32 validation when reading zip archive entries", + "url": "https://github.com/dotnet/runtime/pull/124766", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b93ce19", + "labels": [ + "area-System.IO.Compression", + "breaking-change" + ], + "score": 6, + "score_reason": "Automatic CRC validation is broadly understandable and can change behavior when corrupt ZIP data is read.", + "score_breakdown": { + "breadth": 2, + "reader_value": 3, + "clarity": 1 + }, + "breaking_changes": true + }, + { + "id": "runtime@1f751da", + "repo": "runtime", + "title": "Add runtime async support for saving and reusing continuation instances", + "url": "https://github.com/dotnet/runtime/pull/125556", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1f751da", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ], + "score": 6, + "score_reason": "Continuation reuse lowers allocation pressure in async-heavy code and strengthens the runtime-async story.", + "score_breakdown": { + "breadth": 2, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "runtime@34dd74d", + "repo": "runtime", + "title": "Configure FileStreamOptions with PreallocationSize and async access in ZipArchiveEntry extract methods", + "url": "https://github.com/dotnet/runtime/pull/125260", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@34dd74d", + "labels": [ + "area-System.IO.Compression" + ] + }, + { + "id": "runtime@a348be8", + "repo": "runtime", + "title": "Filter out SPMI metric diffs smaller than \u00b10.001%", + "url": "https://github.com/dotnet/runtime/pull/125684", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a348be8", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@613eb19", + "repo": "runtime", + "title": "Refactor System.Net.* AppContextSwitch usage to LocalAppContextSwitches", + "url": "https://github.com/dotnet/runtime/pull/125385", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@613eb19", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@c88b2b6", + "repo": "runtime", + "title": "Support type-level JsonIgnoreCondition via [JsonIgnore] on classes, structs, and interfaces", + "url": "https://github.com/dotnet/runtime/pull/124646", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c88b2b6", + "labels": [ + "area-System.Text.Json" + ], + "score": 7, + "score_reason": "Type-level ignore defaults reduce boilerplate and fit naturally into existing System.Text.Json workflows.", + "score_breakdown": { + "breadth": 3, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "runtime@cad7369", + "repo": "runtime", + "title": "Add TSF_SuspensionTrapped flag to NativeAOT for accurate sample profiler reporting", + "url": "https://github.com/dotnet/runtime/pull/125764", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cad7369", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@a65919d", + "repo": "runtime", + "title": "Disable iOS and tvOS jobs until infra issue is fixed", + "url": "https://github.com/dotnet/runtime/pull/125771", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a65919d", + "labels": [ + "area-Infrastructure-mono" + ] + }, + { + "id": "runtime@7bd64cb", + "repo": "runtime", + "title": "Fix flaky FileSystemWatcher_SymbolicLink_TargetsDirectory_Create_IncludeSubdirectories test", + "url": "https://github.com/dotnet/runtime/pull/125682", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7bd64cb", + "labels": [ + "area-System.IO" + ] + }, + { + "id": "runtime@876f7e8", + "repo": "runtime", + "title": "Fix `WebWorker` hang when debugging Blazor WASM apps in Visual Studio", + "url": "https://github.com/dotnet/runtime/pull/125617", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@876f7e8", + "labels": [ + "area-Debugger-mono" + ] + }, + { + "id": "runtime@9955df2", + "repo": "runtime", + "title": "Improve regex optimizer through investigation of regex optimizer passes", + "url": "https://github.com/dotnet/runtime/pull/125289", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9955df2", + "labels": [ + "area-System.Text.RegularExpressions" + ] + }, + { + "id": "runtime@97cc027", + "repo": "runtime", + "title": "[cDAC] Convert cDAC dump tests to run on Helix", + "url": "https://github.com/dotnet/runtime/pull/124782", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@97cc027", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@7c0f7cf", + "repo": "runtime", + "title": "Support generic converters on generic types with JsonConverterAttribute", + "url": "https://github.com/dotnet/runtime/pull/123209", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7c0f7cf", + "labels": [ + "area-System.Text.Json" + ] + }, + { + "id": "runtime@29faf6d", + "repo": "runtime", + "title": "[Wasm RyuJit] Add JIT config JitWasmNyiToR2RUnsupported", + "url": "https://github.com/dotnet/runtime/pull/125752", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@29faf6d", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@b96f3cc", + "repo": "runtime", + "title": "Remove Homebrew LLVM during macOS CI setup", + "url": "https://github.com/dotnet/runtime/pull/125763", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b96f3cc", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@72b5321", + "repo": "runtime", + "title": "Split gc.cpp to multiple files based on the functionality - part 1", + "url": "https://github.com/dotnet/runtime/pull/125703", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@72b5321", + "labels": [ + "NO-SQUASH", + "area-GC-coreclr" + ] + }, + { + "id": "runtime@64350da", + "repo": "runtime", + "title": "Ensure the Thumb bit is set for resumption stub relocs", + "url": "https://github.com/dotnet/runtime/pull/125421", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@64350da", + "labels": [ + "arch-arm32", + "area-crossgen2-coreclr" + ] + }, + { + "id": "runtime@02f7316", + "repo": "runtime", + "title": "Remove redundant directory separator normalization in deps.json parsing", + "url": "https://github.com/dotnet/runtime/pull/125251", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@02f7316", + "labels": [ + "area-Host" + ] + }, + { + "id": "runtime@2066293", + "repo": "runtime", + "title": "Delete WebHeaderEncoding.cs and replace usages with Encoding.Latin1", + "url": "https://github.com/dotnet/runtime/pull/125592", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2066293", + "labels": [ + "area-System.Net.Http", + "reduce-unsafe" + ] + }, + { + "id": "runtime@37c9693", + "repo": "runtime", + "title": "Add analyzer+codefix for applying RequiresUnsafe to pointer methods", + "url": "https://github.com/dotnet/runtime/pull/125196", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@37c9693", + "labels": [ + "area-Infrastructure-libraries", + "linkable-framework" + ] + }, + { + "id": "runtime@aeffb4c", + "repo": "runtime", + "title": "Fix Dataflow test timeouts under JIT stress: add timeouts to SpinWait.SpinUntil calls", + "url": "https://github.com/dotnet/runtime/pull/125677", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@aeffb4c", + "labels": [ + "area-System.Threading" + ] + }, + { + "id": "runtime@f194942", + "repo": "runtime", + "title": "Simplify RegexInterpreter", + "url": "https://github.com/dotnet/runtime/pull/124628", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f194942", + "labels": [ + "area-System.Text.RegularExpressions" + ] + }, + { + "id": "runtime@dcde84a", + "repo": "runtime", + "title": "Fix bug in TraverseEhInfo", + "url": "https://github.com/dotnet/runtime/pull/125796", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@dcde84a", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@fec5107", + "repo": "runtime", + "title": "Avoid writing jitdump code for block data", + "url": "https://github.com/dotnet/runtime/pull/122274", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fec5107", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@83f84b6", + "repo": "runtime", + "title": "Add support for async thunk methods in GetNativeCodeInfo", + "url": "https://github.com/dotnet/runtime/pull/124354", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@83f84b6", + "labels": [ + "area-Diagnostics-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@6a815e8", + "repo": "runtime", + "title": "Add retry for StackTraceTests.ToString_ShowILOffset AMSI hang", + "url": "https://github.com/dotnet/runtime/pull/125814", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6a815e8", + "labels": [ + "area-System.Diagnostics" + ] + }, + { + "id": "runtime@43502e5", + "repo": "runtime", + "title": "Improve UnwindInfoTable's performance", + "url": "https://github.com/dotnet/runtime/pull/125545", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@43502e5", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@86e3d03", + "repo": "runtime", + "title": "Add JsonNamingPolicyAttribute for member-level naming policies in System.Text.Json", + "url": "https://github.com/dotnet/runtime/pull/124645", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@86e3d03", + "labels": [ + "area-System.Text.Json" + ], + "score": 7, + "score_reason": "Member-level naming policies are a clear quality-of-life improvement for System.Text.Json users.", + "score_breakdown": { + "breadth": 3, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "runtime@55f8bdb", + "repo": "runtime", + "title": "Fix emcc version parsing failure on clean WASM builds", + "url": "https://github.com/dotnet/runtime/pull/125822", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@55f8bdb", + "labels": [ + "arch-wasm", + "area-Build-mono" + ] + }, + { + "id": "runtime@b03b4f9", + "repo": "runtime", + "title": "[QUIC] Disable platform tests as well", + "url": "https://github.com/dotnet/runtime/pull/125772", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b03b4f9", + "labels": [ + "area-System.Net.Quic" + ] + }, + { + "id": "runtime@1253ff8", + "repo": "runtime", + "title": "Fix inner build of community archs", + "url": "https://github.com/dotnet/runtime/pull/125653", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1253ff8", + "labels": [ + "area-Infrastructure-coreclr", + "community-contribution", + "arch-loongarch64", + "arch-riscv" + ] + }, + { + "id": "runtime@4e54117", + "repo": "runtime", + "title": "Fix ProcessThreadTests.TestStartTimeProperty flakiness due to /proc visibility race", + "url": "https://github.com/dotnet/runtime/pull/125811", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4e54117", + "labels": [ + "area-System.Diagnostics.Process" + ] + }, + { + "id": "runtime@16c2ce3", + "repo": "runtime", + "title": "[Wasm RyuJit] eh flow", + "url": "https://github.com/dotnet/runtime/pull/125594", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@16c2ce3", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@68df930", + "repo": "runtime", + "title": "Fix possible deadlocks on PosixSignalRegistration disposal on Windows", + "url": "https://github.com/dotnet/runtime/pull/124893", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@68df930", + "labels": [ + "area-System.Runtime.InteropServices" + ] + }, + { + "id": "runtime@9908b08", + "repo": "runtime", + "title": "JIT: Disable continuation reuse temporarily", + "url": "https://github.com/dotnet/runtime/pull/125831", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9908b08", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@0723cf0", + "repo": "runtime", + "title": "Update EgorBot skill note about content between command and code block", + "url": "https://github.com/dotnet/runtime/pull/125843", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@0723cf0", + "labels": [ + "area-skills" + ] + }, + { + "id": "runtime@9366374", + "repo": "runtime", + "title": "Enable GC regions on macOS", + "url": "https://github.com/dotnet/runtime/pull/125416", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9366374", + "labels": [ + "area-GC-coreclr" + ] + }, + { + "id": "runtime@919e1b2", + "repo": "runtime", + "title": "Require AI-generated content disclosure in copilot instructions and skills", + "url": "https://github.com/dotnet/runtime/pull/125842", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@919e1b2", + "labels": [ + "area-skills" + ] + }, + { + "id": "runtime@9096b69", + "repo": "runtime", + "title": "Support constructors with byref parameters (in/ref/out) in System.Text.Json", + "url": "https://github.com/dotnet/runtime/pull/122950", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9096b69", + "labels": [ + "area-System.Text.Json" + ] + }, + { + "id": "runtime@1a7eb82", + "repo": "runtime", + "title": "Fix issue where i32.trunc_sat_f32_s wasn't properly encoded", + "url": "https://github.com/dotnet/runtime/pull/125812", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1a7eb82", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@36739a3", + "repo": "runtime", + "title": "Remove ProcessStartOptions type, update ref, src and tests", + "url": "https://github.com/dotnet/runtime/pull/125839", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@36739a3", + "labels": [ + "area-System.Diagnostics.Process" + ], + "score": 0, + "score_reason": "Revert/removal of a transient API story; useful only as evidence not to document it.", + "score_breakdown": { + "breadth": 0, + "reader_value": 0, + "clarity": 0 + } + }, + { + "id": "runtime@4c7d197", + "repo": "runtime", + "title": "Fix cDAC dump tests on 32-bit ARM targets", + "url": "https://github.com/dotnet/runtime/pull/125841", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4c7d197", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@80f39c5", + "repo": "runtime", + "title": "Consolidate overlapped I/O non-Windows stubs; remove stale ILLink workaround; remove incorrect [RequiresUnsafe] annotations", + "url": "https://github.com/dotnet/runtime/pull/125507", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@80f39c5", + "labels": [ + "area-System.Threading", + "linkable-framework" + ] + }, + { + "id": "runtime@56ff888", + "repo": "runtime", + "title": "Fix broadcast output shape computation in tensor binary operations", + "url": "https://github.com/dotnet/runtime/pull/125582", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@56ff888", + "labels": [ + "area-System.Numerics.Tensors" + ] + }, + { + "id": "runtime@c626461", + "repo": "runtime", + "title": "Add cDAC API GetCCWData", + "url": "https://github.com/dotnet/runtime/pull/125288", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c626461", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@4521881", + "repo": "runtime", + "title": "Fix OleTxTests.Recovery CI timeout by bounding remote process wall-clock time", + "url": "https://github.com/dotnet/runtime/pull/125813", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4521881", + "labels": [ + "area-System.Transactions" + ] + }, + { + "id": "runtime@5ab4f9b", + "repo": "runtime", + "title": "Fix IndexOutOfRangeException in FrozenHashTable when creating from huge collections", + "url": "https://github.com/dotnet/runtime/pull/125555", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5ab4f9b", + "labels": [ + "area-System.Collections" + ] + }, + { + "id": "runtime@15c9f8d", + "repo": "runtime", + "title": "Use SHash as DAC instance hash", + "url": "https://github.com/dotnet/runtime/pull/125631", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@15c9f8d", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@b38cc2a", + "repo": "runtime", + "title": "Don't build native host tests when building clr subset", + "url": "https://github.com/dotnet/runtime/pull/125861", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b38cc2a", + "labels": [ + "area-Host" + ] + }, + { + "id": "runtime@f01e41d", + "repo": "runtime", + "title": "Fix handling invalid type map states", + "url": "https://github.com/dotnet/runtime/pull/125870", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f01e41d", + "labels": [ + "area-crossgen2-coreclr" + ] + }, + { + "id": "runtime@edd2a2a", + "repo": "runtime", + "title": "fix SafeFileHandle.CanSeek performance regression", + "url": "https://github.com/dotnet/runtime/pull/125807", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@edd2a2a", + "labels": [ + "area-System.IO", + "tenet-performance" + ] + }, + { + "id": "runtime@ea02e22", + "repo": "runtime", + "title": "Clear RCW cache entries when releasing wrapper objects", + "url": "https://github.com/dotnet/runtime/pull/125754", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ea02e22", + "labels": [ + "area-System.Runtime.InteropServices", + "partner-impact" + ] + }, + { + "id": "runtime@9ddca1d", + "repo": "runtime", + "title": "Properly escape Helix queue parameters in runtime-diagnostics", + "url": "https://github.com/dotnet/runtime/pull/125877", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9ddca1d", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@814f1ae", + "repo": "runtime", + "title": "Fix flaky TestWindowStyle: check only STARTF_USESHOWWINDOW bit, remove ShellExecute cases", + "url": "https://github.com/dotnet/runtime/pull/125847", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@814f1ae", + "labels": [ + "area-System.Diagnostics.Process" + ] + }, + { + "id": "runtime@df18262", + "repo": "runtime", + "title": "Upgrade Ubuntu helix queues from 22.04 VMs to containers", + "url": "https://github.com/dotnet/runtime/pull/125535", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@df18262", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@03b08f5", + "repo": "runtime", + "title": "Disable attribute trimming android 124958", + "url": "https://github.com/dotnet/runtime/pull/125863", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@03b08f5", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@d7f2aa6", + "repo": "runtime", + "title": "[Wasm RyuJit] Debug SPC Wasm Validation Fixes", + "url": "https://github.com/dotnet/runtime/pull/125852", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d7f2aa6", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@6648305", + "repo": "runtime", + "title": "Cleaning up codepaths for DAC_HASHTABLE", + "url": "https://github.com/dotnet/runtime/pull/125886", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6648305", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@b8509e6", + "repo": "runtime", + "title": "Fix pal_memory.c on OpenBSD", + "url": "https://github.com/dotnet/runtime/pull/125010", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b8509e6", + "labels": [ + "area-PAL-coreclr", + "community-contribution", + "os-openbsd" + ] + }, + { + "id": "runtime@f416dc4", + "repo": "runtime", + "title": "Adding GetObjectComWrappers cDAC API", + "url": "https://github.com/dotnet/runtime/pull/125846", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f416dc4", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@ebb0dea", + "repo": "runtime", + "title": "JIT: Null out exceptions in reused continuations and reenable continuation reuse", + "url": "https://github.com/dotnet/runtime/pull/125869", + "commit": "dotnet@74c3eaa", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ebb0dea", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ] + }, + { + "id": "runtime@d577b7a", + "repo": "runtime", + "title": "Bump flatted from 3.3.3 to 3.4.2 in /src/native", + "url": "https://github.com/dotnet/runtime/pull/125823", + "commit": "dotnet@c15a55e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d577b7a", + "labels": [ + "area-DependencyModel", + "javascript", + "dependencies" + ] + }, + { + "id": "runtime@b2bba6d", + "repo": "runtime", + "title": "Improve HashSet performance by enabling JIT bounds check elimination", + "url": "https://github.com/dotnet/runtime/pull/125893", + "commit": "dotnet@c15a55e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b2bba6d", + "labels": [ + "area-System.Collections" + ] + }, + { + "id": "runtime@6260db3", + "repo": "runtime", + "title": "Fix multithreaded browser-wasm build: CS0102 errors in PortableThreadPool; remove redundant ThreadPoolBoundHandle.Browser.Threads.cs; regenerate WASM call helpers", + "url": "https://github.com/dotnet/runtime/pull/125887", + "commit": "dotnet@c15a55e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6260db3", + "labels": [ + "area-System.Threading" + ] + }, + { + "id": "runtime@f6d4ffd", + "repo": "runtime", + "title": "Add null check ImmutableArray.Builder.RemoveAll", + "url": "https://github.com/dotnet/runtime/pull/125920", + "commit": "dotnet@c15a55e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f6d4ffd", + "labels": [ + "area-System.Collections", + "community-contribution" + ] + }, + { + "id": "runtime@9dd9f6f", + "repo": "runtime", + "title": "Relax RandomAccess type requirements: make Read/Write methods work with non-seekable files", + "url": "https://github.com/dotnet/runtime/pull/125512", + "commit": "dotnet@c15a55e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9dd9f6f", + "labels": [ + "area-System.IO" + ], + "score": 6, + "score_reason": "RandomAccess now works in more real-world I/O scenarios without forcing different code paths.", + "score_breakdown": { + "breadth": 2, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "runtime@eb68339", + "repo": "runtime", + "title": "Convert remaining PREPARE_NONVIRTUAL_CALLSITE call sites to UnmanagedCallersOnly", + "url": "https://github.com/dotnet/runtime/pull/125697", + "commit": "dotnet@c15a55e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@eb68339", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@be2631f", + "repo": "runtime", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/runtime/pull/125762", + "commit": "dotnet@c15a55e", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@be2631f", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@f8e0698", + "repo": "runtime", + "title": "Improve runtime-async support on linux-riscv64", + "url": "https://github.com/dotnet/runtime/pull/125446", + "commit": "dotnet@7c48c5b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f8e0698", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution", + "arch-riscv", + "runtime-async" + ] + }, + { + "id": "runtime@bfd735b", + "repo": "runtime", + "title": "[SRM] Optimize `MetadataBuilder.GetOrAddConstantBlob`.", + "url": "https://github.com/dotnet/runtime/pull/121223", + "commit": "dotnet@7c48c5b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@bfd735b", + "labels": [ + "area-System.Reflection.Metadata", + "tenet-performance", + "community-contribution" + ] + }, + { + "id": "runtime@443d53e", + "repo": "runtime", + "title": "Fix flaky NonPowerOfTwoKeySizeOaepRoundtrip test with retry on transient CryptographicException", + "url": "https://github.com/dotnet/runtime/pull/125911", + "commit": "dotnet@7c48c5b", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@443d53e", + "labels": [ + "area-System.Security" + ] + }, + { + "id": "runtime@162722d", + "repo": "runtime", + "title": "Fix TestNativeDigits for ur-IN on Apple platforms", + "url": "https://github.com/dotnet/runtime/pull/125934", + "commit": "dotnet@4f7fd39", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@162722d", + "labels": [ + "area-System.Globalization", + "os-mac-os-x", + "os-ios", + "os-maccatalyst" + ] + }, + { + "id": "runtime@982dc8a", + "repo": "runtime", + "title": "Disable EnsureEnvironmentExitDoesntHang on .NET Framework", + "url": "https://github.com/dotnet/runtime/pull/125912", + "commit": "dotnet@8a523a7", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@982dc8a", + "labels": [ + "area-Extensions-Hosting" + ] + }, + { + "id": "runtime@7c58a24", + "repo": "runtime", + "title": "JIT: Fix fgFoldCondToReturnBlock for multi-statement return blocks", + "url": "https://github.com/dotnet/runtime/pull/124642", + "commit": "dotnet@8a523a7", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7c58a24", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@af3bd85", + "repo": "runtime", + "title": "Annotate `System.Speech` for nullable reference types", + "url": "https://github.com/dotnet/runtime/pull/119564", + "commit": "dotnet@8a523a7", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@af3bd85", + "labels": [ + "area-System.Speech", + "community-contribution" + ] + }, + { + "id": "runtime@c53804f", + "repo": "runtime", + "title": "Fix localization of ExtendedPropertyDescriptor.DisplayName", + "url": "https://github.com/dotnet/runtime/pull/124771", + "commit": "dotnet@8a523a7", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c53804f", + "labels": [ + "area-System.ComponentModel", + "community-contribution" + ] + }, + { + "id": "runtime@baa4920", + "repo": "runtime", + "title": "Synchronize PaxTarEntry ExtendedAttributes with property setters", + "url": "https://github.com/dotnet/runtime/pull/123990", + "commit": "dotnet@8a523a7", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@baa4920", + "labels": [ + "area-System.Formats.Tar" + ] + }, + { + "id": "runtime@4a6399a", + "repo": "runtime", + "title": "Fix memory leaks from mono_type_full_name in marshal-shared.c error paths", + "url": "https://github.com/dotnet/runtime/pull/125616", + "commit": "dotnet@8a523a7", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4a6399a", + "labels": [ + "area-VM-meta-mono" + ] + }, + { + "id": "runtime@14b90e1", + "repo": "runtime", + "title": "arm64: Fold negative variable eq/ne to 0", + "url": "https://github.com/dotnet/runtime/pull/124332", + "commit": "dotnet@8a523a7", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@14b90e1", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@875672f", + "repo": "runtime", + "title": "Fix dotnet-pgo dump crash when CallWeights are present", + "url": "https://github.com/dotnet/runtime/pull/125936", + "commit": "dotnet@8a523a7", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@875672f", + "labels": [ + "area-VM-coreclr", + "community-contribution" + ] + }, + { + "id": "runtime@2509dcb", + "repo": "runtime", + "title": "Fix CS4007: ReadOnlySpan across await in TrailingHeadersTest", + "url": "https://github.com/dotnet/runtime/pull/125946", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2509dcb", + "labels": [ + "area-System.Net.Http" + ] + }, + { + "id": "runtime@f226c29", + "repo": "runtime", + "title": "Bump WaitOne timeouts in StartCanBeCancelled test from 5s to 30s", + "url": "https://github.com/dotnet/runtime/pull/125940", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f226c29", + "labels": [ + "area-Extensions-Hosting" + ] + }, + { + "id": "runtime@a9b578e", + "repo": "runtime", + "title": "JIT: Fix jit-format break", + "url": "https://github.com/dotnet/runtime/pull/125962", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a9b578e", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@5daf9dc", + "repo": "runtime", + "title": "arm64: Small fixes to GenerateHWIntrinsicTests_Arm.cs", + "url": "https://github.com/dotnet/runtime/pull/125954", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5daf9dc", + "labels": [ + "area-System.Runtime.Intrinsics", + "community-contribution" + ] + }, + { + "id": "runtime@509a2f1", + "repo": "runtime", + "title": "Refactor loader heap backout adapter to remove multiple inheritance", + "url": "https://github.com/dotnet/runtime/pull/125867", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@509a2f1", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@47655ce", + "repo": "runtime", + "title": "Add support for generalized variable length wasm instructions to the emitter", + "url": "https://github.com/dotnet/runtime/pull/125862", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@47655ce", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@fbf31b6", + "repo": "runtime", + "title": "Add hint for trimming System.Runtime in test109242", + "url": "https://github.com/dotnet/runtime/pull/125948", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fbf31b6", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@e861dc8", + "repo": "runtime", + "title": "Fix 4 bugs in TypePreinit IL interpreter", + "url": "https://github.com/dotnet/runtime/pull/125947", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e861dc8", + "labels": [ + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@3d83c4f", + "repo": "runtime", + "title": "[cDAC] Loosen EHInfo test to account for possible optimization of `finally` clause into `fault` clause", + "url": "https://github.com/dotnet/runtime/pull/125892", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3d83c4f", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@d017a1e", + "repo": "runtime", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/runtime/pull/125961", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d017a1e", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@21630d9", + "repo": "runtime", + "title": "Shorten thread names exceeding the 15-char Linux pthread_setname_np limit", + "url": "https://github.com/dotnet/runtime/pull/125928", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@21630d9", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@45ef48e", + "repo": "runtime", + "title": "Remove unnecessary RequiresProcessIsolation from 172 tests and update comments on 18 that need it", + "url": "https://github.com/dotnet/runtime/pull/125460", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@45ef48e", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@ec68eee", + "repo": "runtime", + "title": "Remove ByValueMarshalKindSupport.Unnecessary and move ByValueContentsMarshalKindValidator to analyzers only", + "url": "https://github.com/dotnet/runtime/pull/125458", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@ec68eee", + "labels": [ + "area-System.Runtime.InteropServices" + ] + }, + { + "id": "runtime@63e88d1", + "repo": "runtime", + "title": "Convert more COM interop MethodDescCallSite to UnmanagedCallersOnly (UCO)", + "url": "https://github.com/dotnet/runtime/pull/125849", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@63e88d1", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@686d074", + "repo": "runtime", + "title": "[wasm][coreclr] Enable more libraries tests", + "url": "https://github.com/dotnet/runtime/pull/125824", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@686d074", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@2daca20", + "repo": "runtime", + "title": "JIT: Add a runtime async optimization to skip saving unmutated locals into reused continuations", + "url": "https://github.com/dotnet/runtime/pull/125615", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2daca20", + "labels": [ + "area-CodeGen-coreclr", + "runtime-async" + ], + "score": 6, + "score_reason": "Avoiding saves for unchanged locals improves runtime-async efficiency, but is best grouped with the broader feature.", + "score_breakdown": { + "breadth": 2, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "runtime@fc579fd", + "repo": "runtime", + "title": "Fix flaky signal handler test on mono on Linux", + "url": "https://github.com/dotnet/runtime/pull/125969", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@fc579fd", + "labels": [ + "area-System.Diagnostics.Process" + ] + }, + { + "id": "runtime@d5c384f", + "repo": "runtime", + "title": "Increase TTL in SendPingWithLowTtl_RoundtripTimeIsNonZero to fix macOS flakiness", + "url": "https://github.com/dotnet/runtime/pull/125774", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d5c384f", + "labels": [ + "area-System.Net" + ] + }, + { + "id": "runtime@6cbc8ed", + "repo": "runtime", + "title": "Add global:: qualifier to System namespaces in OptionsValidatorGenerator", + "url": "https://github.com/dotnet/runtime/pull/125882", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6cbc8ed", + "labels": [ + "area-Extensions-Options", + "community-contribution" + ] + }, + { + "id": "runtime@f3a96ce", + "repo": "runtime", + "title": "[browser][coreCLR] instantiate webCIL in corerun", + "url": "https://github.com/dotnet/runtime/pull/125983", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f3a96ce", + "labels": [ + "arch-wasm", + "area-Host", + "os-browser" + ] + }, + { + "id": "runtime@12e83ca", + "repo": "runtime", + "title": "Convert IDacDbiInterface to COM interface", + "url": "https://github.com/dotnet/runtime/pull/125074", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@12e83ca", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@53928dd", + "repo": "runtime", + "title": "improve error handling in OpenSSL init code", + "url": "https://github.com/dotnet/runtime/pull/125324", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@53928dd", + "labels": [ + "area-System.Net.Security" + ] + }, + { + "id": "runtime@2f18157", + "repo": "runtime", + "title": "[wasm][coreclr] Fix tpa list population in corerun.html", + "url": "https://github.com/dotnet/runtime/pull/126021", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2f18157", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@cb908b0", + "repo": "runtime", + "title": "Fix OOM in BinHexDecoder, Base64Decoder, and XmlSchemaValidator when throwing on large invalid input", + "url": "https://github.com/dotnet/runtime/pull/125930", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cb908b0", + "labels": [ + "area-System.Xml" + ] + }, + { + "id": "runtime@4412aa7", + "repo": "runtime", + "title": "Add BarrierPostPhaseException to Barrier XML doc comments", + "url": "https://github.com/dotnet/runtime/pull/125635", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@4412aa7", + "labels": [ + "area-System.Threading" + ] + }, + { + "id": "runtime@d4cc2d9", + "repo": "runtime", + "title": "Fix NativeAOT publish including satellite assemblies despite embedding them", + "url": "https://github.com/dotnet/runtime/pull/124192", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d4cc2d9", + "labels": [ + "linkable-framework", + "area-NativeAOT-coreclr" + ] + }, + { + "id": "runtime@bfaa2d8", + "repo": "runtime", + "title": "[Wasm RyuJIT] initblk fix for #125756", + "url": "https://github.com/dotnet/runtime/pull/125836", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@bfaa2d8", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@3844be7", + "repo": "runtime", + "title": "Fix SingleConsumerUnboundedChannel WaitToReadAsync returning exception instead of false", + "url": "https://github.com/dotnet/runtime/pull/125745", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@3844be7", + "labels": [ + "area-System.Threading.Channels" + ] + }, + { + "id": "runtime@1a2f6f9", + "repo": "runtime", + "title": "[ios-clr] Resolve throw helpers to managed methods in R2R compilation", + "url": "https://github.com/dotnet/runtime/pull/125646", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@1a2f6f9", + "labels": [ + "area-crossgen2-coreclr" + ] + }, + { + "id": "runtime@8b810a6", + "repo": "runtime", + "title": "Add unsafe evolution attributes", + "url": "https://github.com/dotnet/runtime/pull/125721", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8b810a6", + "labels": [ + "area-System.Runtime.CompilerServices" + ], + "score": 4, + "score_reason": "Runtime attributes support the compiler-side unsafe evolution work, but should be grouped rather than expanded alone.", + "score_breakdown": { + "breadth": 1, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "runtime@8c86f67", + "repo": "runtime", + "title": "Revert \"Refactor loader heap backout adapter to remove multiple inheritance\"", + "url": "https://github.com/dotnet/runtime/pull/126033", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8c86f67", + "labels": [ + "area-VM-coreclr" + ] + }, + { + "id": "runtime@5794faa", + "repo": "runtime", + "title": "Add JsonNamingPolicy.PascalCase and JsonKnownNamingPolicy.PascalCase", + "url": "https://github.com/dotnet/runtime/pull/124644", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5794faa", + "labels": [ + "area-System.Text.Json" + ], + "score": 7, + "score_reason": "Built-in PascalCase support is easy to understand and immediately useful for JSON serialization.", + "score_breakdown": { + "breadth": 3, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "runtime@d69ff06", + "repo": "runtime", + "title": "[cDAC] : Implement ClrDataModule GetName", + "url": "https://github.com/dotnet/runtime/pull/125942", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d69ff06", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@9105b47", + "repo": "runtime", + "title": "Defer GetServiceInfo initialization in ActivatorUtilities", + "url": "https://github.com/dotnet/runtime/pull/126005", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9105b47", + "labels": [ + "area-Extensions-DependencyInjection" + ] + }, + { + "id": "runtime@e5f6bf5", + "repo": "runtime", + "title": "Set up GitHub Agentic Workflows", + "url": "https://github.com/dotnet/runtime/pull/126057", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@e5f6bf5", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@210efc0", + "repo": "runtime", + "title": "Use Framework SourceType for WASM pass-through assets in multi-client solutions", + "url": "https://github.com/dotnet/runtime/pull/125329", + "commit": "dotnet@df311e5", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@210efc0", + "labels": [ + "area-Build-mono" + ] + }, + { + "id": "runtime@243d211", + "repo": "runtime", + "title": "Fix EPERM when killing sudo-launched createdump process in CollectCrashDumpWithCreateDump", + "url": "https://github.com/dotnet/runtime/pull/125916", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@243d211", + "labels": [ + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@52896ab", + "repo": "runtime", + "title": "Make the PeriodicTimer.WaitForNextTickAsync description more descriptive", + "url": "https://github.com/dotnet/runtime/pull/119637", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@52896ab", + "labels": [ + "documentation", + "area-System.Threading", + "community-contribution" + ] + }, + { + "id": "runtime@7877ab1", + "repo": "runtime", + "title": "Add dotnet/extensions to contributing guidelines", + "url": "https://github.com/dotnet/runtime/pull/126069", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7877ab1", + "labels": [ + "area-Meta" + ] + }, + { + "id": "runtime@6d3044d", + "repo": "runtime", + "title": "Add Wasm import thunks", + "url": "https://github.com/dotnet/runtime/pull/125542", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6d3044d", + "labels": [ + "arch-wasm", + "area-crossgen2-coreclr" + ] + }, + { + "id": "runtime@5caa14b", + "repo": "runtime", + "title": "Fix for 125246", + "url": "https://github.com/dotnet/runtime/pull/125747", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@5caa14b", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@b5c98ef", + "repo": "runtime", + "title": "[main] Update dependencies from dotnet/xharness", + "url": "https://github.com/dotnet/runtime/pull/125944", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@b5c98ef", + "labels": [ + "area-codeflow" + ] + }, + { + "id": "runtime@18a940b", + "repo": "runtime", + "title": "Allow null arguments in ProcessStartInfo constructor and Process.Start", + "url": "https://github.com/dotnet/runtime/pull/126076", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@18a940b", + "labels": [ + "area-System.Diagnostics.Process" + ] + }, + { + "id": "runtime@979b490", + "repo": "runtime", + "title": "[wasm][coreclr] Run only libs smoketest on Firefox and V8", + "url": "https://github.com/dotnet/runtime/pull/126084", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@979b490", + "labels": [ + "arch-wasm", + "area-Infrastructure-coreclr" + ] + }, + { + "id": "runtime@9d8d3e2", + "repo": "runtime", + "title": "Fix ErrorOnUnknownConfiguration to respect ConfigurationKeyNameAttribute", + "url": "https://github.com/dotnet/runtime/pull/125876", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9d8d3e2", + "labels": [ + "area-Extensions-Configuration", + "community-contribution" + ] + }, + { + "id": "runtime@7b5e3d3", + "repo": "runtime", + "title": "[Wasm RyuJit] codegen for loading a register-sized struct local", + "url": "https://github.com/dotnet/runtime/pull/126059", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@7b5e3d3", + "labels": [ + "arch-wasm", + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@c8917ea", + "repo": "runtime", + "title": "[cDAC] Implement GetArgumentByIndex and GetLocalVariableByIndex on ClrDataFrame", + "url": "https://github.com/dotnet/runtime/pull/125463", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@c8917ea", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@8f33bcb", + "repo": "runtime", + "title": "Fix: wrap AssignCopy with IfFailThrow in GetMetaDataFileInfoFromPEFile", + "url": "https://github.com/dotnet/runtime/pull/125798", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@8f33bcb", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@d6c493d", + "repo": "runtime", + "title": "Revert forwarding activation signal", + "url": "https://github.com/dotnet/runtime/pull/124877", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d6c493d", + "labels": [ + "area-PAL-coreclr" + ] + }, + { + "id": "runtime@a4207f4", + "repo": "runtime", + "title": "Add VectorXx.Asin and use it to vectorize TensorPrimitives.Asin", + "url": "https://github.com/dotnet/runtime/pull/126052", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@a4207f4", + "labels": [ + "area-System.Runtime.Intrinsics" + ] + }, + { + "id": "runtime@deb317e", + "repo": "runtime", + "title": "Add linux_arm and windows_x86 to cDAC dump test platforms", + "url": "https://github.com/dotnet/runtime/pull/125793", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@deb317e", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@44cd131", + "repo": "runtime", + "title": "TarWriter: when writing entries for the same hard-linked file use HardLink entries.", + "url": "https://github.com/dotnet/runtime/pull/123874", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@44cd131", + "labels": [ + "breaking-change", + "community-contribution", + "area-System.Formats.Tar" + ], + "score": 2, + "score_reason": "Tar hard-link output changes may matter to some build pipelines, but this is a narrow migration note.", + "score_breakdown": { + "breadth": 0, + "reader_value": 1, + "clarity": 1 + }, + "breaking_changes": true + }, + { + "id": "runtime@803560f", + "repo": "runtime", + "title": "[interpreter] Fix crash on empty switch instruction", + "url": "https://github.com/dotnet/runtime/pull/126017", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@803560f", + "labels": [ + "arch-wasm", + "area-CodeGen-Interpreter-coreclr" + ] + }, + { + "id": "runtime@f15e049", + "repo": "runtime", + "title": "Fix possible integer overflow", + "url": "https://github.com/dotnet/runtime/pull/125500", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@f15e049", + "labels": [ + "area-System.Data", + "community-contribution" + ] + }, + { + "id": "runtime@cdddcee", + "repo": "runtime", + "title": "arm64: Refactor mov/movprfx for unmasked operations", + "url": "https://github.com/dotnet/runtime/pull/123717", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@cdddcee", + "labels": [ + "area-CodeGen-coreclr", + "community-contribution", + "arm-sve" + ] + }, + { + "id": "runtime@bde19aa", + "repo": "runtime", + "title": "Move remaining Linux build pools from Ubuntu 22.04 to Azure Linux 3", + "url": "https://github.com/dotnet/runtime/pull/125995", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@bde19aa", + "labels": [ + "area-Infrastructure-libraries" + ] + }, + { + "id": "runtime@93b87b2", + "repo": "runtime", + "title": "Update EOL OS versions in helix-platforms.yml", + "url": "https://github.com/dotnet/runtime/pull/125991", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@93b87b2", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@d5e1f9e", + "repo": "runtime", + "title": "Disable MonoAPI tests on Mono Windows (dotnet/runtime#67047)", + "url": "https://github.com/dotnet/runtime/pull/125987", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d5e1f9e", + "labels": [ + "area-Build-mono" + ] + }, + { + "id": "runtime@2d7b256", + "repo": "runtime", + "title": "Include declaring type name in assembly loading handler tracing events", + "url": "https://github.com/dotnet/runtime/pull/125881", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@2d7b256", + "labels": [ + "area-AssemblyLoader-coreclr" + ] + }, + { + "id": "runtime@9bab625", + "repo": "runtime", + "title": "Add r2 r composite", + "url": "https://github.com/dotnet/runtime/pull/125845", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@9bab625", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "runtime@eafeb92", + "repo": "runtime", + "title": "Add adoption catalog requirement to api-proposal skill", + "url": "https://github.com/dotnet/runtime/pull/125903", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@eafeb92", + "labels": [ + "area-skills" + ] + }, + { + "id": "runtime@91557f5", + "repo": "runtime", + "title": "[cDAC] Fix GetLocalVariableCount to return E_FAIL for missing local signatures", + "url": "https://github.com/dotnet/runtime/pull/126115", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@91557f5", + "labels": [ + "area-Diagnostics-coreclr" + ] + }, + { + "id": "runtime@6f8b227", + "repo": "runtime", + "title": "Fix OperIs(GT_CNS_INT, GT_CNS_LNG) assertion during import", + "url": "https://github.com/dotnet/runtime/pull/126064", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@6f8b227", + "labels": [ + "area-CodeGen-coreclr" + ] + }, + { + "id": "runtime@d343974", + "repo": "runtime", + "title": "Fix reentrant Monitor wait", + "url": "https://github.com/dotnet/runtime/pull/126071", + "commit": "dotnet@caa18ba", + "is_security": false, + "product": "dotnet-runtime", + "local_repo_commit": "runtime@d343974", + "labels": [ + "area-System.Threading" + ] + }, + { + "id": "sdk@bcb60ca", + "repo": "sdk", + "title": "[release/8.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52003", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@bcb60ca" + }, + { + "id": "sdk@84d3214", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52039", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@84d3214" + }, + { + "id": "sdk@63a7105", + "repo": "sdk", + "title": "[automated] Merge branch 'release/8.0.1xx' => 'release/8.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/52041", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@63a7105" + }, + { + "id": "sdk@26ca00f", + "repo": "sdk", + "title": "[automated] Merge branch 'release/8.0.3xx' => 'release/8.0.4xx'", + "url": "https://github.com/dotnet/sdk/pull/52049", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@26ca00f" + }, + { + "id": "sdk@6373e26", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/razor", + "url": "https://github.com/dotnet/sdk/pull/52067", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6373e26" + }, + { + "id": "sdk@368e128", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/razor", + "url": "https://github.com/dotnet/sdk/pull/52073", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@368e128" + }, + { + "id": "sdk@aa4cf6e", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/razor", + "url": "https://github.com/dotnet/sdk/pull/52075", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@aa4cf6e" + }, + { + "id": "sdk@48e7568", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52076", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@48e7568" + }, + { + "id": "sdk@ae318b2", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52079", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ae318b2" + }, + { + "id": "sdk@16f9ccf", + "repo": "sdk", + "title": "[automated] Merge branch 'release/8.0.1xx' => 'release/8.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/52078", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@16f9ccf" + }, + { + "id": "sdk@b9d29f2", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/52080", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b9d29f2" + }, + { + "id": "sdk@d8f27e8", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52084", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d8f27e8" + }, + { + "id": "sdk@12760a3", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/msbuild", + "url": "https://github.com/dotnet/sdk/pull/52145", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@12760a3" + }, + { + "id": "sdk@5371752", + "repo": "sdk", + "title": "Update alpine and fedora versions used in SB CI", + "url": "https://github.com/dotnet/sdk/pull/52148", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5371752" + }, + { + "id": "sdk@583f680", + "repo": "sdk", + "title": "Update branding to 9.0.310", + "url": "https://github.com/dotnet/sdk/pull/52314", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@583f680" + }, + { + "id": "sdk@6c268d1", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/msbuild", + "url": "https://github.com/dotnet/sdk/pull/52100", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6c268d1" + }, + { + "id": "sdk@efd8fd2", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/roslyn-analyzers", + "url": "https://github.com/dotnet/sdk/pull/52317", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@efd8fd2" + }, + { + "id": "sdk@5f21c8b", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/roslyn", + "url": "https://github.com/dotnet/sdk/pull/52101", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5f21c8b" + }, + { + "id": "sdk@ca22991", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52321", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ca22991" + }, + { + "id": "sdk@f02a5eb", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52323", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f02a5eb" + }, + { + "id": "sdk@81f778f", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/razor", + "url": "https://github.com/dotnet/sdk/pull/52291", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@81f778f" + }, + { + "id": "sdk@72e7825", + "repo": "sdk", + "title": "Enable error logging in source-build tests", + "url": "https://github.com/dotnet/sdk/pull/52251", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@72e7825", + "labels": [ + "Branch Lockdown" + ] + }, + { + "id": "sdk@081c776", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52007", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@081c776" + }, + { + "id": "sdk@bdc3757", + "repo": "sdk", + "title": "Update branding to 8.0.124", + "url": "https://github.com/dotnet/sdk/pull/52311", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@bdc3757" + }, + { + "id": "sdk@70bdf41", + "repo": "sdk", + "title": "Update branding to 8.0.418", + "url": "https://github.com/dotnet/sdk/pull/52312", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@70bdf41" + }, + { + "id": "sdk@3ce7bd3", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/msbuild", + "url": "https://github.com/dotnet/sdk/pull/52180", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3ce7bd3" + }, + { + "id": "sdk@9be0a7d", + "repo": "sdk", + "title": "[release/8.0.4xx] Update dependencies from dotnet/source-build-reference-packages", + "url": "https://github.com/dotnet/sdk/pull/52175", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9be0a7d" + }, + { + "id": "sdk@4934c8f", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52322", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4934c8f" + }, + { + "id": "sdk@c34be85", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/roslyn-analyzers", + "url": "https://github.com/dotnet/sdk/pull/52318", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c34be85" + }, + { + "id": "sdk@209a34e", + "repo": "sdk", + "title": "[release/8.0.4xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52340", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@209a34e" + }, + { + "id": "sdk@14848ba", + "repo": "sdk", + "title": "[release/8.0.4xx] Update dependencies from dotnet/source-build-externals", + "url": "https://github.com/dotnet/sdk/pull/52341", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@14848ba" + }, + { + "id": "sdk@4e6fb9d", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/roslyn", + "url": "https://github.com/dotnet/sdk/pull/52360", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4e6fb9d" + }, + { + "id": "sdk@45f21b3", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52034", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@45f21b3" + }, + { + "id": "sdk@a7e90c8", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/razor", + "url": "https://github.com/dotnet/sdk/pull/52125", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a7e90c8" + }, + { + "id": "sdk@d346139", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/source-build-reference-packages", + "url": "https://github.com/dotnet/sdk/pull/52173", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d346139" + }, + { + "id": "sdk@e055a32", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/source-build-externals", + "url": "https://github.com/dotnet/sdk/pull/52328", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e055a32" + }, + { + "id": "sdk@0af14fa", + "repo": "sdk", + "title": "[release/8.0.4xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52036", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0af14fa", + "labels": [ + "vs22Image" + ] + }, + { + "id": "sdk@7a1703f", + "repo": "sdk", + "title": "[automated] Merge branch 'release/8.0.3xx' => 'release/8.0.4xx'", + "url": "https://github.com/dotnet/sdk/pull/52083", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7a1703f" + }, + { + "id": "sdk@4c2926f", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/source-build-externals", + "url": "https://github.com/dotnet/sdk/pull/52345", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4c2926f" + }, + { + "id": "sdk@feeb179", + "repo": "sdk", + "title": "Update branding to 9.0.114", + "url": "https://github.com/dotnet/sdk/pull/52313", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@feeb179" + }, + { + "id": "sdk@193757a", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52099", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@193757a" + }, + { + "id": "sdk@e3808fd", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/roslyn-analyzers", + "url": "https://github.com/dotnet/sdk/pull/52366", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e3808fd" + }, + { + "id": "sdk@1f571f8", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/roslyn-analyzers", + "url": "https://github.com/dotnet/sdk/pull/52170", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1f571f8" + }, + { + "id": "sdk@c5fb73c", + "repo": "sdk", + "title": "[automated] Merge branch 'release/8.0.1xx' => 'release/8.0.4xx'", + "url": "https://github.com/dotnet/sdk/pull/52373", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c5fb73c" + }, + { + "id": "sdk@ed11d35", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/razor", + "url": "https://github.com/dotnet/sdk/pull/52289", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ed11d35" + }, + { + "id": "sdk@cbb2c65", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/52364", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@cbb2c65" + }, + { + "id": "sdk@364c48a", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/source-build-reference-packages", + "url": "https://github.com/dotnet/sdk/pull/52177", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@364c48a" + }, + { + "id": "sdk@3a8c6cc", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/msbuild", + "url": "https://github.com/dotnet/sdk/pull/52098", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3a8c6cc" + }, + { + "id": "sdk@ffcf676", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/roslyn", + "url": "https://github.com/dotnet/sdk/pull/52097", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ffcf676" + }, + { + "id": "sdk@e6a495f", + "repo": "sdk", + "title": "[automated] Merge branch 'release/8.0.4xx' => 'release/9.0.1xx'", + "url": "https://github.com/dotnet/sdk/pull/52374", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e6a495f" + }, + { + "id": "sdk@7ca3cac", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/52376", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7ca3cac" + }, + { + "id": "sdk@0337000", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52414", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0337000" + }, + { + "id": "sdk@8fbde9f", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52416", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8fbde9f" + }, + { + "id": "sdk@3582eea", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52417", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3582eea" + }, + { + "id": "sdk@d24aa91", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/52422", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d24aa91" + }, + { + "id": "sdk@c5e7703", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52424", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c5e7703" + }, + { + "id": "sdk@7e13368", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52443", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7e13368" + }, + { + "id": "sdk@e128c8a", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52444", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e128c8a" + }, + { + "id": "sdk@4c9e31c", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52446", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4c9e31c" + }, + { + "id": "sdk@0f8b0e3", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/52447", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0f8b0e3" + }, + { + "id": "sdk@1ba5960", + "repo": "sdk", + "title": "Fix OmniSharp tests silently passing on script execution failures", + "url": "https://github.com/dotnet/sdk/pull/52435", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1ba5960" + }, + { + "id": "sdk@7a5391d", + "repo": "sdk", + "title": "[release/8.0.1xx] Update dependencies from dotnet/razor", + "url": "https://github.com/dotnet/sdk/pull/52454", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7a5391d" + }, + { + "id": "sdk@1b6b76a", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/razor", + "url": "https://github.com/dotnet/sdk/pull/52455", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1b6b76a" + }, + { + "id": "sdk@dbc366b", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/roslyn", + "url": "https://github.com/dotnet/sdk/pull/52460", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@dbc366b" + }, + { + "id": "sdk@96dfed6", + "repo": "sdk", + "title": "Update branding to 9.0.311", + "url": "https://github.com/dotnet/sdk/pull/52461", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@96dfed6" + }, + { + "id": "sdk@43f4612", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/razor", + "url": "https://github.com/dotnet/sdk/pull/52475", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@43f4612" + }, + { + "id": "sdk@fff4134", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/52456", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@fff4134" + }, + { + "id": "sdk@8ce16af", + "repo": "sdk", + "title": "Merging internal commits for release/9.0.1xx", + "url": "https://github.com/dotnet/sdk/pull/52431", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8ce16af" + }, + { + "id": "sdk@ed16134", + "repo": "sdk", + "title": ".NET Source-Build 9.0.113 January 2026 Updates", + "url": "https://github.com/dotnet/sdk/pull/52437", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ed16134" + }, + { + "id": "sdk@1fd3502", + "repo": "sdk", + "title": "Merging internal commits for release/9.0.3xx", + "url": "https://github.com/dotnet/sdk/pull/52430", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1fd3502" + }, + { + "id": "sdk@2062568", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52498", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2062568" + }, + { + "id": "sdk@f95eda2", + "repo": "sdk", + "title": "Fix OmniSharp test failure", + "url": "https://github.com/dotnet/sdk/pull/52470", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f95eda2" + }, + { + "id": "sdk@8255399", + "repo": "sdk", + "title": "Merging internal commits for release/8.0.4xx", + "url": "https://github.com/dotnet/sdk/pull/52433", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8255399" + }, + { + "id": "sdk@cd3a71f", + "repo": "sdk", + "title": "Merging internal commits for release/8.0.1xx", + "url": "https://github.com/dotnet/sdk/pull/52432", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@cd3a71f" + }, + { + "id": "sdk@27dd11b", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52527", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@27dd11b" + }, + { + "id": "sdk@171977b", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52521", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@171977b" + }, + { + "id": "sdk@1e1cec6", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/52481", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1e1cec6" + }, + { + "id": "sdk@c08a02a", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52536", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c08a02a" + }, + { + "id": "sdk@d8aa6fd", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52522", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d8aa6fd" + }, + { + "id": "sdk@e41a21b", + "repo": "sdk", + "title": "[release/10.0.2xx] Adjust MTP exit code logic", + "url": "https://github.com/dotnet/sdk/pull/52543", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e41a21b", + "labels": [ + "Area-dotnet test", + "Area-dotnet test (MTP)" + ] + }, + { + "id": "sdk@9400f24", + "repo": "sdk", + "title": "[release/10.0.2xx] Handle assemblies gracefully", + "url": "https://github.com/dotnet/sdk/pull/52508", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9400f24", + "labels": [ + "Area-dotnet test", + "Area-dotnet test (MTP)" + ] + }, + { + "id": "sdk@70b0739", + "repo": "sdk", + "title": "[release/10.0.2xx] Refactor ANSI handling for better readability", + "url": "https://github.com/dotnet/sdk/pull/52548", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@70b0739", + "labels": [ + "Area-dotnet test", + "Area-dotnet test (MTP)" + ] + }, + { + "id": "sdk@1ac4527", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/razor", + "url": "https://github.com/dotnet/sdk/pull/52549", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1ac4527" + }, + { + "id": "sdk@74b28c0", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52546", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@74b28c0" + }, + { + "id": "sdk@1e311fe", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/msbuild", + "url": "https://github.com/dotnet/sdk/pull/52561", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1e311fe" + }, + { + "id": "sdk@a430e56", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/52559", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a430e56" + }, + { + "id": "sdk@99ed5a4", + "repo": "sdk", + "title": "[release/10.0.2xx] [dotnet test MTP]: Only use test progress when ANSI terminal", + "url": "https://github.com/dotnet/sdk/pull/52569", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@99ed5a4", + "labels": [ + "Area-dotnet test", + "Area-dotnet test (MTP)" + ] + }, + { + "id": "sdk@e6a41ba", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.3xx' => 'release/10.0.1xx'", + "url": "https://github.com/dotnet/sdk/pull/52375", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e6a41ba" + }, + { + "id": "sdk@2f84158", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52573", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2f84158" + }, + { + "id": "sdk@26247c1", + "repo": "sdk", + "title": "[release/10.0.2xx] Bump analysislevel constants for .NET 10 release", + "url": "https://github.com/dotnet/sdk/pull/52487", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@26247c1", + "labels": [ + "Servicing-approved", + "Area-Infrastructure", + "Area-Microsoft.CodeAnalysis.NetAnalyzers" + ] + }, + { + "id": "sdk@0957156", + "repo": "sdk", + "title": "Workaround: Fix setting checksum algorithm when mapping projects", + "url": "https://github.com/dotnet/sdk/pull/52578", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0957156" + }, + { + "id": "sdk@1348752", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/sdk/pull/52538", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1348752" + }, + { + "id": "sdk@e216b09", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.3xx' => 'release/10.0.1xx'", + "url": "https://github.com/dotnet/sdk/pull/52572", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e216b09" + }, + { + "id": "sdk@99ee676", + "repo": "sdk", + "title": "Update dependencies to the Jan release of the runtime", + "url": "https://github.com/dotnet/sdk/pull/52513", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@99ee676" + }, + { + "id": "sdk@7bcae52", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52595", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7bcae52" + }, + { + "id": "sdk@2fc1ed0", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52593", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2fc1ed0" + }, + { + "id": "sdk@6b83d8b", + "repo": "sdk", + "title": "Set working directory of dotnet test as env variable to child MTP test apps", + "url": "https://github.com/dotnet/sdk/pull/52570", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6b83d8b", + "labels": [ + "Area-dotnet test", + "Area-dotnet test (MTP)" + ] + }, + { + "id": "sdk@46f06ae", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/sdk/pull/52586", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@46f06ae" + }, + { + "id": "sdk@10b65e8", + "repo": "sdk", + "title": "Fix trusted root test layout", + "url": "https://github.com/dotnet/sdk/pull/52611", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@10b65e8" + }, + { + "id": "sdk@275e4bf", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52627", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@275e4bf" + }, + { + "id": "sdk@0b32584", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52626", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0b32584" + }, + { + "id": "sdk@da48935", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/sdk/pull/52629", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@da48935" + }, + { + "id": "sdk@2ea2c91", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52633", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2ea2c91" + }, + { + "id": "sdk@6a65951", + "repo": "sdk", + "title": "[release/10.0.1xx] Ignore trailing/leading whitespace when validating sarif files", + "url": "https://github.com/dotnet/sdk/pull/52638", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6a65951" + }, + { + "id": "sdk@bf06920", + "repo": "sdk", + "title": "Update VersionFeature80 and VersionFeature90 values to the Jan values", + "url": "https://github.com/dotnet/sdk/pull/52646", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@bf06920" + }, + { + "id": "sdk@cd44b29", + "repo": "sdk", + "title": "Do not assume ordering between stdout and stderr in tests", + "url": "https://github.com/dotnet/sdk/pull/52584", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@cd44b29" + }, + { + "id": "sdk@878d3e2", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52632", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@878d3e2" + }, + { + "id": "sdk@918016b", + "repo": "sdk", + "title": "[release/10.0.2xx] ProcessFrameworkReferences: use portable ILCompiler when RuntimeIdentifier is null.", + "url": "https://github.com/dotnet/sdk/pull/52486", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@918016b", + "labels": [ + "Servicing-approved", + "Area-NetSDK" + ] + }, + { + "id": "sdk@27df5c7", + "repo": "sdk", + "title": "`workload repair` can recover from corrupt workload sets", + "url": "https://github.com/dotnet/sdk/pull/52434", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@27df5c7", + "labels": [ + "Servicing-consider" + ] + }, + { + "id": "sdk@46a4d29", + "repo": "sdk", + "title": "[release/10.0.2xx] Add escape hatch for not setting a default PublishRuntimeIdentifier value.", + "url": "https://github.com/dotnet/sdk/pull/52691", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@46a4d29", + "labels": [ + "Area-NetSDK" + ] + }, + { + "id": "sdk@61d729a", + "repo": "sdk", + "title": "[release/10.0.1xx] ProcessFrameworkReferences: use portable ILCompiler when RuntimeIdentifier is null.", + "url": "https://github.com/dotnet/sdk/pull/52485", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@61d729a", + "labels": [ + "Servicing-approved", + "Area-NetSDK" + ] + }, + { + "id": "sdk@3065905", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/sdk/pull/52657", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3065905" + }, + { + "id": "sdk@a2fbbf0", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52673", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a2fbbf0" + }, + { + "id": "sdk@92f957c", + "repo": "sdk", + "title": "[release/10.0.1xx] Fix -extra container variant check to support .NET 9+", + "url": "https://github.com/dotnet/sdk/pull/52597", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@92f957c", + "labels": [ + "Servicing-approved", + "Area-Containers" + ] + }, + { + "id": "sdk@fab83c0", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52662", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@fab83c0" + }, + { + "id": "sdk@6afcec8", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52653", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6afcec8" + }, + { + "id": "sdk@1dc6008", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52703", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1dc6008" + }, + { + "id": "sdk@1db8003", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52652", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1db8003" + }, + { + "id": "sdk@321b67f", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/sdk/pull/52702", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@321b67f" + }, + { + "id": "sdk@e30dc41", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52723", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e30dc41" + }, + { + "id": "sdk@bc6b89b", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52725", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@bc6b89b" + }, + { + "id": "sdk@8a231e7", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52724", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8a231e7" + }, + { + "id": "sdk@f6e1cdd", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52726", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f6e1cdd" + }, + { + "id": "sdk@fb44937", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/sdk/pull/52728", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@fb44937" + }, + { + "id": "sdk@28580ca", + "repo": "sdk", + "title": "[release/10.0.2xx] Fix -extra container variant check to support .NET 9+", + "url": "https://github.com/dotnet/sdk/pull/52598", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@28580ca", + "labels": [ + "Servicing-approved", + "Area-Containers" + ] + }, + { + "id": "sdk@af70221", + "repo": "sdk", + "title": "[dotnet watch] Make application of changes always async", + "url": "https://github.com/dotnet/sdk/pull/52469", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@af70221" + }, + { + "id": "sdk@fadbc3c", + "repo": "sdk", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52585", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@fadbc3c" + }, + { + "id": "sdk@f26b426", + "repo": "sdk", + "title": "Port sdk-diff-tests and license-scan pipelines to 1ES pipeline templates", + "url": "https://github.com/dotnet/sdk/pull/52735", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f26b426", + "labels": [ + "Branch Lockdown" + ] + }, + { + "id": "sdk@d30c5b5", + "repo": "sdk", + "title": "[release/10.0.2xx] Fix content publish path calculation", + "url": "https://github.com/dotnet/sdk/pull/52736", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d30c5b5", + "labels": [ + "Area-NetSDK" + ] + }, + { + "id": "sdk@28084a7", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/52588", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@28084a7" + }, + { + "id": "sdk@6eaaea3", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52744", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6eaaea3" + }, + { + "id": "sdk@de7e4de", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52730", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@de7e4de" + }, + { + "id": "sdk@701e15b", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/sdk/pull/52745", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@701e15b" + }, + { + "id": "sdk@0b5cabd", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/52746", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0b5cabd" + }, + { + "id": "sdk@6d57490", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52748", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6d57490" + }, + { + "id": "sdk@b40543f", + "repo": "sdk", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 140: Build ID 2891567", + "url": "https://github.com/dotnet/sdk/pull/52747", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b40543f" + }, + { + "id": "sdk@343044b", + "repo": "sdk", + "title": "Add support for creating and editing solution filter (.slnf) files from the CLI", + "url": "https://github.com/dotnet/sdk/pull/51156", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@343044b", + "score": 8, + "score_reason": "CLI support for solution filters is broadly useful and immediately understandable for large-solution users.", + "score_breakdown": { + "breadth": 3, + "reader_value": 4, + "clarity": 1 + } + }, + { + "id": "sdk@ce2b7a5", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52760", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ce2b7a5" + }, + { + "id": "sdk@f8798d7", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52750", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f8798d7" + }, + { + "id": "sdk@688c757", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/52754", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@688c757" + }, + { + "id": "sdk@7f7901c", + "repo": "sdk", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 140: Build ID 2893098", + "url": "https://github.com/dotnet/sdk/pull/52766", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7f7901c" + }, + { + "id": "sdk@5a22127", + "repo": "sdk", + "title": "Style cleanup", + "url": "https://github.com/dotnet/sdk/pull/52751", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5a22127" + }, + { + "id": "sdk@13f08d3", + "repo": "sdk", + "title": "Update branding to 9.0.115", + "url": "https://github.com/dotnet/sdk/pull/52781", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@13f08d3", + "labels": [ + "Branch Lockdown" + ] + }, + { + "id": "sdk@46f0350", + "repo": "sdk", + "title": "Update branding to 9.0.312", + "url": "https://github.com/dotnet/sdk/pull/52782", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@46f0350", + "labels": [ + "Branch Lockdown" + ] + }, + { + "id": "sdk@2efe80f", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52776", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2efe80f" + }, + { + "id": "sdk@3defff8", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52590", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3defff8" + }, + { + "id": "sdk@67631a2", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52769", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@67631a2" + }, + { + "id": "sdk@3a0afa4", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52797", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3a0afa4" + }, + { + "id": "sdk@b0cb010", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/scenario-tests", + "url": "https://github.com/dotnet/sdk/pull/52624", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b0cb010" + }, + { + "id": "sdk@c9aec7d", + "repo": "sdk", + "title": "Update branding to 8.0.419", + "url": "https://github.com/dotnet/sdk/pull/52780", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c9aec7d", + "labels": [ + "Branch Lockdown" + ] + }, + { + "id": "sdk@7b1f17a", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52798", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7b1f17a" + }, + { + "id": "sdk@6f25088", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/52767", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6f25088" + }, + { + "id": "sdk@34884ac", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/scenario-tests", + "url": "https://github.com/dotnet/sdk/pull/52606", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@34884ac" + }, + { + "id": "sdk@3850bef", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52592", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3850bef" + }, + { + "id": "sdk@becbd7e", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/msbuild", + "url": "https://github.com/dotnet/sdk/pull/52594", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@becbd7e" + }, + { + "id": "sdk@7a2111b", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/roslyn-analyzers", + "url": "https://github.com/dotnet/sdk/pull/52667", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7a2111b" + }, + { + "id": "sdk@b9d31cb", + "repo": "sdk", + "title": "[automated] Merge branch 'release/8.0.1xx' => 'release/8.0.4xx'", + "url": "https://github.com/dotnet/sdk/pull/52530", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b9d31cb" + }, + { + "id": "sdk@f46c335", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52801", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f46c335" + }, + { + "id": "sdk@22254e6", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/source-build-reference-packages", + "url": "https://github.com/dotnet/sdk/pull/52591", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@22254e6" + }, + { + "id": "sdk@cd783aa", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52799", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@cd783aa" + }, + { + "id": "sdk@1ed2c06", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52786", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1ed2c06" + }, + { + "id": "sdk@a27297b", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/52739", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a27297b" + }, + { + "id": "sdk@3d51db5", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52823", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3d51db5" + }, + { + "id": "sdk@672cd33", + "repo": "sdk", + "title": "[automated] Merge branch 'release/8.0.4xx' => 'release/9.0.1xx'", + "url": "https://github.com/dotnet/sdk/pull/52529", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@672cd33" + }, + { + "id": "sdk@08c351c", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52827", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@08c351c" + }, + { + "id": "sdk@179cda2", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52826", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@179cda2" + }, + { + "id": "sdk@df91594", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/52828", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@df91594" + }, + { + "id": "sdk@f66d62e", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52830", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f66d62e" + }, + { + "id": "sdk@bd5d3af", + "repo": "sdk", + "title": "`dotnet run -e FOO=BAR` passes `@(RuntimeEnvironmentVariable)`", + "url": "https://github.com/dotnet/sdk/pull/52664", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@bd5d3af", + "score": 8, + "score_reason": "CLI env-var injection is an obvious workflow win that maps to a familiar Docker-style pattern.", + "score_breakdown": { + "breadth": 4, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "sdk@fdc6404", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52832", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@fdc6404" + }, + { + "id": "sdk@d8ba29e", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52831", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d8ba29e" + }, + { + "id": "sdk@cf2e5d6", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52844", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@cf2e5d6" + }, + { + "id": "sdk@8688b41", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52841", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8688b41" + }, + { + "id": "sdk@f7900e0", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52843", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f7900e0" + }, + { + "id": "sdk@e898f24", + "repo": "sdk", + "title": "[release/8.0.4xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52825", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e898f24" + }, + { + "id": "sdk@d74666a", + "repo": "sdk", + "title": "Fix DNX command casting error with DnxCommandDefinition", + "url": "https://github.com/dotnet/sdk/pull/52820", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d74666a", + "labels": [ + "Area-Tools" + ] + }, + { + "id": "sdk@b34aec9", + "repo": "sdk", + "title": "Increase mem alloc for license scanning container", + "url": "https://github.com/dotnet/sdk/pull/52857", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b34aec9" + }, + { + "id": "sdk@1819039", + "repo": "sdk", + "title": "Update locBranch to release/10.0.3xx", + "url": "https://github.com/dotnet/sdk/pull/52720", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1819039" + }, + { + "id": "sdk@7028695", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52842", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7028695" + }, + { + "id": "sdk@c9dc32c", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/scenario-tests", + "url": "https://github.com/dotnet/sdk/pull/52852", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c9dc32c" + }, + { + "id": "sdk@aeedfda", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52860", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@aeedfda" + }, + { + "id": "sdk@6bd81f1", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52868", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6bd81f1" + }, + { + "id": "sdk@2400fb7", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/scenario-tests", + "url": "https://github.com/dotnet/sdk/pull/52866", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2400fb7" + }, + { + "id": "sdk@f6c57fb", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52846", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f6c57fb" + }, + { + "id": "sdk@2cf45fe", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52869", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2cf45fe" + }, + { + "id": "sdk@8b46229", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/52848", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8b46229" + }, + { + "id": "sdk@4cd2fac", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52875", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4cd2fac" + }, + { + "id": "sdk@efe7617", + "repo": "sdk", + "title": "Refactor VSHostObject credential extraction for COM compatibility and out-of-process execution", + "url": "https://github.com/dotnet/sdk/pull/52856", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@efe7617", + "labels": [ + "Area-VS", + "Area-Containers" + ] + }, + { + "id": "sdk@e6fea27", + "repo": "sdk", + "title": "Update VersionFeature80 and VersionFeature90 calculations to Jan release", + "url": "https://github.com/dotnet/sdk/pull/52495", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e6fea27" + }, + { + "id": "sdk@166831f", + "repo": "sdk", + "title": "[release/10.0.1xx] Keep template_feed/../content/../.gitattributes in archives", + "url": "https://github.com/dotnet/sdk/pull/52771", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@166831f", + "labels": [ + "Servicing-approved", + "Area-Common templates" + ] + }, + { + "id": "sdk@8cef68e", + "repo": "sdk", + "title": "[release/10.0.2xx] Keep template_feed/../content/../.gitattributes in archives", + "url": "https://github.com/dotnet/sdk/pull/52772", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8cef68e", + "labels": [ + "Servicing-approved", + "Area-Common templates" + ] + }, + { + "id": "sdk@8a4a60a", + "repo": "sdk", + "title": "Update target framework visibility conditions and remove VS-specific error message", + "url": "https://github.com/dotnet/sdk/pull/52235", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8a4a60a", + "labels": [ + "Servicing-approved" + ] + }, + { + "id": "sdk@bb7d629", + "repo": "sdk", + "title": "Add .code-workspace files for all solutions", + "url": "https://github.com/dotnet/sdk/pull/52839", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@bb7d629" + }, + { + "id": "sdk@1eac263", + "repo": "sdk", + "title": "Lock around access to s_dynamicSymbols", + "url": "https://github.com/dotnet/sdk/pull/52887", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1eac263" + }, + { + "id": "sdk@5516079", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52892", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5516079" + }, + { + "id": "sdk@3249ae0", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52893", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3249ae0" + }, + { + "id": "sdk@6b09479", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52891", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6b09479" + }, + { + "id": "sdk@d0b6a66", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52890", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d0b6a66" + }, + { + "id": "sdk@d2f50cc", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52903", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d2f50cc" + }, + { + "id": "sdk@5ea71ae", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52902", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5ea71ae" + }, + { + "id": "sdk@9d5e578", + "repo": "sdk", + "title": "[release/8.0.4xx] Update dependencies from dotnet/razor", + "url": "https://github.com/dotnet/sdk/pull/52872", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9d5e578" + }, + { + "id": "sdk@de97864", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/52904", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@de97864" + }, + { + "id": "sdk@d71d920", + "repo": "sdk", + "title": "Fix vmr-license-scan pipeline for 1ES template compatibility", + "url": "https://github.com/dotnet/sdk/pull/52919", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d71d920" + }, + { + "id": "sdk@a087a43", + "repo": "sdk", + "title": "[release/10.0.3xx] [wasm] Embed HotReload in WebAssembly SDK", + "url": "https://github.com/dotnet/sdk/pull/52881", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a087a43" + }, + { + "id": "sdk@31812eb", + "repo": "sdk", + "title": "Improve MTP dotnet test error reporting", + "url": "https://github.com/dotnet/sdk/pull/52911", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@31812eb" + }, + { + "id": "sdk@5912358", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52927", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5912358" + }, + { + "id": "sdk@c63abe2", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52929", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c63abe2" + }, + { + "id": "sdk@acef1ca", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52931", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@acef1ca" + }, + { + "id": "sdk@1a3b359", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52921", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1a3b359" + }, + { + "id": "sdk@da5dcd2", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/52933", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@da5dcd2" + }, + { + "id": "sdk@3e70852", + "repo": "sdk", + "title": "Support boolean values for --self-contained flag", + "url": "https://github.com/dotnet/sdk/pull/52333", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3e70852" + }, + { + "id": "sdk@d6d1edd", + "repo": "sdk", + "title": "Merging internal commits for release/9.0.3xx", + "url": "https://github.com/dotnet/sdk/pull/52947", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d6d1edd" + }, + { + "id": "sdk@88dea37", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/source-build-reference-packages", + "url": "https://github.com/dotnet/sdk/pull/52928", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@88dea37", + "labels": [ + "Area-Containers" + ] + }, + { + "id": "sdk@d3ca184", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/scenario-tests", + "url": "https://github.com/dotnet/sdk/pull/52907", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d3ca184", + "labels": [ + "Area-Templates", + "Area-Watch" + ] + }, + { + "id": "sdk@d184b01", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52967", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d184b01" + }, + { + "id": "sdk@0e732ff", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52968", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0e732ff" + }, + { + "id": "sdk@ff55ce3", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52970", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ff55ce3" + }, + { + "id": "sdk@2d9da0a", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52971", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2d9da0a" + }, + { + "id": "sdk@8e95887", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/scenario-tests", + "url": "https://github.com/dotnet/sdk/pull/52925", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8e95887", + "labels": [ + "Area-Templates" + ] + }, + { + "id": "sdk@16fa16c", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/52923", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@16fa16c" + }, + { + "id": "sdk@ab41bd5", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/52969", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ab41bd5" + }, + { + "id": "sdk@9862ead", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52973", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9862ead" + }, + { + "id": "sdk@d50a67b", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52974", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d50a67b" + }, + { + "id": "sdk@971ea25", + "repo": "sdk", + "title": "[automated] Merge branch 'release/8.0.4xx' => 'release/9.0.1xx'", + "url": "https://github.com/dotnet/sdk/pull/52849", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@971ea25", + "labels": [ + "Area-Containers" + ] + }, + { + "id": "sdk@7c7e0ac", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/52972", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7c7e0ac" + }, + { + "id": "sdk@e6a56a3", + "repo": "sdk", + "title": "Update VersionFeature80 and VersionFeature90 values for Feb release", + "url": "https://github.com/dotnet/sdk/pull/52957", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e6a56a3" + }, + { + "id": "sdk@5262ee1", + "repo": "sdk", + "title": "Update release branch version in CI configuration", + "url": "https://github.com/dotnet/sdk/pull/52922", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5262ee1" + }, + { + "id": "sdk@b015d8d", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52979", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b015d8d" + }, + { + "id": "sdk@d07da7f", + "repo": "sdk", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/52941", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d07da7f", + "labels": [ + "Area-VMR" + ] + }, + { + "id": "sdk@081f309", + "repo": "sdk", + "title": "[dotnet-watch] Misc test and product reliability fixes", + "url": "https://github.com/dotnet/sdk/pull/52897", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@081f309" + }, + { + "id": "sdk@86a83ac", + "repo": "sdk", + "title": "Merging internal commits for release/9.0.1xx", + "url": "https://github.com/dotnet/sdk/pull/52946", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@86a83ac" + }, + { + "id": "sdk@e9c45e1", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/52975", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e9c45e1" + }, + { + "id": "sdk@6c4d38d", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/scenario-tests", + "url": "https://github.com/dotnet/sdk/pull/52981", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6c4d38d" + }, + { + "id": "sdk@1e4c40c", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/scenario-tests", + "url": "https://github.com/dotnet/sdk/pull/52998", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1e4c40c" + }, + { + "id": "sdk@43549ea", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53000", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@43549ea" + }, + { + "id": "sdk@1175a14", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/52995", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1175a14" + }, + { + "id": "sdk@d88e7c6", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/52999", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d88e7c6" + }, + { + "id": "sdk@075e8d7", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53003", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@075e8d7" + }, + { + "id": "sdk@7605d6f", + "repo": "sdk", + "title": "[MTP dotnet test]: Allow specifying project, solution, directory, or test modules as positional argument", + "url": "https://github.com/dotnet/sdk/pull/52449", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7605d6f", + "labels": [ + "Area-dotnet test", + "Area-dotnet test (MTP)" + ] + }, + { + "id": "sdk@a5af8d7", + "repo": "sdk", + "title": "Disable workspace-based development in settings", + "url": "https://github.com/dotnet/sdk/pull/52990", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a5af8d7" + }, + { + "id": "sdk@4fac7b7", + "repo": "sdk", + "title": "Update vmr-sync images to ubuntu 2204", + "url": "https://github.com/dotnet/sdk/pull/52992", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4fac7b7" + }, + { + "id": "sdk@c86db80", + "repo": "sdk", + "title": "Prevent Copilot from running dotnet format in PRs", + "url": "https://github.com/dotnet/sdk/pull/52989", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c86db80" + }, + { + "id": "sdk@54a8f45", + "repo": "sdk", + "title": "Merging internal commits for release/8.0.4xx", + "url": "https://github.com/dotnet/sdk/pull/52953", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@54a8f45" + }, + { + "id": "sdk@4d104f1", + "repo": "sdk", + "title": "Reject --add-source when package source mapping is enabled", + "url": "https://github.com/dotnet/sdk/pull/52863", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4d104f1", + "labels": [ + "Area-CLI" + ] + }, + { + "id": "sdk@4470296", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53011", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4470296" + }, + { + "id": "sdk@773768b", + "repo": "sdk", + "title": "Remove duplicate containers node", + "url": "https://github.com/dotnet/sdk/pull/53021", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@773768b" + }, + { + "id": "sdk@998e8be", + "repo": "sdk", + "title": "[release/9.0.3xx] Remove duplicate containers node", + "url": "https://github.com/dotnet/sdk/pull/53022", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@998e8be" + }, + { + "id": "sdk@788997e", + "repo": "sdk", + "title": "[automated] Merge branch 'release/8.0.4xx' => 'release/9.0.1xx'", + "url": "https://github.com/dotnet/sdk/pull/53013", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@788997e" + }, + { + "id": "sdk@d37e536", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/53008", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d37e536" + }, + { + "id": "sdk@313a703", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53024", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@313a703" + }, + { + "id": "sdk@6e84e96", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53025", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6e84e96" + }, + { + "id": "sdk@695247b", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53026", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@695247b" + }, + { + "id": "sdk@780ab9a", + "repo": "sdk", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 140: Build ID 2902832", + "url": "https://github.com/dotnet/sdk/pull/53009", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@780ab9a" + }, + { + "id": "sdk@285eea9", + "repo": "sdk", + "title": "Cleans up test package references and global usings", + "url": "https://github.com/dotnet/sdk/pull/53019", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@285eea9" + }, + { + "id": "sdk@07d7aa4", + "repo": "sdk", + "title": "[dotnet run] `$(Device)` global property missing during `DeployToDevice` target", + "url": "https://github.com/dotnet/sdk/pull/53018", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@07d7aa4" + }, + { + "id": "sdk@fd8454b", + "repo": "sdk", + "title": "Workaround for NuGet restore bug", + "url": "https://github.com/dotnet/sdk/pull/53020", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@fd8454b" + }, + { + "id": "sdk@65c7913", + "repo": "sdk", + "title": ".NET Source-Build 9.0.114 February 2026 Updates", + "url": "https://github.com/dotnet/sdk/pull/52962", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@65c7913" + }, + { + "id": "sdk@d95b8d9", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53039", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d95b8d9" + }, + { + "id": "sdk@5b3917a", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53033", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5b3917a" + }, + { + "id": "sdk@9396d43", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53040", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9396d43" + }, + { + "id": "sdk@23179aa", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53031", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@23179aa" + }, + { + "id": "sdk@d963b10", + "repo": "sdk", + "title": "Cleans up test package references and global usings", + "url": "https://github.com/dotnet/sdk/pull/53035", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d963b10", + "labels": [ + "Area-dotnet test" + ] + }, + { + "id": "sdk@3f9704d", + "repo": "sdk", + "title": "Remove TestCommandLine and custom test CLI infrastructure", + "url": "https://github.com/dotnet/sdk/pull/53063", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3f9704d", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "sdk@a8ad585", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53041", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a8ad585" + }, + { + "id": "sdk@ad91287", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53043", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ad91287" + }, + { + "id": "sdk@5a9be96", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53069", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5a9be96" + }, + { + "id": "sdk@013b8b3", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53044", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@013b8b3" + }, + { + "id": "sdk@e5a1567", + "repo": "sdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53053", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e5a1567", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@b5a4051", + "repo": "sdk", + "title": "Consolidate duplicate VSHostObject implementations", + "url": "https://github.com/dotnet/sdk/pull/53028", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b5a4051" + }, + { + "id": "sdk@ff21843", + "repo": "sdk", + "title": "Remove accidentally committed build duty report", + "url": "https://github.com/dotnet/sdk/pull/53075", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ff21843" + }, + { + "id": "sdk@e90c441", + "repo": "sdk", + "title": "Produce Windows archive tarballs", + "url": "https://github.com/dotnet/sdk/pull/52910", + "commit": "dotnet@252f779", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e90c441", + "score": 4, + "score_reason": "Windows tarballs help some packaging scenarios, but the audience is narrower than the core CLI features.", + "score_breakdown": { + "breadth": 1, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "sdk@6fc33a0", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53080", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6fc33a0" + }, + { + "id": "sdk@458ee8b", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53081", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@458ee8b" + }, + { + "id": "sdk@772465e", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53082", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@772465e" + }, + { + "id": "sdk@546f4be", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53083", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@546f4be" + }, + { + "id": "sdk@e9ee772", + "repo": "sdk", + "title": "Enable and fix WASM tests", + "url": "https://github.com/dotnet/sdk/pull/52960", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e9ee772" + }, + { + "id": "sdk@10359b4", + "repo": "sdk", + "title": "Refactor Hot Reload loop cancellation", + "url": "https://github.com/dotnet/sdk/pull/53048", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@10359b4" + }, + { + "id": "sdk@52e4ef1", + "repo": "sdk", + "title": "Remove failing assert from file-level directive parser", + "url": "https://github.com/dotnet/sdk/pull/53087", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@52e4ef1", + "labels": [ + "Area-run-file" + ] + }, + { + "id": "sdk@888e971", + "repo": "sdk", + "title": "[dotnet-watch] websocket transport for mobile", + "url": "https://github.com/dotnet/sdk/pull/52581", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@888e971" + }, + { + "id": "sdk@6e514f6", + "repo": "sdk", + "title": "Disable WASM tests on Linux", + "url": "https://github.com/dotnet/sdk/pull/53105", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6e514f6" + }, + { + "id": "sdk@f284d9f", + "repo": "sdk", + "title": "[release/10.0.3xx] Manual backflow of sdk release/10.0.3xx", + "url": "https://github.com/dotnet/sdk/pull/53090", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f284d9f" + }, + { + "id": "sdk@a17669f", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53095", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a17669f" + }, + { + "id": "sdk@dfa02f2", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53109", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@dfa02f2" + }, + { + "id": "sdk@7840886", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53110", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7840886" + }, + { + "id": "sdk@b6e2d4a", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53094", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b6e2d4a" + }, + { + "id": "sdk@6f97200", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53132", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6f97200" + }, + { + "id": "sdk@40b692f", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53131", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@40b692f" + }, + { + "id": "sdk@a104da2", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53130", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a104da2" + }, + { + "id": "sdk@32c9942", + "repo": "sdk", + "title": "File-based apps: add support for `#:include`", + "url": "https://github.com/dotnet/sdk/pull/52347", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@32c9942", + "labels": [ + "Area-run-file" + ], + "score": 7, + "score_reason": "File-based apps can now grow beyond a single file without losing the lightweight workflow.", + "score_breakdown": { + "breadth": 3, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "sdk@ba6ab4a", + "repo": "sdk", + "title": "Add DotNetSdkSupportsVSHostObjectRemoting property", + "url": "https://github.com/dotnet/sdk/pull/53100", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ba6ab4a" + }, + { + "id": "sdk@8cbac4a", + "repo": "sdk", + "title": "Clean up some file-based app APIs", + "url": "https://github.com/dotnet/sdk/pull/53056", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8cbac4a", + "labels": [ + "Area-run-file" + ] + }, + { + "id": "sdk@56e4fea", + "repo": "sdk", + "title": "Add flow from main to release/dnup", + "url": "https://github.com/dotnet/sdk/pull/53139", + "commit": "dotnet@4b95540", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@56e4fea" + }, + { + "id": "sdk@aad07f3", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53133", + "commit": "dotnet@e10ada3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@aad07f3" + }, + { + "id": "sdk@d40b218", + "repo": "sdk", + "title": "Move dotnet-format", + "url": "https://github.com/dotnet/sdk/pull/53138", + "commit": "dotnet@e10ada3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d40b218" + }, + { + "id": "sdk@18a5ef3", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53145", + "commit": "dotnet@e10ada3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@18a5ef3" + }, + { + "id": "sdk@f2f162f", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53146", + "commit": "dotnet@e10ada3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f2f162f" + }, + { + "id": "sdk@aa89ea0", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53147", + "commit": "dotnet@e10ada3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@aa89ea0" + }, + { + "id": "sdk@dd78739", + "repo": "sdk", + "title": "Refactor CliFolderPathCalculatorCore to support environment variable injection", + "url": "https://github.com/dotnet/sdk/pull/53124", + "commit": "dotnet@e10ada3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@dd78739", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "sdk@0cd3fa6", + "repo": "sdk", + "title": "Add agent definitions for reproducing SDK build-related issues, and analyzing reproduction binlogs", + "url": "https://github.com/dotnet/sdk/pull/52917", + "commit": "dotnet@e10ada3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0cd3fa6", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "sdk@a8c3d20", + "repo": "sdk", + "title": "Update RazorLangVersion to 10.0 in .NET 10.0.3xx", + "url": "https://github.com/dotnet/sdk/pull/53150", + "commit": "dotnet@e10ada3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a8c3d20" + }, + { + "id": "sdk@e720fab", + "repo": "sdk", + "title": "Desync CodeOwners for `dnup` merge flow", + "url": "https://github.com/dotnet/sdk/pull/53160", + "commit": "dotnet@e10ada3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e720fab" + }, + { + "id": "sdk@b6ecfca", + "repo": "sdk", + "title": "Rename BuiltInTools dir to Dotnet.Watch", + "url": "https://github.com/dotnet/sdk/pull/53159", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b6ecfca" + }, + { + "id": "sdk@94308f9", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/sdk/pull/52753", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@94308f9" + }, + { + "id": "sdk@0e13177", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.3xx' => 'release/10.0.1xx'", + "url": "https://github.com/dotnet/sdk/pull/52794", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0e13177" + }, + { + "id": "sdk@bc1e346", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/53002", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@bc1e346" + }, + { + "id": "sdk@0bc2b57", + "repo": "sdk", + "title": "[release/10.0.3xx] Add comprehensive LLM tool detection support (18 tools)", + "url": "https://github.com/dotnet/sdk/pull/52901", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0bc2b57" + }, + { + "id": "sdk@ec0dde2", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53166", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ec0dde2" + }, + { + "id": "sdk@716167b", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53167", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@716167b" + }, + { + "id": "sdk@4a8feb3", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/sdk/pull/53164", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4a8feb3" + }, + { + "id": "sdk@c5d7b4e", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53171", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c5d7b4e" + }, + { + "id": "sdk@db01067", + "repo": "sdk", + "title": "Fix dotnet host detection using GetFileNameWithoutExtension", + "url": "https://github.com/dotnet/sdk/pull/53157", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@db01067" + }, + { + "id": "sdk@64f31ca", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/53168", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@64f31ca" + }, + { + "id": "sdk@722383a", + "repo": "sdk", + "title": "Split ApplyDeltaTests into multiple types", + "url": "https://github.com/dotnet/sdk/pull/53158", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@722383a" + }, + { + "id": "sdk@bdb5a2a", + "repo": "sdk", + "title": "Consolidate file-level directive manipulation", + "url": "https://github.com/dotnet/sdk/pull/53136", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@bdb5a2a", + "labels": [ + "Area-run-file" + ] + }, + { + "id": "sdk@9568598", + "repo": "sdk", + "title": "Disambiguate Helix test runs in AzDO", + "url": "https://github.com/dotnet/sdk/pull/53176", + "commit": "dotnet@f335787", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9568598" + }, + { + "id": "sdk@449dad7", + "repo": "sdk", + "title": "Streamline web socket config, KestrelWebSocketServer impl", + "url": "https://github.com/dotnet/sdk/pull/53108", + "commit": "dotnet@d9d6b9c", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@449dad7" + }, + { + "id": "sdk@427fcd8", + "repo": "sdk", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 140: Build ID 2912121", + "url": "https://github.com/dotnet/sdk/pull/53123", + "commit": "dotnet@d9d6b9c", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@427fcd8" + }, + { + "id": "sdk@9b33c85", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/sdk/pull/53172", + "commit": "dotnet@d9d6b9c", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9b33c85" + }, + { + "id": "sdk@29dbf6c", + "repo": "sdk", + "title": "CA1708: Ignore 'extension' blocks for naming check.", + "url": "https://github.com/dotnet/sdk/pull/51838", + "commit": "dotnet@d9d6b9c", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@29dbf6c", + "labels": [ + "Area-Infrastructure", + "Area-Microsoft.CodeAnalysis.NetAnalyzers" + ] + }, + { + "id": "sdk@916b9a7", + "repo": "sdk", + "title": "Fix Locked comment tokens to include surrounding apostrophes in FileBasedProgramsResources.resx", + "url": "https://github.com/dotnet/sdk/pull/53180", + "commit": "dotnet@d9d6b9c", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@916b9a7", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "sdk@a583f95", + "repo": "sdk", + "title": "Fix tool install --source option not being respected for global and local tools", + "url": "https://github.com/dotnet/sdk/pull/52787", + "commit": "dotnet@d9d6b9c", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a583f95" + }, + { + "id": "sdk@bfa9395", + "repo": "sdk", + "title": "Migrate 5 MSBuild tasks to IMultiThreadableTask (Group 3: Package Assets & App Host)", + "url": "https://github.com/dotnet/sdk/pull/52938", + "commit": "dotnet@d9d6b9c", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@bfa9395" + }, + { + "id": "sdk@0fe9e20", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53186", + "commit": "dotnet@b892348", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0fe9e20" + }, + { + "id": "sdk@35ef523", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53185", + "commit": "dotnet@b892348", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@35ef523" + }, + { + "id": "sdk@8f293f2", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53184", + "commit": "dotnet@b892348", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8f293f2" + }, + { + "id": "sdk@e882731", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/53188", + "commit": "dotnet@b892348", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e882731" + }, + { + "id": "sdk@166668d", + "repo": "sdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53190", + "commit": "dotnet@b892348", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@166668d", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@165cc52", + "repo": "sdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53208", + "commit": "dotnet@131a5cd", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@165cc52", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@efbdd02", + "repo": "sdk", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 140: Build ID 2914767", + "url": "https://github.com/dotnet/sdk/pull/53195", + "commit": "dotnet@131a5cd", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@efbdd02" + }, + { + "id": "sdk@9d64690", + "repo": "sdk", + "title": "Fix ExcludeList handling in composite R2R and correct entry-point assembly metadata", + "url": "https://github.com/dotnet/sdk/pull/53084", + "commit": "dotnet@131a5cd", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9d64690" + }, + { + "id": "sdk@35e9e55", + "repo": "sdk", + "title": "Add multithreading tests for 5 validation-check tasks (Group 4)", + "url": "https://github.com/dotnet/sdk/pull/52937", + "commit": "dotnet@131a5cd", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@35e9e55" + }, + { + "id": "sdk@c7310ca", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53211", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c7310ca" + }, + { + "id": "sdk@7f1449e", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53220", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7f1449e" + }, + { + "id": "sdk@abd1b4d", + "repo": "sdk", + "title": "[main] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53096", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@abd1b4d", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@352097b", + "repo": "sdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53221", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@352097b", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@c69da70", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53219", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c69da70" + }, + { + "id": "sdk@1f2c468", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53225", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1f2c468" + }, + { + "id": "sdk@fff6e54", + "repo": "sdk", + "title": "[release/9.0.3xx] Update branding to 9.0.313", + "url": "https://github.com/dotnet/sdk/pull/53230", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@fff6e54" + }, + { + "id": "sdk@5a484c0", + "repo": "sdk", + "title": "Rename ms.docs to ms-docs in mcp.json", + "url": "https://github.com/dotnet/sdk/pull/53237", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5a484c0" + }, + { + "id": "sdk@103e96d", + "repo": "sdk", + "title": "[release/9.0.1xx] Update branding to 9.0.116", + "url": "https://github.com/dotnet/sdk/pull/53231", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@103e96d" + }, + { + "id": "sdk@827ffaa", + "repo": "sdk", + "title": "Remove workarounds for a fixed issue in run-file tests", + "url": "https://github.com/dotnet/sdk/pull/53214", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@827ffaa", + "labels": [ + "Area-run-file" + ] + }, + { + "id": "sdk@0c83b23", + "repo": "sdk", + "title": "[release/8.0.4xx] Update branding to 8.0.420", + "url": "https://github.com/dotnet/sdk/pull/53233", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0c83b23" + }, + { + "id": "sdk@262bf9c", + "repo": "sdk", + "title": "Added --framework arg to \"dotnet format\" to set TFM", + "url": "https://github.com/dotnet/sdk/pull/53202", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@262bf9c", + "labels": [ + "Area-Infrastructure" + ], + "score": 5, + "score_reason": "Multi-targeted projects benefit from a clear new CLI switch, but it is a smaller audience than the top items.", + "score_breakdown": { + "breadth": 2, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "sdk@b967128", + "repo": "sdk", + "title": "Remove approval prompt from `dotnet tool exec` - running dnx is implicit approval", + "url": "https://github.com/dotnet/sdk/pull/52956", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b967128", + "labels": [ + "Area-CLI", + "Area-Tools" + ], + "score": 5, + "score_reason": "Removing the extra approval prompt makes dnx and tool execution smoother in automation-heavy workflows.", + "score_breakdown": { + "breadth": 2, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "sdk@9edfcdc", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53228", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9edfcdc" + }, + { + "id": "sdk@3ab1bc4", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/53239", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3ab1bc4" + }, + { + "id": "sdk@8e5cc2e", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53248", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8e5cc2e" + }, + { + "id": "sdk@5eec490", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53249", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5eec490" + }, + { + "id": "sdk@1f62394", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/source-build-reference-packages", + "url": "https://github.com/dotnet/sdk/pull/53067", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1f62394" + }, + { + "id": "sdk@cb6c03b", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/53128", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@cb6c03b" + }, + { + "id": "sdk@dd6c2af", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/53238", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@dd6c2af" + }, + { + "id": "sdk@252ae5a", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/sdk/pull/53129", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@252ae5a" + }, + { + "id": "sdk@6c0056a", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/scenario-tests", + "url": "https://github.com/dotnet/sdk/pull/53155", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6c0056a" + }, + { + "id": "sdk@8467a15", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/scenario-tests", + "url": "https://github.com/dotnet/sdk/pull/53165", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8467a15" + }, + { + "id": "sdk@9bc68cc", + "repo": "sdk", + "title": "[main] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53247", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9bc68cc", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@a62bda4", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/53036", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a62bda4" + }, + { + "id": "sdk@14deca1", + "repo": "sdk", + "title": "Add a script that takes output of dotnet-watch tests and formats it to HTML that's easier to reason about", + "url": "https://github.com/dotnet/sdk/pull/53215", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@14deca1" + }, + { + "id": "sdk@ae9bd8c", + "repo": "sdk", + "title": "Fix ObjectDisposedException race condition in TimestampedFileLogger", + "url": "https://github.com/dotnet/sdk/pull/53241", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ae9bd8c" + }, + { + "id": "sdk@50f2f7f", + "repo": "sdk", + "title": "[release/9.0.3xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/53260", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@50f2f7f" + }, + { + "id": "sdk@dd9a9a8", + "repo": "sdk", + "title": "Add openbsd RID in SDK infra", + "url": "https://github.com/dotnet/sdk/pull/53227", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@dd9a9a8" + }, + { + "id": "sdk@49e2a87", + "repo": "sdk", + "title": "Port dotnet/runtime's ci-analysis skill", + "url": "https://github.com/dotnet/sdk/pull/53264", + "commit": "dotnet@856f699", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@49e2a87", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "sdk@6765a47", + "repo": "sdk", + "title": "Publish Microsoft.DotNet.ProjectTools package", + "url": "https://github.com/dotnet/sdk/pull/53265", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6765a47" + }, + { + "id": "sdk@09fa7fa", + "repo": "sdk", + "title": "[release/9.0.1xx] Update dependencies from dotnet/templating", + "url": "https://github.com/dotnet/sdk/pull/53259", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@09fa7fa" + }, + { + "id": "sdk@98acb9a", + "repo": "sdk", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 140: Build ID 2918587", + "url": "https://github.com/dotnet/sdk/pull/53244", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@98acb9a" + }, + { + "id": "sdk@73c46a2", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53262", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@73c46a2" + }, + { + "id": "sdk@887959b", + "repo": "sdk", + "title": "Watch Aspire", + "url": "https://github.com/dotnet/sdk/pull/53192", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@887959b", + "labels": [ + "Area-Watch" + ], + "score": 6, + "score_reason": "Aspire users can now keep more of their inner loop inside dotnet watch, which is a meaningful developer story.", + "score_breakdown": { + "breadth": 2, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "sdk@b21f089", + "repo": "sdk", + "title": "[main] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53273", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b21f089", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@beac916", + "repo": "sdk", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 140: Build ID 2918883", + "url": "https://github.com/dotnet/sdk/pull/53270", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@beac916" + }, + { + "id": "sdk@7986874", + "repo": "sdk", + "title": "[automated] Merge branch 'release/8.0.4xx' => 'release/9.0.1xx'", + "url": "https://github.com/dotnet/sdk/pull/53245", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7986874" + }, + { + "id": "sdk@6cbef60", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53276", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6cbef60" + }, + { + "id": "sdk@436f454", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53275", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@436f454" + }, + { + "id": "sdk@dfc4679", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/53269", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@dfc4679" + }, + { + "id": "sdk@6a12dff", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53277", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6a12dff" + }, + { + "id": "sdk@e7eeb60", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53279", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e7eeb60" + }, + { + "id": "sdk@32ad88a", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/sdk/pull/53007", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@32ad88a" + }, + { + "id": "sdk@5f324eb", + "repo": "sdk", + "title": "Enable R2R crossgen for DotnetTools .NET Core assemblies", + "url": "https://github.com/dotnet/sdk/pull/53266", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5f324eb" + }, + { + "id": "sdk@94a9db1", + "repo": "sdk", + "title": "Use FrameworkList.xml instead of hard-coding references and analyzers in optimized CSC-only file-based app builds", + "url": "https://github.com/dotnet/sdk/pull/53205", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@94a9db1", + "labels": [ + "Area-run-file" + ] + }, + { + "id": "sdk@a0f0828", + "repo": "sdk", + "title": "Add --delete-source option and interactive prompt to project convert", + "url": "https://github.com/dotnet/sdk/pull/52802", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a0f0828", + "labels": [ + "Area-run-file" + ] + }, + { + "id": "sdk@0cafe54", + "repo": "sdk", + "title": "Refactor compatibility tools to use parameter objects instead of long parameter lists", + "url": "https://github.com/dotnet/sdk/pull/53213", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0cafe54" + }, + { + "id": "sdk@ad640d4", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53296", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ad640d4" + }, + { + "id": "sdk@f2ce0d8", + "repo": "sdk", + "title": "[main] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53294", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f2ce0d8", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@4e7db90", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53295", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4e7db90" + }, + { + "id": "sdk@5bb7e31", + "repo": "sdk", + "title": "Fix directory handling as positional argument for MTP dotnet test", + "url": "https://github.com/dotnet/sdk/pull/53302", + "commit": "dotnet@21d3994", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5bb7e31" + }, + { + "id": "sdk@4325a44", + "repo": "sdk", + "title": "[MTP dotnet test]: Allow specifying project, solution, directory, or test modules as positional argument", + "url": "https://github.com/dotnet/sdk/pull/53004", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4325a44" + }, + { + "id": "sdk@6f2f88e", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/53223", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6f2f88e" + }, + { + "id": "sdk@a6819d6", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.3xx' => 'release/10.0.1xx'", + "url": "https://github.com/dotnet/sdk/pull/53236", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a6819d6" + }, + { + "id": "sdk@7080cc0", + "repo": "sdk", + "title": "[dotnet run/watch] gracefully handle Ctrl+C for Windows (WinForms, WPF, MAUI)", + "url": "https://github.com/dotnet/sdk/pull/53127", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7080cc0", + "score": 6, + "score_reason": "Graceful Ctrl+C handling removes a real annoyance in local desktop-app development loops.", + "score_breakdown": { + "breadth": 2, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "sdk@9946ecd", + "repo": "sdk", + "title": "Fix stdout suppression in dotnet watch with --no-hot-reload", + "url": "https://github.com/dotnet/sdk/pull/52836", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9946ecd" + }, + { + "id": "sdk@e0cdbcb", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53310", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e0cdbcb" + }, + { + "id": "sdk@780271d", + "repo": "sdk", + "title": "[release/10.0.3xx] Fix dotnet test hang when the test app process exits but a child process of it remains alive", + "url": "https://github.com/dotnet/sdk/pull/53321", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@780271d" + }, + { + "id": "sdk@6b60ba3", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53316", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6b60ba3" + }, + { + "id": "sdk@3518f9c", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53317", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3518f9c" + }, + { + "id": "sdk@7af211a", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53320", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7af211a" + }, + { + "id": "sdk@b29023f", + "repo": "sdk", + "title": "Localized file check-in by OneLocBuild Task: Build definition ID 140: Build ID 2921244", + "url": "https://github.com/dotnet/sdk/pull/53323", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b29023f" + }, + { + "id": "sdk@86c075f", + "repo": "sdk", + "title": "[main] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53315", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@86c075f", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@de18352", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/sdk/pull/53288", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@de18352" + }, + { + "id": "sdk@986441e", + "repo": "sdk", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53250", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@986441e", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@d71a4a1", + "repo": "sdk", + "title": "Automatically generate embedded file contents for optimized run-file path", + "url": "https://github.com/dotnet/sdk/pull/53086", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d71a4a1", + "labels": [ + "Area-run-file" + ] + }, + { + "id": "sdk@b6ddae7", + "repo": "sdk", + "title": "[Static Web Assets] Add Framework SourceType for static web assets", + "url": "https://github.com/dotnet/sdk/pull/53135", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b6ddae7", + "labels": [ + "Area-AspNetCore" + ] + }, + { + "id": "sdk@f536e4b", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/sdk/pull/53312", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f536e4b" + }, + { + "id": "sdk@3420fd3", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/53327", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3420fd3" + }, + { + "id": "sdk@f455dfc", + "repo": "sdk", + "title": "Fix static lock in TestApplicationActionQueue", + "url": "https://github.com/dotnet/sdk/pull/53304", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f455dfc" + }, + { + "id": "sdk@e3a5ef5", + "repo": "sdk", + "title": "Fix MTP message handling bugs in TestApplicationHandler", + "url": "https://github.com/dotnet/sdk/pull/53303", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e3a5ef5" + }, + { + "id": "sdk@159d81a", + "repo": "sdk", + "title": "Revert \"Disable macOS AMD64 TemplateEngine test leg\"", + "url": "https://github.com/dotnet/sdk/pull/53286", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@159d81a", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "sdk@8b2e64c", + "repo": "sdk", + "title": "Backport changes from main", + "url": "https://github.com/dotnet/sdk/pull/53293", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8b2e64c" + }, + { + "id": "sdk@81cc643", + "repo": "sdk", + "title": "Implement auto-relaunch on process crash", + "url": "https://github.com/dotnet/sdk/pull/53314", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@81cc643", + "score": 6, + "score_reason": "Auto-relaunch on crash improves the local edit-run-debug loop without extra setup.", + "score_breakdown": { + "breadth": 2, + "reader_value": 3, + "clarity": 1 + } + }, + { + "id": "sdk@1ebefc1", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53339", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1ebefc1" + }, + { + "id": "sdk@508508e", + "repo": "sdk", + "title": "[main] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53347", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@508508e", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@8fd528b", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53349", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@8fd528b" + }, + { + "id": "sdk@c98d45a", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53348", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c98d45a" + }, + { + "id": "sdk@27e0106", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53351", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@27e0106" + }, + { + "id": "sdk@c40f47f", + "repo": "sdk", + "title": "Ensure csc.rsp is always written to disk with dotnet run and dotnet build", + "url": "https://github.com/dotnet/sdk/pull/53235", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c40f47f", + "labels": [ + "Area-run-file" + ] + }, + { + "id": "sdk@2a02bdf", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53352", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2a02bdf" + }, + { + "id": "sdk@027e1c8", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/sdk/pull/53346", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@027e1c8" + }, + { + "id": "sdk@9223f30", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/53338", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9223f30" + }, + { + "id": "sdk@5dd4512", + "repo": "sdk", + "title": "Merging internal commits for release/9.0.3xx", + "url": "https://github.com/dotnet/sdk/pull/53363", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5dd4512" + }, + { + "id": "sdk@c182a90", + "repo": "sdk", + "title": "[main] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53373", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c182a90", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@07a6324", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53376", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@07a6324" + }, + { + "id": "sdk@f7585ed", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53372", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f7585ed" + }, + { + "id": "sdk@a616955", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53375", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a616955" + }, + { + "id": "sdk@e05d09b", + "repo": "sdk", + "title": "Add `--artifacts-path` support to `dotnet test` in MTP mode", + "url": "https://github.com/dotnet/sdk/pull/53353", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e05d09b", + "score": 5, + "score_reason": "More consistent test output placement is useful for automation and CI workflows.", + "score_breakdown": { + "breadth": 2, + "reader_value": 2, + "clarity": 1 + } + }, + { + "id": "sdk@f593c0b", + "repo": "sdk", + "title": "Merging internal commits for release/9.0.1xx", + "url": "https://github.com/dotnet/sdk/pull/53362", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f593c0b" + }, + { + "id": "sdk@7f7422e", + "repo": "sdk", + "title": "Fix crash in VSTestForwardingApp when trace is enabled with empty args", + "url": "https://github.com/dotnet/sdk/pull/53307", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7f7422e" + }, + { + "id": "sdk@72febf2", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.3xx' => 'release/10.0.1xx'", + "url": "https://github.com/dotnet/sdk/pull/53367", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@72febf2" + }, + { + "id": "sdk@5c9ff29", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/53364", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5c9ff29" + }, + { + "id": "sdk@adccf6a", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/sdk/pull/53379", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@adccf6a" + }, + { + "id": "sdk@c08610f", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/53390", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c08610f" + }, + { + "id": "sdk@372de0d", + "repo": "sdk", + "title": "Support UTF-16 BOM in global.json", + "url": "https://github.com/dotnet/sdk/pull/53141", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@372de0d", + "labels": [ + "Area-Workloads" + ] + }, + { + "id": "sdk@f3f14ed", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/sdk/pull/53332", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f3f14ed" + }, + { + "id": "sdk@d9a3df1", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53381", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d9a3df1" + }, + { + "id": "sdk@7d19864", + "repo": "sdk", + "title": "Convert from NewtonSoft.Json to System.Text.Json", + "url": "https://github.com/dotnet/sdk/pull/53345", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7d19864", + "labels": [ + "Area-AspNetCore" + ] + }, + { + "id": "sdk@2ae259a", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53404", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2ae259a" + }, + { + "id": "sdk@2205c5b", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53403", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2205c5b" + }, + { + "id": "sdk@521bd74", + "repo": "sdk", + "title": "[main] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53402", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@521bd74", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@b98e0dd", + "repo": "sdk", + "title": "Fix dotnet remove package project argument not recognized", + "url": "https://github.com/dotnet/sdk/pull/53401", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b98e0dd", + "labels": [ + "Area-CLI" + ] + }, + { + "id": "sdk@d7500f5", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/53394", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d7500f5" + }, + { + "id": "sdk@6ac4115", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/sdk/pull/53398", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6ac4115" + }, + { + "id": "sdk@b4670c6", + "repo": "sdk", + "title": "[automated] Merge branch 'release/9.0.3xx' => 'release/10.0.1xx'", + "url": "https://github.com/dotnet/sdk/pull/53397", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b4670c6" + }, + { + "id": "sdk@0a4649b", + "repo": "sdk", + "title": "Adds backport label to backport workflow PRs", + "url": "https://github.com/dotnet/sdk/pull/53340", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0a4649b" + }, + { + "id": "sdk@fa5d8d2", + "repo": "sdk", + "title": "Use new .NET", + "url": "https://github.com/dotnet/sdk/pull/45637", + "commit": "dotnet@08e21da", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@fa5d8d2", + "labels": [ + "Area-Infrastructure", + "untriaged" + ] + }, + { + "id": "sdk@0a3db7f", + "repo": "sdk", + "title": "Update LLM telemetry to include a newer copilot env and an additional LLM", + "url": "https://github.com/dotnet/sdk/pull/53334", + "commit": "dotnet@bce25ed", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0a3db7f", + "labels": [ + "Area-Telemetry" + ] + }, + { + "id": "sdk@c61f174", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53432", + "commit": "dotnet@bce25ed", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c61f174" + }, + { + "id": "sdk@fd07f07", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53430", + "commit": "dotnet@bce25ed", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@fd07f07" + }, + { + "id": "sdk@85a42bd", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53433", + "commit": "dotnet@bce25ed", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@85a42bd" + }, + { + "id": "sdk@c37c9c7", + "repo": "sdk", + "title": "[main] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53431", + "commit": "dotnet@bce25ed", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@c37c9c7", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@e4f6e1e", + "repo": "sdk", + "title": "Keep `.cs` in file-based app virtual `.csproj` file name", + "url": "https://github.com/dotnet/sdk/pull/53182", + "commit": "dotnet@bce25ed", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e4f6e1e", + "labels": [ + "Area-run-file" + ] + }, + { + "id": "sdk@7f56893", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/53420", + "commit": "dotnet@bce25ed", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@7f56893" + }, + { + "id": "sdk@e2c08c6", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/sdk/pull/53421", + "commit": "dotnet@bce25ed", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e2c08c6" + }, + { + "id": "sdk@57a4a8a", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/sdk/pull/53417", + "commit": "dotnet@bce25ed", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@57a4a8a" + }, + { + "id": "sdk@1179c9b", + "repo": "sdk", + "title": "Fix `dotnet tool exec` / `dnx` failing when tool exists in `dotnet-tools.json` but not yet restored", + "url": "https://github.com/dotnet/sdk/pull/53361", + "commit": "dotnet@30bf7b3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1179c9b" + }, + { + "id": "sdk@33f0825", + "repo": "sdk", + "title": "[release/10.0.3xx] Fix dotnet remove package project argument", + "url": "https://github.com/dotnet/sdk/pull/53419", + "commit": "dotnet@30bf7b3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@33f0825" + }, + { + "id": "sdk@6caee54", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53435", + "commit": "dotnet@30bf7b3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6caee54" + }, + { + "id": "sdk@9cd9ee7", + "repo": "sdk", + "title": "Delete unused LibraryImport call", + "url": "https://github.com/dotnet/sdk/pull/53428", + "commit": "dotnet@30bf7b3", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9cd9ee7" + }, + { + "id": "sdk@98200d0", + "repo": "sdk", + "title": "Strip fingerprint tokens from path in MaterializeFrameworkAsset", + "url": "https://github.com/dotnet/sdk/pull/53465", + "commit": "dotnet@8301b7f", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@98200d0", + "labels": [ + "StaticWebAssets", + "Area: StaticWebAssets" + ] + }, + { + "id": "sdk@4e14aaa", + "repo": "sdk", + "title": "[release/10.0.2xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53458", + "commit": "dotnet@56dbb5a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4e14aaa" + }, + { + "id": "sdk@9cc0024", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53462", + "commit": "dotnet@56dbb5a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9cc0024" + }, + { + "id": "sdk@5589967", + "repo": "sdk", + "title": "[main] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53456", + "commit": "dotnet@56dbb5a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@5589967", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@4a08e99", + "repo": "sdk", + "title": "[release/10.0.1xx] Update dependencies from microsoft/testfx", + "url": "https://github.com/dotnet/sdk/pull/53457", + "commit": "dotnet@56dbb5a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4a08e99" + }, + { + "id": "sdk@a3fd4e6", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53477", + "commit": "dotnet@56dbb5a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a3fd4e6" + }, + { + "id": "sdk@a6af779", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/sdk/pull/53451", + "commit": "dotnet@56dbb5a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@a6af779" + }, + { + "id": "sdk@e77dc28", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/53445", + "commit": "dotnet@56dbb5a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e77dc28" + }, + { + "id": "sdk@554315e", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/sdk/pull/53459", + "commit": "dotnet@56dbb5a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@554315e" + }, + { + "id": "sdk@b50856e", + "repo": "sdk", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53284", + "commit": "dotnet@56dbb5a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b50856e" + }, + { + "id": "sdk@9ea900a", + "repo": "sdk", + "title": "Implements target framework selection for multi-targeted projects", + "url": "https://github.com/dotnet/sdk/pull/53466", + "commit": "dotnet@56dbb5a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9ea900a" + }, + { + "id": "sdk@31f158e", + "repo": "sdk", + "title": "Assert trusted roots relative path with respect to NuGet.Packaging", + "url": "https://github.com/dotnet/sdk/pull/53449", + "commit": "dotnet@56dbb5a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@31f158e", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "sdk@073bd0d", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53484", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@073bd0d" + }, + { + "id": "sdk@e0a6b80", + "repo": "sdk", + "title": "Improve shutdown sequence of Aspire service and fix race condition", + "url": "https://github.com/dotnet/sdk/pull/53271", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e0a6b80" + }, + { + "id": "sdk@245f8fa", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/sdk/pull/53482", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@245f8fa" + }, + { + "id": "sdk@e236a02", + "repo": "sdk", + "title": "Use new API for parsing binary logger parameter", + "url": "https://github.com/dotnet/sdk/pull/53492", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@e236a02" + }, + { + "id": "sdk@cc1b30e", + "repo": "sdk", + "title": "Update VersionFeature80 and VersionFeature90 values for March releases", + "url": "https://github.com/dotnet/sdk/pull/53415", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@cc1b30e" + }, + { + "id": "sdk@d60ba8e", + "repo": "sdk", + "title": "Update version features for March releases", + "url": "https://github.com/dotnet/sdk/pull/53416", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@d60ba8e", + "labels": [ + "Area-CodeFlow" + ] + }, + { + "id": "sdk@3f09f97", + "repo": "sdk", + "title": "Avoid crossgening dotnet-watch startup hooks", + "url": "https://github.com/dotnet/sdk/pull/53501", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@3f09f97" + }, + { + "id": "sdk@93b4dfc", + "repo": "sdk", + "title": "Include localPath in deps.json for runtime assets", + "url": "https://github.com/dotnet/sdk/pull/50120", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@93b4dfc" + }, + { + "id": "sdk@53c99bb", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/53483", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@53c99bb" + }, + { + "id": "sdk@40d4c60", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/sdk/pull/53493", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@40d4c60" + }, + { + "id": "sdk@9dfedf8", + "repo": "sdk", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sdk/pull/53502", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@9dfedf8" + }, + { + "id": "sdk@4adf9e6", + "repo": "sdk", + "title": "Fix output validation in LaunchesBrowserOnStart test", + "url": "https://github.com/dotnet/sdk/pull/53498", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@4adf9e6" + }, + { + "id": "sdk@f062f1b", + "repo": "sdk", + "title": "Cleanup style: unused usings and file-scoped namespaces", + "url": "https://github.com/dotnet/sdk/pull/53491", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f062f1b" + }, + { + "id": "sdk@0f014ce", + "repo": "sdk", + "title": "Fix CA1825 false positive on collection expressions", + "url": "https://github.com/dotnet/sdk/pull/53521", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0f014ce", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "sdk@aa0ce65", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/53506", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@aa0ce65" + }, + { + "id": "sdk@ba5bec9", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/sdk/pull/53507", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@ba5bec9" + }, + { + "id": "sdk@330bcff", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/sdk/pull/53527", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@330bcff" + }, + { + "id": "sdk@1a55591", + "repo": "sdk", + "title": "Refactor MTP command", + "url": "https://github.com/dotnet/sdk/pull/53504", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@1a55591" + }, + { + "id": "sdk@24d6259", + "repo": "sdk", + "title": "[Static Web Assets] Add SWA agent and skills for Static Web Assets development", + "url": "https://github.com/dotnet/sdk/pull/53496", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@24d6259", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "sdk@0e67373", + "repo": "sdk", + "title": "Do not include forwarded --target option in build arguments", + "url": "https://github.com/dotnet/sdk/pull/53503", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@0e67373" + }, + { + "id": "sdk@edd676d", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/sdk/pull/53499", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@edd676d" + }, + { + "id": "sdk@6e321aa", + "repo": "sdk", + "title": "[dotnet run] Fix `NETSDK1005` when project refs different TFMs", + "url": "https://github.com/dotnet/sdk/pull/53523", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@6e321aa" + }, + { + "id": "sdk@b500038", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/sdk/pull/53541", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@b500038" + }, + { + "id": "sdk@2122e7d", + "repo": "sdk", + "title": "Move SDK task unit test projects from src/ to test/ and rename to *.Tests", + "url": "https://github.com/dotnet/sdk/pull/53544", + "commit": "dotnet@bebe99a", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@2122e7d" + }, + { + "id": "sdk@756927a", + "repo": "sdk", + "title": "Avoid redirecting process output", + "url": "https://github.com/dotnet/sdk/pull/53539", + "commit": "dotnet@86f9e88", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@756927a" + }, + { + "id": "sdk@734412e", + "repo": "sdk", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/sdk/pull/53552", + "commit": "dotnet@86f9e88", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@734412e" + }, + { + "id": "sdk@f25f310", + "repo": "sdk", + "title": "Add --strip-inlining-info and --strip-debug-info crossgen2 args for Apple mobile RIDs", + "url": "https://github.com/dotnet/sdk/pull/53514", + "commit": "dotnet@86f9e88", + "is_security": false, + "product": "dotnet-sdk", + "local_repo_commit": "sdk@f25f310", + "labels": [ + "Area-Infrastructure" + ] + }, + { + "id": "source-build-reference-packages@f9f00a7", + "repo": "source-build-reference-packages", + "title": "Remove non-standard clean.sh script", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1575", + "commit": "dotnet@4230e45", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@f9f00a7" + }, + { + "id": "source-build-reference-packages@d492faa", + "repo": "source-build-reference-packages", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1572", + "commit": "dotnet@4230e45", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@d492faa" + }, + { + "id": "source-build-reference-packages@79173d7", + "repo": "source-build-reference-packages", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1576", + "commit": "dotnet@e95736f", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@79173d7" + }, + { + "id": "source-build-reference-packages@53df2d8", + "repo": "source-build-reference-packages", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1578", + "commit": "dotnet@e95736f", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@53df2d8" + }, + { + "id": "source-build-reference-packages@fada075", + "repo": "source-build-reference-packages", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1580", + "commit": "dotnet@0b1d6b6", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@fada075" + }, + { + "id": "source-build-reference-packages@867c96d", + "repo": "source-build-reference-packages", + "title": "Update dependencies from build 304069", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1586", + "commit": "dotnet@4170dc2", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@867c96d" + }, + { + "id": "source-build-reference-packages@31d66da", + "repo": "source-build-reference-packages", + "title": "Update dependencies from build 304338", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1588", + "commit": "dotnet@4170dc2", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@31d66da" + }, + { + "id": "source-build-reference-packages@c2b75e4", + "repo": "source-build-reference-packages", + "title": "Update dependencies from build 304425", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1590", + "commit": "dotnet@4170dc2", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@c2b75e4" + }, + { + "id": "source-build-reference-packages@126ae71", + "repo": "source-build-reference-packages", + "title": "Add external antlr4 project", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1585", + "commit": "dotnet@4170dc2", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@126ae71" + }, + { + "id": "source-build-reference-packages@b83413a", + "repo": "source-build-reference-packages", + "title": "Build antlr4 nupkg", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1594", + "commit": "dotnet@be4d18a", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@b83413a" + }, + { + "id": "source-build-reference-packages@4b65ca1", + "repo": "source-build-reference-packages", + "title": "Update dependencies from build 304998", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1593", + "commit": "dotnet@5aace91", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@4b65ca1" + }, + { + "id": "source-build-reference-packages@5204ad3", + "repo": "source-build-reference-packages", + "title": "Update dependencies from build 305296", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1595", + "commit": "dotnet@5aace91", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@5204ad3" + }, + { + "id": "source-build-reference-packages@36e942f", + "repo": "source-build-reference-packages", + "title": "Set SourceRevisionId for external packages to match original repo commit", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1597", + "commit": "dotnet@5aace91", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@36e942f" + }, + { + "id": "source-build-reference-packages@88e2559", + "repo": "source-build-reference-packages", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1598", + "commit": "dotnet@5aace91", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@88e2559" + }, + { + "id": "source-build-reference-packages@ccbef8c", + "repo": "source-build-reference-packages", + "title": "Update dependencies from build 305927", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1600", + "commit": "dotnet@a650f55", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@ccbef8c" + }, + { + "id": "source-build-reference-packages@2b29460", + "repo": "source-build-reference-packages", + "title": "Use azurelinux 3 build image on Linux", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1603", + "commit": "dotnet@a650f55", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@2b29460" + }, + { + "id": "source-build-reference-packages@5711e1f", + "repo": "source-build-reference-packages", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1604", + "commit": "dotnet@747a8af", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@5711e1f" + }, + { + "id": "source-build-reference-packages@314d773", + "repo": "source-build-reference-packages", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1606", + "commit": "dotnet@747a8af", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@314d773" + }, + { + "id": "source-build-reference-packages@5037ba0", + "repo": "source-build-reference-packages", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1607", + "commit": "dotnet@81bdad2", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@5037ba0" + }, + { + "id": "source-build-reference-packages@d90fb2a", + "repo": "source-build-reference-packages", + "title": "Update dependencies from build 307311", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1608", + "commit": "dotnet@81bdad2", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@d90fb2a" + }, + { + "id": "source-build-reference-packages@31ef23e", + "repo": "source-build-reference-packages", + "title": "Set deterministic FileVersion for IdentityModel to match MSFT-shipped packages", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1610", + "commit": "dotnet@81bdad2", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@31ef23e" + }, + { + "id": "source-build-reference-packages@66ddf29", + "repo": "source-build-reference-packages", + "title": "Prevent VMR commit hash from being appended to Microsoft.Css.Parser InformationalVersion", + "url": "https://github.com/dotnet/source-build-reference-packages/pull/1612", + "commit": "dotnet@81bdad2", + "is_security": false, + "local_repo_commit": "source-build-reference-packages@66ddf29" + }, + { + "id": "sourcelink@aac1618", + "repo": "sourcelink", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sourcelink/pull/1548", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@aac1618" + }, + { + "id": "sourcelink@b25d37e", + "repo": "sourcelink", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sourcelink/pull/1549", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@b25d37e" + }, + { + "id": "sourcelink@30a383d", + "repo": "sourcelink", + "title": "Update dependencies from https://github.com/dotnet/dotnet build 293404", + "url": "https://github.com/dotnet/sourcelink/pull/1555", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@30a383d" + }, + { + "id": "sourcelink@2061478", + "repo": "sourcelink", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sourcelink/pull/1557", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@2061478" + }, + { + "id": "sourcelink@8a4c758", + "repo": "sourcelink", + "title": "Update dependencies from https://github.com/dotnet/dotnet build 294071", + "url": "https://github.com/dotnet/sourcelink/pull/1561", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@8a4c758" + }, + { + "id": "sourcelink@2668313", + "repo": "sourcelink", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sourcelink/pull/1563", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@2668313" + }, + { + "id": "sourcelink@a7a2ddc", + "repo": "sourcelink", + "title": "Mark dotnet-sourcelink as non-shipping", + "url": "https://github.com/dotnet/sourcelink/pull/1568", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@a7a2ddc" + }, + { + "id": "sourcelink@494565b", + "repo": "sourcelink", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/sourcelink/pull/1562", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@494565b" + }, + { + "id": "sourcelink@98ac233", + "repo": "sourcelink", + "title": "Update dependencies", + "url": "https://github.com/dotnet/sourcelink/pull/1573", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@98ac233" + }, + { + "id": "sourcelink@dca38b9", + "repo": "sourcelink", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sourcelink/pull/1572", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@dca38b9" + }, + { + "id": "sourcelink@251760a", + "repo": "sourcelink", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/sourcelink/pull/1575", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@251760a" + }, + { + "id": "sourcelink@7c50134", + "repo": "sourcelink", + "title": "Update dependencies", + "url": "https://github.com/dotnet/sourcelink/pull/1582", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@7c50134" + }, + { + "id": "sourcelink@c23996c", + "repo": "sourcelink", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/sourcelink/pull/1578", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@c23996c" + }, + { + "id": "sourcelink@6ae65fc", + "repo": "sourcelink", + "title": "Update dependencies from build 301941", + "url": "https://github.com/dotnet/sourcelink/pull/1592", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@6ae65fc" + }, + { + "id": "sourcelink@6ea6adb", + "repo": "sourcelink", + "title": "Remove ViktorHofer from CODEOWNERS", + "url": "https://github.com/dotnet/sourcelink/pull/1584", + "commit": "dotnet@e2617a8", + "is_security": false, + "product": "dotnet-sourcelink", + "local_repo_commit": "sourcelink@6ea6adb" + }, + { + "id": "symreader@01c0841", + "repo": "symreader", + "title": "Update dependencies from build 301941", + "url": "https://github.com/dotnet/symreader/pull/387", + "commit": "dotnet@7d1bae2", + "is_security": false, + "local_repo_commit": "symreader@01c0841" + }, + { + "id": "symreader@e5e9322", + "repo": "symreader", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/symreader/pull/390", + "commit": "dotnet@7d1bae2", + "is_security": false, + "local_repo_commit": "symreader@e5e9322" + }, + { + "id": "symreader@f106e2a", + "repo": "symreader", + "title": "Update dependencies from build 303883", + "url": "https://github.com/dotnet/symreader/pull/392", + "commit": "dotnet@7d1bae2", + "is_security": false, + "local_repo_commit": "symreader@f106e2a" + }, + { + "id": "symreader@029a1d1", + "repo": "symreader", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/symreader/pull/395", + "commit": "dotnet@7d1bae2", + "is_security": false, + "local_repo_commit": "symreader@029a1d1" + }, + { + "id": "symreader@e87544a", + "repo": "symreader", + "title": "Enable AOT and platform compatibility analyzers.", + "url": "https://github.com/dotnet/symreader/pull/340", + "commit": "dotnet@7d1bae2", + "is_security": false, + "local_repo_commit": "symreader@e87544a" + }, + { + "id": "templating@4f4c901", + "repo": "templating", + "title": "Update branding to 8.0.419", + "url": "https://github.com/dotnet/templating/pull/9791", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@4f4c901" + }, + { + "id": "templating@b7755a9", + "repo": "templating", + "title": "Update branding to 9.0.312", + "url": "https://github.com/dotnet/templating/pull/9793", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b7755a9" + }, + { + "id": "templating@7369111", + "repo": "templating", + "title": "Update branding to 9.0.115", + "url": "https://github.com/dotnet/templating/pull/9792", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7369111" + }, + { + "id": "templating@cdbf978", + "repo": "templating", + "title": "[automated] Merge branch 'release/8.0.4xx' => 'release/9.0.1xx'", + "url": "https://github.com/dotnet/templating/pull/9794", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@cdbf978" + }, + { + "id": "templating@9212512", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9799", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@9212512" + }, + { + "id": "templating@7271f43", + "repo": "templating", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/templating/pull/9744", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7271f43" + }, + { + "id": "templating@e99d728", + "repo": "templating", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/templating/pull/9746", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e99d728" + }, + { + "id": "templating@5c37c89", + "repo": "templating", + "title": "[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9796", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@5c37c89" + }, + { + "id": "templating@fee905d", + "repo": "templating", + "title": "[automated] Merge branch 'release/9.0.3xx' => 'release/10.0.1xx'", + "url": "https://github.com/dotnet/templating/pull/9795", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@fee905d" + }, + { + "id": "templating@4762e57", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/9800", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@4762e57" + }, + { + "id": "templating@8f46f06", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9803", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@8f46f06" + }, + { + "id": "templating@3372f62", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/9805", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@3372f62" + }, + { + "id": "templating@ae11760", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9806", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@ae11760" + }, + { + "id": "templating@e3b199e", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/9807", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e3b199e" + }, + { + "id": "templating@36694ea", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9809", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@36694ea" + }, + { + "id": "templating@b7a4f37", + "repo": "templating", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/templating/pull/9808", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b7a4f37" + }, + { + "id": "templating@0d134f4", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9810", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@0d134f4" + }, + { + "id": "templating@2e70b8b", + "repo": "templating", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/templating/pull/9811", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@2e70b8b" + }, + { + "id": "templating@121dd33", + "repo": "templating", + "title": "[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9815", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@121dd33" + }, + { + "id": "templating@bde0eb9", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9813", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@bde0eb9" + }, + { + "id": "templating@5f81707", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/9816", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@5f81707" + }, + { + "id": "templating@95ff3b7", + "repo": "templating", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/templating/pull/9820", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@95ff3b7" + }, + { + "id": "templating@20e5f50", + "repo": "templating", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/templating/pull/9821", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@20e5f50" + }, + { + "id": "templating@3048685", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9819", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@3048685" + }, + { + "id": "templating@7fb54f4", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9822", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7fb54f4" + }, + { + "id": "templating@74626d2", + "repo": "templating", + "title": "[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9823", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@74626d2" + }, + { + "id": "templating@a199b5a", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9824", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@a199b5a" + }, + { + "id": "templating@f598b06", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/9825", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f598b06" + }, + { + "id": "templating@f566be2", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9826", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f566be2" + }, + { + "id": "templating@e6f952e", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9827", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e6f952e" + }, + { + "id": "templating@321f539", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9828", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@321f539" + }, + { + "id": "templating@5e050ff", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/9829", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@5e050ff" + }, + { + "id": "templating@40d1aae", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9812", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@40d1aae" + }, + { + "id": "templating@a23d69a", + "repo": "templating", + "title": "[automated] Merge branch 'release/9.0.3xx' => 'release/10.0.1xx'", + "url": "https://github.com/dotnet/templating/pull/9814", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@a23d69a" + }, + { + "id": "templating@7c5e34e", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/9830", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7c5e34e" + }, + { + "id": "templating@7ff5d84", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9831", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7ff5d84" + }, + { + "id": "templating@0a9fd5d", + "repo": "templating", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/templating/pull/9833", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@0a9fd5d" + }, + { + "id": "templating@d138822", + "repo": "templating", + "title": "[release/9.0.1xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/templating/pull/9834", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@d138822" + }, + { + "id": "templating@7efe8ee", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9832", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7efe8ee" + }, + { + "id": "templating@50e77da", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9835", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@50e77da" + }, + { + "id": "templating@c9e4dfd", + "repo": "templating", + "title": "[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9838", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@c9e4dfd" + }, + { + "id": "templating@b342718", + "repo": "templating", + "title": "[automated] Merge branch 'release/9.0.3xx' => 'release/10.0.1xx'", + "url": "https://github.com/dotnet/templating/pull/9837", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b342718" + }, + { + "id": "templating@1089dc7", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/9839", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@1089dc7" + }, + { + "id": "templating@54fc969", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9836", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@54fc969" + }, + { + "id": "templating@6a3a5bd", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/9840", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@6a3a5bd" + }, + { + "id": "templating@c87e7bb", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9818", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@c87e7bb" + }, + { + "id": "templating@f651898", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9841", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f651898" + }, + { + "id": "templating@9076da7", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9842", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@9076da7" + }, + { + "id": "templating@7c6a967", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/9843", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7c6a967" + }, + { + "id": "templating@d5cf2d1", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9844", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@d5cf2d1" + }, + { + "id": "templating@a29321b", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9845", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@a29321b" + }, + { + "id": "templating@8e0e26d", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/9847", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@8e0e26d" + }, + { + "id": "templating@0ca09cb", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9846", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@0ca09cb" + }, + { + "id": "templating@b71253f", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9848", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b71253f" + }, + { + "id": "templating@9ad9b32", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/9849", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@9ad9b32" + }, + { + "id": "templating@c4d87f4", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9850", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@c4d87f4" + }, + { + "id": "templating@8213c24", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9851", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@8213c24" + }, + { + "id": "templating@2c875d3", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9852", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@2c875d3" + }, + { + "id": "templating@1d35c94", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9853", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@1d35c94" + }, + { + "id": "templating@6e31c69", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/9856", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@6e31c69" + }, + { + "id": "templating@8eecb41", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9855", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@8eecb41" + }, + { + "id": "templating@5c04422", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/9854", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@5c04422" + }, + { + "id": "templating@d7ef40f", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9857", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@d7ef40f" + }, + { + "id": "templating@41eda11", + "repo": "templating", + "title": "[release/10.0.3xx] Backflow VMR 302154", + "url": "https://github.com/dotnet/templating/pull/9862", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@41eda11" + }, + { + "id": "templating@53fd3d4", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9858", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@53fd3d4", + "labels": [ + "area: template-content" + ] + }, + { + "id": "templating@2c0d3f8", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9865", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@2c0d3f8" + }, + { + "id": "templating@f69d4eb", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9866", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f69d4eb" + }, + { + "id": "templating@da99ace", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9871", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@da99ace" + }, + { + "id": "templating@7f918c8", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9870", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7f918c8" + }, + { + "id": "templating@b8604f8", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9872", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b8604f8" + }, + { + "id": "templating@47f3950", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/9867", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@47f3950" + }, + { + "id": "templating@23f88df", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9868", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@23f88df" + }, + { + "id": "templating@2c0a5c7", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/9863", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@2c0a5c7" + }, + { + "id": "templating@6e3afb3", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9879", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@6e3afb3" + }, + { + "id": "templating@ea80dd1", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9880", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@ea80dd1" + }, + { + "id": "templating@7be4df5", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/9881", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7be4df5" + }, + { + "id": "templating@fe60e19", + "repo": "templating", + "title": "Add xUnit V3 project variants for shared tests/tools other repos consume.", + "url": "https://github.com/dotnet/templating/pull/9876", + "commit": "dotnet@11368ab", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@fe60e19" + }, + { + "id": "templating@44ac461", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9882", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@44ac461" + }, + { + "id": "templating@ea66ab7", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9884", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@ea66ab7" + }, + { + "id": "templating@3d8a1e9", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/9883", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@3d8a1e9" + }, + { + "id": "templating@2bb4424", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9885", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@2bb4424" + }, + { + "id": "templating@e1f9198", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9886", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e1f9198" + }, + { + "id": "templating@2c1cef2", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9889", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@2c1cef2" + }, + { + "id": "templating@f6017ea", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/9888", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f6017ea" + }, + { + "id": "templating@3e8acc7", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9890", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@3e8acc7" + }, + { + "id": "templating@af2466d", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/9887", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@af2466d" + }, + { + "id": "templating@1eee975", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9891", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@1eee975" + }, + { + "id": "templating@ffc0ac2", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9892", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@ffc0ac2" + }, + { + "id": "templating@30d3d38", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9893", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@30d3d38" + }, + { + "id": "templating@fa5b4ae", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9894", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@fa5b4ae" + }, + { + "id": "templating@ad0a7bf", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/9895", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@ad0a7bf" + }, + { + "id": "templating@998864e", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9896", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@998864e" + }, + { + "id": "templating@f0e416d", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9900", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f0e416d" + }, + { + "id": "templating@5ef30ec", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9901", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@5ef30ec" + }, + { + "id": "templating@839db8e", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9902", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@839db8e" + }, + { + "id": "templating@eb2e6db", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/9904", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@eb2e6db" + }, + { + "id": "templating@b870186", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9903", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b870186" + }, + { + "id": "templating@87b3671", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/9898", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@87b3671" + }, + { + "id": "templating@705477b", + "repo": "templating", + "title": "[release/9.0.3xx] Update branding to 9.0.313", + "url": "https://github.com/dotnet/templating/pull/9905", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@705477b" + }, + { + "id": "templating@bd1b258", + "repo": "templating", + "title": "[release/9.0.3xx] Update dependencies from dotnet/arcade", + "url": "https://github.com/dotnet/templating/pull/9877", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@bd1b258" + }, + { + "id": "templating@fb9757b", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9915", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@fb9757b" + }, + { + "id": "templating@7ddf30b", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9914", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7ddf30b" + }, + { + "id": "templating@b3eb6ce", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9913", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b3eb6ce" + }, + { + "id": "templating@e19ccbd", + "repo": "templating", + "title": "[automated] Merge branch 'release/9.0.3xx' => 'release/10.0.1xx'", + "url": "https://github.com/dotnet/templating/pull/9909", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e19ccbd" + }, + { + "id": "templating@d04e5bb", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/9916", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@d04e5bb" + }, + { + "id": "templating@670bbf0", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9920", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@670bbf0" + }, + { + "id": "templating@4014047", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9919", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@4014047" + }, + { + "id": "templating@fac7fc4", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9923", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@fac7fc4" + }, + { + "id": "templating@602fee8", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9922", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@602fee8" + }, + { + "id": "templating@3be9060", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9924", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@3be9060" + }, + { + "id": "templating@31d5e94", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/9926", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@31d5e94" + }, + { + "id": "templating@8f3233f", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9925", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@8f3233f" + }, + { + "id": "templating@09cce1b", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/9918", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@09cce1b" + }, + { + "id": "templating@ba9beb1", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9929", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@ba9beb1" + }, + { + "id": "templating@036e553", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9930", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@036e553" + }, + { + "id": "templating@7a5d7a5", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/9931", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7a5d7a5" + }, + { + "id": "templating@ace6743", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9932", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@ace6743" + }, + { + "id": "templating@67a0a9c", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/9933", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@67a0a9c" + }, + { + "id": "templating@aa07580", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9935", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@aa07580" + }, + { + "id": "templating@db897f4", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9936", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@db897f4" + }, + { + "id": "templating@a10ed4b", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9937", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@a10ed4b" + }, + { + "id": "templating@cb565a7", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9941", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@cb565a7" + }, + { + "id": "templating@a223364", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9940", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@a223364" + }, + { + "id": "templating@84c018c", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/9942", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@84c018c" + }, + { + "id": "templating@4822704", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9944", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@4822704" + }, + { + "id": "templating@8dd0c58", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/9945", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@8dd0c58" + }, + { + "id": "templating@79304c8", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9946", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@79304c8" + }, + { + "id": "templating@6550ecd", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9947", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@6550ecd" + }, + { + "id": "templating@b8d4b89", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9949", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b8d4b89" + }, + { + "id": "templating@8a73ffc", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9948", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@8a73ffc" + }, + { + "id": "templating@c166a63", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9953", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@c166a63" + }, + { + "id": "templating@98d6433", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9950", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@98d6433" + }, + { + "id": "templating@de6dbc7", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/9955", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@de6dbc7" + }, + { + "id": "templating@39d232b", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9954", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@39d232b" + }, + { + "id": "templating@0d11bde", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/9951", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@0d11bde" + }, + { + "id": "templating@386e71a", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9961", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@386e71a" + }, + { + "id": "templating@e5bdff7", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9958", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e5bdff7" + }, + { + "id": "templating@c76b3f7", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9959", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@c76b3f7" + }, + { + "id": "templating@7fc381a", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9960", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7fc381a" + }, + { + "id": "templating@e667c11", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/9962", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e667c11" + }, + { + "id": "templating@853b9b9", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9964", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@853b9b9" + }, + { + "id": "templating@8853660", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9965", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@8853660" + }, + { + "id": "templating@f37cdd6", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/9963", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f37cdd6" + }, + { + "id": "templating@e7aa5c8", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9966", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e7aa5c8" + }, + { + "id": "templating@e5bd434", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9971", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e5bd434" + }, + { + "id": "templating@dcd10ca", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9972", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@dcd10ca" + }, + { + "id": "templating@b34d25d", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9970", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b34d25d" + }, + { + "id": "templating@f1a9929", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/9973", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f1a9929" + }, + { + "id": "templating@91a12be", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9974", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@91a12be" + }, + { + "id": "templating@b04e3aa", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/9968", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b04e3aa" + }, + { + "id": "templating@a91084c", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9975", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@a91084c" + }, + { + "id": "templating@f7733e1", + "repo": "templating", + "title": "Fix CI flakiness: async race conditions, disposal crash, and stdout truncation", + "url": "https://github.com/dotnet/templating/pull/9939", + "commit": "dotnet@3911028", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f7733e1" + }, + { + "id": "templating@3942ccb", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9978", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@3942ccb" + }, + { + "id": "templating@000bfca", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9979", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@000bfca" + }, + { + "id": "templating@79351e9", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9980", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@79351e9" + }, + { + "id": "templating@e381e73", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9981", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e381e73" + }, + { + "id": "templating@c4af218", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/9983", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@c4af218" + }, + { + "id": "templating@9b5ac70", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9982", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@9b5ac70" + }, + { + "id": "templating@f6ce6aa", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/9977", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f6ce6aa" + }, + { + "id": "templating@6a849d5", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9984", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@6a849d5" + }, + { + "id": "templating@d91bd6c", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9988", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@d91bd6c" + }, + { + "id": "templating@e1c12b5", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9989", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e1c12b5" + }, + { + "id": "templating@83a700d", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9990", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@83a700d" + }, + { + "id": "templating@62f5f31", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9993", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@62f5f31" + }, + { + "id": "templating@56695be", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9995", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@56695be" + }, + { + "id": "templating@987157f", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9994", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@987157f" + }, + { + "id": "templating@deb53e2", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9987", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@deb53e2" + }, + { + "id": "templating@c1a147c", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/9992", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@c1a147c" + }, + { + "id": "templating@d196d3e", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/9991", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@d196d3e" + }, + { + "id": "templating@0756f96", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/9986", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@0756f96" + }, + { + "id": "templating@9419d16", + "repo": "templating", + "title": "Newtonsoft.Json \u2192 System.Text.Json Migration", + "url": "https://github.com/dotnet/templating/pull/9956", + "commit": "dotnet@4a256fd", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@9419d16" + }, + { + "id": "templating@9a6a837", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9996", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@9a6a837" + }, + { + "id": "templating@122b363", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9999", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@122b363" + }, + { + "id": "templating@b7ec64f", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/9998", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b7ec64f" + }, + { + "id": "templating@8b17d41", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10000", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@8b17d41" + }, + { + "id": "templating@6bf67e6", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10001", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@6bf67e6" + }, + { + "id": "templating@06f5915", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/10003", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@06f5915" + }, + { + "id": "templating@4811a95", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/10002", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@4811a95" + }, + { + "id": "templating@e34f843", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/9997", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@e34f843" + }, + { + "id": "templating@af3486b", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10005", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@af3486b" + }, + { + "id": "templating@31d7490", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10008", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@31d7490" + }, + { + "id": "templating@f1dc072", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10009", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f1dc072" + }, + { + "id": "templating@0896113", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10010", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@0896113" + }, + { + "id": "templating@92877dd", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/10013", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@92877dd" + }, + { + "id": "templating@901881b", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10014", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@901881b" + }, + { + "id": "templating@258701a", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/10012", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@258701a" + }, + { + "id": "templating@7dce33e", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/10011", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7dce33e" + }, + { + "id": "templating@a861186", + "repo": "templating", + "title": "Fix search-cache-pipeline: use dotnet run and publish test results", + "url": "https://github.com/dotnet/templating/pull/10007", + "commit": "dotnet@7f6bb12", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@a861186" + }, + { + "id": "templating@7e39dc7", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10015", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@7e39dc7" + }, + { + "id": "templating@a70b993", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10017", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@a70b993" + }, + { + "id": "templating@0c75dc9", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10021", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@0c75dc9" + }, + { + "id": "templating@2f661c8", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/10023", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@2f661c8" + }, + { + "id": "templating@34fffb5", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/10022", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@34fffb5" + }, + { + "id": "templating@b483bf5", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/10024", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@b483bf5" + }, + { + "id": "templating@f957b13", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10026", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@f957b13" + }, + { + "id": "templating@d913801", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10027", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@d913801" + }, + { + "id": "templating@a5cfe2f", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10029", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@a5cfe2f" + }, + { + "id": "templating@ba08e9c", + "repo": "templating", + "title": "[release/10.0.2xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10028", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@ba08e9c" + }, + { + "id": "templating@853b858", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/10030", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@853b858" + }, + { + "id": "templating@4e8960a", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/10031", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@4e8960a" + }, + { + "id": "templating@953ad16", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/10032", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@953ad16" + }, + { + "id": "templating@97a3783", + "repo": "templating", + "title": "Make projects AOT compatible", + "url": "https://github.com/dotnet/templating/pull/10006", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@97a3783" + }, + { + "id": "templating@bcf27d1", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10034", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@bcf27d1" + }, + { + "id": "templating@1c7a76e", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10033", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@1c7a76e" + }, + { + "id": "templating@1309155", + "repo": "templating", + "title": "[release/10.0.1xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10035", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@1309155" + }, + { + "id": "templating@4fd4718", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10038", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@4fd4718" + }, + { + "id": "templating@ab5efea", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.1xx' => 'release/10.0.2xx'", + "url": "https://github.com/dotnet/templating/pull/10037", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@ab5efea" + }, + { + "id": "templating@5ed5ce8", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.2xx' => 'release/10.0.3xx'", + "url": "https://github.com/dotnet/templating/pull/10039", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@5ed5ce8" + }, + { + "id": "templating@2995ec4", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/10036", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@2995ec4" + }, + { + "id": "templating@054e3da", + "repo": "templating", + "title": "[release/10.0.3xx] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10040", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@054e3da" + }, + { + "id": "templating@1b8b725", + "repo": "templating", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/templating/pull/10041", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@1b8b725" + }, + { + "id": "templating@bbd8b09", + "repo": "templating", + "title": "[automated] Merge branch 'release/10.0.3xx' => 'main'", + "url": "https://github.com/dotnet/templating/pull/10043", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@bbd8b09" + }, + { + "id": "templating@791a389", + "repo": "templating", + "title": "Fix duplicate key handling", + "url": "https://github.com/dotnet/templating/pull/10049", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@791a389" + }, + { + "id": "templating@80848b3", + "repo": "templating", + "title": "Fix Verify snapshot naming for xunit v3 compatibility", + "url": "https://github.com/dotnet/templating/pull/10052", + "commit": "dotnet@a40e078", + "is_security": false, + "product": "dotnet-templating", + "local_repo_commit": "templating@80848b3" + }, + { + "id": "winforms@dc6c73b", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14294", + "commit": "dotnet@ebc8503", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@dc6c73b", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@e998107", + "repo": "winforms", + "title": "Updating build agent image to use VS2026", + "url": "https://github.com/dotnet/winforms/pull/14299", + "commit": "dotnet@ebc8503", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@e998107", + "labels": [ + "area-Infrastructure-CI" + ] + }, + { + "id": "winforms@fdb43c8", + "repo": "winforms", + "title": "Fix typo in codeql yml", + "url": "https://github.com/dotnet/winforms/pull/14300", + "commit": "dotnet@ebc8503", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@fdb43c8", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@d65e8b0", + "repo": "winforms", + "title": "Updating build agent image to VS 2026 Preview scout", + "url": "https://github.com/dotnet/winforms/pull/14321", + "commit": "dotnet@5902468", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@d65e8b0", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@7ea6398", + "repo": "winforms", + "title": "Move some usings to globals", + "url": "https://github.com/dotnet/winforms/pull/14331", + "commit": "dotnet@1967d7a", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@7ea6398", + "labels": [ + "area-Clipboard" + ] + }, + { + "id": "winforms@a4d6573", + "repo": "winforms", + "title": "Fix for OOM exception while running Analyzer tests on x86 platform", + "url": "https://github.com/dotnet/winforms/pull/14328", + "commit": "dotnet@1967d7a", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@a4d6573", + "labels": [ + "test-enhancement", + "area-Analyzers/CodeFixes" + ] + }, + { + "id": "winforms@2846f02", + "repo": "winforms", + "title": "Skipping Analyzer tests on x86 due to OOM exception.", + "url": "https://github.com/dotnet/winforms/pull/14348", + "commit": "dotnet@65db323", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@2846f02", + "labels": [ + "area-Analyzers/CodeFixes" + ] + }, + { + "id": "winforms@8e560d0", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14334", + "commit": "dotnet@65db323", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@8e560d0", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@6ff69e6", + "repo": "winforms", + "title": "Introduce Copilot Skills to the WinForms Runtime repo", + "url": "https://github.com/dotnet/winforms/pull/14353", + "commit": "dotnet@65db323", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@6ff69e6", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@9e5fbe8", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14355", + "commit": "dotnet@4a405d7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@9e5fbe8", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@d7b99bf", + "repo": "winforms", + "title": "Remove the central TargetFramework property", + "url": "https://github.com/dotnet/winforms/pull/14357", + "commit": "dotnet@4a405d7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@d7b99bf", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@290d8bb", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14361", + "commit": "dotnet@4a405d7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@290d8bb", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@82ed134", + "repo": "winforms", + "title": "Fix for intermittent test failure on x86 platform 'BindingContext_UpdateBinding_UpdateListBindingWithoutDataMember_Success'", + "url": "https://github.com/dotnet/winforms/pull/14359", + "commit": "dotnet@4a405d7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@82ed134", + "labels": [ + "test-bug", + "area-Infrastructure" + ] + }, + { + "id": "winforms@c83a1bd", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14368", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@c83a1bd", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@e98325a", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14373", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@e98325a", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@1dfc02d", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14380", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@1dfc02d", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@f3422f9", + "repo": "winforms", + "title": "Add shared project for .NET Framework polyfills", + "url": "https://github.com/dotnet/winforms/pull/14371", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@f3422f9", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@94b12d1", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14387", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@94b12d1", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@7297dbc", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14391", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@7297dbc", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@88c709b", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14395", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@88c709b", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@4b63688", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14396", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@4b63688", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@065dd5f", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14399", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@065dd5f", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@f8ef19c", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14401", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@f8ef19c", + "labels": [ + "area-Infrastructure-CI" + ] + }, + { + "id": "winforms@86616a8", + "repo": "winforms", + "title": "Multi-target System.Private.Windows.Core", + "url": "https://github.com/dotnet/winforms/pull/14384", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@86616a8", + "labels": [ + "area-Clipboard" + ] + }, + { + "id": "winforms@6f9c433", + "repo": "winforms", + "title": "Fix issue 14071: ComboBox.ObjectCollection.CopyTo(Array destination, int index) copies Entry object, not inner item", + "url": "https://github.com/dotnet/winforms/pull/14075", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@6f9c433", + "labels": [ + "needs-area-label" + ] + }, + { + "id": "winforms@f75ac9a", + "repo": "winforms", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/winforms/pull/14405", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@f75ac9a", + "labels": [ + "area-Infrastructure" + ] + }, + { + "id": "winforms@6735caf", + "repo": "winforms", + "title": "Fix InvalidCastException in Control.OnHandleDestroyed for non-ControlAccessibleObject", + "url": "https://github.com/dotnet/winforms/pull/14295", + "commit": "dotnet@d8fa7f7", + "is_security": false, + "product": "dotnet-winforms", + "local_repo_commit": "winforms@6735caf", + "labels": [ + "needs-area-label" + ] + }, + { + "id": "wpf@cdd7f11", + "repo": "wpf", + "title": "Update dependencies", + "url": "https://github.com/dotnet/wpf/pull/11424", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@cdd7f11", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@d943aee", + "repo": "wpf", + "title": "Update dependencies", + "url": "https://github.com/dotnet/wpf/pull/11432", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@d943aee", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@f407361", + "repo": "wpf", + "title": "Update dependencies from build 300976", + "url": "https://github.com/dotnet/wpf/pull/11438", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@f407361", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@9e5051a", + "repo": "wpf", + "title": "Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int build 20260208.2", + "url": "https://github.com/dotnet/wpf/pull/11435", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@9e5051a", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@4fd3660", + "repo": "wpf", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/wpf/pull/11445", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@4fd3660", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@55362c4", + "repo": "wpf", + "title": "Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int build 20260209.2", + "url": "https://github.com/dotnet/wpf/pull/11439", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@55362c4", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@24e938e", + "repo": "wpf", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/wpf/pull/11450", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@24e938e", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@7b906fa", + "repo": "wpf", + "title": "Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int build 20260211.1", + "url": "https://github.com/dotnet/wpf/pull/11447", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@7b906fa", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@a9a1b14", + "repo": "wpf", + "title": "Update dependencies from build 302061", + "url": "https://github.com/dotnet/wpf/pull/11453", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@a9a1b14", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@3eeab6e", + "repo": "wpf", + "title": "Update dependencies from https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int build 20260215.1", + "url": "https://github.com/dotnet/wpf/pull/11451", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@3eeab6e", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@6972bbc", + "repo": "wpf", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/wpf/pull/11459", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@6972bbc", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@8b3b0b3", + "repo": "wpf", + "title": "[main] Update dependencies from dnceng/internal/dotnet-wpf-int", + "url": "https://github.com/dotnet/wpf/pull/11454", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@8b3b0b3", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@2e982f6", + "repo": "wpf", + "title": "[main] Source code updates from dotnet/dotnet", + "url": "https://github.com/dotnet/wpf/pull/11469", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@2e982f6", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@6e3b3d9", + "repo": "wpf", + "title": "Update dependencies from build 303072", + "url": "https://github.com/dotnet/wpf/pull/11479", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@6e3b3d9", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@a56320a", + "repo": "wpf", + "title": "[main] Update dependencies from dnceng/internal/dotnet-wpf-int", + "url": "https://github.com/dotnet/wpf/pull/11473", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@a56320a", + "labels": [ + "PR" + ] + }, + { + "id": "wpf@9484c1c", + "repo": "wpf", + "title": "Removing extra space in Sdk.props to avoid MSB4281 issue when using new arcade package in wpf-int", + "url": "https://github.com/dotnet/wpf/pull/11470", + "commit": "dotnet@55dc39b", + "is_security": false, + "product": "dotnet-wpf", + "local_repo_commit": "wpf@9484c1c", + "labels": [ + "PR" + ] + } + ], + "commits": { + "arcade@7db333e": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "7db333e4a411694073963937fe192cac478b7847", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/7db333e4a411694073963937fe192cac478b7847.diff" + }, + "arcade@620febd": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "620febda818e050eb7ef8951e04347defa8a1a5e", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/620febda818e050eb7ef8951e04347defa8a1a5e.diff" + }, + "arcade@ae9439c": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "ae9439cb1eebbb1b400155be193f82fcfd07aa41", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/ae9439cb1eebbb1b400155be193f82fcfd07aa41.diff" + }, + "arcade@90215a0": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "90215a077f841615b6c6e6c7b2272aa0eef1492a", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/90215a077f841615b6c6e6c7b2272aa0eef1492a.diff" + }, + "arcade@973af93": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "973af93a9b8380170914c7b91e0d5143a20640ab", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/973af93a9b8380170914c7b91e0d5143a20640ab.diff" + }, + "arcade@da9054c": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "da9054cb63ed8ff9767986c7285d3268c0c80470", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/da9054cb63ed8ff9767986c7285d3268c0c80470.diff" + }, + "arcade@4055041": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "4055041d210cca368f2f59bff55ff8debb9eeac5", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/4055041d210cca368f2f59bff55ff8debb9eeac5.diff" + }, + "arcade@c5560fb": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "c5560fb4d30b184c1873563bd49bc606d682b460", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/c5560fb4d30b184c1873563bd49bc606d682b460.diff" + }, + "arcade@88c8808": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "88c88084abfa1e379f54933af89e43fa774e323c", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/88c88084abfa1e379f54933af89e43fa774e323c.diff" + }, + "arcade@55a078a": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "55a078a15ed32378341c7a1f1caf5fc063dd8d5d", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/55a078a15ed32378341c7a1f1caf5fc063dd8d5d.diff" + }, + "arcade@0831f9c": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "0831f9c135e88dd09993903ed5ac1a950285ac96", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/0831f9c135e88dd09993903ed5ac1a950285ac96.diff" + }, + "arcade@9ebf1ae": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "9ebf1ae63a9b6274ce0c1a5c340581b2e33471db", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/9ebf1ae63a9b6274ce0c1a5c340581b2e33471db.diff" + }, + "arcade@e95f9ba": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "e95f9ba53ea7de7f36fb651b633967ca54dbcacc", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/e95f9ba53ea7de7f36fb651b633967ca54dbcacc.diff" + }, + "arcade@4e3c44c": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "4e3c44cdc39c8d94b7cd3c25453ec1f996665a3a", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/4e3c44cdc39c8d94b7cd3c25453ec1f996665a3a.diff" + }, + "arcade@5ce557e": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "5ce557ec1023c17ff5c77ba08c74bfe174286dc7", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/5ce557ec1023c17ff5c77ba08c74bfe174286dc7.diff" + }, + "arcade@38eefc1": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "38eefc128dd14be8b34e4835bf624aeb832934c1", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/38eefc128dd14be8b34e4835bf624aeb832934c1.diff" + }, + "arcade@13e9f77": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "13e9f7793f0fda33cb5fbf07e4f7c50287c8e5dd", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/13e9f7793f0fda33cb5fbf07e4f7c50287c8e5dd.diff" + }, + "arcade@55c97a4": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "55c97a45af8fd75bc87e9e4b4f61aef3fead254d", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/55c97a45af8fd75bc87e9e4b4f61aef3fead254d.diff" + }, + "arcade@31161de": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "31161dea6f7289f8457ccb59e2970b109a55af37", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/31161dea6f7289f8457ccb59e2970b109a55af37.diff" + }, + "arcade@a27769f": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "a27769f306adb2efd8f3089377b384c54414a484", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/a27769f306adb2efd8f3089377b384c54414a484.diff" + }, + "arcade@0392c5d": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "0392c5d8cb77ff6ac2b2b24dab0cb81875a82e87", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/0392c5d8cb77ff6ac2b2b24dab0cb81875a82e87.diff" + }, + "arcade@d531dad": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "d531dadab520b06c318347fe40696d15dc070053", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/d531dadab520b06c318347fe40696d15dc070053.diff" + }, + "arcade@0560b9e": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "0560b9e86e559d592c2ba418983c6413dd8ee473", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/0560b9e86e559d592c2ba418983c6413dd8ee473.diff" + }, + "arcade@a2dd169": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "a2dd1695ed7cacdb1c3507540defda6deb64779d", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/a2dd1695ed7cacdb1c3507540defda6deb64779d.diff" + }, + "arcade@139fa4e": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "139fa4e6f6acb2c2714f01f948416429dbf05161", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/139fa4e6f6acb2c2714f01f948416429dbf05161.diff" + }, + "arcade@c62e947": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "c62e947751f24c34e078a7b0393c71e5ed55c6d7", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/c62e947751f24c34e078a7b0393c71e5ed55c6d7.diff" + }, + "arcade@c70a2fb": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "c70a2fbdb42d7332ea7e7d504cf8fac64356f255", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/c70a2fbdb42d7332ea7e7d504cf8fac64356f255.diff" + }, + "arcade@539e874": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "539e8742ff635bd8b0ae8a7b3a6a02aa60b72c8b", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/539e8742ff635bd8b0ae8a7b3a6a02aa60b72c8b.diff" + }, + "arcade@d6da516": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "d6da5160336775ff8c410a1b0d947291ba3e9028", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/d6da5160336775ff8c410a1b0d947291ba3e9028.diff" + }, + "arcade@e100c45": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "e100c45900aa1f8acf15f444d38c2740f4de3542", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/e100c45900aa1f8acf15f444d38c2740f4de3542.diff" + }, + "arcade@3a872e7": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "3a872e7f1dc8fcbf6b5b5110cb154bf558f668a3", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/3a872e7f1dc8fcbf6b5b5110cb154bf558f668a3.diff" + }, + "arcade@97f5d8a": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "97f5d8a035dff194dbff22a3d21b163e6b768fa9", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/97f5d8a035dff194dbff22a3d21b163e6b768fa9.diff" + }, + "arcade@2e8c949": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "2e8c949b4e75b05c3a33e848f36cf5b263707338", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/2e8c949b4e75b05c3a33e848f36cf5b263707338.diff" + }, + "arcade@763f00f": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "763f00f88ed4142b49c7ba46457597a69964707a", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/763f00f88ed4142b49c7ba46457597a69964707a.diff" + }, + "arcade@566903f": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "566903f851da66960e2f99c912ffdcc8845598d9", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/566903f851da66960e2f99c912ffdcc8845598d9.diff" + }, + "arcade@12f2683": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "12f2683a31816498f287092ecc99f43640cf8b8d", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/12f2683a31816498f287092ecc99f43640cf8b8d.diff" + }, + "arcade@9c14c8e": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "9c14c8e4b0d040769905f195146bdfbb8cfaf01d", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/9c14c8e4b0d040769905f195146bdfbb8cfaf01d.diff" + }, + "arcade@f7f177c": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "f7f177c538265a255c415b9ec75f2cf2471187d2", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/f7f177c538265a255c415b9ec75f2cf2471187d2.diff" + }, + "arcade@b536294": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "b536294e70dec68be8d0a000f5b04f497841618e", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/b536294e70dec68be8d0a000f5b04f497841618e.diff" + }, + "arcade@bcbb938": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "bcbb938d7e69bdc06ee2ebb9fd8b13725aa43a2d", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/bcbb938d7e69bdc06ee2ebb9fd8b13725aa43a2d.diff" + }, + "arcade@eab76e0": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "eab76e088ac137bb1ec61920d3adc0271dbe3691", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/eab76e088ac137bb1ec61920d3adc0271dbe3691.diff" + }, + "arcade@3290ea9": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "3290ea9c86a58d83fb56e43865295b44f68fb11b", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/3290ea9c86a58d83fb56e43865295b44f68fb11b.diff" + }, + "arcade@f7f7469": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "f7f74693341330c5de1f6ff065a6ad6a5816ed74", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/f7f74693341330c5de1f6ff065a6ad6a5816ed74.diff" + }, + "arcade@b7e0a87": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "b7e0a87d5befa2bb54870ecaf84dd87058462ea0", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/b7e0a87d5befa2bb54870ecaf84dd87058462ea0.diff" + }, + "arcade@0512309": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "05123097649061f9b77e8305d69980efb720f09e", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/05123097649061f9b77e8305d69980efb720f09e.diff" + }, + "arcade@edfa48e": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "edfa48ec6f9e7e8677bf2a7382dd32309d3f1ef3", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/edfa48ec6f9e7e8677bf2a7382dd32309d3f1ef3.diff" + }, + "arcade@0e34dd8": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "0e34dd8c0400107b2fd2945e7a340ad9d3467015", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/0e34dd8c0400107b2fd2945e7a340ad9d3467015.diff" + }, + "arcade@853171a": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "853171ab0e41ac80e2bd8f80056e281c191a6a01", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/853171ab0e41ac80e2bd8f80056e281c191a6a01.diff" + }, + "arcade@e385506": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "e385506c3dcbeea64fa1aae811e0ff9232815666", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/e385506c3dcbeea64fa1aae811e0ff9232815666.diff" + }, + "arcade@feffa5f": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "feffa5f3de223dafc91b349fc8f7ea83e218734b", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/feffa5f3de223dafc91b349fc8f7ea83e218734b.diff" + }, + "arcade@291fa08": { + "repo": "arcade", + "branch": "release/11.0.1xx-preview3", + "hash": "291fa0852f49d984f72da872f52e9b492447d179", + "org": "dotnet", + "url": "https://github.com/dotnet/arcade/commit/291fa0852f49d984f72da872f52e9b492447d179.diff" + }, + "aspnetcore@bb01877": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "bb018776c48fce5b0638208d41c27110171c3608", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/bb018776c48fce5b0638208d41c27110171c3608.diff" + }, + "aspnetcore@3a973a5": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "3a973a5f4d28242262f27c86eb3f14299fe712ba", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/3a973a5f4d28242262f27c86eb3f14299fe712ba.diff" + }, + "aspnetcore@18b430f": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "18b430f31d41ac58f18a1a719cdcabb21d342ad7", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/18b430f31d41ac58f18a1a719cdcabb21d342ad7.diff" + }, + "aspnetcore@e626393": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "e626393585e941844b1036563dd21fd95409bd1e", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/e626393585e941844b1036563dd21fd95409bd1e.diff" + }, + "aspnetcore@e356396": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "e356396175df06e1373013e732e8e522fe8ba140", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/e356396175df06e1373013e732e8e522fe8ba140.diff" + }, + "aspnetcore@423a70f": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "423a70f3d0177e4a55380b0045e64e1580b9af65", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/423a70f3d0177e4a55380b0045e64e1580b9af65.diff" + }, + "aspnetcore@6bf45a7": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "6bf45a7f29db639c1eac5c84c70deac7334b3bdf", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/6bf45a7f29db639c1eac5c84c70deac7334b3bdf.diff" + }, + "aspnetcore@9ea8e2c": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9ea8e2c28c695650c619a89b1edf2d6d6a75da67", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/9ea8e2c28c695650c619a89b1edf2d6d6a75da67.diff" + }, + "aspnetcore@105e935": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "105e93515399737f84b35e9746432de751836912", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/105e93515399737f84b35e9746432de751836912.diff" + }, + "aspnetcore@cb0202b": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "cb0202b20c7d8c7948970aeaddc1f6c97a401a64", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/cb0202b20c7d8c7948970aeaddc1f6c97a401a64.diff" + }, + "aspnetcore@f90e099": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f90e099e8e36785e648037d9f67493af0ff7d53f", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/f90e099e8e36785e648037d9f67493af0ff7d53f.diff" + }, + "aspnetcore@2027040": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "2027040473104293479ed99b421a749c0db2b95c", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/2027040473104293479ed99b421a749c0db2b95c.diff" + }, + "aspnetcore@9bf9db6": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9bf9db65896431392c881b22d76ed2259925268f", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/9bf9db65896431392c881b22d76ed2259925268f.diff" + }, + "aspnetcore@45f8aea": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "45f8aea27cef1b52f2237d17f54839c54b5f9a71", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/45f8aea27cef1b52f2237d17f54839c54b5f9a71.diff" + }, + "aspnetcore@16198d1": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "16198d132d524cef11525842509e9d8260f95ea4", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/16198d132d524cef11525842509e9d8260f95ea4.diff" + }, + "aspnetcore@7426595": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "7426595df10e975e58f7e171557627b31d6a03ec", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/7426595df10e975e58f7e171557627b31d6a03ec.diff" + }, + "aspnetcore@06efb5f": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "06efb5f8ccecd3e815b4e73b79a692e29a22fd84", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/06efb5f8ccecd3e815b4e73b79a692e29a22fd84.diff" + }, + "aspnetcore@af25746": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "af2574666375946b3dba796db8b904d4a2696afb", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/af2574666375946b3dba796db8b904d4a2696afb.diff" + }, + "aspnetcore@637a267": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "637a267be130a378c575452a4c31b28ec769cccb", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/637a267be130a378c575452a4c31b28ec769cccb.diff" + }, + "aspnetcore@df6c8e9": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "df6c8e9b585928bc3956a2e5096bf359332da8cd", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/df6c8e9b585928bc3956a2e5096bf359332da8cd.diff" + }, + "aspnetcore@5967f89": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5967f89a6b102e79b142d8ea86bb10309447e068", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/5967f89a6b102e79b142d8ea86bb10309447e068.diff" + }, + "aspnetcore@74725c1": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "74725c1b3a8325922c3ac54be21240d54024cecb", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/74725c1b3a8325922c3ac54be21240d54024cecb.diff" + }, + "aspnetcore@6e3747e": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "6e3747e42c5be98dae7ed17989fe6dd86598327d", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/6e3747e42c5be98dae7ed17989fe6dd86598327d.diff" + }, + "aspnetcore@97c3db9": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "97c3db9ecd289e5f2cee0c9ac6224760c81f3216", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/97c3db9ecd289e5f2cee0c9ac6224760c81f3216.diff" + }, + "aspnetcore@5ad0444": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5ad0444a79f776e8169233f87a878f6ab2b5c151", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/5ad0444a79f776e8169233f87a878f6ab2b5c151.diff" + }, + "aspnetcore@13dcbb4": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "13dcbb43d173070ffe207e8a63c222c798da393a", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/13dcbb43d173070ffe207e8a63c222c798da393a.diff" + }, + "aspnetcore@c0c593c": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "c0c593cc5f155b36e3dbfe068728de74cb0f36a8", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/c0c593cc5f155b36e3dbfe068728de74cb0f36a8.diff" + }, + "aspnetcore@ae50886": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ae5088602017bddedba0d1cd3b606d416310f8e5", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/ae5088602017bddedba0d1cd3b606d416310f8e5.diff" + }, + "aspnetcore@e742462": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "e742462cfbe457e627ad95a9d47e90d8372e43cb", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/e742462cfbe457e627ad95a9d47e90d8372e43cb.diff" + }, + "aspnetcore@53bb265": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "53bb2652f5db2d9e021e2671d46bd5abf3e3523c", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/53bb2652f5db2d9e021e2671d46bd5abf3e3523c.diff" + }, + "aspnetcore@01bf0df": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "01bf0df5fafabb1764947b8c53e6c0a0b3e4dd12", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/01bf0df5fafabb1764947b8c53e6c0a0b3e4dd12.diff" + }, + "aspnetcore@8cf6a95": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "8cf6a9599a26b6c419a2cb1a30e8ed72ba941359", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/8cf6a9599a26b6c419a2cb1a30e8ed72ba941359.diff" + }, + "aspnetcore@162a1f7": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "162a1f76f0ac5037db55de6d08b57a177686431e", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/162a1f76f0ac5037db55de6d08b57a177686431e.diff" + }, + "aspnetcore@7a2262d": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "7a2262da483f193a7bb1cb1f82289983fe4a1461", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/7a2262da483f193a7bb1cb1f82289983fe4a1461.diff" + }, + "aspnetcore@93830e4": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "93830e4d20eb800101f745a6247a9b85d37859f1", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/93830e4d20eb800101f745a6247a9b85d37859f1.diff" + }, + "aspnetcore@db50e77": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "db50e779170fafdbb43953a3316ddfb4ff604288", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/db50e779170fafdbb43953a3316ddfb4ff604288.diff" + }, + "aspnetcore@2cf27e2": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "2cf27e22c52c218ada23d8b24b40bc3e2a894e5c", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/2cf27e22c52c218ada23d8b24b40bc3e2a894e5c.diff" + }, + "aspnetcore@072d32a": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "072d32a7b3064d1b2dc4e82e5f22ca75ee1fbbc2", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/072d32a7b3064d1b2dc4e82e5f22ca75ee1fbbc2.diff" + }, + "aspnetcore@eec80e1": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "eec80e1c63963802a215d58b3907d6e46090fc28", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/eec80e1c63963802a215d58b3907d6e46090fc28.diff" + }, + "aspnetcore@c2ea7d8": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "c2ea7d85fd7d6d0a534583ba508fed7e85d81b63", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/c2ea7d85fd7d6d0a534583ba508fed7e85d81b63.diff" + }, + "aspnetcore@eb9e4b5": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "eb9e4b53009e8174e917fbe73695e6ebaca5b5dd", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/eb9e4b53009e8174e917fbe73695e6ebaca5b5dd.diff" + }, + "aspnetcore@8dc0b08": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "8dc0b08f3cc5ad2acacb242745b68bf52257a63d", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/8dc0b08f3cc5ad2acacb242745b68bf52257a63d.diff" + }, + "aspnetcore@eec60ba": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "eec60baad474562943a4537494d91702cfc4c8b4", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/eec60baad474562943a4537494d91702cfc4c8b4.diff" + }, + "aspnetcore@0f4a109": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0f4a109664bf5443ced8715a2abe9d59cc1c9d42", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/0f4a109664bf5443ced8715a2abe9d59cc1c9d42.diff" + }, + "aspnetcore@7350993": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "735099310de4437142d6b632827e18cd2eac1331", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/735099310de4437142d6b632827e18cd2eac1331.diff" + }, + "aspnetcore@83c5b49": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "83c5b4906cc68f9e1f57240015312d853e7e8df3", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/83c5b4906cc68f9e1f57240015312d853e7e8df3.diff" + }, + "aspnetcore@680a049": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "680a04978e9c352df9c792d833e4107ef0f0606b", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/680a04978e9c352df9c792d833e4107ef0f0606b.diff" + }, + "aspnetcore@01129f7": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "01129f701f04f772fca4a07b6dce096359c4724f", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/01129f701f04f772fca4a07b6dce096359c4724f.diff" + }, + "aspnetcore@888d231": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "888d23173b3d5ead9f39168a95784882c6d88ee4", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/888d23173b3d5ead9f39168a95784882c6d88ee4.diff" + }, + "aspnetcore@9dbfe9d": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9dbfe9d749bc48421aee7248240d9e11ad618e72", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/9dbfe9d749bc48421aee7248240d9e11ad618e72.diff" + }, + "aspnetcore@5f2a8c6": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5f2a8c66ade1d6e171be089d0d01cdc6d54a41a7", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/5f2a8c66ade1d6e171be089d0d01cdc6d54a41a7.diff" + }, + "aspnetcore@9f6184c": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9f6184c4506e1c86ce4038b6028ee83467691d5e", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/9f6184c4506e1c86ce4038b6028ee83467691d5e.diff" + }, + "aspnetcore@07f13c1": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "07f13c1553ace296f26236eeab6f5e5ec3bd6e9a", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/07f13c1553ace296f26236eeab6f5e5ec3bd6e9a.diff" + }, + "aspnetcore@9857de8": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9857de8eb1d78a04ce7e4f3cc9ebd8597634efc5", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/9857de8eb1d78a04ce7e4f3cc9ebd8597634efc5.diff" + }, + "aspnetcore@2fbb3f3": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "2fbb3f34f85af31672ac130920d0767deabbdc45", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/2fbb3f34f85af31672ac130920d0767deabbdc45.diff" + }, + "aspnetcore@69f3533": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "69f35330cfd13d62c9d0157134632a23d3c0c3f4", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/69f35330cfd13d62c9d0157134632a23d3c0c3f4.diff" + }, + "aspnetcore@4e6e8eb": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "4e6e8ebba46d7c000ca8cfef4272da77fe36ca62", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/4e6e8ebba46d7c000ca8cfef4272da77fe36ca62.diff" + }, + "aspnetcore@51f852f": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "51f852f60257c270f3bfae6fd90d120af457ad1c", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/51f852f60257c270f3bfae6fd90d120af457ad1c.diff" + }, + "aspnetcore@0fcd46b": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0fcd46b50a97182b1b3841c2689809d6b25b5a6c", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/0fcd46b50a97182b1b3841c2689809d6b25b5a6c.diff" + }, + "aspnetcore@d17d872": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d17d8723266943988c3434a628a157176b7f74a2", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/d17d8723266943988c3434a628a157176b7f74a2.diff" + }, + "aspnetcore@5c76285": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5c76285463c41978c900696841ab0a32a42d893d", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/5c76285463c41978c900696841ab0a32a42d893d.diff" + }, + "aspnetcore@552c986": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "552c986d27a1b0fc01a4dfe635a5621f7e672037", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/552c986d27a1b0fc01a4dfe635a5621f7e672037.diff" + }, + "aspnetcore@4e3592e": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "4e3592ece07e752de22e7d2cc79d475d0de514a5", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/4e3592ece07e752de22e7d2cc79d475d0de514a5.diff" + }, + "aspnetcore@ab5185d": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ab5185dd07d70b8880d9ee7316366fa2c10f716d", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/ab5185dd07d70b8880d9ee7316366fa2c10f716d.diff" + }, + "aspnetcore@6dd7f70": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "6dd7f70048be48975f8e9fd9b0331bd30002a059", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/6dd7f70048be48975f8e9fd9b0331bd30002a059.diff" + }, + "aspnetcore@5df2824": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5df28248e9d34d3a82721c49ad7dfe7febfdf638", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/5df28248e9d34d3a82721c49ad7dfe7febfdf638.diff" + }, + "aspnetcore@e3bebf7": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "e3bebf742b3f5e5d1cfb38b782adb2ba38de7348", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/e3bebf742b3f5e5d1cfb38b782adb2ba38de7348.diff" + }, + "aspnetcore@708d724": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "708d724c6257d8d16d8367421fb9aa7df176af64", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/708d724c6257d8d16d8367421fb9aa7df176af64.diff" + }, + "aspnetcore@0b12e6f": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0b12e6f18f1f22a103d09d254c8579f9d5d47422", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/0b12e6f18f1f22a103d09d254c8579f9d5d47422.diff" + }, + "aspnetcore@1c8ced0": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1c8ced05378e3501eeff1ecc4d10f2fd79042e56", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/1c8ced05378e3501eeff1ecc4d10f2fd79042e56.diff" + }, + "aspnetcore@7390100": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "739010000384e924a653e4708e07b3cdd79c27dc", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/739010000384e924a653e4708e07b3cdd79c27dc.diff" + }, + "aspnetcore@07cd5f8": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "07cd5f86a5f17af584e84dfaa45369d4f84ef66c", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/07cd5f86a5f17af584e84dfaa45369d4f84ef66c.diff" + }, + "aspnetcore@865dc41": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "865dc4141fce7777cf1aa8bd40750703f946197c", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/865dc4141fce7777cf1aa8bd40750703f946197c.diff" + }, + "aspnetcore@ea6182a": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ea6182a90d92b23368c9db9a212bc85ff63ff3aa", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/ea6182a90d92b23368c9db9a212bc85ff63ff3aa.diff" + }, + "aspnetcore@42a65bf": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "42a65bf63e9c4e37358290ab38d9e99c93fbf770", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/42a65bf63e9c4e37358290ab38d9e99c93fbf770.diff" + }, + "aspnetcore@2b1cb0a": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "2b1cb0a7ae862ba622fd172a960ed937063c5f08", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/2b1cb0a7ae862ba622fd172a960ed937063c5f08.diff" + }, + "aspnetcore@4ca3d71": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "4ca3d715db42e7eb96c330ab51083e120b2951aa", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/4ca3d715db42e7eb96c330ab51083e120b2951aa.diff" + }, + "aspnetcore@086f563": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "086f563efb6390553ef079a5622f9ae5fb9284cd", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/086f563efb6390553ef079a5622f9ae5fb9284cd.diff" + }, + "aspnetcore@3d53504": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "3d5350450c7639f24fe8889cf653faa2e0eb4b76", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/3d5350450c7639f24fe8889cf653faa2e0eb4b76.diff" + }, + "aspnetcore@cb2bd84": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "cb2bd848a873903324e292cf9168a0048681acf2", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/cb2bd848a873903324e292cf9168a0048681acf2.diff" + }, + "aspnetcore@e55796c": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "e55796c6188a4b94f79129aa0a4eb7dafd2b31f6", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/e55796c6188a4b94f79129aa0a4eb7dafd2b31f6.diff" + }, + "aspnetcore@c2daa92": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "c2daa92d10c0fcc833fa4ca058a7786f8d94508d", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/c2daa92d10c0fcc833fa4ca058a7786f8d94508d.diff" + }, + "aspnetcore@1fd3d6a": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1fd3d6a1b857aa774ec957c41909600f05c89624", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/1fd3d6a1b857aa774ec957c41909600f05c89624.diff" + }, + "aspnetcore@2a414e9": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "2a414e979054c424c5f6a30760ab008859f85a2f", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/2a414e979054c424c5f6a30760ab008859f85a2f.diff" + }, + "aspnetcore@8842e08": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "8842e08e87b6bbb67cd82338311db7665d52ba69", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/8842e08e87b6bbb67cd82338311db7665d52ba69.diff" + }, + "aspnetcore@ae31b22": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ae31b22278392015250b3c53666991058cd1138c", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/ae31b22278392015250b3c53666991058cd1138c.diff" + }, + "aspnetcore@0efd832": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0efd8323d5304414e968186608020d0b3b8be4c2", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/0efd8323d5304414e968186608020d0b3b8be4c2.diff" + }, + "aspnetcore@8338afb": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "8338afbb3021b7e6d7a71e121203bc95d0c8adff", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/8338afbb3021b7e6d7a71e121203bc95d0c8adff.diff" + }, + "aspnetcore@c892018": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "c892018e71177e3b42023f1d0e27fa2a72a6e4ec", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/c892018e71177e3b42023f1d0e27fa2a72a6e4ec.diff" + }, + "aspnetcore@810928e": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "810928e0bbf3df4ece4f245e6e386f9ec2953c13", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/810928e0bbf3df4ece4f245e6e386f9ec2953c13.diff" + }, + "aspnetcore@f8410f8": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f8410f812a2a76401468a78a4f776586c3af498c", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/f8410f812a2a76401468a78a4f776586c3af498c.diff" + }, + "aspnetcore@773e0c2": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "773e0c2b8690e13166da211ca08f8b0507fd9f82", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/773e0c2b8690e13166da211ca08f8b0507fd9f82.diff" + }, + "aspnetcore@a200b84": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a200b84d4fe140d2ec41a2653cf0e3fb3bc5b4f6", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/a200b84d4fe140d2ec41a2653cf0e3fb3bc5b4f6.diff" + }, + "aspnetcore@d77c401": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d77c4013bbdedb8857bc7ccdd588736f9e5f9ac7", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/d77c4013bbdedb8857bc7ccdd588736f9e5f9ac7.diff" + }, + "aspnetcore@245440c": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "245440c3afd1d655984be7d3ee6adb35dabcfcb5", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/245440c3afd1d655984be7d3ee6adb35dabcfcb5.diff" + }, + "aspnetcore@dedf040": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "dedf040fe68bb5de3b8c769e87aa5502d0df0a68", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/dedf040fe68bb5de3b8c769e87aa5502d0df0a68.diff" + }, + "aspnetcore@ff3ea50": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ff3ea50b573fbc5396f2c50fa13f27f443c97f27", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/ff3ea50b573fbc5396f2c50fa13f27f443c97f27.diff" + }, + "aspnetcore@5bc9780": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5bc97805e5d46471ce44a7e67ff5f28873950fd0", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/5bc97805e5d46471ce44a7e67ff5f28873950fd0.diff" + }, + "aspnetcore@7c53dac": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "7c53dac57386a1a286b4d382f4aa36bbcf5829a1", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/7c53dac57386a1a286b4d382f4aa36bbcf5829a1.diff" + }, + "aspnetcore@0fba831": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0fba831f527e706d9a420f2b40741339ff038938", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/0fba831f527e706d9a420f2b40741339ff038938.diff" + }, + "aspnetcore@ab2e33a": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ab2e33a05f53406a5125b8971a6e5af6b35ff448", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/ab2e33a05f53406a5125b8971a6e5af6b35ff448.diff" + }, + "aspnetcore@0807dd9": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0807dd9ac2bd17a6a82c8713be76d63de3cb2bcf", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/0807dd9ac2bd17a6a82c8713be76d63de3cb2bcf.diff" + }, + "aspnetcore@8288f56": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "8288f56446508b22d011428ab2d4c082076a2543", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/8288f56446508b22d011428ab2d4c082076a2543.diff" + }, + "aspnetcore@5b89273": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5b892736c24f973adbdc8a36542609dc403ed92d", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/5b892736c24f973adbdc8a36542609dc403ed92d.diff" + }, + "aspnetcore@f7c186e": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f7c186e94f7853eb90ff600f3486a1d6733a1de8", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/f7c186e94f7853eb90ff600f3486a1d6733a1de8.diff" + }, + "aspnetcore@81dc76b": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "81dc76b452744da25cff1f3f3b76ea7e91021c44", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/81dc76b452744da25cff1f3f3b76ea7e91021c44.diff" + }, + "aspnetcore@50fe923": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "50fe92347cbfa633b0aedc363deefbc2b90fff43", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/50fe92347cbfa633b0aedc363deefbc2b90fff43.diff" + }, + "aspnetcore@cad82f1": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "cad82f1aafd1c90c882eae2842235c96a6533702", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/cad82f1aafd1c90c882eae2842235c96a6533702.diff" + }, + "aspnetcore@659206f": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "659206f31e57885081e6f48850ce0382b2bfed93", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/659206f31e57885081e6f48850ce0382b2bfed93.diff" + }, + "aspnetcore@65ae876": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "65ae87611fc63915a10b951dbdfb0e1a3df38531", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/65ae87611fc63915a10b951dbdfb0e1a3df38531.diff" + }, + "aspnetcore@27a9115": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "27a91158e25c57c942c00203c5d6774395a421d4", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/27a91158e25c57c942c00203c5d6774395a421d4.diff" + }, + "aspnetcore@9657193": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9657193890de6140d48b258d4a8870950cb1ca41", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/9657193890de6140d48b258d4a8870950cb1ca41.diff" + }, + "aspnetcore@b571f34": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "b571f34a86c5ddb9cf4119f292fbd0d662c19aec", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/b571f34a86c5ddb9cf4119f292fbd0d662c19aec.diff" + }, + "aspnetcore@d984f78": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d984f78946af0090c5c5ced437fe95b58639fc77", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/d984f78946af0090c5c5ced437fe95b58639fc77.diff" + }, + "aspnetcore@d601f7c": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d601f7c7f19e2fb50f329b9d34f69a83f03cf701", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/d601f7c7f19e2fb50f329b9d34f69a83f03cf701.diff" + }, + "aspnetcore@7c63bad": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "7c63bad435c42792fe63e902f4f02a857f908fbd", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/7c63bad435c42792fe63e902f4f02a857f908fbd.diff" + }, + "aspnetcore@0c878b3": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0c878b3bdc746aeeeda75105206ed71f109ebdcf", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/0c878b3bdc746aeeeda75105206ed71f109ebdcf.diff" + }, + "aspnetcore@37375a8": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "37375a865704d876581cad4129953599a519d99d", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/37375a865704d876581cad4129953599a519d99d.diff" + }, + "aspnetcore@7b5aa5e": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "7b5aa5ec5d53da25b5a0dc9d155e8d1c08fc351e", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/7b5aa5ec5d53da25b5a0dc9d155e8d1c08fc351e.diff" + }, + "aspnetcore@0289caa": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0289caac825a8a027a27b44abe8b824c640aaf41", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/0289caac825a8a027a27b44abe8b824c640aaf41.diff" + }, + "aspnetcore@d4edb13": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d4edb1310d7a1e26f306285ad18883a2fd8ca0a3", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/d4edb1310d7a1e26f306285ad18883a2fd8ca0a3.diff" + }, + "aspnetcore@01549b2": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "01549b2f430576b3652eee1720dbfa892ecdb07c", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/01549b2f430576b3652eee1720dbfa892ecdb07c.diff" + }, + "aspnetcore@706ce53": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "706ce530c1a73d818954287ba8c75ac349239c76", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/706ce530c1a73d818954287ba8c75ac349239c76.diff" + }, + "aspnetcore@1855c53": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1855c53140e5254d54078ccea41e2b21bd264309", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/1855c53140e5254d54078ccea41e2b21bd264309.diff" + }, + "aspnetcore@d375204": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d375204d3804918d73924caf3c701509361ee2b9", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/d375204d3804918d73924caf3c701509361ee2b9.diff" + }, + "aspnetcore@ca7652f": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ca7652fd719aeed70c3962c432984b8134ef2343", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/ca7652fd719aeed70c3962c432984b8134ef2343.diff" + }, + "aspnetcore@83662b1": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "83662b13f2dc641f46f8444c8d62c2bc6b1a4a8b", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/83662b13f2dc641f46f8444c8d62c2bc6b1a4a8b.diff" + }, + "aspnetcore@abda9bd": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "abda9bdce57c863f024775a311f8b7492478ec91", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/abda9bdce57c863f024775a311f8b7492478ec91.diff" + }, + "aspnetcore@606caee": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "606caee4be854a66074a5d421ec1ea7f156222cd", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/606caee4be854a66074a5d421ec1ea7f156222cd.diff" + }, + "aspnetcore@e9e6afa": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "e9e6afad4b4b220ebad323095c0282652b30a633", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/e9e6afad4b4b220ebad323095c0282652b30a633.diff" + }, + "aspnetcore@faf0ea0": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "faf0ea036dac4c02bbc0fd46e6e3a5039d08e1a5", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/faf0ea036dac4c02bbc0fd46e6e3a5039d08e1a5.diff" + }, + "aspnetcore@3dafd5c": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "3dafd5c3322983c6240ef6c53c58d75bcb31db95", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/3dafd5c3322983c6240ef6c53c58d75bcb31db95.diff" + }, + "aspnetcore@8bba19e": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "8bba19e82be93ec1deb1cd9e254f6b236c836c43", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/8bba19e82be93ec1deb1cd9e254f6b236c836c43.diff" + }, + "aspnetcore@41822ee": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "41822eeedb4a240e411a6b54d50585f9b7674d28", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/41822eeedb4a240e411a6b54d50585f9b7674d28.diff" + }, + "aspnetcore@472d942": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "472d94239f27f92a7aefd142b5d59e12b2b5a37f", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/472d94239f27f92a7aefd142b5d59e12b2b5a37f.diff" + }, + "aspnetcore@3741588": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "3741588081b33934bb7f9dd9e4fd28b7752b7d57", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/3741588081b33934bb7f9dd9e4fd28b7752b7d57.diff" + }, + "aspnetcore@bf7d552": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "bf7d55227c682550d6066b869cd584d23b299e29", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/bf7d55227c682550d6066b869cd584d23b299e29.diff" + }, + "aspnetcore@5b7bc39": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5b7bc39bedcc7f56eb13af737171b1d2f6484045", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/5b7bc39bedcc7f56eb13af737171b1d2f6484045.diff" + }, + "aspnetcore@e0f509f": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "e0f509f0836799bc7e6331983eba9bb8ad5211da", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/e0f509f0836799bc7e6331983eba9bb8ad5211da.diff" + }, + "aspnetcore@ece07c5": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ece07c5f20e90e3bfa6630a3507063f1f361f9a7", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/ece07c5f20e90e3bfa6630a3507063f1f361f9a7.diff" + }, + "aspnetcore@1d9cbfa": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1d9cbfaba0c6efdc2f2e5fc666d6df1acda9976b", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/1d9cbfaba0c6efdc2f2e5fc666d6df1acda9976b.diff" + }, + "aspnetcore@a2abc03": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a2abc038f0d4ef210550371e14b8aba01bd00ae3", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/a2abc038f0d4ef210550371e14b8aba01bd00ae3.diff" + }, + "aspnetcore@7ee3019": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "7ee3019308c266c38e9b09bec6c8b1f715c20d08", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/7ee3019308c266c38e9b09bec6c8b1f715c20d08.diff" + }, + "aspnetcore@cac95fb": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "cac95fb4ecf5a82e5117b7fd94fae053463e33bf", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/cac95fb4ecf5a82e5117b7fd94fae053463e33bf.diff" + }, + "aspnetcore@2fdaffc": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "2fdaffc08129ae523aa40e4065bb80407b753d82", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/2fdaffc08129ae523aa40e4065bb80407b753d82.diff" + }, + "aspnetcore@d8491f4": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d8491f4280195c83ad27e1550b648ea2d77d9569", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/d8491f4280195c83ad27e1550b648ea2d77d9569.diff" + }, + "aspnetcore@d14f00b": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d14f00b80b7f54dff8b68bb2be16e208f9205fda", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/d14f00b80b7f54dff8b68bb2be16e208f9205fda.diff" + }, + "aspnetcore@7e307f4": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "7e307f4bc78a384e95b7dc93dbaa846457ff6b32", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/7e307f4bc78a384e95b7dc93dbaa846457ff6b32.diff" + }, + "aspnetcore@ff787d9": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ff787d9d2f0dfda251696a9cb78ea89e0148afa5", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/ff787d9d2f0dfda251696a9cb78ea89e0148afa5.diff" + }, + "aspnetcore@379c93b": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "379c93b4b75a6a7f52268cbd4e95f3a0b50a1c4b", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/379c93b4b75a6a7f52268cbd4e95f3a0b50a1c4b.diff" + }, + "aspnetcore@4b53b87": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "4b53b87f0d7e2e5549c6628a5ba318770665a84b", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/4b53b87f0d7e2e5549c6628a5ba318770665a84b.diff" + }, + "aspnetcore@6aad0fa": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "6aad0fa78b6de2032df49f49b9a14594ebfe25e6", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/6aad0fa78b6de2032df49f49b9a14594ebfe25e6.diff" + }, + "aspnetcore@002e2fd": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "002e2fddf589f9d9e8d430c4c6be0d5e53897ac5", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/002e2fddf589f9d9e8d430c4c6be0d5e53897ac5.diff" + }, + "aspnetcore@7de8efd": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "7de8efdb71f0ffe3e2739f910ffb0a69e43ab0cc", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/7de8efdb71f0ffe3e2739f910ffb0a69e43ab0cc.diff" + }, + "aspnetcore@5f25968": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5f25968a3c497fb4447ee9ddb1ab68324f67ec86", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/5f25968a3c497fb4447ee9ddb1ab68324f67ec86.diff" + }, + "aspnetcore@cc983ac": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "cc983ac5273998e3cb4d76088529a86fada8d980", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/cc983ac5273998e3cb4d76088529a86fada8d980.diff" + }, + "aspnetcore@70329cf": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "70329cf972f4ed3239134189d9336b850cfe3322", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/70329cf972f4ed3239134189d9336b850cfe3322.diff" + }, + "aspnetcore@5c96464": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5c964642f7cf28b50c716b988a73bd8d5007cadf", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/5c964642f7cf28b50c716b988a73bd8d5007cadf.diff" + }, + "aspnetcore@a6285e2": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a6285e2438ecb3e63b46255a90780279d97d8e02", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/a6285e2438ecb3e63b46255a90780279d97d8e02.diff" + }, + "aspnetcore@43bf870": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "43bf870e2cf24349b4a784aea531082235845c8b", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/43bf870e2cf24349b4a784aea531082235845c8b.diff" + }, + "aspnetcore@53559dd": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "53559ddd9f193ffe004f27ec6ccc1c88a8529033", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/53559ddd9f193ffe004f27ec6ccc1c88a8529033.diff" + }, + "aspnetcore@9d746bd": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9d746bd1fa42178150bf480cf7c86a7e6e0c5ea2", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/9d746bd1fa42178150bf480cf7c86a7e6e0c5ea2.diff" + }, + "aspnetcore@e0d31d9": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "e0d31d9fb90de374424f555ab58e5bfec86d46e6", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/e0d31d9fb90de374424f555ab58e5bfec86d46e6.diff" + }, + "aspnetcore@5d3e13d": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5d3e13dc31bfc1c0f75cb4cae95d38f5b00d4e0e", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/5d3e13dc31bfc1c0f75cb4cae95d38f5b00d4e0e.diff" + }, + "aspnetcore@8feb203": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "8feb20305ee22be790c06b4ca4883afcb6aee089", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/8feb20305ee22be790c06b4ca4883afcb6aee089.diff" + }, + "aspnetcore@17fb030": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "17fb03031a75cacf18bf3fd09d645aefeb5af9a6", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/17fb03031a75cacf18bf3fd09d645aefeb5af9a6.diff" + }, + "aspnetcore@1e4711c": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1e4711cab99afd309947f565b521bdd2f017dacf", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/1e4711cab99afd309947f565b521bdd2f017dacf.diff" + }, + "aspnetcore@cdea7e1": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "cdea7e1df07e81acb7ee2689b99ea5f4644a6ea8", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/cdea7e1df07e81acb7ee2689b99ea5f4644a6ea8.diff" + }, + "aspnetcore@20cea47": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "20cea471eff75b1bd6a0321c670152de5760526b", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/20cea471eff75b1bd6a0321c670152de5760526b.diff" + }, + "aspnetcore@ade5151": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ade51513d4660e0ab6beb8cd18342208efb37629", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/ade51513d4660e0ab6beb8cd18342208efb37629.diff" + }, + "aspnetcore@655f41d": { + "repo": "aspnetcore", + "branch": "release/11.0.1xx-preview3", + "hash": "655f41d52f2fc75992eac41496b8e9cc119e1b54", + "org": "dotnet", + "url": "https://github.com/dotnet/aspnetcore/commit/655f41d52f2fc75992eac41496b8e9cc119e1b54.diff" + }, + "command-line-api@a3bae7d": { + "repo": "command-line-api", + "branch": "release/11.0.1xx-preview3", + "hash": "a3bae7d667e367376f4eb3edb579bf7e9c81cc10", + "org": "dotnet", + "url": "https://github.com/dotnet/command-line-api/commit/a3bae7d667e367376f4eb3edb579bf7e9c81cc10.diff" + }, + "command-line-api@0b720d0": { + "repo": "command-line-api", + "branch": "release/11.0.1xx-preview3", + "hash": "0b720d0399197e9a8d9684f26bc6fd82d0da83b2", + "org": "dotnet", + "url": "https://github.com/dotnet/command-line-api/commit/0b720d0399197e9a8d9684f26bc6fd82d0da83b2.diff" + }, + "deployment-tools@e83794f": { + "repo": "deployment-tools", + "branch": "release/11.0.1xx-preview3", + "hash": "e83794f40888403908364746216a5c271c6fcf29", + "org": "dotnet", + "url": "https://github.com/dotnet/deployment-tools/commit/e83794f40888403908364746216a5c271c6fcf29.diff" + }, + "deployment-tools@71f5b36": { + "repo": "deployment-tools", + "branch": "release/11.0.1xx-preview3", + "hash": "71f5b36ee98b2d81c699d99e6d8f4f09106b130f", + "org": "dotnet", + "url": "https://github.com/dotnet/deployment-tools/commit/71f5b36ee98b2d81c699d99e6d8f4f09106b130f.diff" + }, + "deployment-tools@24caf42": { + "repo": "deployment-tools", + "branch": "release/11.0.1xx-preview3", + "hash": "24caf42a0c54ac05ab64628c435bdbc1cba52e93", + "org": "dotnet", + "url": "https://github.com/dotnet/deployment-tools/commit/24caf42a0c54ac05ab64628c435bdbc1cba52e93.diff" + }, + "deployment-tools@bdad519": { + "repo": "deployment-tools", + "branch": "release/11.0.1xx-preview3", + "hash": "bdad519667c16190f5fc06b27e201dd092b194f8", + "org": "dotnet", + "url": "https://github.com/dotnet/deployment-tools/commit/bdad519667c16190f5fc06b27e201dd092b194f8.diff" + }, + "deployment-tools@73e2836": { + "repo": "deployment-tools", + "branch": "release/11.0.1xx-preview3", + "hash": "73e2836a5d7397d203c12809f1f9ee7a09beac8d", + "org": "dotnet", + "url": "https://github.com/dotnet/deployment-tools/commit/73e2836a5d7397d203c12809f1f9ee7a09beac8d.diff" + }, + "efcore@88ad5f0": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "88ad5f0025a2ad63a22812dcace1792034158a73", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/88ad5f0025a2ad63a22812dcace1792034158a73.diff" + }, + "efcore@fe8711d": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "fe8711df6170aebd9206fb4cc1f2686beb52c3ea", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/fe8711df6170aebd9206fb4cc1f2686beb52c3ea.diff" + }, + "efcore@ce4c061": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ce4c061ceb07518ad3bdcbf87f1a9051113b2421", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/ce4c061ceb07518ad3bdcbf87f1a9051113b2421.diff" + }, + "efcore@2171920": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "217192044824d6d81e6765dab6c429e95153f6e8", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/217192044824d6d81e6765dab6c429e95153f6e8.diff" + }, + "efcore@05a2ee4": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "05a2ee483e5f2cb47e86dd6b60481947adea4dbb", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/05a2ee483e5f2cb47e86dd6b60481947adea4dbb.diff" + }, + "efcore@c214374": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "c214374f16d2d76932ece40d4b31b257691c4d70", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/c214374f16d2d76932ece40d4b31b257691c4d70.diff" + }, + "efcore@c413a34": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "c413a348f995d49416160838f97f0ac22f44e75d", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/c413a348f995d49416160838f97f0ac22f44e75d.diff" + }, + "efcore@f2d8cf2": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f2d8cf2a1b56f33134e1fdd8d3214aac7fbfce47", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/f2d8cf2a1b56f33134e1fdd8d3214aac7fbfce47.diff" + }, + "efcore@272a411": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "272a4117ca4b60febc041046b53e837ad77f1112", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/272a4117ca4b60febc041046b53e837ad77f1112.diff" + }, + "efcore@b215568": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "b215568672b3c74bfdbe87216fde89dfd382952e", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/b215568672b3c74bfdbe87216fde89dfd382952e.diff" + }, + "efcore@f0533e3": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f0533e3c9f3e8871c0d7e51ed21e71393f1f18d7", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/f0533e3c9f3e8871c0d7e51ed21e71393f1f18d7.diff" + }, + "efcore@fa02541": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "fa02541b2f8d6383604d58d704971814e86d17a3", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/fa02541b2f8d6383604d58d704971814e86d17a3.diff" + }, + "efcore@13b022a": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "13b022af32dfe9ad711f4b9b83637d13cd5bebe9", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/13b022af32dfe9ad711f4b9b83637d13cd5bebe9.diff" + }, + "efcore@0d5f479": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0d5f4795c82658e821ef622f470d5935df2fb188", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/0d5f4795c82658e821ef622f470d5935df2fb188.diff" + }, + "efcore@9db9403": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9db94035836a745f83dacdf14d2a7871c01f9900", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/9db94035836a745f83dacdf14d2a7871c01f9900.diff" + }, + "efcore@ae8da6d": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ae8da6d7d710057e29971a8514508334a3227245", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/ae8da6d7d710057e29971a8514508334a3227245.diff" + }, + "efcore@197e23b": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "197e23b1cdde7b1f0fa085912df15210e58eecf2", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/197e23b1cdde7b1f0fa085912df15210e58eecf2.diff" + }, + "efcore@a1198d4": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a1198d4bc574c7e71453117a87ffc009c2c75b60", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/a1198d4bc574c7e71453117a87ffc009c2c75b60.diff" + }, + "efcore@4740247": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "474024704557b928260b2c383d6b34a5a27fc494", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/474024704557b928260b2c383d6b34a5a27fc494.diff" + }, + "efcore@239465b": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "239465b27dbe3f46b089bab60598f7fb28f3000c", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/239465b27dbe3f46b089bab60598f7fb28f3000c.diff" + }, + "efcore@0e146f5": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0e146f554523a0e3fa7bdb1be7857d9729029de1", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/0e146f554523a0e3fa7bdb1be7857d9729029de1.diff" + }, + "efcore@9dae88e": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9dae88ee8afe88ac03286758b568d628fe05e5c6", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/9dae88ee8afe88ac03286758b568d628fe05e5c6.diff" + }, + "efcore@35514be": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "35514bea42895748cddabb20545b4d4a6811d9d8", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/35514bea42895748cddabb20545b4d4a6811d9d8.diff" + }, + "efcore@35089f2": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "35089f2bb71762acd2620b3ddb1ee341f3657938", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/35089f2bb71762acd2620b3ddb1ee341f3657938.diff" + }, + "efcore@04fc72c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "04fc72cb6225c9d81222ecf404b11e36647e4d24", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/04fc72cb6225c9d81222ecf404b11e36647e4d24.diff" + }, + "efcore@fb96b4a": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "fb96b4a64b254497d9c871e5c0b4af34de3aec7f", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/fb96b4a64b254497d9c871e5c0b4af34de3aec7f.diff" + }, + "efcore@6f19809": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "6f19809475ddd9bb666c2f2d3735ba4de1758e38", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/6f19809475ddd9bb666c2f2d3735ba4de1758e38.diff" + }, + "efcore@48dc694": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "48dc694668bff33499db4b0c71bb26e6022ed5d4", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/48dc694668bff33499db4b0c71bb26e6022ed5d4.diff" + }, + "efcore@9f06179": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9f06179fc8c2b8e90a7ec770f0a5aeb0145840d2", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/9f06179fc8c2b8e90a7ec770f0a5aeb0145840d2.diff" + }, + "efcore@56a682a": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "56a682abd8a25fe1db78048282e28d85dac4febc", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/56a682abd8a25fe1db78048282e28d85dac4febc.diff" + }, + "efcore@f74c457": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f74c457a5b831c781f007af6f72811be98151848", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/f74c457a5b831c781f007af6f72811be98151848.diff" + }, + "efcore@31e3250": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "31e325069128ad5e13fc40049e9170eaa9cfffb1", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/31e325069128ad5e13fc40049e9170eaa9cfffb1.diff" + }, + "efcore@a00f52a": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a00f52a961c28f76c051240dda0658e98fabb62d", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/a00f52a961c28f76c051240dda0658e98fabb62d.diff" + }, + "efcore@4797ba9": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "4797ba9f177f64a3d87653775744ea3340497491", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/4797ba9f177f64a3d87653775744ea3340497491.diff" + }, + "efcore@4707794": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "4707794d69bf26f6a0fc06dba8852193b85db425", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/4707794d69bf26f6a0fc06dba8852193b85db425.diff" + }, + "efcore@5f9c2c3": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5f9c2c334af1e4fbbb88ba12c950143ba2495214", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/5f9c2c334af1e4fbbb88ba12c950143ba2495214.diff" + }, + "efcore@5740ed8": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5740ed871ae4489b5a22fa459bcf7efeb6d9e4ed", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/5740ed871ae4489b5a22fa459bcf7efeb6d9e4ed.diff" + }, + "efcore@ac1a32c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ac1a32c874433fc1649db6dc7944b53b751787dc", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/ac1a32c874433fc1649db6dc7944b53b751787dc.diff" + }, + "efcore@59291da": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "59291da895d07af6dda730fce89363f780d7ecf8", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/59291da895d07af6dda730fce89363f780d7ecf8.diff" + }, + "efcore@0c22a71": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0c22a71d670164bd9116da585fe51fe270fec5e8", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/0c22a71d670164bd9116da585fe51fe270fec5e8.diff" + }, + "efcore@873db19": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "873db19e4f3a435e4557ec87e5175d84388a44f1", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/873db19e4f3a435e4557ec87e5175d84388a44f1.diff" + }, + "efcore@fb11d70": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "fb11d70a30a5ccbb2004875f656a0ecc981e5454", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/fb11d70a30a5ccbb2004875f656a0ecc981e5454.diff" + }, + "efcore@a06277e": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a06277e837d630931f90e5b0ca3ebd262456a270", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/a06277e837d630931f90e5b0ca3ebd262456a270.diff" + }, + "efcore@62b0941": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "62b0941887426a2d64867ad4908c7e3a6f410ea7", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/62b0941887426a2d64867ad4908c7e3a6f410ea7.diff" + }, + "efcore@5ccb348": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5ccb348ec1c4e7b16995c673a8d67529dbbe65ca", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/5ccb348ec1c4e7b16995c673a8d67529dbbe65ca.diff" + }, + "efcore@6b4f383": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "6b4f383610e247737253e03a90c722ab91ba83e4", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/6b4f383610e247737253e03a90c722ab91ba83e4.diff" + }, + "efcore@45d3267": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "45d32675c7d6c306c80742660df39c0fb47db0bc", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/45d32675c7d6c306c80742660df39c0fb47db0bc.diff" + }, + "efcore@fc6f21d": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "fc6f21de852845da01783712edbcfe48c44e98ca", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/fc6f21de852845da01783712edbcfe48c44e98ca.diff" + }, + "efcore@4957f0e": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "4957f0ed312a041d103422cd2d8690b3c42b62a9", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/4957f0ed312a041d103422cd2d8690b3c42b62a9.diff" + }, + "efcore@f69c365": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f69c3653a04b4ff3ca9da8271125673d07872059", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/f69c3653a04b4ff3ca9da8271125673d07872059.diff" + }, + "efcore@ebc7591": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ebc75910e051061b501e6d05f5e86825626df2f5", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/ebc75910e051061b501e6d05f5e86825626df2f5.diff" + }, + "efcore@1460789": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1460789aae6faac334fb69dd0f7d883b508bfd01", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/1460789aae6faac334fb69dd0f7d883b508bfd01.diff" + }, + "efcore@8a06ad4": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "8a06ad4b11439ad3a437a2cb0248e1db1c051f53", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/8a06ad4b11439ad3a437a2cb0248e1db1c051f53.diff" + }, + "efcore@1d245f3": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1d245f36ea1d20183ed39567975a2e1e2c8899e0", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/1d245f36ea1d20183ed39567975a2e1e2c8899e0.diff" + }, + "efcore@1d6294e": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1d6294e74eeccf25951b6b4f718c18e3af229209", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/1d6294e74eeccf25951b6b4f718c18e3af229209.diff" + }, + "efcore@0cc9a4b": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0cc9a4b1bc78b38933d93eb39c41fd0e41df2c2c", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/0cc9a4b1bc78b38933d93eb39c41fd0e41df2c2c.diff" + }, + "efcore@4077099": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "4077099f071fa2ce8ac068502cebf59d8b2efc89", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/4077099f071fa2ce8ac068502cebf59d8b2efc89.diff" + }, + "efcore@bbba406": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "bbba4061e760af2bf8282855bc7c0d8b103ee3ab", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/bbba4061e760af2bf8282855bc7c0d8b103ee3ab.diff" + }, + "efcore@fbf051c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "fbf051c00b62329e7a6efbac9740545778a4bc47", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/fbf051c00b62329e7a6efbac9740545778a4bc47.diff" + }, + "efcore@aa10d1d": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "aa10d1dad819ef7bc16d7b3c40757a4eec7ddbca", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/aa10d1dad819ef7bc16d7b3c40757a4eec7ddbca.diff" + }, + "efcore@150afc9": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "150afc9b7487c2b2b566ccea49afb850dcbd1ca0", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/150afc9b7487c2b2b566ccea49afb850dcbd1ca0.diff" + }, + "efcore@3eabbaf": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "3eabbafaa3b5e1e2973c7449bfab71f74708da21", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/3eabbafaa3b5e1e2973c7449bfab71f74708da21.diff" + }, + "efcore@2f5c7f3": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "2f5c7f30c4cddd789057c54ea59cdedeccc01ec5", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/2f5c7f30c4cddd789057c54ea59cdedeccc01ec5.diff" + }, + "efcore@8132028": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "81320285967025ecb8132235a7d540b6455212fe", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/81320285967025ecb8132235a7d540b6455212fe.diff" + }, + "efcore@1c16df9": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1c16df97e41df76a6e523db9e6239fe443152096", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/1c16df97e41df76a6e523db9e6239fe443152096.diff" + }, + "efcore@0518708": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0518708e0485aa3acc700fdc431250662bb5e9c5", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/0518708e0485aa3acc700fdc431250662bb5e9c5.diff" + }, + "efcore@209f088": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "209f0884ef5e1431c93d54a8ed4cb07382f00930", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/209f0884ef5e1431c93d54a8ed4cb07382f00930.diff" + }, + "efcore@39531c8": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "39531c8c2f36f12abf468d1e16fc4a3340e01fb3", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/39531c8c2f36f12abf468d1e16fc4a3340e01fb3.diff" + }, + "efcore@f254706": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f254706c50785c70694262fb4551949e2388ee70", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/f254706c50785c70694262fb4551949e2388ee70.diff" + }, + "efcore@a707320": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a7073200a938a1bc1e9351c2d78d5993252f6304", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/a7073200a938a1bc1e9351c2d78d5993252f6304.diff" + }, + "efcore@15af73b": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "15af73b210697cf8d0faa35d59ebaa77727ddcca", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/15af73b210697cf8d0faa35d59ebaa77727ddcca.diff" + }, + "efcore@a5a6356": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a5a63566ee771d6feec010877c65b325400cd024", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/a5a63566ee771d6feec010877c65b325400cd024.diff" + }, + "efcore@9c4450c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9c4450cac6b7b434d089c0ff84367bd7b16334d4", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/9c4450cac6b7b434d089c0ff84367bd7b16334d4.diff" + }, + "efcore@d0d82d2": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d0d82d27ea0f400fd7a37617216540375434a618", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/d0d82d27ea0f400fd7a37617216540375434a618.diff" + }, + "efcore@76c0497": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "76c04978f29f605b619b8e398385a2c2b3cf869a", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/76c04978f29f605b619b8e398385a2c2b3cf869a.diff" + }, + "efcore@39c16b2": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "39c16b23e8527b7dd55669fae51fe8ed4958aa29", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/39c16b23e8527b7dd55669fae51fe8ed4958aa29.diff" + }, + "efcore@e006093": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "e0060933b6d93d2b555fb3fb87c301fd17f4e542", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/e0060933b6d93d2b555fb3fb87c301fd17f4e542.diff" + }, + "efcore@c2941e7": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "c2941e740120acc0fa3782d75564ecbde59b9b4f", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/c2941e740120acc0fa3782d75564ecbde59b9b4f.diff" + }, + "efcore@d072427": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d072427012186855f64d089b4c420eed2aac0fb3", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/d072427012186855f64d089b4c420eed2aac0fb3.diff" + }, + "efcore@41811eb": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "41811ebde2fbd5a22bb357f7467833fb3e4f6e87", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/41811ebde2fbd5a22bb357f7467833fb3e4f6e87.diff" + }, + "efcore@fdf01ed": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "fdf01edf7a92b6926798c99c67fe534d9a4b3487", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/fdf01edf7a92b6926798c99c67fe534d9a4b3487.diff" + }, + "efcore@a24cf33": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a24cf33dbdf2afc6c37c23d8004cd1e6bb302105", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/a24cf33dbdf2afc6c37c23d8004cd1e6bb302105.diff" + }, + "efcore@f0fd83c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f0fd83cf5b767b785dead117dcaed5b96a7cfc9e", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/f0fd83cf5b767b785dead117dcaed5b96a7cfc9e.diff" + }, + "efcore@8f03289": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "8f03289d41b063712e875f5b65bb1912279ccaff", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/8f03289d41b063712e875f5b65bb1912279ccaff.diff" + }, + "efcore@28fec6b": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "28fec6bbc81e8f37ba65e74b6c35e3e5f170bb6b", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/28fec6bbc81e8f37ba65e74b6c35e3e5f170bb6b.diff" + }, + "efcore@c538920": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "c53892024475301165995e39cc8492e28bd03d15", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/c53892024475301165995e39cc8492e28bd03d15.diff" + }, + "efcore@1ade1a4": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1ade1a44564d0e0d5bada39e9d7da1a59e6386d2", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/1ade1a44564d0e0d5bada39e9d7da1a59e6386d2.diff" + }, + "efcore@b75d148": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "b75d148db4f5283265f0c4549a149d60c67386f6", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/b75d148db4f5283265f0c4549a149d60c67386f6.diff" + }, + "efcore@1422c65": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1422c65e180e2f27c5bb44bbb5cda0fde87e9d00", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/1422c65e180e2f27c5bb44bbb5cda0fde87e9d00.diff" + }, + "efcore@251f5d3": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "251f5d3979f0c9eae989d21d659d78e9649dada8", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/251f5d3979f0c9eae989d21d659d78e9649dada8.diff" + }, + "efcore@9bad67c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9bad67c62a79d8c3582d5b5b152f493044212898", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/9bad67c62a79d8c3582d5b5b152f493044212898.diff" + }, + "efcore@a6f77af": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a6f77af52457d5405b00d80661ee327bd7bfa3de", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/a6f77af52457d5405b00d80661ee327bd7bfa3de.diff" + }, + "efcore@6a7fa61": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "6a7fa6163f38cd2c55984a03c6019c3f37486048", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/6a7fa6163f38cd2c55984a03c6019c3f37486048.diff" + }, + "efcore@59aa0ae": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "59aa0ae13028b0889c57b414b9a505fc35ac6c0e", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/59aa0ae13028b0889c57b414b9a505fc35ac6c0e.diff" + }, + "efcore@253f08d": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "253f08d9298ca72fc779270a2980898a4f58f3fc", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/253f08d9298ca72fc779270a2980898a4f58f3fc.diff" + }, + "efcore@d3e476b": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d3e476b49cf07c7ffc387dcf3e4d12525bd4f2a7", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/d3e476b49cf07c7ffc387dcf3e4d12525bd4f2a7.diff" + }, + "efcore@a75602c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a75602c4c3a0be424264f332fb15ed1f30a19364", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/a75602c4c3a0be424264f332fb15ed1f30a19364.diff" + }, + "efcore@ddea54e": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ddea54eef47e79112c286aa916f70868b7fe38fc", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/ddea54eef47e79112c286aa916f70868b7fe38fc.diff" + }, + "efcore@df4e613": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "df4e6137c184c7f32005d76e7fd12096aaf08231", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/df4e6137c184c7f32005d76e7fd12096aaf08231.diff" + }, + "efcore@9f8fd9c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9f8fd9c99f44bf292bc0882ab662dfd677387fd0", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/9f8fd9c99f44bf292bc0882ab662dfd677387fd0.diff" + }, + "efcore@462bcf0": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "462bcf0dc7164a83f8e1868d0f8d2d54caebc736", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/462bcf0dc7164a83f8e1868d0f8d2d54caebc736.diff" + }, + "efcore@d34c72b": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d34c72badcb1b7301b39da63bcbcd2272ce877fb", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/d34c72badcb1b7301b39da63bcbcd2272ce877fb.diff" + }, + "efcore@20d5fef": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "20d5fefef6233f65889189e7e114a674ea0bada3", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/20d5fefef6233f65889189e7e114a674ea0bada3.diff" + }, + "efcore@9141489": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "914148900ad6093b6eaf385e34efc67b62f283fd", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/914148900ad6093b6eaf385e34efc67b62f283fd.diff" + }, + "efcore@63f9baa": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "63f9baa106eb737bba2da4cd49dd14fd33fc23b6", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/63f9baa106eb737bba2da4cd49dd14fd33fc23b6.diff" + }, + "efcore@1b36259": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1b36259fae7c7c305fc70f6e8e57e5a6852b93d1", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/1b36259fae7c7c305fc70f6e8e57e5a6852b93d1.diff" + }, + "efcore@94f0b72": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "94f0b72cd66d82ae1db74cb641c6aad9d42bfa3c", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/94f0b72cd66d82ae1db74cb641c6aad9d42bfa3c.diff" + }, + "efcore@11a0a69": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "11a0a691203db84e849ab934602d1bfbf4bd6730", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/11a0a691203db84e849ab934602d1bfbf4bd6730.diff" + }, + "efcore@589a82f": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "589a82fb3c0e47313bf8c72707abdffa6774e0b5", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/589a82fb3c0e47313bf8c72707abdffa6774e0b5.diff" + }, + "efcore@35c6d03": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "35c6d03c8aae8e075f81b06aa54b9e5859f922b8", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/35c6d03c8aae8e075f81b06aa54b9e5859f922b8.diff" + }, + "efcore@b3caffb": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "b3caffb41e091cc5950abebbf414c778b7d296e7", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/b3caffb41e091cc5950abebbf414c778b7d296e7.diff" + }, + "efcore@69db2b6": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "69db2b6d0ff7076cc4cd4512b192ba2dc07676ae", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/69db2b6d0ff7076cc4cd4512b192ba2dc07676ae.diff" + }, + "efcore@82f974b": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "82f974bc1067612a6ef86a82327f78970d655a84", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/82f974bc1067612a6ef86a82327f78970d655a84.diff" + }, + "efcore@3817d73": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "3817d73e752c3d5f5d0ab9bdaf03cafd97bdaed2", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/3817d73e752c3d5f5d0ab9bdaf03cafd97bdaed2.diff" + }, + "efcore@017b6f1": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "017b6f1f0976bf59120c260c942af00220d9c987", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/017b6f1f0976bf59120c260c942af00220d9c987.diff" + }, + "efcore@45eaef0": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "45eaef017ea29a75046bfe15b76b4f2d155335c3", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/45eaef017ea29a75046bfe15b76b4f2d155335c3.diff" + }, + "efcore@a4a91fb": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a4a91fbe0aa860a4f6c379912a8348fabc9ce4c9", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/a4a91fbe0aa860a4f6c379912a8348fabc9ce4c9.diff" + }, + "efcore@3781593": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "3781593673169f93c329ae36c20530d96ffb5668", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/3781593673169f93c329ae36c20530d96ffb5668.diff" + }, + "efcore@356ecab": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "356ecab0e1429a7e36b7f7d8155a73a5d8d6fdef", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/356ecab0e1429a7e36b7f7d8155a73a5d8d6fdef.diff" + }, + "efcore@2277164": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "2277164a74b8d37b1021536657581ade5dd69a60", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/2277164a74b8d37b1021536657581ade5dd69a60.diff" + }, + "efcore@f29112a": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f29112a8f95dd80a4b5adcfaa7e6f800c7d150f2", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/f29112a8f95dd80a4b5adcfaa7e6f800c7d150f2.diff" + }, + "efcore@ecc3936": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ecc3936d55adcb162b9f97dcc19d12fb73fe5817", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/ecc3936d55adcb162b9f97dcc19d12fb73fe5817.diff" + }, + "efcore@be6a920": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "be6a9208b09b33b831d558d5ff48606db2dd0c27", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/be6a9208b09b33b831d558d5ff48606db2dd0c27.diff" + }, + "efcore@79c8ce7": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "79c8ce77076dd5cb24e96971a6ef5dd587777104", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/79c8ce77076dd5cb24e96971a6ef5dd587777104.diff" + }, + "efcore@b48ea4d": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "b48ea4d1c75372cdafb6670b0b88129847e6f10b", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/b48ea4d1c75372cdafb6670b0b88129847e6f10b.diff" + }, + "efcore@b20350a": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "b20350aa8912ee5c579d18025c3b1d601c25ce91", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/b20350aa8912ee5c579d18025c3b1d601c25ce91.diff" + }, + "efcore@92de1c1": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "92de1c13623742f1805ff524b0bdf5aa55362a2a", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/92de1c13623742f1805ff524b0bdf5aa55362a2a.diff" + }, + "efcore@31144c5": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "31144c5b106aa952cb8a9fd672c0442802a39841", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/31144c5b106aa952cb8a9fd672c0442802a39841.diff" + }, + "efcore@3a8fcc4": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "3a8fcc4844f93c49dacacc8b36768dcbd7306c0c", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/3a8fcc4844f93c49dacacc8b36768dcbd7306c0c.diff" + }, + "efcore@50d0a10": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "50d0a108b3f8db74745c8320848750417127510f", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/50d0a108b3f8db74745c8320848750417127510f.diff" + }, + "efcore@0cdfa6e": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0cdfa6e6c2c845a9ddf5f497d3c6249b0fcc1fdf", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/0cdfa6e6c2c845a9ddf5f497d3c6249b0fcc1fdf.diff" + }, + "efcore@8bf0f7f": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "8bf0f7f2a920e697fffe3c2c9945321859fb550e", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/8bf0f7f2a920e697fffe3c2c9945321859fb550e.diff" + }, + "efcore@5117a26": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "5117a262f147897ef9e748e4719fda7ff89a14f5", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/5117a262f147897ef9e748e4719fda7ff89a14f5.diff" + }, + "efcore@d06927c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d06927c4b91b1c671c7a793e5cd40cabd8cde3a1", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/d06927c4b91b1c671c7a793e5cd40cabd8cde3a1.diff" + }, + "efcore@79fdc9f": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "79fdc9ff449c624ae74f4b7fa783400cf079c320", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/79fdc9ff449c624ae74f4b7fa783400cf079c320.diff" + }, + "efcore@1af4e91": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1af4e919c4c4a92d9e67a220c9ea8f6c8476ba89", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/1af4e919c4c4a92d9e67a220c9ea8f6c8476ba89.diff" + }, + "efcore@3031b80": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "3031b80b2cdcc1c64cca3aca8abf5b01c7aa8778", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/3031b80b2cdcc1c64cca3aca8abf5b01c7aa8778.diff" + }, + "efcore@397179c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "397179c2ff5efe4d9ab9f29cba03973b139ef214", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/397179c2ff5efe4d9ab9f29cba03973b139ef214.diff" + }, + "efcore@8bfecfd": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "8bfecfd8ae2af6eaec917ba6484d1c351a286dd3", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/8bfecfd8ae2af6eaec917ba6484d1c351a286dd3.diff" + }, + "efcore@3b8b5b8": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "3b8b5b8b4f12d6f0e9f098120a7f9e58d0a34051", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/3b8b5b8b4f12d6f0e9f098120a7f9e58d0a34051.diff" + }, + "efcore@39beebf": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "39beebf8fa4226d79a0e93c0f0fba00e39389469", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/39beebf8fa4226d79a0e93c0f0fba00e39389469.diff" + }, + "efcore@f1817b2": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f1817b293b233415bbc8a10e942956ee1cec96d4", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/f1817b293b233415bbc8a10e942956ee1cec96d4.diff" + }, + "efcore@41d1ffd": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "41d1ffdc536c4bfac0c177484fb378db0048c32a", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/41d1ffdc536c4bfac0c177484fb378db0048c32a.diff" + }, + "efcore@1ff287c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "1ff287c0ebf17d312ce7f88f37988a13e78ea383", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/1ff287c0ebf17d312ce7f88f37988a13e78ea383.diff" + }, + "efcore@8416688": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "841668899a2848761718456ea9455a1ee40832ac", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/841668899a2848761718456ea9455a1ee40832ac.diff" + }, + "efcore@3441962": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "344196262f9c0a19a10353b6906d80798bcb1c13", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/344196262f9c0a19a10353b6906d80798bcb1c13.diff" + }, + "efcore@b2174cf": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "b2174cfaf64e90005adb5d549ed4843365dae8ed", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/b2174cfaf64e90005adb5d549ed4843365dae8ed.diff" + }, + "efcore@6f682a4": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "6f682a441428430aa1c35e4d6d4b285663932a64", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/6f682a441428430aa1c35e4d6d4b285663932a64.diff" + }, + "efcore@f9393e7": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f9393e713ec0780675b06f942a5c88756be75487", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/f9393e713ec0780675b06f942a5c88756be75487.diff" + }, + "efcore@d08003c": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "d08003cc909e5c5e981862730630b7ffa4901f5b", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/d08003cc909e5c5e981862730630b7ffa4901f5b.diff" + }, + "efcore@aeda6f5": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "aeda6f513a12ac5f34a18f647670e389a607499c", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/aeda6f513a12ac5f34a18f647670e389a607499c.diff" + }, + "efcore@a81cc59": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "a81cc59eeb24ed59cff4c4e4611bc53e04ed3656", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/a81cc59eeb24ed59cff4c4e4611bc53e04ed3656.diff" + }, + "efcore@c5a0f6b": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "c5a0f6b0fd7d694de6aff85463c06a0b92f4975e", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/c5a0f6b0fd7d694de6aff85463c06a0b92f4975e.diff" + }, + "efcore@9817145": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "9817145b2914a465dcfea1f5ec985949e473fd1f", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/9817145b2914a465dcfea1f5ec985949e473fd1f.diff" + }, + "efcore@97db209": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "97db209242c1b8c704ca2a98a68fff8026b0a0de", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/97db209242c1b8c704ca2a98a68fff8026b0a0de.diff" + }, + "efcore@f8d2760": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "f8d276066cfb1fa6a7542564e91050863d264aad", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/f8d276066cfb1fa6a7542564e91050863d264aad.diff" + }, + "efcore@68bb873": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "68bb8733921ea7a2243f780788147a40a21b0fd1", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/68bb8733921ea7a2243f780788147a40a21b0fd1.diff" + }, + "efcore@7f484b1": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "7f484b16c0260143b2b51d2afeb94941dde1a8f5", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/7f484b16c0260143b2b51d2afeb94941dde1a8f5.diff" + }, + "efcore@30dca55": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "30dca55b57c4c2dcfc301acdcb1fca6010397d95", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/30dca55b57c4c2dcfc301acdcb1fca6010397d95.diff" + }, + "efcore@ba4ebfe": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "ba4ebfead3bc91eb1e1fe341a5727618435a1298", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/ba4ebfead3bc91eb1e1fe341a5727618435a1298.diff" + }, + "efcore@365cbc3": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "365cbc30b1b74ac191fe3adeddc0701dade44b6b", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/365cbc30b1b74ac191fe3adeddc0701dade44b6b.diff" + }, + "efcore@bfad1f2": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "bfad1f247175252b02f017831b68ee2c6150cb04", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/bfad1f247175252b02f017831b68ee2c6150cb04.diff" + }, + "efcore@0842c55": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "0842c557655bbcdfd1b745abebdfce7abca38fc2", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/0842c557655bbcdfd1b745abebdfce7abca38fc2.diff" + }, + "efcore@3445554": { + "repo": "efcore", + "branch": "release/11.0.1xx-preview3", + "hash": "34455545b3880af6a2461ff468e10b62b001bb86", + "org": "dotnet", + "url": "https://github.com/dotnet/efcore/commit/34455545b3880af6a2461ff468e10b62b001bb86.diff" + }, + "emsdk@62354f3": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "62354f35260dcf1c6a47ba743abde34823e4bb8b", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/62354f35260dcf1c6a47ba743abde34823e4bb8b.diff" + }, + "emsdk@8ac03c2": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8ac03c25b4d1851006496c701ad8e3c85061928b", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/8ac03c25b4d1851006496c701ad8e3c85061928b.diff" + }, + "emsdk@394c283": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "394c283e513008b3b6a08a7056cbf135ef88852b", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/394c283e513008b3b6a08a7056cbf135ef88852b.diff" + }, + "emsdk@1adfd1f": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1adfd1f97abbcfe01542771ff83fb211a8888393", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/1adfd1f97abbcfe01542771ff83fb211a8888393.diff" + }, + "emsdk@5ff7edc": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5ff7edcc22b3086ea8ac470156f87aa663b7703e", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/5ff7edcc22b3086ea8ac470156f87aa663b7703e.diff" + }, + "emsdk@afe7a79": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "afe7a7992f15336bc89699fba33e6d6babae4ccb", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/afe7a7992f15336bc89699fba33e6d6babae4ccb.diff" + }, + "emsdk@9994979": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "99949795bb2c3e4fa1d1f0e6428e748f60f9af26", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/99949795bb2c3e4fa1d1f0e6428e748f60f9af26.diff" + }, + "emsdk@20e1677": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "20e16771c7b330c4e2747451a0ab8f618b1ffcea", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/20e16771c7b330c4e2747451a0ab8f618b1ffcea.diff" + }, + "emsdk@1cf2cba": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1cf2cba15a02dd26cef0de36d0ec45bdf8e9f0c5", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/1cf2cba15a02dd26cef0de36d0ec45bdf8e9f0c5.diff" + }, + "emsdk@4c20000": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4c20000439a080d8e0256c3fee606a0cd7c752f6", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/4c20000439a080d8e0256c3fee606a0cd7c752f6.diff" + }, + "emsdk@f801db5": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f801db502d095b33c51145089351a45b42b9579f", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/f801db502d095b33c51145089351a45b42b9579f.diff" + }, + "emsdk@062d1d8": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "062d1d875fab62bf4eb558138405ce993a989f3e", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/062d1d875fab62bf4eb558138405ce993a989f3e.diff" + }, + "emsdk@113a4b4": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "113a4b46ad5ff9ebd5cb675643a4f22435412950", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/113a4b46ad5ff9ebd5cb675643a4f22435412950.diff" + }, + "emsdk@90915b7": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "90915b7a5a7caadb380a602acaea650d1a73d3df", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/90915b7a5a7caadb380a602acaea650d1a73d3df.diff" + }, + "emsdk@08d0c10": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "08d0c101f25790181c1a56bd76295f587bf7115b", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/08d0c101f25790181c1a56bd76295f587bf7115b.diff" + }, + "emsdk@ee4b2f7": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ee4b2f7662f46e409d2beba0740c0f03c40789d1", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/ee4b2f7662f46e409d2beba0740c0f03c40789d1.diff" + }, + "emsdk@5a0edd4": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5a0edd4ac5cc3b75ebb7b4f262ab7026f7f9d89b", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/5a0edd4ac5cc3b75ebb7b4f262ab7026f7f9d89b.diff" + }, + "emsdk@112bfc2": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "112bfc2b53410c502f5eb74d8dea80f216e2acb6", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/112bfc2b53410c502f5eb74d8dea80f216e2acb6.diff" + }, + "emsdk@22404dd": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "22404ddedcab4587e499adc41fae4a3cff36cfce", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/22404ddedcab4587e499adc41fae4a3cff36cfce.diff" + }, + "emsdk@d3326da": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d3326da7088849767306ce41ebe388b8671b8b9b", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/d3326da7088849767306ce41ebe388b8671b8b9b.diff" + }, + "emsdk@2a18dd9": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2a18dd982536d9a0f8099fbab71860ef1b7060a5", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/2a18dd982536d9a0f8099fbab71860ef1b7060a5.diff" + }, + "emsdk@79dafee": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "79dafee2d917cf72cec493cd382809e10cda3018", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/79dafee2d917cf72cec493cd382809e10cda3018.diff" + }, + "emsdk@b06720c": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b06720c05aa4a0f044cdbb099551bc8fb93532d9", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/b06720c05aa4a0f044cdbb099551bc8fb93532d9.diff" + }, + "emsdk@2ac1a6e": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2ac1a6e9fe35dd390956a0510ce6990aa861a202", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/2ac1a6e9fe35dd390956a0510ce6990aa861a202.diff" + }, + "emsdk@c70f075": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c70f075671bf19f8e4036fa53cf456e13ebbf170", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/c70f075671bf19f8e4036fa53cf456e13ebbf170.diff" + }, + "emsdk@776fcb4": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "776fcb4606527b8f608452b1a4bf1ea676d1c92d", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/776fcb4606527b8f608452b1a4bf1ea676d1c92d.diff" + }, + "emsdk@ef73528": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ef735282795de71b7124d356202751f999bf42c2", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/ef735282795de71b7124d356202751f999bf42c2.diff" + }, + "emsdk@3e71182": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3e71182dbe7beab5026ac047feda0f050f3df4f1", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/3e71182dbe7beab5026ac047feda0f050f3df4f1.diff" + }, + "emsdk@bc4c4fb": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "bc4c4fbbd8dc0be5b07ee4a9e44da940c0b655be", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/bc4c4fbbd8dc0be5b07ee4a9e44da940c0b655be.diff" + }, + "emsdk@c0a0f5f": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c0a0f5f2b29cda7aaa2f61b89661f1dc212938e5", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/c0a0f5f2b29cda7aaa2f61b89661f1dc212938e5.diff" + }, + "emsdk@35f3868": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "35f3868067a19b828ec26536858940d2e293d144", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/35f3868067a19b828ec26536858940d2e293d144.diff" + }, + "emsdk@0426e0c": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0426e0c7db6ed0769b4e8748223f54b7c5ccff04", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/0426e0c7db6ed0769b4e8748223f54b7c5ccff04.diff" + }, + "emsdk@41bf542": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "41bf542514fcfa91f15dbeb4ce450f6079f941e8", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/41bf542514fcfa91f15dbeb4ce450f6079f941e8.diff" + }, + "emsdk@506ea9f": { + "repo": "emsdk", + "branch": "release/11.0.1xx-preview3", + "hash": "506ea9f39d14e8ddba87e4dee4eb7b56295bff29", + "org": "dotnet", + "url": "https://github.com/dotnet/emsdk/commit/506ea9f39d14e8ddba87e4dee4eb7b56295bff29.diff" + }, + "fsharp@1890128": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "189012832158c3046f729f34f10dade9e4305707", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/189012832158c3046f729f34f10dade9e4305707.diff" + }, + "fsharp@87dc60c": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "87dc60c6661a80ed32ccd52730cb0cff9c6059fe", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/87dc60c6661a80ed32ccd52730cb0cff9c6059fe.diff" + }, + "fsharp@1c0cc5e": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "1c0cc5e781f83565c281be9d4a2ae932bc25868e", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/1c0cc5e781f83565c281be9d4a2ae932bc25868e.diff" + }, + "fsharp@761162d": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "761162d808de3a3cb05354a2d99e430a5402c802", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/761162d808de3a3cb05354a2d99e430a5402c802.diff" + }, + "fsharp@6479611": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "64796117bf609b752495a9cd005695e7f3aba5ed", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/64796117bf609b752495a9cd005695e7f3aba5ed.diff" + }, + "fsharp@966cb0c": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "966cb0cea91d07b8f8d6ea365b94636b9e2bfda2", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/966cb0cea91d07b8f8d6ea365b94636b9e2bfda2.diff" + }, + "fsharp@8b46242": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "8b462422a8856822bdc937958baf1938696cc65a", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/8b462422a8856822bdc937958baf1938696cc65a.diff" + }, + "fsharp@68373f5": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "68373f5bb3aec4c2364b344d3d01981e5f6ba876", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/68373f5bb3aec4c2364b344d3d01981e5f6ba876.diff" + }, + "fsharp@635a57e": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "635a57ec6fded32b2dbe5b36e2d3c527d71b7039", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/635a57ec6fded32b2dbe5b36e2d3c527d71b7039.diff" + }, + "fsharp@3b1218b": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "3b1218bfe5e73df49f7d8892d234fa2eef07bc8b", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/3b1218bfe5e73df49f7d8892d234fa2eef07bc8b.diff" + }, + "fsharp@56d1363": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "56d1363949e3d2c979c063ae9ce245d16f449404", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/56d1363949e3d2c979c063ae9ce245d16f449404.diff" + }, + "fsharp@66c4f0f": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "66c4f0f765891a49142e38b086d15f671c2c2c21", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/66c4f0f765891a49142e38b086d15f671c2c2c21.diff" + }, + "fsharp@3f33dbb": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "3f33dbb07e817f916beaa433aa87930ba99d2d92", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/3f33dbb07e817f916beaa433aa87930ba99d2d92.diff" + }, + "fsharp@2bfd488": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "2bfd4883d0e7ac79930ada96b862173207c8c58c", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/2bfd4883d0e7ac79930ada96b862173207c8c58c.diff" + }, + "fsharp@afd9294": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "afd9294a86ab64070a148f3e465d8d591502bbd2", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/afd9294a86ab64070a148f3e465d8d591502bbd2.diff" + }, + "fsharp@6f1cc37": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "6f1cc377f42cdbf8f4829b29e0d4a0a3516da3fa", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/6f1cc377f42cdbf8f4829b29e0d4a0a3516da3fa.diff" + }, + "fsharp@c80d142": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "c80d142a24027fd2933e22649f53639907bf7553", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/c80d142a24027fd2933e22649f53639907bf7553.diff" + }, + "fsharp@a5baeaa": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "a5baeaa0b18df03423bc14ede9d1234fff46e511", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/a5baeaa0b18df03423bc14ede9d1234fff46e511.diff" + }, + "fsharp@5111aeb": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "5111aebe02fe8940eb792e553349780c19735203", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/5111aebe02fe8940eb792e553349780c19735203.diff" + }, + "fsharp@a581d51": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "a581d5135afe598e533b67b3f2030076dc1663b6", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/a581d5135afe598e533b67b3f2030076dc1663b6.diff" + }, + "fsharp@6609928": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "66099288ae991b277ccb8f89b10324ff43fc7c98", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/66099288ae991b277ccb8f89b10324ff43fc7c98.diff" + }, + "fsharp@7424154": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "7424154245452ff1d813929c2b88476ede9ab299", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/7424154245452ff1d813929c2b88476ede9ab299.diff" + }, + "fsharp@ab1f6ce": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "ab1f6ceaaec997d2854ac1c07a6c0f107675d95c", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/ab1f6ceaaec997d2854ac1c07a6c0f107675d95c.diff" + }, + "fsharp@4b36640": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "4b3664004ca689e0e4adb3fceadcb60bccb616d9", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/4b3664004ca689e0e4adb3fceadcb60bccb616d9.diff" + }, + "fsharp@e199206": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "e1992062f6beaa6b28764baa025df83222b88553", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/e1992062f6beaa6b28764baa025df83222b88553.diff" + }, + "fsharp@66beb38": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "66beb3879399b0baa26d90117f5eedb218f5bc84", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/66beb3879399b0baa26d90117f5eedb218f5bc84.diff" + }, + "fsharp@7981cb5": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "7981cb5fcd56382b012299e0420ba19a26b1411c", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/7981cb5fcd56382b012299e0420ba19a26b1411c.diff" + }, + "fsharp@e6f00ee": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "e6f00ee0f621f89dbaa129f1afffb585fc82fd3b", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/e6f00ee0f621f89dbaa129f1afffb585fc82fd3b.diff" + }, + "fsharp@b54ff0a": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "b54ff0ab407514caa4cff5414302c3da43747629", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/b54ff0ab407514caa4cff5414302c3da43747629.diff" + }, + "fsharp@7a075f3": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "7a075f331517235d5c097cab2830923f529b13d7", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/7a075f331517235d5c097cab2830923f529b13d7.diff" + }, + "fsharp@20aa5a4": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "20aa5a4fa92e61f62157b3d0e515c3346cacc0fc", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/20aa5a4fa92e61f62157b3d0e515c3346cacc0fc.diff" + }, + "fsharp@71c0951": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "71c09517f5f60596dfa0ae50b6e7e40eb52a0d16", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/71c09517f5f60596dfa0ae50b6e7e40eb52a0d16.diff" + }, + "fsharp@4a7df88": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "4a7df888e4eb96d220fb8174d9f91d27bf348db1", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/4a7df888e4eb96d220fb8174d9f91d27bf348db1.diff" + }, + "fsharp@1dd1db0": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "1dd1db0d7264ab4b6543a93a90e347ba6514c1a3", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/1dd1db0d7264ab4b6543a93a90e347ba6514c1a3.diff" + }, + "fsharp@1b1deba": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "1b1debafe6f023849e429eb500d42f7edce58017", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/1b1debafe6f023849e429eb500d42f7edce58017.diff" + }, + "fsharp@5a0255a": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "5a0255a103c4d568fbfe7d5f94ca70ec9c42cfac", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/5a0255a103c4d568fbfe7d5f94ca70ec9c42cfac.diff" + }, + "fsharp@3f5a346": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "3f5a346b1058c0f13e5632b66396169726e94ed6", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/3f5a346b1058c0f13e5632b66396169726e94ed6.diff" + }, + "fsharp@552ef9d": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "552ef9da3db980667b05119315b9783a38c3c975", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/552ef9da3db980667b05119315b9783a38c3c975.diff" + }, + "fsharp@487aa8b": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "487aa8b58e3b6aefb9f40a4c5f3b83fdde14aa88", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/487aa8b58e3b6aefb9f40a4c5f3b83fdde14aa88.diff" + }, + "fsharp@67a56a4": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "67a56a4d6ed5123780f8a4c01fe7eaa615187ec0", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/67a56a4d6ed5123780f8a4c01fe7eaa615187ec0.diff" + }, + "fsharp@afdccf9": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "afdccf98e7b0b7d68a49865bf77d083586ca36d5", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/afdccf98e7b0b7d68a49865bf77d083586ca36d5.diff" + }, + "fsharp@6f6440a": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "6f6440a943bc8a9439c282ce84acf4e9d06849ae", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/6f6440a943bc8a9439c282ce84acf4e9d06849ae.diff" + }, + "fsharp@f80d20f": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "f80d20f8858929bcd9cb9c7143526c46510c4aee", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/f80d20f8858929bcd9cb9c7143526c46510c4aee.diff" + }, + "fsharp@0a710a8": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "0a710a84f4f070c1640335ba30048e85ee3f2e65", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/0a710a84f4f070c1640335ba30048e85ee3f2e65.diff" + }, + "fsharp@4a2c294": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "4a2c294ce1241ccfe2e1fe350ae0ad03c487e8b5", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/4a2c294ce1241ccfe2e1fe350ae0ad03c487e8b5.diff" + }, + "fsharp@ff81858": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "ff81858ea7eaa4631e1d1ad6aa4f61d7b8967139", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/ff81858ea7eaa4631e1d1ad6aa4f61d7b8967139.diff" + }, + "fsharp@f00319f": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "f00319f6dc1550d397c4f054def741abe40e2aee", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/f00319f6dc1550d397c4f054def741abe40e2aee.diff" + }, + "fsharp@0fe04d0": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "0fe04d056dc85913059184c24a5ff4ee5b8c0895", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/0fe04d056dc85913059184c24a5ff4ee5b8c0895.diff" + }, + "fsharp@9c01f26": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "9c01f26f2a9c7120c6b2e5674dab1c47d8c15bad", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/9c01f26f2a9c7120c6b2e5674dab1c47d8c15bad.diff" + }, + "fsharp@6908bca": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "6908bca2cb9b6aaf9eac5fad0ee3f4916f2ef654", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/6908bca2cb9b6aaf9eac5fad0ee3f4916f2ef654.diff" + }, + "fsharp@d04f46f": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "d04f46f4d3c2db8ee8dcd050dc56c6987f445e60", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/d04f46f4d3c2db8ee8dcd050dc56c6987f445e60.diff" + }, + "fsharp@be84684": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "be84684d803d92d063b826bc9124acc41170e732", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/be84684d803d92d063b826bc9124acc41170e732.diff" + }, + "fsharp@fdea689": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "fdea689730fdbc2d8648cd8f034a2667baedd037", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/fdea689730fdbc2d8648cd8f034a2667baedd037.diff" + }, + "fsharp@38f78a9": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "38f78a9889a48d39b01044f5b543e956d5f33890", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/38f78a9889a48d39b01044f5b543e956d5f33890.diff" + }, + "fsharp@64e384d": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "64e384dee7c8bedb51a70b924e4475373921e5dc", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/64e384dee7c8bedb51a70b924e4475373921e5dc.diff" + }, + "fsharp@38b455d": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "38b455d2dd853638659f5995dca5727a625435cb", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/38b455d2dd853638659f5995dca5727a625435cb.diff" + }, + "fsharp@59581dc": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "59581dcbfdac984a048979d1d8d912a61841b1fe", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/59581dcbfdac984a048979d1d8d912a61841b1fe.diff" + }, + "fsharp@f915353": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "f91535329a8d07d8873ac953de122eec79ad66aa", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/f91535329a8d07d8873ac953de122eec79ad66aa.diff" + }, + "fsharp@9e37b2c": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "9e37b2cff2c46b505fb54ae27730caab6507faef", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/9e37b2cff2c46b505fb54ae27730caab6507faef.diff" + }, + "fsharp@1cd0ca0": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "1cd0ca0c3d7afae13ae861c0ecc836efee881c59", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/1cd0ca0c3d7afae13ae861c0ecc836efee881c59.diff" + }, + "fsharp@5ee6d09": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "5ee6d09413808696f763b4e2f94d423e990bc516", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/5ee6d09413808696f763b4e2f94d423e990bc516.diff" + }, + "fsharp@632a0ab": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "632a0ab8daf07f3a331a01b3469c693444367f46", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/632a0ab8daf07f3a331a01b3469c693444367f46.diff" + }, + "fsharp@fb1ca7e": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "fb1ca7e07e3fe174a8c2a2437ad1683318a4a87b", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/fb1ca7e07e3fe174a8c2a2437ad1683318a4a87b.diff" + }, + "fsharp@0db49dd": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "0db49dd664638b225d76b38b16708bec8073e66d", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/0db49dd664638b225d76b38b16708bec8073e66d.diff" + }, + "fsharp@251aaf2": { + "repo": "fsharp", + "branch": "release/11.0.1xx-preview3", + "hash": "251aaf25da198ded2e520f6d54f98e7d4475fe2f", + "org": "dotnet", + "url": "https://github.com/dotnet/fsharp/commit/251aaf25da198ded2e520f6d54f98e7d4475fe2f.diff" + }, + "msbuild@28e6097": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "28e6097a5fb37178a0392f48e8dfc613cb5b7117", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/28e6097a5fb37178a0392f48e8dfc613cb5b7117.diff" + }, + "msbuild@885e1bb": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "885e1bba46ccb692a5e5ac3d0c2de3d977d8a2d8", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/885e1bba46ccb692a5e5ac3d0c2de3d977d8a2d8.diff" + }, + "msbuild@6fdc193": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "6fdc193fc1175af3e3257f9c773871a24ee7fad6", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/6fdc193fc1175af3e3257f9c773871a24ee7fad6.diff" + }, + "msbuild@9cc6c63": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "9cc6c63aea770c250c3a6c1838e785ab4954fc1e", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/9cc6c63aea770c250c3a6c1838e785ab4954fc1e.diff" + }, + "msbuild@1a818e7": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "1a818e7b93b44788d5ca0f3967c366159b14777b", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/1a818e7b93b44788d5ca0f3967c366159b14777b.diff" + }, + "msbuild@a2c1035": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "a2c1035b63dac965b6f0787c486c52b08202a44e", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/a2c1035b63dac965b6f0787c486c52b08202a44e.diff" + }, + "msbuild@b781c76": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "b781c76e29a52dac38836f98328cee9737993de9", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/b781c76e29a52dac38836f98328cee9737993de9.diff" + }, + "msbuild@c48fb46": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "c48fb46ac1a2cc22ed2605b58ea04e3347a27b9f", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/c48fb46ac1a2cc22ed2605b58ea04e3347a27b9f.diff" + }, + "msbuild@326f6a7": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "326f6a7ab21090d2938f4c791928056c007afc7e", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/326f6a7ab21090d2938f4c791928056c007afc7e.diff" + }, + "msbuild@b8f5ea0": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "b8f5ea02a1a54a2bb3409909d79751da601c9bf1", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/b8f5ea02a1a54a2bb3409909d79751da601c9bf1.diff" + }, + "msbuild@ab7dbb6": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "ab7dbb6fd2eaa55470da996a1c508fe72949fa56", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/ab7dbb6fd2eaa55470da996a1c508fe72949fa56.diff" + }, + "msbuild@5ac8ab0": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "5ac8ab02e5bc7243327e98282a87f1962243f0cb", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/5ac8ab02e5bc7243327e98282a87f1962243f0cb.diff" + }, + "msbuild@414f0ac": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "414f0acf7486ff8b4887ddbba5717b030c2f92a3", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/414f0acf7486ff8b4887ddbba5717b030c2f92a3.diff" + }, + "msbuild@074bba0": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "074bba0ef36d6386e022c27a37a8dc61372eea37", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/074bba0ef36d6386e022c27a37a8dc61372eea37.diff" + }, + "msbuild@77c8e1f": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "77c8e1f60c451dcd1267200d870c265c93524bd9", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/77c8e1f60c451dcd1267200d870c265c93524bd9.diff" + }, + "msbuild@ec66ab6": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "ec66ab6f7bacb4614826c7808aa16ad388604cb5", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/ec66ab6f7bacb4614826c7808aa16ad388604cb5.diff" + }, + "msbuild@7d3313c": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "7d3313c23556427139a4edb33418783d52fe3c06", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/7d3313c23556427139a4edb33418783d52fe3c06.diff" + }, + "msbuild@ac21192": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "ac211928a0181e2374412cab0832a1a11c40d257", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/ac211928a0181e2374412cab0832a1a11c40d257.diff" + }, + "msbuild@98231a0": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "98231a0f9d8ee91c0a974d20375d17708958a598", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/98231a0f9d8ee91c0a974d20375d17708958a598.diff" + }, + "msbuild@c8011cb": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "c8011cb094504f903a73a2e7d690faf2f64798fb", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/c8011cb094504f903a73a2e7d690faf2f64798fb.diff" + }, + "msbuild@8b542c4": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "8b542c432904d460d7e1ef9b0ca5d6346e9fa79a", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/8b542c432904d460d7e1ef9b0ca5d6346e9fa79a.diff" + }, + "msbuild@4b59b45": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "4b59b45a52a9196852cb1a5184e10bc79ecf8926", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/4b59b45a52a9196852cb1a5184e10bc79ecf8926.diff" + }, + "msbuild@9f3a7a5": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "9f3a7a56583f496a9713a0da2381194a4fee58d3", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/9f3a7a56583f496a9713a0da2381194a4fee58d3.diff" + }, + "msbuild@3477e49": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "3477e49ea400d3fcae00dad9370b20fa88dfd86a", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/3477e49ea400d3fcae00dad9370b20fa88dfd86a.diff" + }, + "msbuild@b481c50": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "b481c50980677f430d6f617b3093969267c09713", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/b481c50980677f430d6f617b3093969267c09713.diff" + }, + "msbuild@b93059c": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "b93059caee3e3eef947a863966545b65ff8b4834", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/b93059caee3e3eef947a863966545b65ff8b4834.diff" + }, + "msbuild@399d597": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "399d597f7499d230f71c809ebd659538deed6246", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/399d597f7499d230f71c809ebd659538deed6246.diff" + }, + "msbuild@676f32c": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "676f32c6c3099efbfcecc313b4f8e91325006ede", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/676f32c6c3099efbfcecc313b4f8e91325006ede.diff" + }, + "msbuild@9d58c2f": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "9d58c2fa848d9048e4d947c705c25529af0ea087", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/9d58c2fa848d9048e4d947c705c25529af0ea087.diff" + }, + "msbuild@0b2773e": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "0b2773ead1e5f53eee687786dee46c168a876b56", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/0b2773ead1e5f53eee687786dee46c168a876b56.diff" + }, + "msbuild@986a951": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "986a951032a2461db8098ae0d57a53a4e27f49a4", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/986a951032a2461db8098ae0d57a53a4e27f49a4.diff" + }, + "msbuild@6500dd2": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "6500dd278aed2749db445942790934e3c0d8c729", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/6500dd278aed2749db445942790934e3c0d8c729.diff" + }, + "msbuild@bf9f757": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "bf9f75751faf2a2686214b8dc42072013f0eb3f3", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/bf9f75751faf2a2686214b8dc42072013f0eb3f3.diff" + }, + "msbuild@fee9971": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "fee99710e8eebe315804cb99e0f017cac8fcb3b4", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/fee99710e8eebe315804cb99e0f017cac8fcb3b4.diff" + }, + "msbuild@0655967": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "06559675ae88a402186b5f5df7f0336f652bce06", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/06559675ae88a402186b5f5df7f0336f652bce06.diff" + }, + "msbuild@fd46d4a": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "fd46d4abc314a054dc91b2690ae23c012771bf3b", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/fd46d4abc314a054dc91b2690ae23c012771bf3b.diff" + }, + "msbuild@ef957b7": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "ef957b7daa9e0ea5339305953e2c1fdefeb8a14c", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/ef957b7daa9e0ea5339305953e2c1fdefeb8a14c.diff" + }, + "msbuild@6fa57bb": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "6fa57bb29bf7f21419daa099d06b19c727b53dd1", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/6fa57bb29bf7f21419daa099d06b19c727b53dd1.diff" + }, + "msbuild@e2b57d0": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "e2b57d063337acb396de02fc0c3909293d0c9dbd", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/e2b57d063337acb396de02fc0c3909293d0c9dbd.diff" + }, + "msbuild@6a4c26f": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "6a4c26f403d07cadd207d027005e7f5f74fd3830", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/6a4c26f403d07cadd207d027005e7f5f74fd3830.diff" + }, + "msbuild@7d73e8e": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "7d73e8e9074fe9a4420e38cd22d45645b28a11f7", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/7d73e8e9074fe9a4420e38cd22d45645b28a11f7.diff" + }, + "msbuild@8cee1da": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "8cee1da9a6b89b6779b31e4c542bd2ae7a841471", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/8cee1da9a6b89b6779b31e4c542bd2ae7a841471.diff" + }, + "msbuild@df3c977": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "df3c977425e16a17b54b80ec687f312afea7ba81", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/df3c977425e16a17b54b80ec687f312afea7ba81.diff" + }, + "msbuild@aac4696": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "aac4696915ee1d6f7bba62824a693ecbfe912fea", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/aac4696915ee1d6f7bba62824a693ecbfe912fea.diff" + }, + "msbuild@5215c7e": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "5215c7eb64194afd88c4bbea0a38df1dddc0898e", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/5215c7eb64194afd88c4bbea0a38df1dddc0898e.diff" + }, + "msbuild@4ca2875": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "4ca2875effff39aa479ba01125a969ae6ed07504", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/4ca2875effff39aa479ba01125a969ae6ed07504.diff" + }, + "msbuild@337c123": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "337c1237984c11add49298f8682b1ab1a3a7db12", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/337c1237984c11add49298f8682b1ab1a3a7db12.diff" + }, + "msbuild@1cbd743": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "1cbd743941a65106daa31974d0236dad55b72c14", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/1cbd743941a65106daa31974d0236dad55b72c14.diff" + }, + "msbuild@1f15113": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "1f15113a63aca3fa28c03b9db6df3c7cc0c43c77", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/1f15113a63aca3fa28c03b9db6df3c7cc0c43c77.diff" + }, + "msbuild@72d89ab": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "72d89ab5c80b2154eb8985f542cde6a690d64fb1", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/72d89ab5c80b2154eb8985f542cde6a690d64fb1.diff" + }, + "msbuild@f2213b0": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "f2213b00860c0835fd1f20e4d0ba87857f468e24", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/f2213b00860c0835fd1f20e4d0ba87857f468e24.diff" + }, + "msbuild@1688a71": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "1688a711f9ec4e84cc001f8d2cdf03fd30c2cd3b", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/1688a711f9ec4e84cc001f8d2cdf03fd30c2cd3b.diff" + }, + "msbuild@0bd8bb3": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "0bd8bb358d86af024d4adfed592014343f21968b", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/0bd8bb358d86af024d4adfed592014343f21968b.diff" + }, + "msbuild@52f1e9d": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "52f1e9d2d70daaa89d020376839ddef20a24c774", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/52f1e9d2d70daaa89d020376839ddef20a24c774.diff" + }, + "msbuild@18baac8": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "18baac818bc0f26c21450f07265b6c79394beade", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/18baac818bc0f26c21450f07265b6c79394beade.diff" + }, + "msbuild@17e89c7": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "17e89c7e6a534e2ae5331232782d09b00bbc7ae9", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/17e89c7e6a534e2ae5331232782d09b00bbc7ae9.diff" + }, + "msbuild@cb266c7": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "cb266c792d2f1d2b18b7a1695e073cb8fa79e7d5", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/cb266c792d2f1d2b18b7a1695e073cb8fa79e7d5.diff" + }, + "msbuild@2a728a3": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "2a728a3f6d7fd640c3497c0506944bcfcb29ce05", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/2a728a3f6d7fd640c3497c0506944bcfcb29ce05.diff" + }, + "msbuild@32d344d": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "32d344d3244dae8c22c7d3429fa49f97d405c34c", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/32d344d3244dae8c22c7d3429fa49f97d405c34c.diff" + }, + "msbuild@960ca3c": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "960ca3c6de4f31772372166bfb2c11ed4850fe47", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/960ca3c6de4f31772372166bfb2c11ed4850fe47.diff" + }, + "msbuild@6bde8dc": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "6bde8dc7139b87d0034c6bd2c5cb2d1320dd17f7", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/6bde8dc7139b87d0034c6bd2c5cb2d1320dd17f7.diff" + }, + "msbuild@8d5ad98": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "8d5ad98986a55aeaa1a19b22f56544fa53375082", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/8d5ad98986a55aeaa1a19b22f56544fa53375082.diff" + }, + "msbuild@673ef31": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "673ef312c9a101c3303a917bd896529bb481c5af", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/673ef312c9a101c3303a917bd896529bb481c5af.diff" + }, + "msbuild@b717f6f": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "b717f6f704d23ae4d7d7770b06174ef9df2d0b9c", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/b717f6f704d23ae4d7d7770b06174ef9df2d0b9c.diff" + }, + "msbuild@05668ef": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "05668efeb9eba3bfaddb6ffa176b1f0ca69b7c26", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/05668efeb9eba3bfaddb6ffa176b1f0ca69b7c26.diff" + }, + "msbuild@82c3923": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "82c39230b22cba0703bc8054597ee51c72c992ce", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/82c39230b22cba0703bc8054597ee51c72c992ce.diff" + }, + "msbuild@6e04068": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "6e04068ff025bc78202114fa00ecb4c54b909b3c", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/6e04068ff025bc78202114fa00ecb4c54b909b3c.diff" + }, + "msbuild@dfe5370": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "dfe53707a4d9caf08db0235112e5f4bcd9302d65", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/dfe53707a4d9caf08db0235112e5f4bcd9302d65.diff" + }, + "msbuild@5071b11": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "5071b11439964a74583693723fc0db70405e30a1", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/5071b11439964a74583693723fc0db70405e30a1.diff" + }, + "msbuild@ec15050": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "ec150504ad686b826eae50cd9357972a8d4e84b3", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/ec150504ad686b826eae50cd9357972a8d4e84b3.diff" + }, + "msbuild@6c499a7": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "6c499a72be37b21dbc32e8b03685aeec3092f599", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/6c499a72be37b21dbc32e8b03685aeec3092f599.diff" + }, + "msbuild@37cc8b7": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "37cc8b7fb0576239595d71de4eeb98604d8c4a92", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/37cc8b7fb0576239595d71de4eeb98604d8c4a92.diff" + }, + "msbuild@168763b": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "168763bdf8e2ed0722471a325ae420360401d069", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/168763bdf8e2ed0722471a325ae420360401d069.diff" + }, + "msbuild@d84a0dc": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "d84a0dc9f7cfcfe95cd1d594bf27edb73fdc2edf", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/d84a0dc9f7cfcfe95cd1d594bf27edb73fdc2edf.diff" + }, + "msbuild@1b923e2": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "1b923e2e8344af9183a26c2f4bd5ddf757c7a344", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/1b923e2e8344af9183a26c2f4bd5ddf757c7a344.diff" + }, + "msbuild@0f7f8dd": { + "repo": "msbuild", + "branch": "release/11.0.1xx-preview3", + "hash": "0f7f8dd1e6f0f8a5cac5e41b53c6f41436e41718", + "org": "dotnet", + "url": "https://github.com/dotnet/msbuild/commit/0f7f8dd1e6f0f8a5cac5e41b53c6f41436e41718.diff" + }, + "nuget-client@88c27a6": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "88c27a6caf1124db7a5f21c485457db83d02cca7", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/88c27a6caf1124db7a5f21c485457db83d02cca7.diff" + }, + "nuget-client@f826ad4": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "f826ad4d9dd1893527a93c78f83630ba9cfe75e1", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/f826ad4d9dd1893527a93c78f83630ba9cfe75e1.diff" + }, + "nuget-client@1158132": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "115813246d3f60f133e2d58fc7240c1c98f8a279", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/115813246d3f60f133e2d58fc7240c1c98f8a279.diff" + }, + "nuget-client@d4425db": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "d4425db531b7bd34d4d7cb19a7e9c65fbcf4705b", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/d4425db531b7bd34d4d7cb19a7e9c65fbcf4705b.diff" + }, + "nuget-client@c041177": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "c04117726d78f94966f0dfc85004c52842a05d66", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/c04117726d78f94966f0dfc85004c52842a05d66.diff" + }, + "nuget-client@2ba46c4": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "2ba46c449e088398864187201125a57c3dde1cd6", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/2ba46c449e088398864187201125a57c3dde1cd6.diff" + }, + "nuget-client@76b9210": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "76b921046f03a1e4e269603ae72d444c73ed6277", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/76b921046f03a1e4e269603ae72d444c73ed6277.diff" + }, + "nuget-client@a561a5b": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "a561a5b16437cd7e7c413b3629362959ce77524f", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/a561a5b16437cd7e7c413b3629362959ce77524f.diff" + }, + "nuget-client@a52c5c1": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "a52c5c16c4c267bc8d63a39fa6e2a10bba980b8b", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/a52c5c16c4c267bc8d63a39fa6e2a10bba980b8b.diff" + }, + "nuget-client@3534a18": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "3534a187a6b2126ea950f6dcbcd88a8a2a76206b", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/3534a187a6b2126ea950f6dcbcd88a8a2a76206b.diff" + }, + "nuget-client@8a9eabb": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "8a9eabb4379e90764ef3fd03b782709ba66cde27", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/8a9eabb4379e90764ef3fd03b782709ba66cde27.diff" + }, + "nuget-client@a4675d8": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "a4675d8cf49e9af295656ed06f872cff70a42d83", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/a4675d8cf49e9af295656ed06f872cff70a42d83.diff" + }, + "nuget-client@c0c368a": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "c0c368afb766d6653523366116af3519093ea595", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/c0c368afb766d6653523366116af3519093ea595.diff" + }, + "nuget-client@a3f6e96": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "a3f6e966e935476773a92b2ba7429fc7a06e9dd1", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/a3f6e966e935476773a92b2ba7429fc7a06e9dd1.diff" + }, + "nuget-client@8deb76a": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "8deb76a20811f7b78531b66a1024cfe9e650cc69", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/8deb76a20811f7b78531b66a1024cfe9e650cc69.diff" + }, + "nuget-client@ab7d0d6": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "ab7d0d6574a3509715c698682cbb744cf79414b7", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/ab7d0d6574a3509715c698682cbb744cf79414b7.diff" + }, + "nuget-client@a553524": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "a553524087bd97de4425ad913c5b513153751a6a", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/a553524087bd97de4425ad913c5b513153751a6a.diff" + }, + "nuget-client@f424430": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "f42443048a1c0016673852254bb5d9fc80abc645", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/f42443048a1c0016673852254bb5d9fc80abc645.diff" + }, + "nuget-client@3619c9f": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "3619c9f4f3baaf4de98b19735fcf8b7390167e20", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/3619c9f4f3baaf4de98b19735fcf8b7390167e20.diff" + }, + "nuget-client@b761098": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "b761098d4c1b08bf1fb082d7dc7f276c41648c6a", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/b761098d4c1b08bf1fb082d7dc7f276c41648c6a.diff" + }, + "nuget-client@2233ffd": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "2233ffd23f1c58f4495ba90ec4a9efc5f9a250fa", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/2233ffd23f1c58f4495ba90ec4a9efc5f9a250fa.diff" + }, + "nuget-client@e0311a9": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "e0311a9c5bf7b3ba6118334c13d6c0fd8740fa38", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/e0311a9c5bf7b3ba6118334c13d6c0fd8740fa38.diff" + }, + "nuget-client@efaba6a": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "efaba6a58de482d11b43bfd3d58da1133499b9ad", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/efaba6a58de482d11b43bfd3d58da1133499b9ad.diff" + }, + "nuget-client@60d1ab4": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "60d1ab4fc1898d68611b06fe36ee1da0156c80c0", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/60d1ab4fc1898d68611b06fe36ee1da0156c80c0.diff" + }, + "nuget-client@b8bbe4b": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "b8bbe4b24e8215391f51db82a8446a03b68dbc96", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/b8bbe4b24e8215391f51db82a8446a03b68dbc96.diff" + }, + "nuget-client@1edb104": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "1edb1041c258752ff659965415dcb5844081f7e7", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/1edb1041c258752ff659965415dcb5844081f7e7.diff" + }, + "nuget-client@105e1d3": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "105e1d3eafe8431355e61d7ee025738efd830942", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/105e1d3eafe8431355e61d7ee025738efd830942.diff" + }, + "nuget-client@21c6db6": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "21c6db66feefd708303f9e42b887af4e06294c52", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/21c6db66feefd708303f9e42b887af4e06294c52.diff" + }, + "nuget-client@460c27e": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "460c27eaa57d3208b8ece995238f13563e0bc68e", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/460c27eaa57d3208b8ece995238f13563e0bc68e.diff" + }, + "nuget-client@be185b4": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "be185b424afd409b64c710d31f4acc99cf40d557", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/be185b424afd409b64c710d31f4acc99cf40d557.diff" + }, + "nuget-client@7cc1f0a": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "7cc1f0aded686e20acdbbdfb40ed521cb051fba3", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/7cc1f0aded686e20acdbbdfb40ed521cb051fba3.diff" + }, + "nuget-client@15db684": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "15db684c6d14b2b49c5d8e9f3638835565826bd8", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/15db684c6d14b2b49c5d8e9f3638835565826bd8.diff" + }, + "nuget-client@15dafc4": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "15dafc45c4b112388bb74470bab0f8c6dd813da0", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/15dafc45c4b112388bb74470bab0f8c6dd813da0.diff" + }, + "nuget-client@6840069": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "684006924f18cd065b697116eb83085d1887ffd7", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/684006924f18cd065b697116eb83085d1887ffd7.diff" + }, + "nuget-client@5e65b14": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "5e65b14a2faeb50dc5e5616bb9a18ab0476d4f37", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/5e65b14a2faeb50dc5e5616bb9a18ab0476d4f37.diff" + }, + "nuget-client@b5ca9db": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "b5ca9db4d5e6cd4d87d9df6704ac83148d428a6e", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/b5ca9db4d5e6cd4d87d9df6704ac83148d428a6e.diff" + }, + "nuget-client@279cdad": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "279cdadef05684c95e1ea967646559e77bcd5e4e", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/279cdadef05684c95e1ea967646559e77bcd5e4e.diff" + }, + "nuget-client@cfc4937": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "cfc4937bba5a418deb0f57d7272f336a72e20fb2", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/cfc4937bba5a418deb0f57d7272f336a72e20fb2.diff" + }, + "nuget-client@9b4c24b": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "9b4c24b455ddc06e02ef206376bdde21fa924a79", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/9b4c24b455ddc06e02ef206376bdde21fa924a79.diff" + }, + "nuget-client@4ee8cd0": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "4ee8cd0439ef43daf78db4e6ae47c7124aedd862", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/4ee8cd0439ef43daf78db4e6ae47c7124aedd862.diff" + }, + "nuget-client@d070eb6": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "d070eb66669895c09f9d1e302e7d801a696de2f4", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/d070eb66669895c09f9d1e302e7d801a696de2f4.diff" + }, + "nuget-client@9131f71": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "9131f7118cf739f339ee22fed031c15f0b02128e", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/9131f7118cf739f339ee22fed031c15f0b02128e.diff" + }, + "nuget-client@45c7a1b": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "45c7a1be59cf552afcc9a3b9bba95bcc72e59ed9", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/45c7a1be59cf552afcc9a3b9bba95bcc72e59ed9.diff" + }, + "nuget-client@6ca6f21": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "6ca6f21b246509beb6f514c0c496c9ce78026547", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/6ca6f21b246509beb6f514c0c496c9ce78026547.diff" + }, + "nuget-client@a690ce6": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "a690ce6bf9b374e764d729570338ed7ef8bcefc4", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/a690ce6bf9b374e764d729570338ed7ef8bcefc4.diff" + }, + "nuget-client@13353c2": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "13353c236dca85b5852313d8ec371e0c76b2e061", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/13353c236dca85b5852313d8ec371e0c76b2e061.diff" + }, + "nuget-client@bff510e": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "bff510e1c53565f714dff7552e0220465f236deb", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/bff510e1c53565f714dff7552e0220465f236deb.diff" + }, + "nuget-client@36a9adb": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "36a9adb28c7ad60f064005180da5160a6d0ffa4b", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/36a9adb28c7ad60f064005180da5160a6d0ffa4b.diff" + }, + "nuget-client@9065b8f": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "9065b8f17012560bba73405790726839bd43beee", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/9065b8f17012560bba73405790726839bd43beee.diff" + }, + "nuget-client@d502477": { + "repo": "nuget-client", + "branch": "release/11.0.1xx-preview3", + "hash": "d50247799ecea063a727a890564bb77d0e60db19", + "org": "nuget", + "url": "https://github.com/nuget/nuget.client/commit/d50247799ecea063a727a890564bb77d0e60db19.diff" + }, + "razor@e449a2e": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "e449a2efe0cfdd487ebf75d4aa3bbee62d43c128", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/e449a2efe0cfdd487ebf75d4aa3bbee62d43c128.diff" + }, + "razor@10ec240": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "10ec24021df6fdff84e49997958042d4b8d36b3a", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/10ec24021df6fdff84e49997958042d4b8d36b3a.diff" + }, + "razor@7b8f170": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "7b8f1702b9ce3e6362397c2b4be3d44c07f7da91", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/7b8f1702b9ce3e6362397c2b4be3d44c07f7da91.diff" + }, + "razor@bd6b73c": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "bd6b73c2fc6943e9f942f094da33ee08e8fdd73b", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/bd6b73c2fc6943e9f942f094da33ee08e8fdd73b.diff" + }, + "razor@2c1a9a0": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "2c1a9a0ea7689780c60253afd3b809a57a72d32d", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/2c1a9a0ea7689780c60253afd3b809a57a72d32d.diff" + }, + "razor@c5f489f": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "c5f489fd85d188c7d18417e8b88d6c9404e228ee", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/c5f489fd85d188c7d18417e8b88d6c9404e228ee.diff" + }, + "razor@d7e6869": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "d7e68691cd20be9e56f3324e9526290a9d888a02", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/d7e68691cd20be9e56f3324e9526290a9d888a02.diff" + }, + "razor@81bd809": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "81bd80916e0dd17bb8290e4a74ed5f4c25a8ac7d", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/81bd80916e0dd17bb8290e4a74ed5f4c25a8ac7d.diff" + }, + "razor@59e5a0d": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "59e5a0de3d49ed6e7db643a0f7eead85e4fa1380", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/59e5a0de3d49ed6e7db643a0f7eead85e4fa1380.diff" + }, + "razor@616486b": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "616486b7568dd4ff082ba1d5767d4b3eefae0d3a", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/616486b7568dd4ff082ba1d5767d4b3eefae0d3a.diff" + }, + "razor@afc2753": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "afc27536cacbaf2d62a5df077058425d0e3ad85b", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/afc27536cacbaf2d62a5df077058425d0e3ad85b.diff" + }, + "razor@c3788ee": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "c3788ee883efe3728fd4737fb75d8113978b2db1", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/c3788ee883efe3728fd4737fb75d8113978b2db1.diff" + }, + "razor@4d608b8": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "4d608b820848157323cbaab2f08078acfb48ec01", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/4d608b820848157323cbaab2f08078acfb48ec01.diff" + }, + "razor@bad1bd6": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "bad1bd66a73bbab53038c809731f2ddb191b02be", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/bad1bd66a73bbab53038c809731f2ddb191b02be.diff" + }, + "razor@c4c12a2": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "c4c12a2e35dedd936cd74f2713b2db9bb4bbca4d", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/c4c12a2e35dedd936cd74f2713b2db9bb4bbca4d.diff" + }, + "razor@640fe55": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "640fe55bb081b62e421fc53357ff110a183cc6c9", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/640fe55bb081b62e421fc53357ff110a183cc6c9.diff" + }, + "razor@f64530d": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "f64530d7d33f34e0e5bb4a770acbc2dd838addf8", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/f64530d7d33f34e0e5bb4a770acbc2dd838addf8.diff" + }, + "razor@78e7891": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "78e7891a66a6c316ab8a6a427a9dc86e66fe37e4", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/78e7891a66a6c316ab8a6a427a9dc86e66fe37e4.diff" + }, + "razor@00b8803": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "00b880349af100328931f159ed99402fea6c102d", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/00b880349af100328931f159ed99402fea6c102d.diff" + }, + "razor@0e1af56": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "0e1af56e84b508391dfc83cce57b599271c4b138", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/0e1af56e84b508391dfc83cce57b599271c4b138.diff" + }, + "razor@57eaac5": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "57eaac56f992edb784582d91fab0671548df60db", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/57eaac56f992edb784582d91fab0671548df60db.diff" + }, + "razor@dcfc37e": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "dcfc37e24d9403ec94bf67cd46ed2c8c8a5a1c2e", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/dcfc37e24d9403ec94bf67cd46ed2c8c8a5a1c2e.diff" + }, + "razor@bd9d77d": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "bd9d77d0be653242d1c580ddca76b74d0b996d98", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/bd9d77d0be653242d1c580ddca76b74d0b996d98.diff" + }, + "razor@7a25669": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "7a256698b42912064154ee18578d1201cc77f42e", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/7a256698b42912064154ee18578d1201cc77f42e.diff" + }, + "razor@42fb27d": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "42fb27dcf863c63a3b1b5dbf2ae1288d08a79442", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/42fb27dcf863c63a3b1b5dbf2ae1288d08a79442.diff" + }, + "razor@07169ff": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "07169ffa1cbaf90bdf24dff330cba41786a6f101", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/07169ffa1cbaf90bdf24dff330cba41786a6f101.diff" + }, + "razor@75d8b7d": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "75d8b7d04bce44c272b7760eff87f194c0a74f18", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/75d8b7d04bce44c272b7760eff87f194c0a74f18.diff" + }, + "razor@15665b9": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "15665b9f7a3dfd5dd863d55194178765f7e1ee50", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/15665b9f7a3dfd5dd863d55194178765f7e1ee50.diff" + }, + "razor@21fccf2": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "21fccf2157573fdb8d04e014df48f3a018adfb59", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/21fccf2157573fdb8d04e014df48f3a018adfb59.diff" + }, + "razor@9ecf467": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "9ecf467fce2a42278fca393fb7201ccb64480471", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/9ecf467fce2a42278fca393fb7201ccb64480471.diff" + }, + "razor@381882d": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "381882d078a11447e01c27c741f0210d8350e848", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/381882d078a11447e01c27c741f0210d8350e848.diff" + }, + "razor@19513d3": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "19513d33a343b8d172660032d48b822b9f580a6b", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/19513d33a343b8d172660032d48b822b9f580a6b.diff" + }, + "razor@e9acb82": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "e9acb823e9cb1f45f9149e567f044e559c3c8ebe", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/e9acb823e9cb1f45f9149e567f044e559c3c8ebe.diff" + }, + "razor@d9362b9": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "d9362b9b6d43e151d055d80ab9a28ec39dcc5910", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/d9362b9b6d43e151d055d80ab9a28ec39dcc5910.diff" + }, + "razor@30f6cf0": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "30f6cf0d4500ea568095451f235262b4b9236e01", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/30f6cf0d4500ea568095451f235262b4b9236e01.diff" + }, + "razor@3c2c573": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "3c2c573b4548a0bb0380edf30f91d605da23606c", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/3c2c573b4548a0bb0380edf30f91d605da23606c.diff" + }, + "razor@2b0c51d": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "2b0c51d83e1c3650a99a9bc372558ba15e784220", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/2b0c51d83e1c3650a99a9bc372558ba15e784220.diff" + }, + "razor@599013a": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "599013ad55b2862d4ab31788f596c74306053073", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/599013ad55b2862d4ab31788f596c74306053073.diff" + }, + "razor@06c797e": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "06c797e11112aa38c0e88b9d1e2f1d13221b7d9a", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/06c797e11112aa38c0e88b9d1e2f1d13221b7d9a.diff" + }, + "razor@1fb1d4b": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "1fb1d4b53c6aa98b0e566c390152e5fdcc99175c", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/1fb1d4b53c6aa98b0e566c390152e5fdcc99175c.diff" + }, + "razor@c5b4ff3": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "c5b4ff39c4759523c81207caea120ab138d0ec2c", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/c5b4ff39c4759523c81207caea120ab138d0ec2c.diff" + }, + "razor@20feb9c": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "20feb9c8eeb709369fd6c45d5a9c9b77c738a477", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/20feb9c8eeb709369fd6c45d5a9c9b77c738a477.diff" + }, + "razor@6d1913a": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "6d1913a5128d9ddfe7f4905af6ffeb7c2007eb1c", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/6d1913a5128d9ddfe7f4905af6ffeb7c2007eb1c.diff" + }, + "razor@afb8471": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "afb84713f68ccd9d480ecf3aed4b2dcfe72e7ff1", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/afb84713f68ccd9d480ecf3aed4b2dcfe72e7ff1.diff" + }, + "razor@e626c1b": { + "repo": "razor", + "branch": "release/11.0.1xx-preview3", + "hash": "e626c1b1332a71abb87f5b95a59eaa71cf34d86c", + "org": "dotnet", + "url": "https://github.com/dotnet/razor/commit/e626c1b1332a71abb87f5b95a59eaa71cf34d86c.diff" + }, + "roslyn@dcc3438": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "dcc3438559e178098434ea7091f7d086f791bc26", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/dcc3438559e178098434ea7091f7d086f791bc26.diff" + }, + "roslyn@f4ce901": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "f4ce901e81ef068ad7f736fdb3bff52d652fe2cc", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/f4ce901e81ef068ad7f736fdb3bff52d652fe2cc.diff" + }, + "roslyn@2bc2bb6": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "2bc2bb69fdb211f99f4fff4f26e447c90199bc7e", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/2bc2bb69fdb211f99f4fff4f26e447c90199bc7e.diff" + }, + "roslyn@0d88ffd": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "0d88ffde5345f4bb5141512c3f727393bd518a36", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/0d88ffde5345f4bb5141512c3f727393bd518a36.diff" + }, + "roslyn@07e15c1": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "07e15c13e4e720126b3ac911e06e1359ed2e5e72", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/07e15c13e4e720126b3ac911e06e1359ed2e5e72.diff" + }, + "roslyn@115a597": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "115a59748f353962a428287481f58de5b4b4e18f", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/115a59748f353962a428287481f58de5b4b4e18f.diff" + }, + "roslyn@e9a5618": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "e9a56188132d1bcbc5d30cd21751d096e886b414", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/e9a56188132d1bcbc5d30cd21751d096e886b414.diff" + }, + "roslyn@0a8d4b9": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "0a8d4b9e3d1d4e1c6840c7d065934a2963b14c32", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/0a8d4b9e3d1d4e1c6840c7d065934a2963b14c32.diff" + }, + "roslyn@170fc84": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "170fc84d4d7c0f26d4ab2d77c45fa50863863781", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/170fc84d4d7c0f26d4ab2d77c45fa50863863781.diff" + }, + "roslyn@26be960": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "26be960b44db35b220a7f28618b0c4b20993d647", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/26be960b44db35b220a7f28618b0c4b20993d647.diff" + }, + "roslyn@cb64e68": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "cb64e68f5e5a7aa071915e6bd7d0526190b99b01", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/cb64e68f5e5a7aa071915e6bd7d0526190b99b01.diff" + }, + "roslyn@0b12a91": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "0b12a918a944385031155b345b417802e3dd4cc9", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/0b12a918a944385031155b345b417802e3dd4cc9.diff" + }, + "roslyn@d4f7c35": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "d4f7c35fb5b3728221185caca63e974f24420d31", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/d4f7c35fb5b3728221185caca63e974f24420d31.diff" + }, + "roslyn@859b23f": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "859b23fa408c55a80e98b7824ff1c39c58682766", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/859b23fa408c55a80e98b7824ff1c39c58682766.diff" + }, + "roslyn@36c7834": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "36c7834bb51c38cc17d39e1c2801be360132061a", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/36c7834bb51c38cc17d39e1c2801be360132061a.diff" + }, + "roslyn@d70faac": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "d70faac80c27cec78c23521ca90d54fa36206937", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/d70faac80c27cec78c23521ca90d54fa36206937.diff" + }, + "roslyn@06bff44": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "06bff44c3a9f1144ae7e4f6b028040783e0e7687", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/06bff44c3a9f1144ae7e4f6b028040783e0e7687.diff" + }, + "roslyn@46e9530": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "46e9530726c6b721112bd05268b56c773d4b3790", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/46e9530726c6b721112bd05268b56c773d4b3790.diff" + }, + "roslyn@ef0c5bb": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "ef0c5bbb8e9385352b2b82ea60b38acb632728d1", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/ef0c5bbb8e9385352b2b82ea60b38acb632728d1.diff" + }, + "roslyn@ff1aa5b": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "ff1aa5bbeb5a937fee285f19ecc7f29f4b48610a", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/ff1aa5bbeb5a937fee285f19ecc7f29f4b48610a.diff" + }, + "roslyn@6b75273": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "6b752738a55fe1017c51fbaadc65e6227c68c16d", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/6b752738a55fe1017c51fbaadc65e6227c68c16d.diff" + }, + "roslyn@18f1f01": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "18f1f0172e8900f99a5de8959c5d3813d54caaf1", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/18f1f0172e8900f99a5de8959c5d3813d54caaf1.diff" + }, + "roslyn@a73833a": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "a73833a32eec90f60383b40f5bc1c5ec88047aac", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/a73833a32eec90f60383b40f5bc1c5ec88047aac.diff" + }, + "roslyn@836ffa6": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "836ffa62ed4a0a434beded8492e4d67238ceeb73", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/836ffa62ed4a0a434beded8492e4d67238ceeb73.diff" + }, + "roslyn@ea63049": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "ea6304967fd13c6cef28024de904c43686716225", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/ea6304967fd13c6cef28024de904c43686716225.diff" + }, + "roslyn@5128876": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "5128876b1744ffb1fd671d52582be37e8477b4d4", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/5128876b1744ffb1fd671d52582be37e8477b4d4.diff" + }, + "roslyn@38c1d17": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "38c1d17cdf64e1de8672019def0b6c6eeedeeab2", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/38c1d17cdf64e1de8672019def0b6c6eeedeeab2.diff" + }, + "roslyn@f6f8bd5": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "f6f8bd575a37766c9c196dc825a236c57b812668", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/f6f8bd575a37766c9c196dc825a236c57b812668.diff" + }, + "roslyn@30c9b18": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "30c9b18fe8b3de96e487cee43925f682b7b06ae6", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/30c9b18fe8b3de96e487cee43925f682b7b06ae6.diff" + }, + "roslyn@d9ab6fd": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "d9ab6fd7264666f04aac49ac5dc8147e62d0fcb3", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/d9ab6fd7264666f04aac49ac5dc8147e62d0fcb3.diff" + }, + "roslyn@f881263": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "f881263cdd42dc2526afe797d678c644414f7b3f", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/f881263cdd42dc2526afe797d678c644414f7b3f.diff" + }, + "roslyn@28bd949": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "28bd9490a83846cfcad5075fee57a01b73073760", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/28bd9490a83846cfcad5075fee57a01b73073760.diff" + }, + "roslyn@822aba7": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "822aba76d0111bc07b88f103e424f9974cf185c3", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/822aba76d0111bc07b88f103e424f9974cf185c3.diff" + }, + "roslyn@d05575c": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "d05575c90840fe322ac6398e35865c98c433d319", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/d05575c90840fe322ac6398e35865c98c433d319.diff" + }, + "roslyn@a8d3977": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "a8d3977c8661602041d6046f6b28760d1ec92062", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/a8d3977c8661602041d6046f6b28760d1ec92062.diff" + }, + "roslyn@1f1d220": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "1f1d2202c94a9c1679593334535b034572009720", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/1f1d2202c94a9c1679593334535b034572009720.diff" + }, + "roslyn@db4a70a": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "db4a70ad6fd99a0f30475e313ac7cffd9a7d8371", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/db4a70ad6fd99a0f30475e313ac7cffd9a7d8371.diff" + }, + "roslyn@f808321": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "f808321184c09871c2800892b25b6ae29be140d5", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/f808321184c09871c2800892b25b6ae29be140d5.diff" + }, + "roslyn@d8168bc": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "d8168bc2540f851b3916042b7b0ed4084fa12de0", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/d8168bc2540f851b3916042b7b0ed4084fa12de0.diff" + }, + "roslyn@de6d596": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "de6d596b10f87c25df6359301ae531d53845822e", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/de6d596b10f87c25df6359301ae531d53845822e.diff" + }, + "roslyn@c3de0e6": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "c3de0e60ceb012b9f0eafbc71f7318d09fe9c0b1", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/c3de0e60ceb012b9f0eafbc71f7318d09fe9c0b1.diff" + }, + "roslyn@60ccee8": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "60ccee8f9b61e54f72d100b7c83e3d7245560b73", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/60ccee8f9b61e54f72d100b7c83e3d7245560b73.diff" + }, + "roslyn@781516d": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "781516d59af4437b53e2822b7fab811312341dee", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/781516d59af4437b53e2822b7fab811312341dee.diff" + }, + "roslyn@1538767": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "1538767baa195e667a4e25595cafa32ed9151927", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/1538767baa195e667a4e25595cafa32ed9151927.diff" + }, + "roslyn@9788e10": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "9788e109de83d36d696d30ba1e9a61a6918b1b01", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/9788e109de83d36d696d30ba1e9a61a6918b1b01.diff" + }, + "roslyn@489667e": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "489667e0cb1b278a8b221bd22c53d33bbd23e854", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/489667e0cb1b278a8b221bd22c53d33bbd23e854.diff" + }, + "roslyn@73136ae": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "73136aedd00a13a02cd9130e17768104286baf42", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/73136aedd00a13a02cd9130e17768104286baf42.diff" + }, + "roslyn@20ee1e9": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "20ee1e90df1305f31b15d0d29e265862a0054669", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/20ee1e90df1305f31b15d0d29e265862a0054669.diff" + }, + "roslyn@28d629d": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "28d629dcc4dc0f1edf2a558f8868fd985da6fb76", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/28d629dcc4dc0f1edf2a558f8868fd985da6fb76.diff" + }, + "roslyn@947ca38": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "947ca3885049cffb4941372216c03f9cf5e99304", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/947ca3885049cffb4941372216c03f9cf5e99304.diff" + }, + "roslyn@915f7a6": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "915f7a626d9f85680978e9a8cf6a8e2cc6a01349", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/915f7a626d9f85680978e9a8cf6a8e2cc6a01349.diff" + }, + "roslyn@d2d357d": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "d2d357dd7592d786819b22b3c448a0772906eac8", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/d2d357dd7592d786819b22b3c448a0772906eac8.diff" + }, + "roslyn@491aa49": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "491aa49667eeeb1acf47f1d22655ebb2efc6c0dc", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/491aa49667eeeb1acf47f1d22655ebb2efc6c0dc.diff" + }, + "roslyn@1ea3352": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "1ea3352c153cd1f1e3dfeb1c51d6855a6a5e07b3", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/1ea3352c153cd1f1e3dfeb1c51d6855a6a5e07b3.diff" + }, + "roslyn@eb56329": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "eb56329a22858f6eca646122fcd4c95157cd13cd", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/eb56329a22858f6eca646122fcd4c95157cd13cd.diff" + }, + "roslyn@7467800": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "7467800c248af35cc9ea5e3170061e7e346b797b", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/7467800c248af35cc9ea5e3170061e7e346b797b.diff" + }, + "roslyn@b1eaa1a": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "b1eaa1a7fad2ca490a7a468fab535349f30d52f8", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/b1eaa1a7fad2ca490a7a468fab535349f30d52f8.diff" + }, + "roslyn@b8e6208": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "b8e62081239fd52bb45d325cc5fd5552bcb29974", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/b8e62081239fd52bb45d325cc5fd5552bcb29974.diff" + }, + "roslyn@1f7fae4": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "1f7fae4f01d76907b0a4b821aab3379908ca3ee9", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/1f7fae4f01d76907b0a4b821aab3379908ca3ee9.diff" + }, + "roslyn@9bd232f": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "9bd232fa0d6788dd48a0f2f61cdba8090c9cc456", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/9bd232fa0d6788dd48a0f2f61cdba8090c9cc456.diff" + }, + "roslyn@8007c87": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "8007c871a996b17228dd49d3803ef22621653749", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/8007c871a996b17228dd49d3803ef22621653749.diff" + }, + "roslyn@02833a6": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "02833a659f7114b8a90ac3f249d227ba9a34da98", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/02833a659f7114b8a90ac3f249d227ba9a34da98.diff" + }, + "roslyn@06a735c": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "06a735c607650205dfa5dc3cc673bdb33b21356d", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/06a735c607650205dfa5dc3cc673bdb33b21356d.diff" + }, + "roslyn@3f4c548": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "3f4c548ea0338c2ca66d72ac7b256bc81db9ab3c", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/3f4c548ea0338c2ca66d72ac7b256bc81db9ab3c.diff" + }, + "roslyn@787432e": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "787432e4a30e9e04e7f600be29cbf630af957939", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/787432e4a30e9e04e7f600be29cbf630af957939.diff" + }, + "roslyn@611c993": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "611c993c5388e9440e4ce6f0441adba5b22ae2fc", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/611c993c5388e9440e4ce6f0441adba5b22ae2fc.diff" + }, + "roslyn@e5de3cd": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "e5de3cdf9fab32c28947f4627c75ad0944ebb963", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/e5de3cdf9fab32c28947f4627c75ad0944ebb963.diff" + }, + "roslyn@79038db": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "79038dba2ed6a766f09f12fcef902122aec8ffdb", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/79038dba2ed6a766f09f12fcef902122aec8ffdb.diff" + }, + "roslyn@7e25adf": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "7e25adfd64dfca0236609765024eeed9062d7543", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/7e25adfd64dfca0236609765024eeed9062d7543.diff" + }, + "roslyn@7f59aed": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "7f59aed951de91bc458bd25a1c061882db333694", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/7f59aed951de91bc458bd25a1c061882db333694.diff" + }, + "roslyn@8b8aebd": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "8b8aebdb91e618d01a76669ea6e38ba46e19a833", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/8b8aebdb91e618d01a76669ea6e38ba46e19a833.diff" + }, + "roslyn@373490c": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "373490c1f7a05f3a545df908ed4568e8ab321009", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/373490c1f7a05f3a545df908ed4568e8ab321009.diff" + }, + "roslyn@bb74f15": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "bb74f15d37c7c9a3887db2f07083436550d31cd1", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/bb74f15d37c7c9a3887db2f07083436550d31cd1.diff" + }, + "roslyn@5d06c25": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "5d06c25285a6822f2a0e1822cd9ed0b239eafa54", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/5d06c25285a6822f2a0e1822cd9ed0b239eafa54.diff" + }, + "roslyn@ebc4231": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "ebc4231322510772b9d053961f84fe70ceb17060", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/ebc4231322510772b9d053961f84fe70ceb17060.diff" + }, + "roslyn@c2a993b": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "c2a993bf925f60e328823fbe0057cd5cbcff219e", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/c2a993bf925f60e328823fbe0057cd5cbcff219e.diff" + }, + "roslyn@0376bcd": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "0376bcd2048c469e935ec7d76374f62ad05a3dab", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/0376bcd2048c469e935ec7d76374f62ad05a3dab.diff" + }, + "roslyn@909ec10": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "909ec106a77deabc7b76c1a3d5138d861e9e3248", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/909ec106a77deabc7b76c1a3d5138d861e9e3248.diff" + }, + "roslyn@a1696dd": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "a1696ddfa684b7044ba4429e1c9c1171e698b63c", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/a1696ddfa684b7044ba4429e1c9c1171e698b63c.diff" + }, + "roslyn@bf28202": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "bf28202a0f60de24bbb3abfeb9a35392741d5613", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/bf28202a0f60de24bbb3abfeb9a35392741d5613.diff" + }, + "roslyn@9ed174d": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "9ed174d1ef5a7fae4915fe2a581b82aabd0612fd", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/9ed174d1ef5a7fae4915fe2a581b82aabd0612fd.diff" + }, + "roslyn@216a7f2": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "216a7f2f17633d4eea15c15c68f2bfdcdb797f0f", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/216a7f2f17633d4eea15c15c68f2bfdcdb797f0f.diff" + }, + "roslyn@70ce379": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "70ce379242de6695fc1c281a14b0ef06518bb0eb", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/70ce379242de6695fc1c281a14b0ef06518bb0eb.diff" + }, + "roslyn@af65eb7": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "af65eb72afa01c3e96deead2aea3719c1d4f265e", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/af65eb72afa01c3e96deead2aea3719c1d4f265e.diff" + }, + "roslyn@d83e85b": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "d83e85b84128a3cd426741491cdc2309b5bf4af3", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/d83e85b84128a3cd426741491cdc2309b5bf4af3.diff" + }, + "roslyn@2742db7": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "2742db707630f89fd43147cce6804bd475b44760", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/2742db707630f89fd43147cce6804bd475b44760.diff" + }, + "roslyn@6e85e46": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "6e85e46dc82d3eefb46eca37e213c5d32093a8ff", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/6e85e46dc82d3eefb46eca37e213c5d32093a8ff.diff" + }, + "roslyn@3af8cfc": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "3af8cfcc40991e5daafd96c33afdc5b2ff2b815d", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/3af8cfcc40991e5daafd96c33afdc5b2ff2b815d.diff" + }, + "roslyn@e5041dd": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "e5041ddda1fe659f3b41bef863b22588842aeb10", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/e5041ddda1fe659f3b41bef863b22588842aeb10.diff" + }, + "roslyn@bd2083f": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "bd2083ff6d56b296fa1ea5647850c166b5e55fb7", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/bd2083ff6d56b296fa1ea5647850c166b5e55fb7.diff" + }, + "roslyn@12c7798": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "12c7798acc8b514630cce7a0cb8931b187b4ccc8", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/12c7798acc8b514630cce7a0cb8931b187b4ccc8.diff" + }, + "roslyn@3ff19bf": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "3ff19bfe504e05524ce6ca0e36629ed4b50b681f", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/3ff19bfe504e05524ce6ca0e36629ed4b50b681f.diff" + }, + "roslyn@e794aa9": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "e794aa9a09b9926a540b066530e05ef19f5a3266", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/e794aa9a09b9926a540b066530e05ef19f5a3266.diff" + }, + "roslyn@ce4f889": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "ce4f8897a84272383392b79dec9e3a88998b574f", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/ce4f8897a84272383392b79dec9e3a88998b574f.diff" + }, + "roslyn@287981c": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "287981c80578f498a24d773c1fbe4e8a56e5a51e", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/287981c80578f498a24d773c1fbe4e8a56e5a51e.diff" + }, + "roslyn@9a06091": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "9a060915c0a9e20cc14f50a0cd49ed547a7b76a8", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/9a060915c0a9e20cc14f50a0cd49ed547a7b76a8.diff" + }, + "roslyn@3d3a43b": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "3d3a43b2fda11194436e662425ae78d94313368b", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/3d3a43b2fda11194436e662425ae78d94313368b.diff" + }, + "roslyn@e8a04ee": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "e8a04eed336859161e0fe6713703b8cc980521a2", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/e8a04eed336859161e0fe6713703b8cc980521a2.diff" + }, + "roslyn@7762e77": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "7762e775f57a7111f0cdc6ac0929ccec58936646", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/7762e775f57a7111f0cdc6ac0929ccec58936646.diff" + }, + "roslyn@d3724ec": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "d3724ec98de171beda9eab49c5a73013ebba1df3", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/d3724ec98de171beda9eab49c5a73013ebba1df3.diff" + }, + "roslyn@f3b5991": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "f3b59918689af64260c2eab6dad7cb832f5749ab", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/f3b59918689af64260c2eab6dad7cb832f5749ab.diff" + }, + "roslyn@1ba62c4": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "1ba62c4cbec09ba7a1f6b867e36cacf2efc9734b", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/1ba62c4cbec09ba7a1f6b867e36cacf2efc9734b.diff" + }, + "roslyn@d3fa672": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "d3fa672ab5bee7fb2138b56116b2f0bb3170110f", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/d3fa672ab5bee7fb2138b56116b2f0bb3170110f.diff" + }, + "roslyn@5f04355": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "5f0435535bb96f5ec2dcd4e92e76e11cc6132563", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/5f0435535bb96f5ec2dcd4e92e76e11cc6132563.diff" + }, + "roslyn@89a024e": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "89a024e14a8d683c83a32c446295ce2c3226b753", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/89a024e14a8d683c83a32c446295ce2c3226b753.diff" + }, + "roslyn@675bbbd": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "675bbbd7e3a88759191c093bb7cba4b9a5d4eed4", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/675bbbd7e3a88759191c093bb7cba4b9a5d4eed4.diff" + }, + "roslyn@a13c229": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "a13c2291dab677d6bee8d6fe475f59e1d27699f3", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/a13c2291dab677d6bee8d6fe475f59e1d27699f3.diff" + }, + "roslyn@8ebf7d5": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "8ebf7d54f8c28374e1a57cc95f703d5486568057", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/8ebf7d54f8c28374e1a57cc95f703d5486568057.diff" + }, + "roslyn@c8f805e": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "c8f805e6427304a4e70e09ed53ceacf4b65c850c", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/c8f805e6427304a4e70e09ed53ceacf4b65c850c.diff" + }, + "roslyn@9636481": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "9636481c84f58e16246c9a1eac47bfcc594894f5", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/9636481c84f58e16246c9a1eac47bfcc594894f5.diff" + }, + "roslyn@c43cd69": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "c43cd69b2bc46bb7062ac75f1f0c99b822118a9e", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/c43cd69b2bc46bb7062ac75f1f0c99b822118a9e.diff" + }, + "roslyn@439635a": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "439635afc5c13a7f15e3c90d48cd86c6abfcf29f", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/439635afc5c13a7f15e3c90d48cd86c6abfcf29f.diff" + }, + "roslyn@9bfaa97": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "9bfaa977fdfb06e2be56a7201c2445cecf66b614", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/9bfaa977fdfb06e2be56a7201c2445cecf66b614.diff" + }, + "roslyn@e94e90e": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "e94e90e8a02d9d98e3b42a9001a5356ac8673c34", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/e94e90e8a02d9d98e3b42a9001a5356ac8673c34.diff" + }, + "roslyn@a4627ec": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "a4627ece74f0ecb464262c041b96a3ddf9970134", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/a4627ece74f0ecb464262c041b96a3ddf9970134.diff" + }, + "roslyn@00f4340": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "00f43403035903e595625a737bf65d7fb729c3ae", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/00f43403035903e595625a737bf65d7fb729c3ae.diff" + }, + "roslyn@d6e77ba": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "d6e77ba399a22fd18e904d9904886409d5595521", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/d6e77ba399a22fd18e904d9904886409d5595521.diff" + }, + "roslyn@e6ea27b": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "e6ea27bb1b4a92561818d14cc604f02753c7102b", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/e6ea27bb1b4a92561818d14cc604f02753c7102b.diff" + }, + "roslyn@849bed6": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "849bed61024b171e673b9a1fac565b30e3ae1934", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/849bed61024b171e673b9a1fac565b30e3ae1934.diff" + }, + "roslyn@1068905": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "106890564f33f6642b625e99bed73b3e9a15244e", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/106890564f33f6642b625e99bed73b3e9a15244e.diff" + }, + "roslyn@68d99b2": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "68d99b22ba5d08644224a3160266d798ae3dd7b7", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/68d99b22ba5d08644224a3160266d798ae3dd7b7.diff" + }, + "roslyn@0b95158": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "0b951588dc4f6a80665ec8d863cbfa2510f9a758", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/0b951588dc4f6a80665ec8d863cbfa2510f9a758.diff" + }, + "roslyn@750f95c": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "750f95c6443014d17bb6ee769d72e2236e9d032c", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/750f95c6443014d17bb6ee769d72e2236e9d032c.diff" + }, + "roslyn@abacf67": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "abacf67bc36046020157ad9b6acc08a32bf8e164", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/abacf67bc36046020157ad9b6acc08a32bf8e164.diff" + }, + "roslyn@f2bb266": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "f2bb26610a6433d721a0b272412989cb67422f02", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/f2bb26610a6433d721a0b272412989cb67422f02.diff" + }, + "roslyn@c208079": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "c208079015fd5205d2af7ce72f2aa7c00cfc32e8", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/c208079015fd5205d2af7ce72f2aa7c00cfc32e8.diff" + }, + "roslyn@ebe25bb": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "ebe25bbad4e01d716f724d9bf8e21be94d3bbc3f", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/ebe25bbad4e01d716f724d9bf8e21be94d3bbc3f.diff" + }, + "roslyn@83c179c": { + "repo": "roslyn", + "branch": "release/11.0.1xx-preview3", + "hash": "83c179c8f3bbff27061c8ee8bdf1614120910552", + "org": "dotnet", + "url": "https://github.com/dotnet/roslyn/commit/83c179c8f3bbff27061c8ee8bdf1614120910552.diff" + }, + "runtime@1c7b5c4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1c7b5c49466a1a2ca6a3c2bba12dbfe80159fab4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1c7b5c49466a1a2ca6a3c2bba12dbfe80159fab4.diff" + }, + "runtime@9268ae6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9268ae6c111dd586ff3514d988d17173c7899fa9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9268ae6c111dd586ff3514d988d17173c7899fa9.diff" + }, + "runtime@e399e13": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e399e13900193a05c1c58a7d355642f871ac6412", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e399e13900193a05c1c58a7d355642f871ac6412.diff" + }, + "runtime@868a890": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "868a890a39f9fdf1e1fd25578144c0df7d62a9bb", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/868a890a39f9fdf1e1fd25578144c0df7d62a9bb.diff" + }, + "runtime@35ad59d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "35ad59de0ebc82aed1946f79daf67ba10863c814", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/35ad59de0ebc82aed1946f79daf67ba10863c814.diff" + }, + "runtime@11edfaf": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "11edfaff3c12f14e1bb99098c87c96c3f1e5a105", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/11edfaff3c12f14e1bb99098c87c96c3f1e5a105.diff" + }, + "runtime@dad8dcc": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "dad8dcc17033126f597526f71b0d0e11a43a57c4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/dad8dcc17033126f597526f71b0d0e11a43a57c4.diff" + }, + "runtime@0928e2d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0928e2d8851f2d5b3e4b8fc7c3673376b5bf3ee9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0928e2d8851f2d5b3e4b8fc7c3673376b5bf3ee9.diff" + }, + "runtime@766f6f1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "766f6f17971861ac586722ead561ed3291ad3c5c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/766f6f17971861ac586722ead561ed3291ad3c5c.diff" + }, + "runtime@7f0095f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7f0095f907a1dcf5209859fec2f01bbdbacab857", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7f0095f907a1dcf5209859fec2f01bbdbacab857.diff" + }, + "runtime@54570b5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "54570b5e90bec8677fb28a9305d46210bffbc436", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/54570b5e90bec8677fb28a9305d46210bffbc436.diff" + }, + "runtime@e02e618": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e02e61841758db8c19cc1c413ca229d202de633d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e02e61841758db8c19cc1c413ca229d202de633d.diff" + }, + "runtime@fd9316c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fd9316c23de6791d01650c4766c1f345b7422f1a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fd9316c23de6791d01650c4766c1f345b7422f1a.diff" + }, + "runtime@1933e44": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1933e4417b85b2c5836e20231d149aee5e4365bd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1933e4417b85b2c5836e20231d149aee5e4365bd.diff" + }, + "runtime@3fbc6d0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3fbc6d00fb99603ec9d154aaec57d8618229a281", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3fbc6d00fb99603ec9d154aaec57d8618229a281.diff" + }, + "runtime@6f242ac": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6f242ac6603077d8e99b5491b1858791b2d0f6c7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6f242ac6603077d8e99b5491b1858791b2d0f6c7.diff" + }, + "runtime@0de478b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0de478bd0e0a4d3568629f7c8bfcb464c1585a58", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0de478bd0e0a4d3568629f7c8bfcb464c1585a58.diff" + }, + "runtime@786c1e3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "786c1e3eae387b6824c6c66121b8f4a73f62890b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/786c1e3eae387b6824c6c66121b8f4a73f62890b.diff" + }, + "runtime@2ff39b5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2ff39b5f21a304c04ee0726c3e2ae56e7b23c904", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2ff39b5f21a304c04ee0726c3e2ae56e7b23c904.diff" + }, + "runtime@49e6723": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "49e6723e508545fcf901a8e6f9da9655bbbd5960", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/49e6723e508545fcf901a8e6f9da9655bbbd5960.diff" + }, + "runtime@bd81308": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "bd813087960951ebee3fd3fb7822fa30f18ac9fd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/bd813087960951ebee3fd3fb7822fa30f18ac9fd.diff" + }, + "runtime@9bfbe13": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9bfbe13cbe977b00945bbc15623d98c9bd4a82fc", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9bfbe13cbe977b00945bbc15623d98c9bd4a82fc.diff" + }, + "runtime@d9a0bf4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d9a0bf4d39280908352a140008926a82026f550f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d9a0bf4d39280908352a140008926a82026f550f.diff" + }, + "runtime@deb797f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "deb797fda0e08637f1707bc849721f33fe47af50", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/deb797fda0e08637f1707bc849721f33fe47af50.diff" + }, + "runtime@8e6e74e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8e6e74e62ee844e9b36df891ee24637f95b288ce", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8e6e74e62ee844e9b36df891ee24637f95b288ce.diff" + }, + "runtime@efc5e35": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "efc5e35e962228a75fa118b3a7a84768171406df", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/efc5e35e962228a75fa118b3a7a84768171406df.diff" + }, + "runtime@5c12c98": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5c12c98387d57472416198a40909ac732816ad87", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5c12c98387d57472416198a40909ac732816ad87.diff" + }, + "runtime@7c6a676": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7c6a67661c90a436ef750b216f5ec0be46db51f8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7c6a67661c90a436ef750b216f5ec0be46db51f8.diff" + }, + "runtime@823bec2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "823bec251d7269a4d9b3c97aeb0ad63111cd494f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/823bec251d7269a4d9b3c97aeb0ad63111cd494f.diff" + }, + "runtime@6051699": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "60516999cc6cd5d77ed1e2b065730a29ab043d03", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/60516999cc6cd5d77ed1e2b065730a29ab043d03.diff" + }, + "runtime@d29eec6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d29eec617c883b56524eda5add533478f5125448", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d29eec617c883b56524eda5add533478f5125448.diff" + }, + "runtime@ad38fcd": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ad38fcdefa44d7110b5065d4c46d892b1a3341ea", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ad38fcdefa44d7110b5065d4c46d892b1a3341ea.diff" + }, + "runtime@5679b73": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5679b73a00c82e36de9c9b7c7b0efab4985243f7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5679b73a00c82e36de9c9b7c7b0efab4985243f7.diff" + }, + "runtime@179f34d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "179f34d68ea85b990df40a2290a4bf42c4307333", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/179f34d68ea85b990df40a2290a4bf42c4307333.diff" + }, + "runtime@f557d6d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f557d6d6042690dab0fd0ba33956deef83486407", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f557d6d6042690dab0fd0ba33956deef83486407.diff" + }, + "runtime@d69bdbe": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d69bdbe253dc7dc1cf4f8b9a46cd4d04a0faab98", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d69bdbe253dc7dc1cf4f8b9a46cd4d04a0faab98.diff" + }, + "runtime@f68ae3c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f68ae3cf5165ed62ecc839206e89c2de34de3cec", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f68ae3cf5165ed62ecc839206e89c2de34de3cec.diff" + }, + "runtime@49154df": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "49154df485b913062cd108615b8757451e900d90", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/49154df485b913062cd108615b8757451e900d90.diff" + }, + "runtime@736475c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "736475ca4a183e931d84cafb4954cff582b59ae9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/736475ca4a183e931d84cafb4954cff582b59ae9.diff" + }, + "runtime@57ff75e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "57ff75e1276b54733e7056c89c1337d9ef5086c5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/57ff75e1276b54733e7056c89c1337d9ef5086c5.diff" + }, + "runtime@1451f24": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1451f246f061f965779a708fb7d402aa9fe9991c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1451f246f061f965779a708fb7d402aa9fe9991c.diff" + }, + "runtime@5cae5ef": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5cae5ef7e318e3b0e0a3fac63e75088811bc5eb7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5cae5ef7e318e3b0e0a3fac63e75088811bc5eb7.diff" + }, + "runtime@eee8b59": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "eee8b59ef9fdb650c2a4aa668bc27a9f15e941b9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/eee8b59ef9fdb650c2a4aa668bc27a9f15e941b9.diff" + }, + "runtime@1774582": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1774582907cdcd243f41c9c3c4b1a2cd4792a32b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1774582907cdcd243f41c9c3c4b1a2cd4792a32b.diff" + }, + "runtime@cae181e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cae181e727e1f597e7c9952864f6e4cc9656eaa1", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cae181e727e1f597e7c9952864f6e4cc9656eaa1.diff" + }, + "runtime@8274262": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "82742628310076fff22d7e7ee216a74384352056", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/82742628310076fff22d7e7ee216a74384352056.diff" + }, + "runtime@fbd060d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fbd060da1394a284b0073810aca575431790d1fb", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fbd060da1394a284b0073810aca575431790d1fb.diff" + }, + "runtime@2af34ab": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2af34abd8eb11eddb01bf69ed9855d1d191bf42e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2af34abd8eb11eddb01bf69ed9855d1d191bf42e.diff" + }, + "runtime@8181c67": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8181c67f5156da0e89bc80f9bb8e07a8167c58d5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8181c67f5156da0e89bc80f9bb8e07a8167c58d5.diff" + }, + "runtime@9583f33": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9583f33ba3a535508f87bd362082005c06f6f15b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9583f33ba3a535508f87bd362082005c06f6f15b.diff" + }, + "runtime@de80f78": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "de80f780ac76126777fe578c5df735a099b5d659", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/de80f780ac76126777fe578c5df735a099b5d659.diff" + }, + "runtime@b268dec": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b268dec52857c5fb40c6b7bc64b193841ca64eb7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b268dec52857c5fb40c6b7bc64b193841ca64eb7.diff" + }, + "runtime@00e753c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "00e753c9b46cd09c1a43b66ef77f585d0c77a0ef", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/00e753c9b46cd09c1a43b66ef77f585d0c77a0ef.diff" + }, + "runtime@c667ebc": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c667ebc91e13dce6e5fe813e7fd4d48bd033e179", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c667ebc91e13dce6e5fe813e7fd4d48bd033e179.diff" + }, + "runtime@d9747b7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d9747b750260e8614af941522ea92830c96303a8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d9747b750260e8614af941522ea92830c96303a8.diff" + }, + "runtime@f937645": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f937645c1e35f718b7af90c838785564fcc9fbc6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f937645c1e35f718b7af90c838785564fcc9fbc6.diff" + }, + "runtime@f84f009": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f84f00920e1719071492b260375af0d4403d340e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f84f00920e1719071492b260375af0d4403d340e.diff" + }, + "runtime@960dca4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "960dca4391a731a20b25a92cdb500ef737bfcbbd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/960dca4391a731a20b25a92cdb500ef737bfcbbd.diff" + }, + "runtime@3e35839": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3e3583990d48b2dd408b86c7d0ecc0b7079ed90c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3e3583990d48b2dd408b86c7d0ecc0b7079ed90c.diff" + }, + "runtime@f475ab8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f475ab8e654707dbe00c36eaf7623744df8a2656", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f475ab8e654707dbe00c36eaf7623744df8a2656.diff" + }, + "runtime@f8ac08f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f8ac08f32b25431ca53e38ea45a5a78128c978e3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f8ac08f32b25431ca53e38ea45a5a78128c978e3.diff" + }, + "runtime@075204c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "075204ceeeb47fcb48c5b36f9dc6365018e6c3a4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/075204ceeeb47fcb48c5b36f9dc6365018e6c3a4.diff" + }, + "runtime@c14a194": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c14a194f7ccb10bd8004457b29253a98161b50f3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c14a194f7ccb10bd8004457b29253a98161b50f3.diff" + }, + "runtime@c8f006d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c8f006dde97ad9205bc5bd973a63c3a1e973a96a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c8f006dde97ad9205bc5bd973a63c3a1e973a96a.diff" + }, + "runtime@ab11a45": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ab11a456596ec096aa644c603f4a9121dd6bc3c9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ab11a456596ec096aa644c603f4a9121dd6bc3c9.diff" + }, + "runtime@29e53cc": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "29e53cc9a94d4765372d5f3cd8bf873355e9430f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/29e53cc9a94d4765372d5f3cd8bf873355e9430f.diff" + }, + "runtime@fca6e86": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fca6e86dd3cc9706c42e9053f00c99e516aee3fa", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fca6e86dd3cc9706c42e9053f00c99e516aee3fa.diff" + }, + "runtime@e7b2a9b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e7b2a9b920d1859f36ec6f18504e3ca7ece34e7c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e7b2a9b920d1859f36ec6f18504e3ca7ece34e7c.diff" + }, + "runtime@cef61f9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cef61f9ca7bfe8ffb77cd591f4ce324b303ed6c1", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cef61f9ca7bfe8ffb77cd591f4ce324b303ed6c1.diff" + }, + "runtime@503a82e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "503a82ec4893bd1d4b4504f668a7c43f3cd34b09", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/503a82ec4893bd1d4b4504f668a7c43f3cd34b09.diff" + }, + "runtime@8f2cee4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8f2cee49945b857a232ebb7c7d2c40ab6b55e0f2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8f2cee49945b857a232ebb7c7d2c40ab6b55e0f2.diff" + }, + "runtime@d97a9c1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d97a9c19c1281ac1c27c2a7c5a8cf727b17cea69", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d97a9c19c1281ac1c27c2a7c5a8cf727b17cea69.diff" + }, + "runtime@d6ea462": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d6ea4621a9805436aa33f110f0ec67267619fcd2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d6ea4621a9805436aa33f110f0ec67267619fcd2.diff" + }, + "runtime@c802860": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c8028607c000f60cac2f0493422eaae4c20c75ea", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c8028607c000f60cac2f0493422eaae4c20c75ea.diff" + }, + "runtime@f7fc065": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f7fc065559c6c30e648b6af427cfa758c77d4a04", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f7fc065559c6c30e648b6af427cfa758c77d4a04.diff" + }, + "runtime@27cda88": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "27cda88429e26cb48df5264d7227a07785255594", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/27cda88429e26cb48df5264d7227a07785255594.diff" + }, + "runtime@44e21b7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "44e21b7114993e31f0adb5f8f998f9fb6523823a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/44e21b7114993e31f0adb5f8f998f9fb6523823a.diff" + }, + "runtime@127fe2d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "127fe2d9e792b2fa4885a933348a8bf18bf16a34", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/127fe2d9e792b2fa4885a933348a8bf18bf16a34.diff" + }, + "runtime@07e1dcc": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "07e1dcc606e57cce21bc0eb24b2e9ec692690304", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/07e1dcc606e57cce21bc0eb24b2e9ec692690304.diff" + }, + "runtime@0601ec7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0601ec7563077e4385d797e37a748bdd2fe4d1d6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0601ec7563077e4385d797e37a748bdd2fe4d1d6.diff" + }, + "runtime@213a41d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "213a41d3d95b44fc903a6f2783c58aca6d774ad5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/213a41d3d95b44fc903a6f2783c58aca6d774ad5.diff" + }, + "runtime@c5d5be4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c5d5be4b636b5dad36edf8131a7ce1049488991c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c5d5be4b636b5dad36edf8131a7ce1049488991c.diff" + }, + "runtime@c5c9ddd": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c5c9dddb69f18d85f151bff029815280206f5184", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c5c9dddb69f18d85f151bff029815280206f5184.diff" + }, + "runtime@e2a94a1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e2a94a1b7a621ea9339ad4c4919d732b9f4aadf7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e2a94a1b7a621ea9339ad4c4919d732b9f4aadf7.diff" + }, + "runtime@5302011": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5302011c5d68c1b0b98fa8599d0a14cad979344b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5302011c5d68c1b0b98fa8599d0a14cad979344b.diff" + }, + "runtime@2fbf43f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2fbf43f67bb78cd01c68e2639606fe62735585a8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2fbf43f67bb78cd01c68e2639606fe62735585a8.diff" + }, + "runtime@4349c24": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4349c2462ccd7d52023b50a91466caf3f2288c7f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4349c2462ccd7d52023b50a91466caf3f2288c7f.diff" + }, + "runtime@f4d21a8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f4d21a8fce56e47242549c5a9513424888553916", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f4d21a8fce56e47242549c5a9513424888553916.diff" + }, + "runtime@a48fa8e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a48fa8e0753f12208371bf806526746bba58ac33", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a48fa8e0753f12208371bf806526746bba58ac33.diff" + }, + "runtime@0ff5be7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0ff5be7a1f7f560c1f3b7454fa9d4c5ec03512a8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0ff5be7a1f7f560c1f3b7454fa9d4c5ec03512a8.diff" + }, + "runtime@1b3a93f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1b3a93fa490f70300781b8c6f5e86af6807e5517", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1b3a93fa490f70300781b8c6f5e86af6807e5517.diff" + }, + "runtime@711e2aa": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "711e2aa0a7d79f838303f9cafaa483299fcb2edc", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/711e2aa0a7d79f838303f9cafaa483299fcb2edc.diff" + }, + "runtime@2012f26": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2012f268105eb9a592540b3111e7eb3a54f899ea", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2012f268105eb9a592540b3111e7eb3a54f899ea.diff" + }, + "runtime@6e15912": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6e1591212674ff57847df95a0918d54615f22a66", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6e1591212674ff57847df95a0918d54615f22a66.diff" + }, + "runtime@23bc7e3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "23bc7e384ee4fba03335b401878da63af9e6b2ae", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/23bc7e384ee4fba03335b401878da63af9e6b2ae.diff" + }, + "runtime@93d49b4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "93d49b462849acbac36fbd24c944c1d903cd15fe", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/93d49b462849acbac36fbd24c944c1d903cd15fe.diff" + }, + "runtime@bd273d0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "bd273d02f2b19fd234d0dda1cc80dc16c654af2d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/bd273d02f2b19fd234d0dda1cc80dc16c654af2d.diff" + }, + "runtime@84057bb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "84057bbcb9613728d19f3f48b2e398e3d7e10f14", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/84057bbcb9613728d19f3f48b2e398e3d7e10f14.diff" + }, + "runtime@0548fed": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0548fed2b6c3eba3ddda0c98e2b81e7bd336b699", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0548fed2b6c3eba3ddda0c98e2b81e7bd336b699.diff" + }, + "runtime@cb26605": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cb26605030beed02179a1ed3b7f1327ff50a124e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cb26605030beed02179a1ed3b7f1327ff50a124e.diff" + }, + "runtime@1ece45f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1ece45f85e2cb1e4c3f07f0d8eb853e546ef0ae5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1ece45f85e2cb1e4c3f07f0d8eb853e546ef0ae5.diff" + }, + "runtime@a7094a3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a7094a33275ca25fc93a0e3cf06938a322d0cf7f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a7094a33275ca25fc93a0e3cf06938a322d0cf7f.diff" + }, + "runtime@884a44c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "884a44c7fb1d44175a893440b070d75e876a4436", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/884a44c7fb1d44175a893440b070d75e876a4436.diff" + }, + "runtime@b1f031d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b1f031d069e23d6e517fe198410d85591995bcbc", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b1f031d069e23d6e517fe198410d85591995bcbc.diff" + }, + "runtime@e5f7893": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e5f78931886de441a0c9ffd26ad373a0c1d1bc77", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e5f78931886de441a0c9ffd26ad373a0c1d1bc77.diff" + }, + "runtime@ec52b77": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ec52b776c69c06ea292420e61aa6911e45bfdbb2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ec52b776c69c06ea292420e61aa6911e45bfdbb2.diff" + }, + "runtime@202f33c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "202f33c8bbb326624532266e88cf492e638811ce", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/202f33c8bbb326624532266e88cf492e638811ce.diff" + }, + "runtime@66f3596": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "66f359644192a7f1b3123a077a6e1d8f1fbf16e5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/66f359644192a7f1b3123a077a6e1d8f1fbf16e5.diff" + }, + "runtime@c7ba7f9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c7ba7f93027da2557e07d89b2d9d7bc5827d712e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c7ba7f93027da2557e07d89b2d9d7bc5827d712e.diff" + }, + "runtime@2dac4d5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2dac4d51a62748de17e9452a074ecb4f6411b11f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2dac4d51a62748de17e9452a074ecb4f6411b11f.diff" + }, + "runtime@4594a58": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4594a585236925c0ab6e7503486dd9f9178f11e2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4594a585236925c0ab6e7503486dd9f9178f11e2.diff" + }, + "runtime@ca778ae": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ca778ae603146daa53b0a6abf37bc71c4612261e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ca778ae603146daa53b0a6abf37bc71c4612261e.diff" + }, + "runtime@58f1455": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "58f1455c6d5ace630bd4bc3be477f76ab4235b05", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/58f1455c6d5ace630bd4bc3be477f76ab4235b05.diff" + }, + "runtime@ae967fe": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ae967feaba47c945884fb6ce232621e8616864f8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ae967feaba47c945884fb6ce232621e8616864f8.diff" + }, + "runtime@df9f260": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "df9f2603d4f36d340b17abced2cc0fb046278c4f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/df9f2603d4f36d340b17abced2cc0fb046278c4f.diff" + }, + "runtime@dad73ab": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "dad73abe3f99871e9dc0be8385fd0a4b0e061f64", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/dad73abe3f99871e9dc0be8385fd0a4b0e061f64.diff" + }, + "runtime@3b61bfa": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3b61bfa99c8193d78d56c4d1ed1f9720b7193c59", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3b61bfa99c8193d78d56c4d1ed1f9720b7193c59.diff" + }, + "runtime@904ecbb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "904ecbbbd66b2a75c7466bf277ba3703ea44dd26", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/904ecbbbd66b2a75c7466bf277ba3703ea44dd26.diff" + }, + "runtime@3b504c5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3b504c5f15e29a6b30d60e77f6452aa6bda2dff8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3b504c5f15e29a6b30d60e77f6452aa6bda2dff8.diff" + }, + "runtime@81c46c6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "81c46c65a0ebd8ff0e34bf35a33be6ff768ca4e3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/81c46c65a0ebd8ff0e34bf35a33be6ff768ca4e3.diff" + }, + "runtime@132599d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "132599d0134bd52cf2c97d1d795e360ca91c780a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/132599d0134bd52cf2c97d1d795e360ca91c780a.diff" + }, + "runtime@f714f86": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f714f86a79c9e5b1cdacf0d33dc5ddf79ae2fce8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f714f86a79c9e5b1cdacf0d33dc5ddf79ae2fce8.diff" + }, + "runtime@a7a54a5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a7a54a5c128bba5f7206cee3142c1aec0e9a7210", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a7a54a5c128bba5f7206cee3142c1aec0e9a7210.diff" + }, + "runtime@0339995": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "033999592b8a93a838f43dba43ac47a6a8943a66", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/033999592b8a93a838f43dba43ac47a6a8943a66.diff" + }, + "runtime@97de220": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "97de220c6d8f5d3aa571bb96a1550edf169cc7db", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/97de220c6d8f5d3aa571bb96a1550edf169cc7db.diff" + }, + "runtime@c94ed87": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c94ed87e34e8ecf5d37fc0cb0e6e964d0260c32f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c94ed87e34e8ecf5d37fc0cb0e6e964d0260c32f.diff" + }, + "runtime@d203c6c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d203c6c8ae60eb23dddf307ae1abf7852cb7eac6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d203c6c8ae60eb23dddf307ae1abf7852cb7eac6.diff" + }, + "runtime@27689b6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "27689b6863657f7492dfb1510d056e2c52784c0a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/27689b6863657f7492dfb1510d056e2c52784c0a.diff" + }, + "runtime@19db7ab": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "19db7ab82302422a3db11ca3bd586b6f95eb3a72", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/19db7ab82302422a3db11ca3bd586b6f95eb3a72.diff" + }, + "runtime@da4894b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "da4894b1487d1641af5684c792f832e46ca12c02", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/da4894b1487d1641af5684c792f832e46ca12c02.diff" + }, + "runtime@a90eed2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a90eed218a8b4a38b63576bfc52f3b998a25093a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a90eed218a8b4a38b63576bfc52f3b998a25093a.diff" + }, + "runtime@689ceb6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "689ceb67fa96c64772fe4bb87518aa8635f4a314", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/689ceb67fa96c64772fe4bb87518aa8635f4a314.diff" + }, + "runtime@1c7e395": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1c7e3957fef1d81b195b4b824f6c373460d84042", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1c7e3957fef1d81b195b4b824f6c373460d84042.diff" + }, + "runtime@52114b6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "52114b620a8f21fcdad8e7f538af55c80b74821d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/52114b620a8f21fcdad8e7f538af55c80b74821d.diff" + }, + "runtime@619214e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "619214e61bbac7a9977f521fa6c327f650587116", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/619214e61bbac7a9977f521fa6c327f650587116.diff" + }, + "runtime@b613202": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b613202168f0bda853c00968238fe571643cfde4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b613202168f0bda853c00968238fe571643cfde4.diff" + }, + "runtime@46d35c2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "46d35c2e71b9c05369e0c4a909afe6673eecc9ed", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/46d35c2e71b9c05369e0c4a909afe6673eecc9ed.diff" + }, + "runtime@6e58274": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6e5827473c1630fec0d5d1c82b2c9a0a6789b9f0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6e5827473c1630fec0d5d1c82b2c9a0a6789b9f0.diff" + }, + "runtime@9511672": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "95116723914aa949c28f93a2765e4b800f50dac1", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/95116723914aa949c28f93a2765e4b800f50dac1.diff" + }, + "runtime@fdc3e49": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fdc3e496a6b527a1ba5a5c71272f9a124fb4de92", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fdc3e496a6b527a1ba5a5c71272f9a124fb4de92.diff" + }, + "runtime@f5ba5f6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f5ba5f689e15a7aa855f27d8d99207128b47bbf5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f5ba5f689e15a7aa855f27d8d99207128b47bbf5.diff" + }, + "runtime@85b9bc5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "85b9bc521939ab950171921e021508d5f267f51b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/85b9bc521939ab950171921e021508d5f267f51b.diff" + }, + "runtime@33e63ad": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "33e63ad83ef2948aaffec6b44c3efae0b736d4cb", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/33e63ad83ef2948aaffec6b44c3efae0b736d4cb.diff" + }, + "runtime@9b312a6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9b312a626337f63b5bffb9c7c1d22c7e1b4725de", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9b312a626337f63b5bffb9c7c1d22c7e1b4725de.diff" + }, + "runtime@40f1da5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "40f1da5b33c54b0fb8d76bca08f88c9874c57061", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/40f1da5b33c54b0fb8d76bca08f88c9874c57061.diff" + }, + "runtime@b08387a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b08387a0177c6e2c82ac68c31dc3a7e24e773778", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b08387a0177c6e2c82ac68c31dc3a7e24e773778.diff" + }, + "runtime@0f12574": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0f125741186d2afb5cd4adaaba586ab594321881", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0f125741186d2afb5cd4adaaba586ab594321881.diff" + }, + "runtime@adc1912": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "adc191279b429873c29e50f920061b2dc9b4b318", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/adc191279b429873c29e50f920061b2dc9b4b318.diff" + }, + "runtime@77b5f2f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "77b5f2f3935a74a0240ee7e1b0da72ce88ca8d88", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/77b5f2f3935a74a0240ee7e1b0da72ce88ca8d88.diff" + }, + "runtime@b5f00c7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b5f00c718c865e9b9c546cbd7f0444882c3303c9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b5f00c718c865e9b9c546cbd7f0444882c3303c9.diff" + }, + "runtime@e4a99ce": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e4a99ce68e1895f984d7150ddaf12cf1d0ab3acf", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e4a99ce68e1895f984d7150ddaf12cf1d0ab3acf.diff" + }, + "runtime@df19ee7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "df19ee7f47238929f72e532ccc2e97be7d8f406d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/df19ee7f47238929f72e532ccc2e97be7d8f406d.diff" + }, + "runtime@4a31f31": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4a31f31508cdff37d5cd481367baea4f4d80df99", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4a31f31508cdff37d5cd481367baea4f4d80df99.diff" + }, + "runtime@78222e6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "78222e6c7ee199aa3edb425e3e6cd28e929dfbb7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/78222e6c7ee199aa3edb425e3e6cd28e929dfbb7.diff" + }, + "runtime@770d929": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "770d92902f7736cde6abd7d7c7e6447f40a262b9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/770d92902f7736cde6abd7d7c7e6447f40a262b9.diff" + }, + "runtime@bdf19d3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "bdf19d33627c3d690b1bbb0f85d44c1724c44aac", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/bdf19d33627c3d690b1bbb0f85d44c1724c44aac.diff" + }, + "runtime@69e4ae5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "69e4ae5b995b0525fbd511c8bbd7c724eb8c4394", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/69e4ae5b995b0525fbd511c8bbd7c724eb8c4394.diff" + }, + "runtime@7b14f37": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7b14f375bbc80a0194c30190d395709a06084f5a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7b14f375bbc80a0194c30190d395709a06084f5a.diff" + }, + "runtime@0fe50ea": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0fe50ea7068fecf3d9170a27d49a215a7fc2f4d4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0fe50ea7068fecf3d9170a27d49a215a7fc2f4d4.diff" + }, + "runtime@68be26b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "68be26b369db02d3877587cd9bfaf7bde2edfa09", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/68be26b369db02d3877587cd9bfaf7bde2edfa09.diff" + }, + "runtime@3390dc8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3390dc80549ff34d58c7ea01d86166a705899a25", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3390dc80549ff34d58c7ea01d86166a705899a25.diff" + }, + "runtime@d63c175": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d63c175469bcaa3f3d5bc73aa6fd108bbf00797b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d63c175469bcaa3f3d5bc73aa6fd108bbf00797b.diff" + }, + "runtime@6a67552": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6a67552ef6bd49479e58f83190c72bf53d7bee83", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6a67552ef6bd49479e58f83190c72bf53d7bee83.diff" + }, + "runtime@133c7bd": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "133c7bde3fb7dd914f423ffb3e408cc61787e0bb", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/133c7bde3fb7dd914f423ffb3e408cc61787e0bb.diff" + }, + "runtime@cb7c257": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cb7c257460f09472243f3524a50ea25d5a716b66", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cb7c257460f09472243f3524a50ea25d5a716b66.diff" + }, + "runtime@a71427e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a71427e22d39141494062310a54903cc61e4da1b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a71427e22d39141494062310a54903cc61e4da1b.diff" + }, + "runtime@e5dde0c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e5dde0cb50d5827d38008f414a35e9a54c65ac0e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e5dde0cb50d5827d38008f414a35e9a54c65ac0e.diff" + }, + "runtime@eae0a64": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "eae0a64e4c28b1a692c02650a8d15d6383a6e72b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/eae0a64e4c28b1a692c02650a8d15d6383a6e72b.diff" + }, + "runtime@4203f01": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4203f012d385a0c19e851ab1907570a2bf731150", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4203f012d385a0c19e851ab1907570a2bf731150.diff" + }, + "runtime@c0a9bef": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c0a9bef1b1c02cf4e236585f4617d7dbddff1325", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c0a9bef1b1c02cf4e236585f4617d7dbddff1325.diff" + }, + "runtime@7a5e8fc": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7a5e8fc86df2058a2bc5d5e25cb7309f456befa6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7a5e8fc86df2058a2bc5d5e25cb7309f456befa6.diff" + }, + "runtime@0cc4cf9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0cc4cf96be3a407d3cd143aa804b962542647f3d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0cc4cf96be3a407d3cd143aa804b962542647f3d.diff" + }, + "runtime@c746487": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c746487df64022efe14fe5bef6559d983d6b578a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c746487df64022efe14fe5bef6559d983d6b578a.diff" + }, + "runtime@fcff831": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fcff8314e70ef6f6b08b6733be71361657ab3701", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fcff8314e70ef6f6b08b6733be71361657ab3701.diff" + }, + "runtime@63bdcc4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "63bdcc4d49be504df5235bbc73702fae59b0990a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/63bdcc4d49be504df5235bbc73702fae59b0990a.diff" + }, + "runtime@1be4689": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1be4689a37059381faf663f3fd6df2ee8b9c113a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1be4689a37059381faf663f3fd6df2ee8b9c113a.diff" + }, + "runtime@371aca3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "371aca3a6c78a203aa32a0bd4da84e6b8da5ba63", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/371aca3a6c78a203aa32a0bd4da84e6b8da5ba63.diff" + }, + "runtime@7756d81": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7756d810e33a9ad11b1bf4456babaeeb136713e0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7756d810e33a9ad11b1bf4456babaeeb136713e0.diff" + }, + "runtime@a1df4fb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a1df4fb964dc6e58dfce7ca9892c986495fdaede", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a1df4fb964dc6e58dfce7ca9892c986495fdaede.diff" + }, + "runtime@b04a3f5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b04a3f557182be69a546ebc920451edfbb758ec3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b04a3f557182be69a546ebc920451edfbb758ec3.diff" + }, + "runtime@eeedc34": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "eeedc34d227098e49493523a3da91a0e0ce541b7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/eeedc34d227098e49493523a3da91a0e0ce541b7.diff" + }, + "runtime@c142b2a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c142b2a7a365103fd9932733436504b94e9082b8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c142b2a7a365103fd9932733436504b94e9082b8.diff" + }, + "runtime@fc9084d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fc9084d2b8d74fa1d9cb28416d11d7803391c4d0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fc9084d2b8d74fa1d9cb28416d11d7803391c4d0.diff" + }, + "runtime@42b1679": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "42b16799d40406ad38c8747fa490933abb8389b6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/42b16799d40406ad38c8747fa490933abb8389b6.diff" + }, + "runtime@ea5071e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ea5071ef01c0198d4d58b8db755324057670b202", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ea5071ef01c0198d4d58b8db755324057670b202.diff" + }, + "runtime@c603c98": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c603c980f19b46c728b820acb4fe4f9d61694cee", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c603c980f19b46c728b820acb4fe4f9d61694cee.diff" + }, + "runtime@e99d522": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e99d522cc12c5022312c4fe7fbb8199450940d39", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e99d522cc12c5022312c4fe7fbb8199450940d39.diff" + }, + "runtime@17ca03d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "17ca03d0e3f888712e81e39ee965dd00b08d83d3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/17ca03d0e3f888712e81e39ee965dd00b08d83d3.diff" + }, + "runtime@71ffd70": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "71ffd70d2b9318b6d42c17297ca854507694ad89", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/71ffd70d2b9318b6d42c17297ca854507694ad89.diff" + }, + "runtime@9c52f8f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9c52f8fbef592b7394fa0ff517c62d58a261de56", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9c52f8fbef592b7394fa0ff517c62d58a261de56.diff" + }, + "runtime@de761a5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "de761a5e0a7bd363b5eb119260acfc8da4e9608c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/de761a5e0a7bd363b5eb119260acfc8da4e9608c.diff" + }, + "runtime@8dc23df": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8dc23dff269239bbc3bb61ece8c080219eb98251", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8dc23dff269239bbc3bb61ece8c080219eb98251.diff" + }, + "runtime@25eb60e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "25eb60e95bb01ec0030f1fe8ee4ee9753412cdcf", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/25eb60e95bb01ec0030f1fe8ee4ee9753412cdcf.diff" + }, + "runtime@a7b56d0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a7b56d05e2f42ba2c74db1edfda7d00479dc0e25", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a7b56d05e2f42ba2c74db1edfda7d00479dc0e25.diff" + }, + "runtime@7b67779": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7b677795021892ab4506cd8f05e3ac5a8ea0ffc5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7b677795021892ab4506cd8f05e3ac5a8ea0ffc5.diff" + }, + "runtime@b5fef80": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b5fef80118cc5033664e0286ac6d14af4e635dd6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b5fef80118cc5033664e0286ac6d14af4e635dd6.diff" + }, + "runtime@e1c62a5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e1c62a52621e78022c2dc1f17f2115ed8238b9c4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e1c62a52621e78022c2dc1f17f2115ed8238b9c4.diff" + }, + "runtime@03d7b4c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "03d7b4c02ac699b43920b30b69c2c1f20c8798b7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/03d7b4c02ac699b43920b30b69c2c1f20c8798b7.diff" + }, + "runtime@c30eec2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c30eec2d72502dcf42e70b1b8233006c7002fc05", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c30eec2d72502dcf42e70b1b8233006c7002fc05.diff" + }, + "runtime@23855bf": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "23855bfa5181167a9cefc6db20ed37ed7ba078a9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/23855bfa5181167a9cefc6db20ed37ed7ba078a9.diff" + }, + "runtime@f297dfb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f297dfb1ea2e2e2c893ef2ef3549b6805aa9198b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f297dfb1ea2e2e2c893ef2ef3549b6805aa9198b.diff" + }, + "runtime@cdcb8f3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cdcb8f3ea38f7017d9edb7d2e912d717c05bff54", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cdcb8f3ea38f7017d9edb7d2e912d717c05bff54.diff" + }, + "runtime@9b47894": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9b47894e11ff4628e1cfaaa2c8e2316bfd4425ad", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9b47894e11ff4628e1cfaaa2c8e2316bfd4425ad.diff" + }, + "runtime@c69c476": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c69c4764ffe5cb7640419acbae44592b4810ab38", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c69c4764ffe5cb7640419acbae44592b4810ab38.diff" + }, + "runtime@3176283": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3176283d96819946eff7a6ddc65e88b52d4257e7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3176283d96819946eff7a6ddc65e88b52d4257e7.diff" + }, + "runtime@7356734": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7356734a70e52816c9768009bafb4ff24e32b7d4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7356734a70e52816c9768009bafb4ff24e32b7d4.diff" + }, + "runtime@b6a3e78": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b6a3e784f0bb418fd2fa7f6497f1b642210c3ea4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b6a3e784f0bb418fd2fa7f6497f1b642210c3ea4.diff" + }, + "runtime@06d5e82": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "06d5e82106fc9574e0d016b202b81d60300d1c15", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/06d5e82106fc9574e0d016b202b81d60300d1c15.diff" + }, + "runtime@6ef43c5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6ef43c52dd9fdd37b41808a9c42e7b52403c1d15", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6ef43c52dd9fdd37b41808a9c42e7b52403c1d15.diff" + }, + "runtime@d7362ec": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d7362ecd2500f0536b4a162d469575494b36390f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d7362ecd2500f0536b4a162d469575494b36390f.diff" + }, + "runtime@aede44d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "aede44dcdbf9ef96c8c43dacc73e1f0b5c1a3e8c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/aede44dcdbf9ef96c8c43dacc73e1f0b5c1a3e8c.diff" + }, + "runtime@b41bbea": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b41bbeab8b775a5058bad74e73a84476bfd8d9a7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b41bbeab8b775a5058bad74e73a84476bfd8d9a7.diff" + }, + "runtime@09865a9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "09865a95cec8a1cbf0c24fc2b1b452d86b77cdb2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/09865a95cec8a1cbf0c24fc2b1b452d86b77cdb2.diff" + }, + "runtime@e191851": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e191851f33f1c94adc84cb7b151275fa077b1308", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e191851f33f1c94adc84cb7b151275fa077b1308.diff" + }, + "runtime@50f4fec": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "50f4fecf8757b451d40bec38e1ae73f25b0e7d4c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/50f4fecf8757b451d40bec38e1ae73f25b0e7d4c.diff" + }, + "runtime@aba6825": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "aba6825a2f0f819e53b0c05b9d35f0c1c52a5af1", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/aba6825a2f0f819e53b0c05b9d35f0c1c52a5af1.diff" + }, + "runtime@6aa153f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6aa153fa3a85aafea6042e6ed819f74a459f9584", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6aa153fa3a85aafea6042e6ed819f74a459f9584.diff" + }, + "runtime@e756eed": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e756eedb8099dcd526c72539678fb3be92210ede", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e756eedb8099dcd526c72539678fb3be92210ede.diff" + }, + "runtime@a064f10": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a064f10785a00344fbf863e9b9255a036167700c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a064f10785a00344fbf863e9b9255a036167700c.diff" + }, + "runtime@9eeb791": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9eeb791a3d9f1263d47b86a163751bf941a377f9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9eeb791a3d9f1263d47b86a163751bf941a377f9.diff" + }, + "runtime@1c94b86": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1c94b86de4d8dd06420902131844566d0aa84342", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1c94b86de4d8dd06420902131844566d0aa84342.diff" + }, + "runtime@faf542a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "faf542aff7fc575df781d4817b23794bbe782868", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/faf542aff7fc575df781d4817b23794bbe782868.diff" + }, + "runtime@1d9d70a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1d9d70afa98a83699719b304148a9945d37d916b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1d9d70afa98a83699719b304148a9945d37d916b.diff" + }, + "runtime@de40d80": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "de40d8082a41404cd854127069644e2d1cd8afac", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/de40d8082a41404cd854127069644e2d1cd8afac.diff" + }, + "runtime@d78ab5a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d78ab5ac16a50504b05a9452a464f86083325723", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d78ab5ac16a50504b05a9452a464f86083325723.diff" + }, + "runtime@4353591": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "43535912e359dfe9a1ea3cc7f2362635d5351af6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/43535912e359dfe9a1ea3cc7f2362635d5351af6.diff" + }, + "runtime@6c9a038": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6c9a03805a200b5d3a45ea1eae82cc3853dc5881", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6c9a03805a200b5d3a45ea1eae82cc3853dc5881.diff" + }, + "runtime@5306ee8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5306ee86319661253c3b55ef82e8a9ebb43bfdd0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5306ee86319661253c3b55ef82e8a9ebb43bfdd0.diff" + }, + "runtime@348ad67": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "348ad67a2c1e3349b7c9fda78d2ba929de125921", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/348ad67a2c1e3349b7c9fda78d2ba929de125921.diff" + }, + "runtime@23cced9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "23cced9519bb9ffb8f06a97658d84a8275795b0c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/23cced9519bb9ffb8f06a97658d84a8275795b0c.diff" + }, + "runtime@a659059": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a6590591ef32ab28632d9bc14efaf0044be728df", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a6590591ef32ab28632d9bc14efaf0044be728df.diff" + }, + "runtime@f1b1b93": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f1b1b935ee5bafd149ae08e4db302f3651e47589", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f1b1b935ee5bafd149ae08e4db302f3651e47589.diff" + }, + "runtime@9b46e58": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9b46e58206b2695ad7089ceea0db93cad22abbd7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9b46e58206b2695ad7089ceea0db93cad22abbd7.diff" + }, + "runtime@07ad470": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "07ad470ed5ef6bff5f1eb977ed451e5b45dff295", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/07ad470ed5ef6bff5f1eb977ed451e5b45dff295.diff" + }, + "runtime@2afb4c5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2afb4c51d26521dd5753e2b817ea66e36c16de87", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2afb4c51d26521dd5753e2b817ea66e36c16de87.diff" + }, + "runtime@97f4414": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "97f4414fada002304cc00b394d2bb94f3e727a42", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/97f4414fada002304cc00b394d2bb94f3e727a42.diff" + }, + "runtime@fdd418a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fdd418ad28f46f7c432d71787cadf306637c4d69", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fdd418ad28f46f7c432d71787cadf306637c4d69.diff" + }, + "runtime@1fd4dda": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1fd4dda3a484193fbc519eede07ac437cb462fa3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1fd4dda3a484193fbc519eede07ac437cb462fa3.diff" + }, + "runtime@56ed396": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "56ed3964182afd0e28f82c28d1c3434068115228", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/56ed3964182afd0e28f82c28d1c3434068115228.diff" + }, + "runtime@ad33dab": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ad33dab57601040d4ad6ac9ca5ffdef34c34bad0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ad33dab57601040d4ad6ac9ca5ffdef34c34bad0.diff" + }, + "runtime@a550606": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a55060629d3a0efeb16722baefe253d1668fe681", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a55060629d3a0efeb16722baefe253d1668fe681.diff" + }, + "runtime@ab91a5c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ab91a5c442fe806b0882f25f9b29b9cbaf2c54b0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ab91a5c442fe806b0882f25f9b29b9cbaf2c54b0.diff" + }, + "runtime@44451f3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "44451f37509bfa80dbb56edeffaeba1c05a8b8e2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/44451f37509bfa80dbb56edeffaeba1c05a8b8e2.diff" + }, + "runtime@96bb371": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "96bb371a068e02b492b768db880fb3707ceef75d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/96bb371a068e02b492b768db880fb3707ceef75d.diff" + }, + "runtime@e014236": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e014236e921c53f7cf39644aca871703e7eb2b60", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e014236e921c53f7cf39644aca871703e7eb2b60.diff" + }, + "runtime@77f0e35": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "77f0e350bc25ea673519f3233bdfd131d056f48a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/77f0e350bc25ea673519f3233bdfd131d056f48a.diff" + }, + "runtime@64d10ef": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "64d10ef18938ee47fc97a06a649a9844de49a365", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/64d10ef18938ee47fc97a06a649a9844de49a365.diff" + }, + "runtime@e0d7d73": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e0d7d73bc795946e5d3cb3b36476482b6505c728", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e0d7d73bc795946e5d3cb3b36476482b6505c728.diff" + }, + "runtime@4a0bfed": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4a0bfed89630402ab0405ebe452b9a0f9876c59a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4a0bfed89630402ab0405ebe452b9a0f9876c59a.diff" + }, + "runtime@20650a9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "20650a93777971f69ca228dc257a5e64ae0d1745", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/20650a93777971f69ca228dc257a5e64ae0d1745.diff" + }, + "runtime@8277247": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "827724744e1369067898eb257875e6b3f0be3016", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/827724744e1369067898eb257875e6b3f0be3016.diff" + }, + "runtime@e01d40a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e01d40ab0160f1b40c267068cbc2fbb6e47878ed", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e01d40ab0160f1b40c267068cbc2fbb6e47878ed.diff" + }, + "runtime@12dbdb7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "12dbdb7a08449e2275d88279f3e417f84c175625", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/12dbdb7a08449e2275d88279f3e417f84c175625.diff" + }, + "runtime@b0bc48e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b0bc48eea7e28be9670d4ac499a5778d0ac99909", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b0bc48eea7e28be9670d4ac499a5778d0ac99909.diff" + }, + "runtime@3a04c26": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3a04c2606ca8b26dcc895bcdd6534c9147f4e4ef", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3a04c2606ca8b26dcc895bcdd6534c9147f4e4ef.diff" + }, + "runtime@0b62fdf": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0b62fdf910b15fd7b24d4dbc9a882255aa6c2de6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0b62fdf910b15fd7b24d4dbc9a882255aa6c2de6.diff" + }, + "runtime@daa66d1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "daa66d1ee30e5462547c02c9439dce6520bf069d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/daa66d1ee30e5462547c02c9439dce6520bf069d.diff" + }, + "runtime@371f3c3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "371f3c356098295803263c75b74e5ee1d10cae01", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/371f3c356098295803263c75b74e5ee1d10cae01.diff" + }, + "runtime@264cff6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "264cff61a4dfc14653da9eef56cc397e4a94990d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/264cff61a4dfc14653da9eef56cc397e4a94990d.diff" + }, + "runtime@442f29b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "442f29b954dcb953f2ad66983c8365b45d05ecb6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/442f29b954dcb953f2ad66983c8365b45d05ecb6.diff" + }, + "runtime@3f4b0c5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3f4b0c520fd27c858fecf182de6ec085c073e75a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3f4b0c520fd27c858fecf182de6ec085c073e75a.diff" + }, + "runtime@b4cf4e4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b4cf4e4f53eaf9c1a7f0d66716d36437646d94e2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b4cf4e4f53eaf9c1a7f0d66716d36437646d94e2.diff" + }, + "runtime@5fcfea1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5fcfea11dbb6954a7316bb9e88876540e450e5c5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5fcfea11dbb6954a7316bb9e88876540e450e5c5.diff" + }, + "runtime@f3ee269": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f3ee2696223fa6acfef14c839311eaa657cdc071", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f3ee2696223fa6acfef14c839311eaa657cdc071.diff" + }, + "runtime@a155715": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a155715f803c75dd0dfd7ebab88b30848b84ccc0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a155715f803c75dd0dfd7ebab88b30848b84ccc0.diff" + }, + "runtime@0f01e11": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0f01e117143befce315101373fe7cfeaf2c9b961", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0f01e117143befce315101373fe7cfeaf2c9b961.diff" + }, + "runtime@56ddfa0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "56ddfa0beb12ac3ae41f9eca62c84f3c71a6a942", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/56ddfa0beb12ac3ae41f9eca62c84f3c71a6a942.diff" + }, + "runtime@9766d74": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9766d74520aafb6daab2daf9fdcda26e3d724aa3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9766d74520aafb6daab2daf9fdcda26e3d724aa3.diff" + }, + "runtime@39403ad": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "39403ad19d1eb4bb57133da1fbc57ab7099ff96a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/39403ad19d1eb4bb57133da1fbc57ab7099ff96a.diff" + }, + "runtime@df1ab13": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "df1ab13677bb2a84da713ee06b223a2167b802d4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/df1ab13677bb2a84da713ee06b223a2167b802d4.diff" + }, + "runtime@744234e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "744234e5c35fb780bfef9c422f83d7489ca690bb", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/744234e5c35fb780bfef9c422f83d7489ca690bb.diff" + }, + "runtime@d5cfd7b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d5cfd7bf2c0e890609f7e9468b49cc526a6ed891", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d5cfd7bf2c0e890609f7e9468b49cc526a6ed891.diff" + }, + "runtime@ce7caaf": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ce7caaf15d07d02da4d58347a271ef0a284821ec", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ce7caaf15d07d02da4d58347a271ef0a284821ec.diff" + }, + "runtime@17b089f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "17b089f9dea34dff21e3417ab7ed53ef30a4f6b0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/17b089f9dea34dff21e3417ab7ed53ef30a4f6b0.diff" + }, + "runtime@a964328": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a964328dc83d5ce18864ae4257f89abc2a9c0a08", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a964328dc83d5ce18864ae4257f89abc2a9c0a08.diff" + }, + "runtime@0a4a347": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0a4a34787426f759860d2691f194ffe2388fa931", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0a4a34787426f759860d2691f194ffe2388fa931.diff" + }, + "runtime@4d392de": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4d392de153f966681b12d08283a2b381f814dc1b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4d392de153f966681b12d08283a2b381f814dc1b.diff" + }, + "runtime@cc61b18": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cc61b1802a6c5d2a9f359d60fc3a51ba321ff312", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cc61b1802a6c5d2a9f359d60fc3a51ba321ff312.diff" + }, + "runtime@f2abb7c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f2abb7c1b664a83d72c9e420ae5200107dde065a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f2abb7c1b664a83d72c9e420ae5200107dde065a.diff" + }, + "runtime@0e73bdc": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0e73bdcd329be87a31a3c7b768e05b1b1fb5ecca", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0e73bdcd329be87a31a3c7b768e05b1b1fb5ecca.diff" + }, + "runtime@a8a0309": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a8a03092102aa4657e1a783556a2ca9968c39c90", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a8a03092102aa4657e1a783556a2ca9968c39c90.diff" + }, + "runtime@8af6d06": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8af6d0607e926c218ec8c37a719cb9850eee8576", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8af6d0607e926c218ec8c37a719cb9850eee8576.diff" + }, + "runtime@ee282ee": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ee282eea155898d2a87d753a8a81889907f0d5f6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ee282eea155898d2a87d753a8a81889907f0d5f6.diff" + }, + "runtime@b18bf5e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b18bf5e5fea843d626ef0bfc14d95367e6cd22e5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b18bf5e5fea843d626ef0bfc14d95367e6cd22e5.diff" + }, + "runtime@df927b5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "df927b5deaabdce683a9553c58b283ec0555c45f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/df927b5deaabdce683a9553c58b283ec0555c45f.diff" + }, + "runtime@d8aa6be": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d8aa6bedb641ccb8a704103e619d9d2cae056097", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d8aa6bedb641ccb8a704103e619d9d2cae056097.diff" + }, + "runtime@9524c93": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9524c93fb0deb6a0f84966b78ca5597550be3b7b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9524c93fb0deb6a0f84966b78ca5597550be3b7b.diff" + }, + "runtime@0034033": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "003403337b652148b9a62ae5a6a13df4bb1d264f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/003403337b652148b9a62ae5a6a13df4bb1d264f.diff" + }, + "runtime@523aab9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "523aab932e0b81c6429a5625918e2dde599a14b5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/523aab932e0b81c6429a5625918e2dde599a14b5.diff" + }, + "runtime@60ed188": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "60ed188438b868518294c9cb50c377c5d8ef1059", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/60ed188438b868518294c9cb50c377c5d8ef1059.diff" + }, + "runtime@92dc544": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "92dc544181c96ef7000cb5e2c06408f8ebd18ec8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/92dc544181c96ef7000cb5e2c06408f8ebd18ec8.diff" + }, + "runtime@6bd4752": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6bd4752acebe8b8d8e7675b0dc602d32cfc2c8f8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6bd4752acebe8b8d8e7675b0dc602d32cfc2c8f8.diff" + }, + "runtime@3bd006f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3bd006fc465c44e5200f20720cf1b7a3b6af5bde", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3bd006fc465c44e5200f20720cf1b7a3b6af5bde.diff" + }, + "runtime@4172d0e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4172d0e29aae797fd06c6e26e0682a28f8204122", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4172d0e29aae797fd06c6e26e0682a28f8204122.diff" + }, + "runtime@f62984c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f62984ce62deecfb90a8ab991e972d1bc460b93e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f62984ce62deecfb90a8ab991e972d1bc460b93e.diff" + }, + "runtime@9f2179d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9f2179d417e3f45f26c4c92fc978d839196ec8d8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9f2179d417e3f45f26c4c92fc978d839196ec8d8.diff" + }, + "runtime@4fa917e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4fa917e666f88701785d0ed5e801fded279ee2a8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4fa917e666f88701785d0ed5e801fded279ee2a8.diff" + }, + "runtime@9515659": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "951565936c66c0c5729913b07bbe3daf941a475b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/951565936c66c0c5729913b07bbe3daf941a475b.diff" + }, + "runtime@e524be6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e524be6928cdcd74bdbb79b389eeb31978b188ef", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e524be6928cdcd74bdbb79b389eeb31978b188ef.diff" + }, + "runtime@350951d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "350951d2a94dc1441161ba7a7508ed2ae312c8ae", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/350951d2a94dc1441161ba7a7508ed2ae312c8ae.diff" + }, + "runtime@e4c1aa0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e4c1aa01eef8d61072ebe406056fddcb18a5cb0c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e4c1aa01eef8d61072ebe406056fddcb18a5cb0c.diff" + }, + "runtime@4895491": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "48954919f3d9d839b884b1d5187413698e0d248a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/48954919f3d9d839b884b1d5187413698e0d248a.diff" + }, + "runtime@334619b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "334619bccfb32bdecf28a3349fa051ce86ede97f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/334619bccfb32bdecf28a3349fa051ce86ede97f.diff" + }, + "runtime@3a74e2a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3a74e2a1906bf148bbfb5f88157ec7b754d0abbd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3a74e2a1906bf148bbfb5f88157ec7b754d0abbd.diff" + }, + "runtime@39fda2c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "39fda2c985a96b93f9a9f04b7a57a30f1fc652e8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/39fda2c985a96b93f9a9f04b7a57a30f1fc652e8.diff" + }, + "runtime@917aa94": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "917aa94a6c7650e4390ae11a281326e5dea40f6e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/917aa94a6c7650e4390ae11a281326e5dea40f6e.diff" + }, + "runtime@ac68348": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ac68348276877977f648b20f9fdf11d2f8674c6c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ac68348276877977f648b20f9fdf11d2f8674c6c.diff" + }, + "runtime@4417a32": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4417a32478a71c4c73a782f5a394c77c333c07bd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4417a32478a71c4c73a782f5a394c77c333c07bd.diff" + }, + "runtime@14c4360": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "14c4360ccd06b7e7ddc22f48384a86ca13e41454", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/14c4360ccd06b7e7ddc22f48384a86ca13e41454.diff" + }, + "runtime@4d77205": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4d772050a76efb65e4d9447256b34b13eb078b38", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4d772050a76efb65e4d9447256b34b13eb078b38.diff" + }, + "runtime@86a9fbf": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "86a9fbfef3d6592f22a42a488e892816298d3725", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/86a9fbfef3d6592f22a42a488e892816298d3725.diff" + }, + "runtime@96fbbc2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "96fbbc2b9a37275dd09d689e44f7fb0b7b6ec979", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/96fbbc2b9a37275dd09d689e44f7fb0b7b6ec979.diff" + }, + "runtime@8ffb906": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8ffb9060f8f4ce714cf7f5506686b8ba675af097", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8ffb9060f8f4ce714cf7f5506686b8ba675af097.diff" + }, + "runtime@7603a59": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7603a59257ff0328fdca07d7f1c28e73e062c84a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7603a59257ff0328fdca07d7f1c28e73e062c84a.diff" + }, + "runtime@3ee5a25": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3ee5a258f06401d8706cfa44eb952de1dea54556", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3ee5a258f06401d8706cfa44eb952de1dea54556.diff" + }, + "runtime@fc40302": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fc40302c0968b53f5de0bf8fddec81c232afb865", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fc40302c0968b53f5de0bf8fddec81c232afb865.diff" + }, + "runtime@ef560fa": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ef560fa423d0e4164056496f71f97ab97dba7799", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ef560fa423d0e4164056496f71f97ab97dba7799.diff" + }, + "runtime@d906a29": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d906a29a025444af06b1faccd16f41bba244b485", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d906a29a025444af06b1faccd16f41bba244b485.diff" + }, + "runtime@349bdb0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "349bdb09a14676140b4a70232edfd9cea4fb176d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/349bdb09a14676140b4a70232edfd9cea4fb176d.diff" + }, + "runtime@8e672f4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8e672f4814150385633c90247ae4eb010ed33c3d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8e672f4814150385633c90247ae4eb010ed33c3d.diff" + }, + "runtime@0a4314b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0a4314b33278c410c1ba54941010f20450d027fb", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0a4314b33278c410c1ba54941010f20450d027fb.diff" + }, + "runtime@79898c7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "79898c7f27a1e6bae68aa3043cdbe9ecaa3351b6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/79898c7f27a1e6bae68aa3043cdbe9ecaa3351b6.diff" + }, + "runtime@e722f65": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e722f654430bb3ebff09be6c9b582ca66898a634", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e722f654430bb3ebff09be6c9b582ca66898a634.diff" + }, + "runtime@1136c24": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1136c2460ed4305c84c9c3ae20f93de532df4c2a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1136c2460ed4305c84c9c3ae20f93de532df4c2a.diff" + }, + "runtime@fd34985": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fd34985a39bcf46cacccdca341fe32c05311ce0c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fd34985a39bcf46cacccdca341fe32c05311ce0c.diff" + }, + "runtime@b9d3bb8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b9d3bb80ff804aa4578399759ad00120e78c4cfd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b9d3bb80ff804aa4578399759ad00120e78c4cfd.diff" + }, + "runtime@57b4485": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "57b4485d61b1b794b797603843b9902d03cd2845", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/57b4485d61b1b794b797603843b9902d03cd2845.diff" + }, + "runtime@41437b2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "41437b23656866810d8d8fe4da077be5047b7ca9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/41437b23656866810d8d8fe4da077be5047b7ca9.diff" + }, + "runtime@7023c7c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7023c7cdd1f2d539bee9a988ea7b37d69cfc562f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7023c7cdd1f2d539bee9a988ea7b37d69cfc562f.diff" + }, + "runtime@fbcde99": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fbcde992585aae2d29b66d3988a1f81fb1c0f8a7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fbcde992585aae2d29b66d3988a1f81fb1c0f8a7.diff" + }, + "runtime@d4a8aa2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d4a8aa2f9092c55b0655cebf6c2f3bce5e602abb", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d4a8aa2f9092c55b0655cebf6c2f3bce5e602abb.diff" + }, + "runtime@51b1e92": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "51b1e92136c22c1828393b23571de0c2a49e9f62", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/51b1e92136c22c1828393b23571de0c2a49e9f62.diff" + }, + "runtime@c86ebf2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c86ebf22ebd393806e5e01556f20f95f79cf4376", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c86ebf22ebd393806e5e01556f20f95f79cf4376.diff" + }, + "runtime@b85f109": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b85f10962df5d097ca466ec0ed83664835671e42", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b85f10962df5d097ca466ec0ed83664835671e42.diff" + }, + "runtime@7db8a8c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7db8a8cc52790d5c49d59064a93ce4c7caf3eef2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7db8a8cc52790d5c49d59064a93ce4c7caf3eef2.diff" + }, + "runtime@289f5cd": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "289f5cdcd0ab4b92fd91b99e95a0217113065146", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/289f5cdcd0ab4b92fd91b99e95a0217113065146.diff" + }, + "runtime@8b63bd2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8b63bd26190fe970d9d0643f552a27a42cb8e9a2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8b63bd26190fe970d9d0643f552a27a42cb8e9a2.diff" + }, + "runtime@eab25ef": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "eab25efb3bed0581575037a711fcaa2117abb527", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/eab25efb3bed0581575037a711fcaa2117abb527.diff" + }, + "runtime@a32dd4a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a32dd4a44cb1345093f3d5969c79fab4da511ce8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a32dd4a44cb1345093f3d5969c79fab4da511ce8.diff" + }, + "runtime@c863d2e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c863d2eb7fbe8cc12d20536a15eabe9c385908bf", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c863d2eb7fbe8cc12d20536a15eabe9c385908bf.diff" + }, + "runtime@b7a0ff8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b7a0ff8f140657255d99159b8560220b355240d9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b7a0ff8f140657255d99159b8560220b355240d9.diff" + }, + "runtime@d0118d9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d0118d9c792f67f62b3769bb2e4f79f367034e69", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d0118d9c792f67f62b3769bb2e4f79f367034e69.diff" + }, + "runtime@dd20361": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "dd20361abda4d6c32ea189cb6f48840c7b6f5678", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/dd20361abda4d6c32ea189cb6f48840c7b6f5678.diff" + }, + "runtime@dd2f6d3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "dd2f6d3cf773bc4c804e5d54fba6f1234dcdfb20", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/dd2f6d3cf773bc4c804e5d54fba6f1234dcdfb20.diff" + }, + "runtime@defb8dc": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "defb8dcbc1cadf47cbbb16b12d8b2ef7b63ecc4f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/defb8dcbc1cadf47cbbb16b12d8b2ef7b63ecc4f.diff" + }, + "runtime@5794053": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "57940538ec243b3fef89798cbdb24f631b2cae4f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/57940538ec243b3fef89798cbdb24f631b2cae4f.diff" + }, + "runtime@fa46e22": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fa46e22e1248cdfcdf13d83047e2d74b0ec65205", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fa46e22e1248cdfcdf13d83047e2d74b0ec65205.diff" + }, + "runtime@64efb69": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "64efb69573d1aa99fa89a96de18ba3247b2bb75e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/64efb69573d1aa99fa89a96de18ba3247b2bb75e.diff" + }, + "runtime@df0800e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "df0800eadf800c914cac0acaaf879e996c9299f5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/df0800eadf800c914cac0acaaf879e996c9299f5.diff" + }, + "runtime@6bf2076": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6bf20767ec3dfed7de825791e9eed47ca13ba724", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6bf20767ec3dfed7de825791e9eed47ca13ba724.diff" + }, + "runtime@87a63e2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "87a63e24ae1e0177eb724556cc7cf399206b747a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/87a63e24ae1e0177eb724556cc7cf399206b747a.diff" + }, + "runtime@54bc18d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "54bc18d197c2638d56df4964c6c76d1593b4caa7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/54bc18d197c2638d56df4964c6c76d1593b4caa7.diff" + }, + "runtime@703be08": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "703be0833b619fab3b970175f0d391c097d1e17b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/703be0833b619fab3b970175f0d391c097d1e17b.diff" + }, + "runtime@777eae3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "777eae3deb48051f341dd5b43f9f57cc3884fe95", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/777eae3deb48051f341dd5b43f9f57cc3884fe95.diff" + }, + "runtime@f25f0e2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f25f0e24d03e6c4d49f4d43ef48a01250a31a1bd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f25f0e24d03e6c4d49f4d43ef48a01250a31a1bd.diff" + }, + "runtime@5db8084": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5db8084c9d7bb9f50ce2457d56df626d051a5e40", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5db8084c9d7bb9f50ce2457d56df626d051a5e40.diff" + }, + "runtime@72e6a29": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "72e6a29bb794ba263ad9e4ef081c6fa2b4d5c9d3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/72e6a29bb794ba263ad9e4ef081c6fa2b4d5c9d3.diff" + }, + "runtime@f09bc75": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f09bc75bec8a9de106d5766bc27ac35e5320569c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f09bc75bec8a9de106d5766bc27ac35e5320569c.diff" + }, + "runtime@28baa45": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "28baa459661f164b55d6409f9816178ced46146f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/28baa459661f164b55d6409f9816178ced46146f.diff" + }, + "runtime@8151eb1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8151eb1c17763d564c5283f9a0db96ebb9856390", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8151eb1c17763d564c5283f9a0db96ebb9856390.diff" + }, + "runtime@363f8a1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "363f8a149aa76f2336c2cdb546066726717cabf7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/363f8a149aa76f2336c2cdb546066726717cabf7.diff" + }, + "runtime@d36b8cc": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d36b8cc783307b320eebab297cbb2a7edfffc32c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d36b8cc783307b320eebab297cbb2a7edfffc32c.diff" + }, + "runtime@9e13695": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9e13695c5a3729723d54a7dbe9481946c883bc5a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9e13695c5a3729723d54a7dbe9481946c883bc5a.diff" + }, + "runtime@cd38a58": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cd38a58a63aa4a45330ee012ed1f1b5b2bbe279c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cd38a58a63aa4a45330ee012ed1f1b5b2bbe279c.diff" + }, + "runtime@e9ec642": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e9ec642ee7ab11ffe1b8e767809fe60dd4a45b82", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e9ec642ee7ab11ffe1b8e767809fe60dd4a45b82.diff" + }, + "runtime@2255eec": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2255eec238c2e6f4a17052ceca54bbc0c7ec3514", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2255eec238c2e6f4a17052ceca54bbc0c7ec3514.diff" + }, + "runtime@bd3fd16": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "bd3fd162d61dd3fa335f36e6e06a514fd56e32fa", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/bd3fd162d61dd3fa335f36e6e06a514fd56e32fa.diff" + }, + "runtime@a962f34": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a962f34b0d502d551534bec84493edee67783771", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a962f34b0d502d551534bec84493edee67783771.diff" + }, + "runtime@0d0e129": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0d0e1291faee412c0b124746bfdd7c6bbdcde5aa", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0d0e1291faee412c0b124746bfdd7c6bbdcde5aa.diff" + }, + "runtime@d7c26f7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d7c26f71252476404c0e589a679eddddb1297d70", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d7c26f71252476404c0e589a679eddddb1297d70.diff" + }, + "runtime@da21ce4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "da21ce4afbb72a2c3bae482241f2f6dda9e20ccd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/da21ce4afbb72a2c3bae482241f2f6dda9e20ccd.diff" + }, + "runtime@4694968": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4694968af86344b1a991dd67e1ce819bd91302d9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4694968af86344b1a991dd67e1ce819bd91302d9.diff" + }, + "runtime@1b78ef7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1b78ef78abf8f54253547369195b1c6ce342fbdb", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1b78ef78abf8f54253547369195b1c6ce342fbdb.diff" + }, + "runtime@fdb01f4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fdb01f43fc6039d50b4de225371854a66b5931ec", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fdb01f43fc6039d50b4de225371854a66b5931ec.diff" + }, + "runtime@9641dda": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9641dda63d3f02f2fb0906610031a40ed4770f90", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9641dda63d3f02f2fb0906610031a40ed4770f90.diff" + }, + "runtime@8d8e749": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8d8e749dafaf1adc4d51e0bd5e62e604c47929f9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8d8e749dafaf1adc4d51e0bd5e62e604c47929f9.diff" + }, + "runtime@c1db431": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c1db431d7cd21dbb2520651c04020688037f7495", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c1db431d7cd21dbb2520651c04020688037f7495.diff" + }, + "runtime@6b6bfe3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6b6bfe3eef451b826ef9a120abfbd2a6fdb0ab35", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6b6bfe3eef451b826ef9a120abfbd2a6fdb0ab35.diff" + }, + "runtime@e717462": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e717462f948dd272744b063bb3862fea6568b002", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e717462f948dd272744b063bb3862fea6568b002.diff" + }, + "runtime@1709ae0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1709ae08142ea375ddef8665f44efafc977f59bc", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1709ae08142ea375ddef8665f44efafc977f59bc.diff" + }, + "runtime@a6a3b3d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a6a3b3d0fde45b31811d651ac23e9da74fd86c7d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a6a3b3d0fde45b31811d651ac23e9da74fd86c7d.diff" + }, + "runtime@376038b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "376038be839605287f02527985d4b0de3c05c38a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/376038be839605287f02527985d4b0de3c05c38a.diff" + }, + "runtime@919358b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "919358b6b9faa7f32fabc4ec359f47f0cf04a7a9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/919358b6b9faa7f32fabc4ec359f47f0cf04a7a9.diff" + }, + "runtime@d19b7ca": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d19b7caced61a9f43d5cb1a8a9825e5e79b265d4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d19b7caced61a9f43d5cb1a8a9825e5e79b265d4.diff" + }, + "runtime@0f023aa": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0f023aa775595f561dd168c0ad49c5de51e8a378", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0f023aa775595f561dd168c0ad49c5de51e8a378.diff" + }, + "runtime@e3b528c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e3b528cdef1842fc57d4a353ecfe4e34e13b7b4f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e3b528cdef1842fc57d4a353ecfe4e34e13b7b4f.diff" + }, + "runtime@535c5de": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "535c5deba263df5bd4be244247e43bddce288254", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/535c5deba263df5bd4be244247e43bddce288254.diff" + }, + "runtime@173bdac": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "173bdac01272cdb7354a99ef65db1d78c0145c75", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/173bdac01272cdb7354a99ef65db1d78c0145c75.diff" + }, + "runtime@8a0eb39": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8a0eb39283e0a345a4cd96bda8cbbd1ac7be15e6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8a0eb39283e0a345a4cd96bda8cbbd1ac7be15e6.diff" + }, + "runtime@68de53c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "68de53c1ec0e6cc230dc8da5a54e11e03edbd37c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/68de53c1ec0e6cc230dc8da5a54e11e03edbd37c.diff" + }, + "runtime@78af167": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "78af1670568f72d0560ded17fc0310a95fe46590", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/78af1670568f72d0560ded17fc0310a95fe46590.diff" + }, + "runtime@aa40c57": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "aa40c57a894e9d5f0f2173f9813a7693b30c3e27", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/aa40c57a894e9d5f0f2173f9813a7693b30c3e27.diff" + }, + "runtime@2e14703": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2e14703d891b326548ad74340bad5b576b356abd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2e14703d891b326548ad74340bad5b576b356abd.diff" + }, + "runtime@59dc3d0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "59dc3d0d83bda4f6f58f18a55554a5995b1a8707", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/59dc3d0d83bda4f6f58f18a55554a5995b1a8707.diff" + }, + "runtime@b78173c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b78173c38bf8752589e1171987d078628c33dcfd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b78173c38bf8752589e1171987d078628c33dcfd.diff" + }, + "runtime@3b580ea": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3b580ea2787d23fda1b4729e1d81606ec32a0232", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3b580ea2787d23fda1b4729e1d81606ec32a0232.diff" + }, + "runtime@cebec3d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cebec3d8e3fc5dc404d1a6a18b7ada0515541c3b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cebec3d8e3fc5dc404d1a6a18b7ada0515541c3b.diff" + }, + "runtime@e07aba4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e07aba4e789d34d86d32c7b7dad56c85119ee93a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e07aba4e789d34d86d32c7b7dad56c85119ee93a.diff" + }, + "runtime@2a4ede4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2a4ede49738ba56673f5b9fb65f09109a6449d29", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2a4ede49738ba56673f5b9fb65f09109a6449d29.diff" + }, + "runtime@5ed2d9b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5ed2d9b4ec57e537c54c7a21805a12a4c3174a69", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5ed2d9b4ec57e537c54c7a21805a12a4c3174a69.diff" + }, + "runtime@3b64f3d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3b64f3d914b0cd4f6a367cf8cbb5bf60ff16fc10", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3b64f3d914b0cd4f6a367cf8cbb5bf60ff16fc10.diff" + }, + "runtime@65b2bc1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "65b2bc1ee86719dba05c628514d3e460fa8789f6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/65b2bc1ee86719dba05c628514d3e460fa8789f6.diff" + }, + "runtime@85149f3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "85149f3fd8fb5e24afafc5fedbf075a719464624", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/85149f3fd8fb5e24afafc5fedbf075a719464624.diff" + }, + "runtime@093df0c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "093df0cd350e8d1c394d90eb26949c20b055a9e3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/093df0cd350e8d1c394d90eb26949c20b055a9e3.diff" + }, + "runtime@f5a27eb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f5a27eb1d87a3fae9f9bb195230e3ab50ffef5f3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f5a27eb1d87a3fae9f9bb195230e3ab50ffef5f3.diff" + }, + "runtime@4466dad": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4466dad5a4accb498d6f971b4fc970715d5c6ead", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4466dad5a4accb498d6f971b4fc970715d5c6ead.diff" + }, + "runtime@338e288": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "338e288bd9535217764f4146f2fe89707818ac97", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/338e288bd9535217764f4146f2fe89707818ac97.diff" + }, + "runtime@85e141e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "85e141e8ba3bfc094e7e916d4e1c7c813a06ba18", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/85e141e8ba3bfc094e7e916d4e1c7c813a06ba18.diff" + }, + "runtime@1e1bbed": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1e1bbed9856fd11f562d5e5b23b43b938e23f437", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1e1bbed9856fd11f562d5e5b23b43b938e23f437.diff" + }, + "runtime@ab6d333": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ab6d33338f99a95cab37267f1fb7c007e8f18f16", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ab6d33338f99a95cab37267f1fb7c007e8f18f16.diff" + }, + "runtime@9a9b322": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9a9b32240ad2c6190742acffe5ee6bfb6ab204a6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9a9b32240ad2c6190742acffe5ee6bfb6ab204a6.diff" + }, + "runtime@de40271": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "de4027111d9d294b6614d7932d4585aa49dfc4cd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/de4027111d9d294b6614d7932d4585aa49dfc4cd.diff" + }, + "runtime@12d9fad": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "12d9fada56ba2d4459226fe724099f69ab8a554f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/12d9fada56ba2d4459226fe724099f69ab8a554f.diff" + }, + "runtime@f827a66": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f827a66004ad7a5abd0882b0b3c374e9d9f04fc1", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f827a66004ad7a5abd0882b0b3c374e9d9f04fc1.diff" + }, + "runtime@3090433": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "309043384cd43ebda5123f6c82fc9ac373e8c35e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/309043384cd43ebda5123f6c82fc9ac373e8c35e.diff" + }, + "runtime@a6d3a3e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a6d3a3e9fef055c3aa3b27ebc78a8ec56574a483", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a6d3a3e9fef055c3aa3b27ebc78a8ec56574a483.diff" + }, + "runtime@6b49b5c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6b49b5c23fbf42d82ec95772bf19d4012416dc21", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6b49b5c23fbf42d82ec95772bf19d4012416dc21.diff" + }, + "runtime@2aef513": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2aef513ae4d252199b83a53ea94305d38d8de94f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2aef513ae4d252199b83a53ea94305d38d8de94f.diff" + }, + "runtime@2c7ee19": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2c7ee1937a8bd2f17a8f54d3b54bcaa0956f37f2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2c7ee1937a8bd2f17a8f54d3b54bcaa0956f37f2.diff" + }, + "runtime@07dc6fa": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "07dc6fab46e5235c4d5ccc12c8a121c974832099", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/07dc6fab46e5235c4d5ccc12c8a121c974832099.diff" + }, + "runtime@c346735": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c346735a44f679d357386257cd9563a7534d246d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c346735a44f679d357386257cd9563a7534d246d.diff" + }, + "runtime@32a7ecb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "32a7ecbfcabe1821acaa60a31e497ac7871a7cc5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/32a7ecbfcabe1821acaa60a31e497ac7871a7cc5.diff" + }, + "runtime@3f56fbb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3f56fbb71346a302f8a2174848bf2bf9d6c7a495", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3f56fbb71346a302f8a2174848bf2bf9d6c7a495.diff" + }, + "runtime@a1b5da1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a1b5da138a21f545cadfcb03fcd0e27320a7a950", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a1b5da138a21f545cadfcb03fcd0e27320a7a950.diff" + }, + "runtime@eb47fb6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "eb47fb611747f516fbf6ce8d7635e436a1a1a4e6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/eb47fb611747f516fbf6ce8d7635e436a1a1a4e6.diff" + }, + "runtime@b27a8d2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b27a8d255f6525ffe6688c7d7beaf7f03a106dc0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b27a8d255f6525ffe6688c7d7beaf7f03a106dc0.diff" + }, + "runtime@c77d32c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c77d32ce3b10ca92cdb4a0ce30f1a192b6657038", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c77d32ce3b10ca92cdb4a0ce30f1a192b6657038.diff" + }, + "runtime@f5407bd": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f5407bd1a7aa04d0cee5ce6dbdc9582d542d3546", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f5407bd1a7aa04d0cee5ce6dbdc9582d542d3546.diff" + }, + "runtime@83573d2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "83573d2a1004a756b4261202deb35d9921f88ebf", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/83573d2a1004a756b4261202deb35d9921f88ebf.diff" + }, + "runtime@34547f7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "34547f7f2acfaa31860ed51e1afb84653044e50c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/34547f7f2acfaa31860ed51e1afb84653044e50c.diff" + }, + "runtime@1f6255e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1f6255e46923d3579cd8ff4bf5b0a8eed0073fa8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1f6255e46923d3579cd8ff4bf5b0a8eed0073fa8.diff" + }, + "runtime@6e762f5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6e762f571fdc4043c28c698a21f7f73448d438d3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6e762f571fdc4043c28c698a21f7f73448d438d3.diff" + }, + "runtime@8f06b3c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8f06b3c441b36829dba57044833ed1683c69621f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8f06b3c441b36829dba57044833ed1683c69621f.diff" + }, + "runtime@b797348": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b7973489277b74bc5da9d36a0a2883eaa987328f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b7973489277b74bc5da9d36a0a2883eaa987328f.diff" + }, + "runtime@b36efcf": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b36efcf356fad713b23767110792eee9968d2985", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b36efcf356fad713b23767110792eee9968d2985.diff" + }, + "runtime@92969f4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "92969f44147076916d51f3c1c6795ad22011f4e9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/92969f44147076916d51f3c1c6795ad22011f4e9.diff" + }, + "runtime@807db36": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "807db360a32298bce1b78499b17649b5504e68a0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/807db360a32298bce1b78499b17649b5504e68a0.diff" + }, + "runtime@8236b65": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8236b653a5eb5c606d3b3b1e025f7e5ebeceee2f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8236b653a5eb5c606d3b3b1e025f7e5ebeceee2f.diff" + }, + "runtime@d391453": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d391453508f815ff01e5efe2982350de7e3d29fe", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d391453508f815ff01e5efe2982350de7e3d29fe.diff" + }, + "runtime@1f98758": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1f98758756d4ea99ccaa5f56c2e870306829c590", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1f98758756d4ea99ccaa5f56c2e870306829c590.diff" + }, + "runtime@e7daed6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e7daed6475cf4c49560b0940a088e791a0695b69", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e7daed6475cf4c49560b0940a088e791a0695b69.diff" + }, + "runtime@8f762a2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8f762a20fe1e2f2671d9b2bbaa21418be6b552a0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8f762a20fe1e2f2671d9b2bbaa21418be6b552a0.diff" + }, + "runtime@dca0fe3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "dca0fe3076b93f00f917ada50697a6af4e411e5b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/dca0fe3076b93f00f917ada50697a6af4e411e5b.diff" + }, + "runtime@9af7d04": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9af7d041cf445c184ed84756b54b07104b50d943", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9af7d041cf445c184ed84756b54b07104b50d943.diff" + }, + "runtime@f7be6d5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f7be6d5fcc397b69c53bb4d90234024029303396", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f7be6d5fcc397b69c53bb4d90234024029303396.diff" + }, + "runtime@b4b0bdc": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b4b0bdcae452293551f05b13c6a98007ff0ef280", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b4b0bdcae452293551f05b13c6a98007ff0ef280.diff" + }, + "runtime@860eddb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "860eddba936f4a7e8a04cb12ee3bc54385216cab", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/860eddba936f4a7e8a04cb12ee3bc54385216cab.diff" + }, + "runtime@bc449db": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "bc449db63f59e7b4692de44408f0043af451b547", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/bc449db63f59e7b4692de44408f0043af451b547.diff" + }, + "runtime@7d664a9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7d664a91e6ebcd51fe7138baefc08d2660d23d21", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7d664a91e6ebcd51fe7138baefc08d2660d23d21.diff" + }, + "runtime@540910d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "540910dceaa28221def1ef79393bf7eff493c9de", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/540910dceaa28221def1ef79393bf7eff493c9de.diff" + }, + "runtime@12bcd5d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "12bcd5d7362389233f89ed14cb4172c361c8f49a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/12bcd5d7362389233f89ed14cb4172c361c8f49a.diff" + }, + "runtime@281d01c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "281d01cfd353f1ce15208c80b2f148b0d6ce106f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/281d01cfd353f1ce15208c80b2f148b0d6ce106f.diff" + }, + "runtime@6def7ef": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6def7ef5ff5c01f8e7fc04965139d9c401568ebf", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6def7ef5ff5c01f8e7fc04965139d9c401568ebf.diff" + }, + "runtime@9a2c40b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9a2c40b4f7b710d164a13ef4b088ba309068d21d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9a2c40b4f7b710d164a13ef4b088ba309068d21d.diff" + }, + "runtime@959957c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "959957c0f530b18cedb4633fd5556e757be494f4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/959957c0f530b18cedb4633fd5556e757be494f4.diff" + }, + "runtime@2110077": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "211007729cd8723e4838be28f59d6add1f7214ac", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/211007729cd8723e4838be28f59d6add1f7214ac.diff" + }, + "runtime@0b874d8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0b874d82c3611c4ad301ae9367ecce103447da5c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0b874d82c3611c4ad301ae9367ecce103447da5c.diff" + }, + "runtime@aaf2994": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "aaf2994df16870fb37e4b2fd18b025117329beb4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/aaf2994df16870fb37e4b2fd18b025117329beb4.diff" + }, + "runtime@755fa8f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "755fa8f5d52b2f6f14bbbf454e99f1c43139dd08", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/755fa8f5d52b2f6f14bbbf454e99f1c43139dd08.diff" + }, + "runtime@e1feb1b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e1feb1b7e0b3062d78a3c455e291830284afa15c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e1feb1b7e0b3062d78a3c455e291830284afa15c.diff" + }, + "runtime@41ac7d5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "41ac7d53bf146a955f6eee4b6be11e0d94adde53", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/41ac7d53bf146a955f6eee4b6be11e0d94adde53.diff" + }, + "runtime@9b1347c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9b1347c5afe039d1efac12fd2e4286d0711f7dc4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9b1347c5afe039d1efac12fd2e4286d0711f7dc4.diff" + }, + "runtime@11c5b17": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "11c5b1787841f78d3d778f9a2850a5934a00b4b1", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/11c5b1787841f78d3d778f9a2850a5934a00b4b1.diff" + }, + "runtime@2517f63": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2517f636ae1c96ab8815024b9f1254d36947ae56", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2517f636ae1c96ab8815024b9f1254d36947ae56.diff" + }, + "runtime@8cf2e90": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8cf2e90c41f50c41d49698b3e37598f96bff9be0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8cf2e90c41f50c41d49698b3e37598f96bff9be0.diff" + }, + "runtime@ac8e763": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ac8e763c43b86739f3536d84cda765e112d215ac", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ac8e763c43b86739f3536d84cda765e112d215ac.diff" + }, + "runtime@c9b272f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c9b272f6952d7728cb450c1f81ce8978019d057a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c9b272f6952d7728cb450c1f81ce8978019d057a.diff" + }, + "runtime@98e3338": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "98e3338453a2e88e20377e94b95693b36a8c45db", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/98e3338453a2e88e20377e94b95693b36a8c45db.diff" + }, + "runtime@0d6db56": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0d6db56cc12fe367f9c03be0fe6ffa7fdf1f980d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0d6db56cc12fe367f9c03be0fe6ffa7fdf1f980d.diff" + }, + "runtime@e429373": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e4293738d0d250fe1a2bd8603ac8971e32a60391", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e4293738d0d250fe1a2bd8603ac8971e32a60391.diff" + }, + "runtime@28009ec": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "28009ec2c631cbe4b321fb2648b7c3cd2e5fb8b0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/28009ec2c631cbe4b321fb2648b7c3cd2e5fb8b0.diff" + }, + "runtime@9f85e5d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9f85e5d6e333a7dc4a82bd3a5d94ba6bc8aa902b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9f85e5d6e333a7dc4a82bd3a5d94ba6bc8aa902b.diff" + }, + "runtime@388a7c4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "388a7c4814cb0d6e344621d017507b357902043a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/388a7c4814cb0d6e344621d017507b357902043a.diff" + }, + "runtime@c38f37a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c38f37a3a1c39ca921fe156d472990d259977f6f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c38f37a3a1c39ca921fe156d472990d259977f6f.diff" + }, + "runtime@da46c68": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "da46c687a0f3112cf035b6eef5273e4612482e9f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/da46c687a0f3112cf035b6eef5273e4612482e9f.diff" + }, + "runtime@8e05ac9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8e05ac91f032e62605f58c3d5a042b16131756fd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8e05ac91f032e62605f58c3d5a042b16131756fd.diff" + }, + "runtime@1cfdd48": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1cfdd4824e538f973443b744366520bad4fb06c8", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1cfdd4824e538f973443b744366520bad4fb06c8.diff" + }, + "runtime@64021d8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "64021d8209d8365d01928fd3ed472ce1db7a3797", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/64021d8209d8365d01928fd3ed472ce1db7a3797.diff" + }, + "runtime@85b61ab": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "85b61ab1ce55d805adbd11637f2367f44aeefaac", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/85b61ab1ce55d805adbd11637f2367f44aeefaac.diff" + }, + "runtime@f27c573": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f27c573c56e7aa280f519770b0678305a70442ae", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f27c573c56e7aa280f519770b0678305a70442ae.diff" + }, + "runtime@95f2498": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "95f249871919faeee8e439d95658c466d924bf7b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/95f249871919faeee8e439d95658c466d924bf7b.diff" + }, + "runtime@6992c24": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6992c24ad7bb062f30f53e2983add6436637c081", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6992c24ad7bb062f30f53e2983add6436637c081.diff" + }, + "runtime@7a7c166": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7a7c16644c84c061877dc22b5c760df06e608403", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7a7c16644c84c061877dc22b5c760df06e608403.diff" + }, + "runtime@0f80728": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0f8072851a62a1e1cbb90f0372a20961ce8991f0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0f8072851a62a1e1cbb90f0372a20961ce8991f0.diff" + }, + "runtime@ffdfb26": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ffdfb260b6ea228194da6ca1e3cbf081233e3e67", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ffdfb260b6ea228194da6ca1e3cbf081233e3e67.diff" + }, + "runtime@eee3c7c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "eee3c7c591e5e5beae7ab21dbc96845ed94484b3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/eee3c7c591e5e5beae7ab21dbc96845ed94484b3.diff" + }, + "runtime@bb542bd": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "bb542bd8e56b9d7e771adcddae09ab3b8f74f306", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/bb542bd8e56b9d7e771adcddae09ab3b8f74f306.diff" + }, + "runtime@d1f028f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d1f028fbaad558d387b269a7d85b63e13e7feaf6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d1f028fbaad558d387b269a7d85b63e13e7feaf6.diff" + }, + "runtime@933c5e8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "933c5e83ca020f84f41e86ecfebef5e31a3f2dad", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/933c5e83ca020f84f41e86ecfebef5e31a3f2dad.diff" + }, + "runtime@b48ada0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b48ada04c7ed1d71a5dfb9b847918b8106b65a40", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b48ada04c7ed1d71a5dfb9b847918b8106b65a40.diff" + }, + "runtime@611b2cb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "611b2cb15e57e0594d767189f926baa658738767", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/611b2cb15e57e0594d767189f926baa658738767.diff" + }, + "runtime@84ebfcd": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "84ebfcd240d022b78e0ec6e5e7841b4a0d8cfd16", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/84ebfcd240d022b78e0ec6e5e7841b4a0d8cfd16.diff" + }, + "runtime@15da421": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "15da4216aef181b84124449eb01b0c33c0e6d746", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/15da4216aef181b84124449eb01b0c33c0e6d746.diff" + }, + "runtime@585f70d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "585f70df320be0038d51cbe1032e257bbf8cb651", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/585f70df320be0038d51cbe1032e257bbf8cb651.diff" + }, + "runtime@934cd4d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "934cd4ddf253ab1c30fd01549d474f6926fc56d5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/934cd4ddf253ab1c30fd01549d474f6926fc56d5.diff" + }, + "runtime@930edb9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "930edb9f75624d47a6cc01c29e0dc2201c7163aa", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/930edb9f75624d47a6cc01c29e0dc2201c7163aa.diff" + }, + "runtime@902b10f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "902b10f4af7357e2ec78a1507f88a4cb31a1c728", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/902b10f4af7357e2ec78a1507f88a4cb31a1c728.diff" + }, + "runtime@e2f9257": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e2f925756a62def3fb15ab4476b8ce2d9b5e75bb", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e2f925756a62def3fb15ab4476b8ce2d9b5e75bb.diff" + }, + "runtime@b954bd7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b954bd7da652d7cd63337a0436d92e9c1c0b15de", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b954bd7da652d7cd63337a0436d92e9c1c0b15de.diff" + }, + "runtime@e2322af": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e2322af414f50e22ef8eeafb75a1068effd77a96", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e2322af414f50e22ef8eeafb75a1068effd77a96.diff" + }, + "runtime@133f6a8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "133f6a80839ace9578094ed356a9cd70988427b6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/133f6a80839ace9578094ed356a9cd70988427b6.diff" + }, + "runtime@28c5a4d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "28c5a4dcc8380aa558aa866e14ebcf6ab39b9719", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/28c5a4dcc8380aa558aa866e14ebcf6ab39b9719.diff" + }, + "runtime@9e58389": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9e583898f6d4f44293836d5d9026d2df32cef9ef", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9e583898f6d4f44293836d5d9026d2df32cef9ef.diff" + }, + "runtime@ab699a4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ab699a4da14ee06c7c9654b7edead6659f65d3c1", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ab699a4da14ee06c7c9654b7edead6659f65d3c1.diff" + }, + "runtime@7fdd64e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7fdd64e5167da2f86533f68e670d45b4cb927141", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7fdd64e5167da2f86533f68e670d45b4cb927141.diff" + }, + "runtime@fc52927": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fc529276b042443bd335adc6b5a26526e7ac9905", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fc529276b042443bd335adc6b5a26526e7ac9905.diff" + }, + "runtime@6fd3636": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6fd3636c8bc6d22cec6d1b3226441c3d4d6e608a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6fd3636c8bc6d22cec6d1b3226441c3d4d6e608a.diff" + }, + "runtime@fcddb04": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fcddb04e5d51a980d86f5d9999177567f44aee41", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fcddb04e5d51a980d86f5d9999177567f44aee41.diff" + }, + "runtime@8d88e2b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8d88e2b38f701b7b20ada06d9dfe55a060f99706", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8d88e2b38f701b7b20ada06d9dfe55a060f99706.diff" + }, + "runtime@05cc2d0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "05cc2d0fdb030057a00e580b74b75bf7f784cf4c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/05cc2d0fdb030057a00e580b74b75bf7f784cf4c.diff" + }, + "runtime@31aee70": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "31aee706a6a555e6cbf75f6c420fd7d736a63d8b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/31aee706a6a555e6cbf75f6c420fd7d736a63d8b.diff" + }, + "runtime@e1b5a1d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e1b5a1df9a1467acbd29e4212bb5045ff32add07", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e1b5a1df9a1467acbd29e4212bb5045ff32add07.diff" + }, + "runtime@8f7b6b5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8f7b6b54618cf2fea82499349b677a23c924740c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8f7b6b54618cf2fea82499349b677a23c924740c.diff" + }, + "runtime@c9def27": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c9def27a05d5c98219adeaaa7ead25d65f3963cc", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c9def27a05d5c98219adeaaa7ead25d65f3963cc.diff" + }, + "runtime@39368f6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "39368f6331d06f122e12d22b1cd3f9ff6a74bb93", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/39368f6331d06f122e12d22b1cd3f9ff6a74bb93.diff" + }, + "runtime@c5c184a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c5c184a4df470e0d1c6c97365f91ad0901efad3d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c5c184a4df470e0d1c6c97365f91ad0901efad3d.diff" + }, + "runtime@d4189be": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d4189be6854ed8248fb05b71b197b645c92f5692", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d4189be6854ed8248fb05b71b197b645c92f5692.diff" + }, + "runtime@e2415a7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e2415a7d4013188f35cefb68d6c269ba17687b43", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e2415a7d4013188f35cefb68d6c269ba17687b43.diff" + }, + "runtime@7e7296d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7e7296d4e90dcab9cc8acd4ac51801c00208134e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7e7296d4e90dcab9cc8acd4ac51801c00208134e.diff" + }, + "runtime@2ae0bc7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2ae0bc7ebed0650624eb4e90b214d106e6f08fa3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2ae0bc7ebed0650624eb4e90b214d106e6f08fa3.diff" + }, + "runtime@93ec72d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "93ec72d3dfed9b72f4e95245439d3a93562c49ee", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/93ec72d3dfed9b72f4e95245439d3a93562c49ee.diff" + }, + "runtime@5b3d729": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5b3d729bb8e21e7f91cd22ed57282bc7dc39313d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5b3d729bb8e21e7f91cd22ed57282bc7dc39313d.diff" + }, + "runtime@c31475e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c31475ea97de93297d055374284e1b1d4769332d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c31475ea97de93297d055374284e1b1d4769332d.diff" + }, + "runtime@db3c54c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "db3c54cbd8670c7160d6a1912af81f3264f0e92a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/db3c54cbd8670c7160d6a1912af81f3264f0e92a.diff" + }, + "runtime@cf53805": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cf538052880522d398adf246ac80bb13de5d613a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cf538052880522d398adf246ac80bb13de5d613a.diff" + }, + "runtime@0389510": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "03895101fb967d96b115a8d742c29e41220aed77", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/03895101fb967d96b115a8d742c29e41220aed77.diff" + }, + "runtime@8614f78": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8614f787c5a5044965aba96baa998ab15b7c37bc", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8614f787c5a5044965aba96baa998ab15b7c37bc.diff" + }, + "runtime@c89371d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c89371d5294a9be40b263b275c58cf0b2a73ea95", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c89371d5294a9be40b263b275c58cf0b2a73ea95.diff" + }, + "runtime@fe555be": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fe555be1614b7b6c7a5f6f4422766044e40fb9f9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fe555be1614b7b6c7a5f6f4422766044e40fb9f9.diff" + }, + "runtime@36b4d74": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "36b4d7409ba3e9798a4544cd2555b7f9a007b44b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/36b4d7409ba3e9798a4544cd2555b7f9a007b44b.diff" + }, + "runtime@cc9f348": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cc9f348e852d5911201c169c5dab9ffe9394d7f5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cc9f348e852d5911201c169c5dab9ffe9394d7f5.diff" + }, + "runtime@c5ad69e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c5ad69e6f08240196539d509074fdc4f09b742d2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c5ad69e6f08240196539d509074fdc4f09b742d2.diff" + }, + "runtime@dfc0377": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "dfc037773de54ae78fd7805c69132008a7a34f4c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/dfc037773de54ae78fd7805c69132008a7a34f4c.diff" + }, + "runtime@fdbedda": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fdbedda1b43af4645dbe833b1d37151a1a96df87", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fdbedda1b43af4645dbe833b1d37151a1a96df87.diff" + }, + "runtime@ca1a734": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ca1a734e5f3dfd6beba5f08ef95aea47592b8d08", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ca1a734e5f3dfd6beba5f08ef95aea47592b8d08.diff" + }, + "runtime@4c78a14": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4c78a1406c3f5435db118cb56b514515a74279be", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4c78a1406c3f5435db118cb56b514515a74279be.diff" + }, + "runtime@1ab6d1d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1ab6d1d02a85dcae905a915b248b8e93764d017e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1ab6d1d02a85dcae905a915b248b8e93764d017e.diff" + }, + "runtime@593e566": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "593e56654f34b3f697cdcc9c0f138471c78e66fe", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/593e56654f34b3f697cdcc9c0f138471c78e66fe.diff" + }, + "runtime@165a653": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "165a653a6e4e8ad2d65cb1125e6e8318741c0516", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/165a653a6e4e8ad2d65cb1125e6e8318741c0516.diff" + }, + "runtime@636d736": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "636d7366c704863d3774482e7d64c3bfd11612b4", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/636d7366c704863d3774482e7d64c3bfd11612b4.diff" + }, + "runtime@9351b38": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9351b38fec0b25af8f963420e4ec564d68f56389", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9351b38fec0b25af8f963420e4ec564d68f56389.diff" + }, + "runtime@2d26dce": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2d26dce32b5af4de025afe10a58c945be9c1a546", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2d26dce32b5af4de025afe10a58c945be9c1a546.diff" + }, + "runtime@4683d7f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4683d7f09ef9d3c777c84d465832a5e91e14b0bd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4683d7f09ef9d3c777c84d465832a5e91e14b0bd.diff" + }, + "runtime@bf23c95": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "bf23c950e74069043c9c338ae7915e604dcf8975", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/bf23c950e74069043c9c338ae7915e604dcf8975.diff" + }, + "runtime@4687f9a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4687f9a84f72c6a168b69662cec9c16e13becfa3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4687f9a84f72c6a168b69662cec9c16e13becfa3.diff" + }, + "runtime@c05c6a4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c05c6a486d04f11249b5adf187dce49d98a53566", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c05c6a486d04f11249b5adf187dce49d98a53566.diff" + }, + "runtime@0d2f781": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0d2f781dc87eb453ce457a3ee1f83288c01ad044", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0d2f781dc87eb453ce457a3ee1f83288c01ad044.diff" + }, + "runtime@12cdada": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "12cdada8d6a5d342c3d0647b3c2f5b1d36c08821", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/12cdada8d6a5d342c3d0647b3c2f5b1d36c08821.diff" + }, + "runtime@3e79783": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3e797833fbecf9abc2bebd2ac997d8a23a44e9f7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3e797833fbecf9abc2bebd2ac997d8a23a44e9f7.diff" + }, + "runtime@b93ce19": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b93ce19c8631c0bfdc4188b5eabaa7f6ffb642ef", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b93ce19c8631c0bfdc4188b5eabaa7f6ffb642ef.diff" + }, + "runtime@1f751da": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1f751dacd08cf7599c64d7c243c52f85c54cb979", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1f751dacd08cf7599c64d7c243c52f85c54cb979.diff" + }, + "runtime@34dd74d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "34dd74d695c09a11629a4bbe90b7967046950323", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/34dd74d695c09a11629a4bbe90b7967046950323.diff" + }, + "runtime@a348be8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a348be840acb3ae10b487b87e0201ff9cc53f244", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a348be840acb3ae10b487b87e0201ff9cc53f244.diff" + }, + "runtime@613eb19": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "613eb194f0d907305206fd1a1444847802091163", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/613eb194f0d907305206fd1a1444847802091163.diff" + }, + "runtime@c88b2b6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c88b2b632594a763bb137e22b3a46adf8fe4a001", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c88b2b632594a763bb137e22b3a46adf8fe4a001.diff" + }, + "runtime@cad7369": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cad73694474c5cb1873bce8a50861bbf20f3e2a3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cad73694474c5cb1873bce8a50861bbf20f3e2a3.diff" + }, + "runtime@a65919d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a65919dae53d8ca213fbbd7ad895d496896359a9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a65919dae53d8ca213fbbd7ad895d496896359a9.diff" + }, + "runtime@7bd64cb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7bd64cbe12dac737f6f44ef7321ca2506d582a61", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7bd64cbe12dac737f6f44ef7321ca2506d582a61.diff" + }, + "runtime@876f7e8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "876f7e845de9e6225221532ce9fbad45d6bd642c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/876f7e845de9e6225221532ce9fbad45d6bd642c.diff" + }, + "runtime@9955df2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9955df255114dee4ddf3bde499a4c9ed7af92f4f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9955df255114dee4ddf3bde499a4c9ed7af92f4f.diff" + }, + "runtime@97cc027": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "97cc027e5b3bb1c6cf8a13739b87090c3e69e9c2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/97cc027e5b3bb1c6cf8a13739b87090c3e69e9c2.diff" + }, + "runtime@7c0f7cf": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7c0f7cf2f76ef4bc2dc8113818b8a408a1dcdf55", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7c0f7cf2f76ef4bc2dc8113818b8a408a1dcdf55.diff" + }, + "runtime@29faf6d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "29faf6d964b4fe136447943a2504281ad3c9afa1", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/29faf6d964b4fe136447943a2504281ad3c9afa1.diff" + }, + "runtime@b96f3cc": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b96f3cc738f7fca9474fbe1116148b118eb6563e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b96f3cc738f7fca9474fbe1116148b118eb6563e.diff" + }, + "runtime@72b5321": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "72b5321a55e9f7f6e2c378d906501bdef2675a33", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/72b5321a55e9f7f6e2c378d906501bdef2675a33.diff" + }, + "runtime@64350da": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "64350da135d29b8a61778bff57108493f1d20d41", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/64350da135d29b8a61778bff57108493f1d20d41.diff" + }, + "runtime@02f7316": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "02f731623cbda94759cd84d7ac508890d1edd043", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/02f731623cbda94759cd84d7ac508890d1edd043.diff" + }, + "runtime@2066293": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "20662930383f669c4b39fe7bb03c76f6f21074c5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/20662930383f669c4b39fe7bb03c76f6f21074c5.diff" + }, + "runtime@37c9693": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "37c96934b3fdeeceae7bfd730c736c5667e32c7c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/37c96934b3fdeeceae7bfd730c736c5667e32c7c.diff" + }, + "runtime@aeffb4c": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "aeffb4c63f94e56ab42278359d68066de95259fa", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/aeffb4c63f94e56ab42278359d68066de95259fa.diff" + }, + "runtime@f194942": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f1949423fa100cd635625cab4e51842930ecb928", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f1949423fa100cd635625cab4e51842930ecb928.diff" + }, + "runtime@dcde84a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "dcde84af84c57e98dd7644823631f0670dc61dce", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/dcde84af84c57e98dd7644823631f0670dc61dce.diff" + }, + "runtime@fec5107": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fec510711cda38dc02759c5f03d01bf1249a6e60", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fec510711cda38dc02759c5f03d01bf1249a6e60.diff" + }, + "runtime@83f84b6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "83f84b6bcfa6585f9542ce68f8b978ad83bb6a85", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/83f84b6bcfa6585f9542ce68f8b978ad83bb6a85.diff" + }, + "runtime@6a815e8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6a815e85a7ed3fadeb42adbc805da3f2dacc1fe5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6a815e85a7ed3fadeb42adbc805da3f2dacc1fe5.diff" + }, + "runtime@43502e5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "43502e55deaed0a3a9913c10c791ab60c3bc30ee", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/43502e55deaed0a3a9913c10c791ab60c3bc30ee.diff" + }, + "runtime@86e3d03": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "86e3d03d39b06c62af719c48d9bfee4fd5836d16", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/86e3d03d39b06c62af719c48d9bfee4fd5836d16.diff" + }, + "runtime@55f8bdb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "55f8bdb46ad25d7ceb7948947488f1a55f9e4635", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/55f8bdb46ad25d7ceb7948947488f1a55f9e4635.diff" + }, + "runtime@b03b4f9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b03b4f99aae637647b5fd53045a359485c9afed5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b03b4f99aae637647b5fd53045a359485c9afed5.diff" + }, + "runtime@1253ff8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1253ff89d81445c23daea7622ef5dae1ba074793", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1253ff89d81445c23daea7622ef5dae1ba074793.diff" + }, + "runtime@4e54117": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4e5411701cf6c75ae461f67934493b3a27121047", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4e5411701cf6c75ae461f67934493b3a27121047.diff" + }, + "runtime@16c2ce3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "16c2ce3fd3563d81545f2f5c61a28098879ddc6c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/16c2ce3fd3563d81545f2f5c61a28098879ddc6c.diff" + }, + "runtime@68df930": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "68df930514378f34564074c4be672ce8259ad42d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/68df930514378f34564074c4be672ce8259ad42d.diff" + }, + "runtime@9908b08": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9908b08abb90b9ca17293e129948679c7b4c4c50", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9908b08abb90b9ca17293e129948679c7b4c4c50.diff" + }, + "runtime@0723cf0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "0723cf012916aa062d2039ec90c38f87ef34b406", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/0723cf012916aa062d2039ec90c38f87ef34b406.diff" + }, + "runtime@9366374": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9366374807bf8895f324640133acdd9aaef094f7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9366374807bf8895f324640133acdd9aaef094f7.diff" + }, + "runtime@919e1b2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "919e1b25d70b7b8bb09a4f3923794648654411fc", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/919e1b25d70b7b8bb09a4f3923794648654411fc.diff" + }, + "runtime@9096b69": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9096b69be26ed90709d1bc460a0d4c2432372b54", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9096b69be26ed90709d1bc460a0d4c2432372b54.diff" + }, + "runtime@1a7eb82": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1a7eb82a99a7f677460a45a18138b6b7d32f080d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1a7eb82a99a7f677460a45a18138b6b7d32f080d.diff" + }, + "runtime@36739a3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "36739a35e6ae2f7cbe9a5b30e2a9a313d74b125e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/36739a35e6ae2f7cbe9a5b30e2a9a313d74b125e.diff" + }, + "runtime@4c7d197": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4c7d197cf9ca17fe0a701dd8f01be84241c1e36a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4c7d197cf9ca17fe0a701dd8f01be84241c1e36a.diff" + }, + "runtime@80f39c5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "80f39c5c16c2f3b3e820401fd4121611ccd21d4b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/80f39c5c16c2f3b3e820401fd4121611ccd21d4b.diff" + }, + "runtime@56ff888": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "56ff888a4592f6ad72d3b2d785f29101d9d78b8a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/56ff888a4592f6ad72d3b2d785f29101d9d78b8a.diff" + }, + "runtime@c626461": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c62646194bdab3da382a4c5c849481e3e8b0e8ed", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c62646194bdab3da382a4c5c849481e3e8b0e8ed.diff" + }, + "runtime@4521881": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "45218813655f28bf4f5285ae92f09abd85c02d44", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/45218813655f28bf4f5285ae92f09abd85c02d44.diff" + }, + "runtime@5ab4f9b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5ab4f9b0794aaaa45505fe9c862f3216662d24c2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5ab4f9b0794aaaa45505fe9c862f3216662d24c2.diff" + }, + "runtime@15c9f8d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "15c9f8dba38f713821f1e9a698427bc39c3f9c2e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/15c9f8dba38f713821f1e9a698427bc39c3f9c2e.diff" + }, + "runtime@b38cc2a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b38cc2aaadafc50a4cf345a95137be7dd16a29bb", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b38cc2aaadafc50a4cf345a95137be7dd16a29bb.diff" + }, + "runtime@f01e41d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f01e41d6caf93c556bad76b1997ea88a010b424d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f01e41d6caf93c556bad76b1997ea88a010b424d.diff" + }, + "runtime@edd2a2a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "edd2a2aed87000ebd416dedee6f09c1a8dcb18b7", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/edd2a2aed87000ebd416dedee6f09c1a8dcb18b7.diff" + }, + "runtime@ea02e22": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ea02e22518b0d35a8e649885042bb962435a44fd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ea02e22518b0d35a8e649885042bb962435a44fd.diff" + }, + "runtime@9ddca1d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9ddca1d12b9183a8c3e1f374ea845b0056e6f30e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9ddca1d12b9183a8c3e1f374ea845b0056e6f30e.diff" + }, + "runtime@814f1ae": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "814f1ae5bf136c6704dc94f58b7a4052af201c8c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/814f1ae5bf136c6704dc94f58b7a4052af201c8c.diff" + }, + "runtime@df18262": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "df182629204a1f4cbe8a64c4ff4fa29dc8377991", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/df182629204a1f4cbe8a64c4ff4fa29dc8377991.diff" + }, + "runtime@03b08f5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "03b08f50a221a51d5ce3eff943a5a8f706bab619", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/03b08f50a221a51d5ce3eff943a5a8f706bab619.diff" + }, + "runtime@d7f2aa6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d7f2aa65bafeb9ff2c491a30647f70db84c9ea13", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d7f2aa65bafeb9ff2c491a30647f70db84c9ea13.diff" + }, + "runtime@6648305": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6648305120a931226693e6bdc0e98b61196eba6b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6648305120a931226693e6bdc0e98b61196eba6b.diff" + }, + "runtime@b8509e6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b8509e69f5c5495289bda1f2c47c623c0e257f10", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b8509e69f5c5495289bda1f2c47c623c0e257f10.diff" + }, + "runtime@f416dc4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f416dc4f97c836c6b91617e9c1857a752072b5e2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f416dc4f97c836c6b91617e9c1857a752072b5e2.diff" + }, + "runtime@ebb0dea": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ebb0dea8739963992b38dae9a60185da2802d8d0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ebb0dea8739963992b38dae9a60185da2802d8d0.diff" + }, + "runtime@d577b7a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d577b7a7e313655d1476034af272a51f8025c0a6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d577b7a7e313655d1476034af272a51f8025c0a6.diff" + }, + "runtime@b2bba6d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b2bba6de94d0b37c53cd195f8c395a7eba3ce11a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b2bba6de94d0b37c53cd195f8c395a7eba3ce11a.diff" + }, + "runtime@6260db3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6260db3d6e32bb0632007034d95f13305bfcd34d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6260db3d6e32bb0632007034d95f13305bfcd34d.diff" + }, + "runtime@f6d4ffd": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f6d4ffd1dba9478b91d79371e77270d05e2d8a1d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f6d4ffd1dba9478b91d79371e77270d05e2d8a1d.diff" + }, + "runtime@9dd9f6f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9dd9f6fad1c40449b7221339ebda8a57b09ed93f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9dd9f6fad1c40449b7221339ebda8a57b09ed93f.diff" + }, + "runtime@eb68339": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "eb6833928665bffe9a0254f651fb4679b1ef0fbc", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/eb6833928665bffe9a0254f651fb4679b1ef0fbc.diff" + }, + "runtime@be2631f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "be2631fa380635f4e357ccdd0d140e2a8069800b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/be2631fa380635f4e357ccdd0d140e2a8069800b.diff" + }, + "runtime@f8e0698": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f8e06984c6b80815b00c5eb619abb7da630ca86f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f8e06984c6b80815b00c5eb619abb7da630ca86f.diff" + }, + "runtime@bfd735b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "bfd735b659c926430e0ec595594643cbf7737db1", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/bfd735b659c926430e0ec595594643cbf7737db1.diff" + }, + "runtime@443d53e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "443d53e25d035157b0640ddccf9a940265bfbccd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/443d53e25d035157b0640ddccf9a940265bfbccd.diff" + }, + "runtime@162722d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "162722d0c4a242b6f8a183efbe4904a1f6b6d95e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/162722d0c4a242b6f8a183efbe4904a1f6b6d95e.diff" + }, + "runtime@982dc8a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "982dc8a14ab4d03622559aec0effd98de13705c0", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/982dc8a14ab4d03622559aec0effd98de13705c0.diff" + }, + "runtime@7c58a24": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7c58a24f0cb5c1201be893387fe993be25f66263", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7c58a24f0cb5c1201be893387fe993be25f66263.diff" + }, + "runtime@af3bd85": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "af3bd855514c4ea3151dcd63ae7290f1dc3f5e13", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/af3bd855514c4ea3151dcd63ae7290f1dc3f5e13.diff" + }, + "runtime@c53804f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c53804fefffb9d037dc4cc9b1fca844d3f486b96", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c53804fefffb9d037dc4cc9b1fca844d3f486b96.diff" + }, + "runtime@baa4920": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "baa4920c39cbd92a5704218d11a1d6648950b6f5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/baa4920c39cbd92a5704218d11a1d6648950b6f5.diff" + }, + "runtime@4a6399a": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4a6399acb5aaa71cffc1fb5b3550bc4bbe68073e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4a6399acb5aaa71cffc1fb5b3550bc4bbe68073e.diff" + }, + "runtime@14b90e1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "14b90e1cb7d54556bd976f1cc331f766b0cfe884", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/14b90e1cb7d54556bd976f1cc331f766b0cfe884.diff" + }, + "runtime@875672f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "875672f5ce661b791d58bf8506fffe9c8c4a4a78", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/875672f5ce661b791d58bf8506fffe9c8c4a4a78.diff" + }, + "runtime@2509dcb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2509dcbfa5bee2b849ecf8e55067603bfd03ce3f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2509dcbfa5bee2b849ecf8e55067603bfd03ce3f.diff" + }, + "runtime@f226c29": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f226c2986a7b110a87d9ce224f2a4b738bed41dd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f226c2986a7b110a87d9ce224f2a4b738bed41dd.diff" + }, + "runtime@a9b578e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a9b578eea947d6d1b992f2d9655466db52eea8dd", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a9b578eea947d6d1b992f2d9655466db52eea8dd.diff" + }, + "runtime@5daf9dc": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5daf9dc127675061046f474108019463b83981ce", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5daf9dc127675061046f474108019463b83981ce.diff" + }, + "runtime@509a2f1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "509a2f1fed4126559143296ec6886babaf8e24c3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/509a2f1fed4126559143296ec6886babaf8e24c3.diff" + }, + "runtime@47655ce": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "47655ce8720f4c25700bf6a98216435b5082c437", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/47655ce8720f4c25700bf6a98216435b5082c437.diff" + }, + "runtime@fbf31b6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fbf31b6a837f803159dafe395f6903b3603310e5", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fbf31b6a837f803159dafe395f6903b3603310e5.diff" + }, + "runtime@e861dc8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e861dc83c4c99599d390d890ccebf6400317a9ef", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e861dc83c4c99599d390d890ccebf6400317a9ef.diff" + }, + "runtime@3d83c4f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3d83c4f576c2261fbabd999d795e94332afab6c6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3d83c4f576c2261fbabd999d795e94332afab6c6.diff" + }, + "runtime@d017a1e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d017a1e201b3e5ec1f8b8cd478438881d943c277", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d017a1e201b3e5ec1f8b8cd478438881d943c277.diff" + }, + "runtime@21630d9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "21630d999ada2ec450538eb661ce3f7bc7811e4d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/21630d999ada2ec450538eb661ce3f7bc7811e4d.diff" + }, + "runtime@45ef48e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "45ef48e88ce53fd75e49ac2fec1db41ecebfaa28", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/45ef48e88ce53fd75e49ac2fec1db41ecebfaa28.diff" + }, + "runtime@ec68eee": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "ec68eeeaad0026e7fa46e47173c42780ce627037", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/ec68eeeaad0026e7fa46e47173c42780ce627037.diff" + }, + "runtime@63e88d1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "63e88d1e37b1df0631f6cc69f96b683caf24b89f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/63e88d1e37b1df0631f6cc69f96b683caf24b89f.diff" + }, + "runtime@686d074": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "686d0748a5d2e4f078fc7247e04bf34b18435746", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/686d0748a5d2e4f078fc7247e04bf34b18435746.diff" + }, + "runtime@2daca20": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2daca207a3bb9c70494ee491832d7f75f4a26c62", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2daca207a3bb9c70494ee491832d7f75f4a26c62.diff" + }, + "runtime@fc579fd": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "fc579fdcab1c71ffce9dd55742b3d000eb3a4e6b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/fc579fdcab1c71ffce9dd55742b3d000eb3a4e6b.diff" + }, + "runtime@d5c384f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d5c384f6637347852e2616ca0a0c862ccd22cb81", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d5c384f6637347852e2616ca0a0c862ccd22cb81.diff" + }, + "runtime@6cbc8ed": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6cbc8ed9cd9338e9c37444cf681d095d79054702", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6cbc8ed9cd9338e9c37444cf681d095d79054702.diff" + }, + "runtime@f3a96ce": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f3a96ce770d84606ca34e5d8f2c767da9451d7fa", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f3a96ce770d84606ca34e5d8f2c767da9451d7fa.diff" + }, + "runtime@12e83ca": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "12e83cac05bbb42ec334fbbd1b65652e43260a7b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/12e83cac05bbb42ec334fbbd1b65652e43260a7b.diff" + }, + "runtime@53928dd": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "53928dd7af68dee13bf7b3a4a2568a482b03fd90", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/53928dd7af68dee13bf7b3a4a2568a482b03fd90.diff" + }, + "runtime@2f18157": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2f18157b0a8f2ecace8c100501b3a0bde6f24314", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2f18157b0a8f2ecace8c100501b3a0bde6f24314.diff" + }, + "runtime@cb908b0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cb908b09dc8740c20d0a4d038b85128c18d5a45c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cb908b09dc8740c20d0a4d038b85128c18d5a45c.diff" + }, + "runtime@4412aa7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "4412aa799d608f8f42e7e9f27aee0655ca5c281b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/4412aa799d608f8f42e7e9f27aee0655ca5c281b.diff" + }, + "runtime@d4cc2d9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d4cc2d99a112efcabae70f29f7be5c57643e1f7f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d4cc2d99a112efcabae70f29f7be5c57643e1f7f.diff" + }, + "runtime@bfaa2d8": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "bfaa2d83bde865dde3fdebe60e539dad4ee83124", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/bfaa2d83bde865dde3fdebe60e539dad4ee83124.diff" + }, + "runtime@3844be7": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "3844be756d92abe103dc49bddae92799826c4511", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/3844be756d92abe103dc49bddae92799826c4511.diff" + }, + "runtime@1a2f6f9": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "1a2f6f9b979adf676366588d6f667dc82b606787", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/1a2f6f9b979adf676366588d6f667dc82b606787.diff" + }, + "runtime@8b810a6": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8b810a6b2f7a0f272ef8b9d3d788898cfd4f1259", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8b810a6b2f7a0f272ef8b9d3d788898cfd4f1259.diff" + }, + "runtime@8c86f67": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8c86f671891be9f203710ba5d5a450af9d08ab82", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8c86f671891be9f203710ba5d5a450af9d08ab82.diff" + }, + "runtime@5794faa": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5794faa952334e2c7a68f3318d86cf7e0649db15", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5794faa952334e2c7a68f3318d86cf7e0649db15.diff" + }, + "runtime@d69ff06": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d69ff06d522242b57825def7bb613fda6d4beebb", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d69ff06d522242b57825def7bb613fda6d4beebb.diff" + }, + "runtime@9105b47": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9105b473dd984bc76a10cefc03881e759b226de6", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9105b473dd984bc76a10cefc03881e759b226de6.diff" + }, + "runtime@e5f6bf5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "e5f6bf516bae9346eb0b72ce56a325291cb28d63", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/e5f6bf516bae9346eb0b72ce56a325291cb28d63.diff" + }, + "runtime@210efc0": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "210efc05611723fe2883a0a6411b6357dcd52327", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/210efc05611723fe2883a0a6411b6357dcd52327.diff" + }, + "runtime@243d211": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "243d21163c997e0f8760ac8ed9a01f4098d37023", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/243d21163c997e0f8760ac8ed9a01f4098d37023.diff" + }, + "runtime@52896ab": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "52896ab2e35e7e8387a1798679c20886dc8e840e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/52896ab2e35e7e8387a1798679c20886dc8e840e.diff" + }, + "runtime@7877ab1": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7877ab12a2ab0b78a3b370e329dc16de54cd41b2", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7877ab12a2ab0b78a3b370e329dc16de54cd41b2.diff" + }, + "runtime@6d3044d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6d3044db47fc5161841ba54317feed1122c132a9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6d3044db47fc5161841ba54317feed1122c132a9.diff" + }, + "runtime@5caa14b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "5caa14bd341f2639b586fca29874c6f92d9711cc", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/5caa14bd341f2639b586fca29874c6f92d9711cc.diff" + }, + "runtime@b5c98ef": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "b5c98ef234c03e4d284bfd2f2c60ca982550fb30", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/b5c98ef234c03e4d284bfd2f2c60ca982550fb30.diff" + }, + "runtime@18a940b": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "18a940b0d8fd21bf1513edc8f550804e3b59bb1d", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/18a940b0d8fd21bf1513edc8f550804e3b59bb1d.diff" + }, + "runtime@979b490": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "979b4906d893ea26019e3660333cc3a4da8b2b54", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/979b4906d893ea26019e3660333cc3a4da8b2b54.diff" + }, + "runtime@9d8d3e2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9d8d3e2b3091b4327c77fc00b6a00efcc418738b", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9d8d3e2b3091b4327c77fc00b6a00efcc418738b.diff" + }, + "runtime@7b5e3d3": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "7b5e3d3fbeadbb340638a8d6a5710e2e8e902b06", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/7b5e3d3fbeadbb340638a8d6a5710e2e8e902b06.diff" + }, + "runtime@c8917ea": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "c8917ea4d2dbcc8b21de44f7637f735557c441da", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/c8917ea4d2dbcc8b21de44f7637f735557c441da.diff" + }, + "runtime@8f33bcb": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "8f33bcbcfa4462ab3c338b3cada6fba7a3785979", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/8f33bcbcfa4462ab3c338b3cada6fba7a3785979.diff" + }, + "runtime@d6c493d": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d6c493d40bcb9a9414ae362e11b2628d37e42c26", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d6c493d40bcb9a9414ae362e11b2628d37e42c26.diff" + }, + "runtime@a4207f4": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "a4207f481e3cc715a8261edb78272fec0c96a244", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/a4207f481e3cc715a8261edb78272fec0c96a244.diff" + }, + "runtime@deb317e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "deb317e7e183987a5616dd9b605c7d630bcb3d3e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/deb317e7e183987a5616dd9b605c7d630bcb3d3e.diff" + }, + "runtime@44cd131": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "44cd131ffeff0cc5fed208c132fd85859e4fe35f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/44cd131ffeff0cc5fed208c132fd85859e4fe35f.diff" + }, + "runtime@803560f": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "803560f776ba8b643526bc904c4f88b1dcd7020c", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/803560f776ba8b643526bc904c4f88b1dcd7020c.diff" + }, + "runtime@f15e049": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "f15e049ac96bcb9d93ab6a47df539b4d71c2824e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/f15e049ac96bcb9d93ab6a47df539b4d71c2824e.diff" + }, + "runtime@cdddcee": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "cdddceed70578c84c236b2468da90a5280c8b0b9", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/cdddceed70578c84c236b2468da90a5280c8b0b9.diff" + }, + "runtime@bde19aa": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "bde19aa79c3f4f04ea01fbfc4d2e5effdb94e45f", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/bde19aa79c3f4f04ea01fbfc4d2e5effdb94e45f.diff" + }, + "runtime@93b87b2": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "93b87b24703150838e27a2eb43b9733bfc7daa35", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/93b87b24703150838e27a2eb43b9733bfc7daa35.diff" + }, + "runtime@d5e1f9e": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d5e1f9ee52aaf8c40ea1c125d0517f5262970f72", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d5e1f9ee52aaf8c40ea1c125d0517f5262970f72.diff" + }, + "runtime@2d7b256": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "2d7b256cc4f8141d894cdeceff87562cda6e259e", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/2d7b256cc4f8141d894cdeceff87562cda6e259e.diff" + }, + "runtime@9bab625": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "9bab625f865cd8019dd0e76782c2724e64d73383", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/9bab625f865cd8019dd0e76782c2724e64d73383.diff" + }, + "runtime@eafeb92": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "eafeb925b2833eb5f3f56d21f672c4b0246ec18a", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/eafeb925b2833eb5f3f56d21f672c4b0246ec18a.diff" + }, + "runtime@91557f5": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "91557f54f15bac8fbb5c7acf994910cbd6071991", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/91557f54f15bac8fbb5c7acf994910cbd6071991.diff" + }, + "runtime@6f8b227": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "6f8b227854a4514185d76a101c00c7a3bd830c97", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/6f8b227854a4514185d76a101c00c7a3bd830c97.diff" + }, + "runtime@d343974": { + "repo": "runtime", + "branch": "release/11.0.1xx-preview3", + "hash": "d3439749b652966f8283f2d01c972bc8c4dc3ec3", + "org": "dotnet", + "url": "https://github.com/dotnet/runtime/commit/d3439749b652966f8283f2d01c972bc8c4dc3ec3.diff" + }, + "sdk@bcb60ca": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "bcb60ca04b288418ecd9e8f9c34f51bf21fb1dc4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/bcb60ca04b288418ecd9e8f9c34f51bf21fb1dc4.diff" + }, + "sdk@84d3214": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "84d32149a5388bdd1d252373fa53ab5154c33efb", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/84d32149a5388bdd1d252373fa53ab5154c33efb.diff" + }, + "sdk@63a7105": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "63a710595ae6d63c5a82529f45cfbbd8778fb2bc", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/63a710595ae6d63c5a82529f45cfbbd8778fb2bc.diff" + }, + "sdk@26ca00f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "26ca00f373a242702c1ebecd1dc3e1a7e03a7896", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/26ca00f373a242702c1ebecd1dc3e1a7e03a7896.diff" + }, + "sdk@6373e26": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6373e262f1e7c719b5d7c42866222d2355f4006a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6373e262f1e7c719b5d7c42866222d2355f4006a.diff" + }, + "sdk@368e128": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "368e128e8259aa52dd7176d8da16605fd2a0860e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/368e128e8259aa52dd7176d8da16605fd2a0860e.diff" + }, + "sdk@aa4cf6e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "aa4cf6e1d820059542fd9a22888be58c0e798766", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/aa4cf6e1d820059542fd9a22888be58c0e798766.diff" + }, + "sdk@48e7568": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "48e7568f19ea0dcabd66f6c2a3ea3699c2156453", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/48e7568f19ea0dcabd66f6c2a3ea3699c2156453.diff" + }, + "sdk@ae318b2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ae318b25d6803dd1272812b031fae502996af8b4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ae318b25d6803dd1272812b031fae502996af8b4.diff" + }, + "sdk@16f9ccf": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "16f9ccfc41b766672a752d5832363f61ccc4a8f7", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/16f9ccfc41b766672a752d5832363f61ccc4a8f7.diff" + }, + "sdk@b9d29f2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b9d29f2d2953acbbc2b450c130c6727ca895c92b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b9d29f2d2953acbbc2b450c130c6727ca895c92b.diff" + }, + "sdk@d8f27e8": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d8f27e8ad05944d0d191363087a421ce527e1dc5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d8f27e8ad05944d0d191363087a421ce527e1dc5.diff" + }, + "sdk@12760a3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "12760a3e53f904c89aaeed70a01a0274701b5eb9", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/12760a3e53f904c89aaeed70a01a0274701b5eb9.diff" + }, + "sdk@5371752": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "537175220f65f0b65f41cdf4cfc888bd1c83dfb3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/537175220f65f0b65f41cdf4cfc888bd1c83dfb3.diff" + }, + "sdk@583f680": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "583f6803448894b50b149ce9568611795963fcd1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/583f6803448894b50b149ce9568611795963fcd1.diff" + }, + "sdk@6c268d1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6c268d15844b784ba1608e752889a0150ac33390", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6c268d15844b784ba1608e752889a0150ac33390.diff" + }, + "sdk@efd8fd2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "efd8fd2323c5d99a63b3e7b9fa5318777315028d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/efd8fd2323c5d99a63b3e7b9fa5318777315028d.diff" + }, + "sdk@5f21c8b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5f21c8be47f75283c6959838f7197c1e56e26503", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5f21c8be47f75283c6959838f7197c1e56e26503.diff" + }, + "sdk@ca22991": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ca22991c2a504cbcd3f9fb0aec68a5905129011f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ca22991c2a504cbcd3f9fb0aec68a5905129011f.diff" + }, + "sdk@f02a5eb": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f02a5eb14f324cd297441febd9099130268056fc", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f02a5eb14f324cd297441febd9099130268056fc.diff" + }, + "sdk@81f778f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "81f778f9bae4c2ed9d15ab68e1a117d09aeff18b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/81f778f9bae4c2ed9d15ab68e1a117d09aeff18b.diff" + }, + "sdk@72e7825": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "72e782541cab0694c5cc018e4bc784245e22e6a1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/72e782541cab0694c5cc018e4bc784245e22e6a1.diff" + }, + "sdk@081c776": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "081c7768ffd398629da051f43244224f9387560f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/081c7768ffd398629da051f43244224f9387560f.diff" + }, + "sdk@bdc3757": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "bdc375762cd2fddf166c9e1af9b60a83bfc27c2f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/bdc375762cd2fddf166c9e1af9b60a83bfc27c2f.diff" + }, + "sdk@70bdf41": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "70bdf418853c8ec8e25aa0008426e8733238e3e6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/70bdf418853c8ec8e25aa0008426e8733238e3e6.diff" + }, + "sdk@3ce7bd3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3ce7bd318fff2db5ce4354f9db2f9be89ad81e84", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3ce7bd318fff2db5ce4354f9db2f9be89ad81e84.diff" + }, + "sdk@9be0a7d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9be0a7d24f2860b754aa19365621c54bbcdbbdc1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9be0a7d24f2860b754aa19365621c54bbcdbbdc1.diff" + }, + "sdk@4934c8f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4934c8f32006b2ed58f1e4d6b55787000a8fac23", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4934c8f32006b2ed58f1e4d6b55787000a8fac23.diff" + }, + "sdk@c34be85": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c34be8559529a201c97f2b13f8ca544e0d430741", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c34be8559529a201c97f2b13f8ca544e0d430741.diff" + }, + "sdk@209a34e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "209a34e8629a96cdb71b1cee1ec9d21812dacc57", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/209a34e8629a96cdb71b1cee1ec9d21812dacc57.diff" + }, + "sdk@14848ba": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "14848ba8b5c7331f15cb94f879657e7f366ecf54", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/14848ba8b5c7331f15cb94f879657e7f366ecf54.diff" + }, + "sdk@4e6fb9d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4e6fb9d567a920d6319d17a599668b678514ab3c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4e6fb9d567a920d6319d17a599668b678514ab3c.diff" + }, + "sdk@45f21b3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "45f21b3092adf7ab12ef11052afed0a394fc7551", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/45f21b3092adf7ab12ef11052afed0a394fc7551.diff" + }, + "sdk@a7e90c8": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a7e90c8c102281e01fb0943672657bf8afaeb6ff", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a7e90c8c102281e01fb0943672657bf8afaeb6ff.diff" + }, + "sdk@d346139": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d34613993bd00e050a2c5255d5751461c75a3c80", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d34613993bd00e050a2c5255d5751461c75a3c80.diff" + }, + "sdk@e055a32": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e055a32e029c8f56b74b87cc01f0348431e4e1a6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e055a32e029c8f56b74b87cc01f0348431e4e1a6.diff" + }, + "sdk@0af14fa": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0af14fa218fce0deb9192b798afe0bd38ce33f2e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0af14fa218fce0deb9192b798afe0bd38ce33f2e.diff" + }, + "sdk@7a1703f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7a1703f4cb00094eae0bd0a1064e825b20c5b087", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7a1703f4cb00094eae0bd0a1064e825b20c5b087.diff" + }, + "sdk@4c2926f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4c2926f0573c567090abcd833c88c6992be9ad90", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4c2926f0573c567090abcd833c88c6992be9ad90.diff" + }, + "sdk@feeb179": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "feeb17980420d2a62c33d230843515098e748c5c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/feeb17980420d2a62c33d230843515098e748c5c.diff" + }, + "sdk@193757a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "193757a32bcaee656fd2b1b8e2076e8805533ba6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/193757a32bcaee656fd2b1b8e2076e8805533ba6.diff" + }, + "sdk@e3808fd": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e3808fd1ed3ba6037723b44a6a04b08e4fc4d30b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e3808fd1ed3ba6037723b44a6a04b08e4fc4d30b.diff" + }, + "sdk@1f571f8": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1f571f8b585795738d710cfd14e525e974ff0c0f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1f571f8b585795738d710cfd14e525e974ff0c0f.diff" + }, + "sdk@c5fb73c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c5fb73cedfc35c646cb18da5ed6ce86b7c7a7053", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c5fb73cedfc35c646cb18da5ed6ce86b7c7a7053.diff" + }, + "sdk@ed11d35": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ed11d35b2f5d40a02fe41215a78ea3eb9be2cd4d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ed11d35b2f5d40a02fe41215a78ea3eb9be2cd4d.diff" + }, + "sdk@cbb2c65": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "cbb2c653af28000f201c50e6e4985b27d834d091", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/cbb2c653af28000f201c50e6e4985b27d834d091.diff" + }, + "sdk@364c48a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "364c48aa31d0d491fb4dcce617053af2b617dd37", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/364c48aa31d0d491fb4dcce617053af2b617dd37.diff" + }, + "sdk@3a8c6cc": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3a8c6cc5a0ade89edc395401efcda425ad38c62b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3a8c6cc5a0ade89edc395401efcda425ad38c62b.diff" + }, + "sdk@ffcf676": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ffcf67693266f347e5c4131cdc1492659120069c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ffcf67693266f347e5c4131cdc1492659120069c.diff" + }, + "sdk@e6a495f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e6a495fb58ac3ea75303467c4657f0e8c85252df", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e6a495fb58ac3ea75303467c4657f0e8c85252df.diff" + }, + "sdk@7ca3cac": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7ca3cac6372341f20f8a8733ab94c9e985433539", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7ca3cac6372341f20f8a8733ab94c9e985433539.diff" + }, + "sdk@0337000": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "033700013fdd111195e85e7a51f84337f36e039f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/033700013fdd111195e85e7a51f84337f36e039f.diff" + }, + "sdk@8fbde9f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8fbde9fb4b68a1f8d469f244f7483fd6192b0686", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8fbde9fb4b68a1f8d469f244f7483fd6192b0686.diff" + }, + "sdk@3582eea": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3582eea036eefb2ada938284eb5d100f94fc85bb", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3582eea036eefb2ada938284eb5d100f94fc85bb.diff" + }, + "sdk@d24aa91": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d24aa919c05c1839a1e5aa4744eb38ee8be1417f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d24aa919c05c1839a1e5aa4744eb38ee8be1417f.diff" + }, + "sdk@c5e7703": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c5e7703fcb8d24ae05cfc1ee036111dd78843578", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c5e7703fcb8d24ae05cfc1ee036111dd78843578.diff" + }, + "sdk@7e13368": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7e133688657eed9f58d4608f18cc38ed0d3be198", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7e133688657eed9f58d4608f18cc38ed0d3be198.diff" + }, + "sdk@e128c8a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e128c8ad76d7e63cefaee7da16ac51c1a79f677c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e128c8ad76d7e63cefaee7da16ac51c1a79f677c.diff" + }, + "sdk@4c9e31c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4c9e31c29dc2f7bf62c2d5266ebf1574bd5290b2", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4c9e31c29dc2f7bf62c2d5266ebf1574bd5290b2.diff" + }, + "sdk@0f8b0e3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0f8b0e3e554ff133cbaabe7c5ce2e826f5fbb573", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0f8b0e3e554ff133cbaabe7c5ce2e826f5fbb573.diff" + }, + "sdk@1ba5960": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1ba596079f9502a4ee8f819cf52a9ce031749ebe", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1ba596079f9502a4ee8f819cf52a9ce031749ebe.diff" + }, + "sdk@7a5391d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7a5391d7c919b6f4532455066c3c0edaebe2a5a6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7a5391d7c919b6f4532455066c3c0edaebe2a5a6.diff" + }, + "sdk@1b6b76a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1b6b76add691c745ee07cf73c26cc4035b3350bd", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1b6b76add691c745ee07cf73c26cc4035b3350bd.diff" + }, + "sdk@dbc366b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "dbc366b4e92958b7c0b6c40d60596421692f7414", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/dbc366b4e92958b7c0b6c40d60596421692f7414.diff" + }, + "sdk@96dfed6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "96dfed677337e7adbfa922fcd553f69f4641e71c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/96dfed677337e7adbfa922fcd553f69f4641e71c.diff" + }, + "sdk@43f4612": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "43f46121f2a83303fd5ccb824cd83b04d34b4f8f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/43f46121f2a83303fd5ccb824cd83b04d34b4f8f.diff" + }, + "sdk@fff4134": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "fff4134404305826b3438528dc6d9d8bf26043e5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/fff4134404305826b3438528dc6d9d8bf26043e5.diff" + }, + "sdk@8ce16af": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8ce16af39d449ffee5cb699f1c0e92d8aad47797", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8ce16af39d449ffee5cb699f1c0e92d8aad47797.diff" + }, + "sdk@ed16134": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ed16134a8ab1014e1f306df2d4a4b7c5e2b31c9e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ed16134a8ab1014e1f306df2d4a4b7c5e2b31c9e.diff" + }, + "sdk@1fd3502": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1fd3502707311a24c43fbfb4cb602e23c7152a08", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1fd3502707311a24c43fbfb4cb602e23c7152a08.diff" + }, + "sdk@2062568": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2062568581583d5bba5c8424c7fa6b9a659aed43", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2062568581583d5bba5c8424c7fa6b9a659aed43.diff" + }, + "sdk@f95eda2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f95eda259c8c57600b243769779e11f9c97b864e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f95eda259c8c57600b243769779e11f9c97b864e.diff" + }, + "sdk@8255399": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "82553995bf4e84914fdbc9200697584c0e8b6390", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/82553995bf4e84914fdbc9200697584c0e8b6390.diff" + }, + "sdk@cd3a71f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "cd3a71f039fb10204ab44e0c29a9a601c0fabd1c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/cd3a71f039fb10204ab44e0c29a9a601c0fabd1c.diff" + }, + "sdk@27dd11b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "27dd11b592a8e02937b5cf11bcd1c36688287f92", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/27dd11b592a8e02937b5cf11bcd1c36688287f92.diff" + }, + "sdk@171977b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "171977b618187f848d444a9445a91d6648f346de", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/171977b618187f848d444a9445a91d6648f346de.diff" + }, + "sdk@1e1cec6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1e1cec6d46454c6d18a704dab5427943db8af617", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1e1cec6d46454c6d18a704dab5427943db8af617.diff" + }, + "sdk@c08a02a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c08a02a9d470e677f899f371c5c68ea244782e69", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c08a02a9d470e677f899f371c5c68ea244782e69.diff" + }, + "sdk@d8aa6fd": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d8aa6fdc01891b5336d18d33ba25238f4392775b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d8aa6fdc01891b5336d18d33ba25238f4392775b.diff" + }, + "sdk@e41a21b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e41a21bce785c606a970ac45a27c4bb0f86cade6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e41a21bce785c606a970ac45a27c4bb0f86cade6.diff" + }, + "sdk@9400f24": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9400f244dbc9e9f9e7c82bbb4028f7e5480d343d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9400f244dbc9e9f9e7c82bbb4028f7e5480d343d.diff" + }, + "sdk@70b0739": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "70b0739b7ffad74b7b8bfe1edba7ec0fb0d624d0", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/70b0739b7ffad74b7b8bfe1edba7ec0fb0d624d0.diff" + }, + "sdk@1ac4527": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1ac4527f902a12d0c80467d72da3e80dfe8a1879", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1ac4527f902a12d0c80467d72da3e80dfe8a1879.diff" + }, + "sdk@74b28c0": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "74b28c03e1b08f3a27cdba81dc6f1984a0d7ede1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/74b28c03e1b08f3a27cdba81dc6f1984a0d7ede1.diff" + }, + "sdk@1e311fe": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1e311fe894a29d7e6b026f4dbefa2de2754eb2b3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1e311fe894a29d7e6b026f4dbefa2de2754eb2b3.diff" + }, + "sdk@a430e56": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a430e56acbeac6d7e673fdc9d30519b2d9377563", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a430e56acbeac6d7e673fdc9d30519b2d9377563.diff" + }, + "sdk@99ed5a4": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "99ed5a458108bd10c2163b7d180255c3176a589a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/99ed5a458108bd10c2163b7d180255c3176a589a.diff" + }, + "sdk@e6a41ba": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e6a41baf4540e52edf18af7c5f0e9211dd36695c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e6a41baf4540e52edf18af7c5f0e9211dd36695c.diff" + }, + "sdk@2f84158": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2f84158d51768d1a7b42961611a2adc4a8979a6b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2f84158d51768d1a7b42961611a2adc4a8979a6b.diff" + }, + "sdk@26247c1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "26247c18a195347db1cdddd960601a3ace880f19", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/26247c18a195347db1cdddd960601a3ace880f19.diff" + }, + "sdk@0957156": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0957156bc5d93cbbf478fe9ed09d38d49894d86b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0957156bc5d93cbbf478fe9ed09d38d49894d86b.diff" + }, + "sdk@1348752": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1348752a52869ac58d18e4edb3aa35f472a824d6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1348752a52869ac58d18e4edb3aa35f472a824d6.diff" + }, + "sdk@e216b09": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e216b09accb3509218bffebb5b3b1cc7e62c6bf8", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e216b09accb3509218bffebb5b3b1cc7e62c6bf8.diff" + }, + "sdk@99ee676": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "99ee6763c42fc83745dc0335f239f34450be420d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/99ee6763c42fc83745dc0335f239f34450be420d.diff" + }, + "sdk@7bcae52": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7bcae522e049bc8318cb2bab11af507add6493c3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7bcae522e049bc8318cb2bab11af507add6493c3.diff" + }, + "sdk@2fc1ed0": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2fc1ed04bd8b292ef11bf9c0024d0e67c90b3840", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2fc1ed04bd8b292ef11bf9c0024d0e67c90b3840.diff" + }, + "sdk@6b83d8b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6b83d8bcd1876cc697e73910c6c5793de445acf8", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6b83d8bcd1876cc697e73910c6c5793de445acf8.diff" + }, + "sdk@46f06ae": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "46f06aed9eeb443dbd9094cf7b407a3ec179470b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/46f06aed9eeb443dbd9094cf7b407a3ec179470b.diff" + }, + "sdk@10b65e8": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "10b65e8b67c68951509d2714c3d16ece704ede16", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/10b65e8b67c68951509d2714c3d16ece704ede16.diff" + }, + "sdk@275e4bf": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "275e4bf3e9861a666b6b58117cbbcc3bceab09ec", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/275e4bf3e9861a666b6b58117cbbcc3bceab09ec.diff" + }, + "sdk@0b32584": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0b3258423a96e6b0e0582a31f09e10ce4478fc06", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0b3258423a96e6b0e0582a31f09e10ce4478fc06.diff" + }, + "sdk@da48935": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "da48935c4975ad6ed331df353bd94cb285002cf8", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/da48935c4975ad6ed331df353bd94cb285002cf8.diff" + }, + "sdk@2ea2c91": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2ea2c917ff955b6557b70aebb77ae969a4c66ab5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2ea2c917ff955b6557b70aebb77ae969a4c66ab5.diff" + }, + "sdk@6a65951": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6a65951b27079ac8421b638aeb5f5076485d28d8", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6a65951b27079ac8421b638aeb5f5076485d28d8.diff" + }, + "sdk@bf06920": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "bf069209cde7b27f436b64fcafb0fe0e66db667a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/bf069209cde7b27f436b64fcafb0fe0e66db667a.diff" + }, + "sdk@cd44b29": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "cd44b291e15d205fd6a0bc1fe698f33ac8989e87", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/cd44b291e15d205fd6a0bc1fe698f33ac8989e87.diff" + }, + "sdk@878d3e2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "878d3e2175a909bc3953373de970bcb85ee4c2e4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/878d3e2175a909bc3953373de970bcb85ee4c2e4.diff" + }, + "sdk@918016b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "918016bd6536642a5424400b5b1584c7731197e2", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/918016bd6536642a5424400b5b1584c7731197e2.diff" + }, + "sdk@27df5c7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "27df5c71bc86e7e50f049bcdf7ceb918fe074164", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/27df5c71bc86e7e50f049bcdf7ceb918fe074164.diff" + }, + "sdk@46a4d29": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "46a4d29bdce7f495b8830ce32a249572303c97c4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/46a4d29bdce7f495b8830ce32a249572303c97c4.diff" + }, + "sdk@61d729a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "61d729a1933212c1ce05b50d8211445823bf822a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/61d729a1933212c1ce05b50d8211445823bf822a.diff" + }, + "sdk@3065905": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "30659057e1c8178acba655aacdaf3a47d810b1b4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/30659057e1c8178acba655aacdaf3a47d810b1b4.diff" + }, + "sdk@a2fbbf0": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a2fbbf040c869af7d73a9b48386fc2bab49ed09d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a2fbbf040c869af7d73a9b48386fc2bab49ed09d.diff" + }, + "sdk@92f957c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "92f957cb164b14018793729a5304f0ab8fe9b563", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/92f957cb164b14018793729a5304f0ab8fe9b563.diff" + }, + "sdk@fab83c0": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "fab83c076b30474413595b1755f3073e94d49267", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/fab83c076b30474413595b1755f3073e94d49267.diff" + }, + "sdk@6afcec8": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6afcec8d274307f9ce0806a89312be794a2bc729", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6afcec8d274307f9ce0806a89312be794a2bc729.diff" + }, + "sdk@1dc6008": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1dc6008f9337da3387b30d7d6a9f8a816010ef82", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1dc6008f9337da3387b30d7d6a9f8a816010ef82.diff" + }, + "sdk@1db8003": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1db8003122e8d45894c8b388e70896129608de7d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1db8003122e8d45894c8b388e70896129608de7d.diff" + }, + "sdk@321b67f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "321b67f688fa78f0482a22b8e08054c9aa4bc3d6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/321b67f688fa78f0482a22b8e08054c9aa4bc3d6.diff" + }, + "sdk@e30dc41": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e30dc418313b2d1132ca01a5d148e907903b7b1d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e30dc418313b2d1132ca01a5d148e907903b7b1d.diff" + }, + "sdk@bc6b89b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "bc6b89b6de559c15c5280a49ef69200670b0489e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/bc6b89b6de559c15c5280a49ef69200670b0489e.diff" + }, + "sdk@8a231e7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8a231e75a19b712178117767e09ca0ec7ac3c7a3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8a231e75a19b712178117767e09ca0ec7ac3c7a3.diff" + }, + "sdk@f6e1cdd": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f6e1cddab1b025fe75433a794e87feefafcecc67", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f6e1cddab1b025fe75433a794e87feefafcecc67.diff" + }, + "sdk@fb44937": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "fb44937b195e836e855ee72fe5254382c29e1ca9", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/fb44937b195e836e855ee72fe5254382c29e1ca9.diff" + }, + "sdk@28580ca": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "28580caa6ffcfd1e0df947589f262bc436beabbb", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/28580caa6ffcfd1e0df947589f262bc436beabbb.diff" + }, + "sdk@af70221": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "af702217e5d1fefe7ca1242de3ed9ce09a1691a6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/af702217e5d1fefe7ca1242de3ed9ce09a1691a6.diff" + }, + "sdk@fadbc3c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "fadbc3ca28958417082b0c01c93919b4a7fda4be", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/fadbc3ca28958417082b0c01c93919b4a7fda4be.diff" + }, + "sdk@f26b426": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f26b426ff9c783d0d955256632eaf550687c8002", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f26b426ff9c783d0d955256632eaf550687c8002.diff" + }, + "sdk@d30c5b5": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d30c5b546521cdad7ed907d60857f81a4116806f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d30c5b546521cdad7ed907d60857f81a4116806f.diff" + }, + "sdk@28084a7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "28084a73cf33989c72804fe037d960a0a2361964", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/28084a73cf33989c72804fe037d960a0a2361964.diff" + }, + "sdk@6eaaea3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6eaaea38812042b3ab309b8080eadb1c73c28eb6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6eaaea38812042b3ab309b8080eadb1c73c28eb6.diff" + }, + "sdk@de7e4de": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "de7e4de4b13175e3e149db9a6bb1312943800851", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/de7e4de4b13175e3e149db9a6bb1312943800851.diff" + }, + "sdk@701e15b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "701e15bd3c8bcc54e229e776c4491f820a23f80f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/701e15bd3c8bcc54e229e776c4491f820a23f80f.diff" + }, + "sdk@0b5cabd": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0b5cabd6007221d0352fd0b81ea452db790d6f67", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0b5cabd6007221d0352fd0b81ea452db790d6f67.diff" + }, + "sdk@6d57490": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6d57490816797a1f68bccb2dbd7770689d56b540", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6d57490816797a1f68bccb2dbd7770689d56b540.diff" + }, + "sdk@b40543f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b40543fe4dc377c6e60a482109b378b589dc87df", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b40543fe4dc377c6e60a482109b378b589dc87df.diff" + }, + "sdk@343044b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "343044b01a7658318badcb937728d01ef14f9cbd", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/343044b01a7658318badcb937728d01ef14f9cbd.diff" + }, + "sdk@ce2b7a5": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ce2b7a54fd330ed35e0e82f69c63b384db7c2cf8", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ce2b7a54fd330ed35e0e82f69c63b384db7c2cf8.diff" + }, + "sdk@f8798d7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f8798d7a7b4b8c24f2748c3621ca2571cef45244", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f8798d7a7b4b8c24f2748c3621ca2571cef45244.diff" + }, + "sdk@688c757": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "688c757750401b79a898dcf69667edb011323245", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/688c757750401b79a898dcf69667edb011323245.diff" + }, + "sdk@7f7901c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7f7901cb131b999f042aa17ed35514b279c2555d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7f7901cb131b999f042aa17ed35514b279c2555d.diff" + }, + "sdk@5a22127": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5a22127dbc1b0c6466337c559bf02cf0f81da918", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5a22127dbc1b0c6466337c559bf02cf0f81da918.diff" + }, + "sdk@13f08d3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "13f08d3b6b539257e2376db1245b8733bb4f52df", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/13f08d3b6b539257e2376db1245b8733bb4f52df.diff" + }, + "sdk@46f0350": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "46f035076941f61b466b04b93af187ed99cb1fdb", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/46f035076941f61b466b04b93af187ed99cb1fdb.diff" + }, + "sdk@2efe80f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2efe80f05884f6bea93f33d8e06528bda728ab78", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2efe80f05884f6bea93f33d8e06528bda728ab78.diff" + }, + "sdk@3defff8": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3defff87b01eec9d63007825a8a78da7953ccb5d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3defff87b01eec9d63007825a8a78da7953ccb5d.diff" + }, + "sdk@67631a2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "67631a219f79ccff6f642286a1d229c31c367fce", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/67631a219f79ccff6f642286a1d229c31c367fce.diff" + }, + "sdk@3a0afa4": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3a0afa4e54343c562f7408e73359ed0338aa6eeb", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3a0afa4e54343c562f7408e73359ed0338aa6eeb.diff" + }, + "sdk@b0cb010": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b0cb0106eb542ef29f875cc8b334548a1e29b96b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b0cb0106eb542ef29f875cc8b334548a1e29b96b.diff" + }, + "sdk@c9aec7d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c9aec7dec4db0090472f43a08a43ad256ef69e7c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c9aec7dec4db0090472f43a08a43ad256ef69e7c.diff" + }, + "sdk@7b1f17a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7b1f17a9be44992f04d4872f9ccaa28dae8da748", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7b1f17a9be44992f04d4872f9ccaa28dae8da748.diff" + }, + "sdk@6f25088": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6f25088dd4614d8f6da0a50ce2e3ef9301a3b3d7", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6f25088dd4614d8f6da0a50ce2e3ef9301a3b3d7.diff" + }, + "sdk@34884ac": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "34884acc6a8879b7c942ad08e9112bcd5f9d8038", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/34884acc6a8879b7c942ad08e9112bcd5f9d8038.diff" + }, + "sdk@3850bef": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3850bef1c7a3e8abeca80c38917d0c70b4fa352b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3850bef1c7a3e8abeca80c38917d0c70b4fa352b.diff" + }, + "sdk@becbd7e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "becbd7e7c7b82d35cae51e6ea2fdef6d846a1b97", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/becbd7e7c7b82d35cae51e6ea2fdef6d846a1b97.diff" + }, + "sdk@7a2111b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7a2111b160ae1c18ced50a15b2ddd8d7521ae7cf", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7a2111b160ae1c18ced50a15b2ddd8d7521ae7cf.diff" + }, + "sdk@b9d31cb": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b9d31cb0f47aca1f9b2818143722c5b33c486077", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b9d31cb0f47aca1f9b2818143722c5b33c486077.diff" + }, + "sdk@f46c335": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f46c335982ae897cd102d7b773073b27e057e48d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f46c335982ae897cd102d7b773073b27e057e48d.diff" + }, + "sdk@22254e6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "22254e68de79086f7bf89e0afe6f0142b9c5a389", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/22254e68de79086f7bf89e0afe6f0142b9c5a389.diff" + }, + "sdk@cd783aa": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "cd783aaa2de42020cba266f71bc647023b377c4c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/cd783aaa2de42020cba266f71bc647023b377c4c.diff" + }, + "sdk@1ed2c06": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1ed2c061f88ae28e996fcbcd416387174e84e5ea", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1ed2c061f88ae28e996fcbcd416387174e84e5ea.diff" + }, + "sdk@a27297b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a27297bf1bb993dba7180eb71c2c7730a716ef9d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a27297bf1bb993dba7180eb71c2c7730a716ef9d.diff" + }, + "sdk@3d51db5": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3d51db505631a2ef6c8ad16d5eea9ab8f0c0ef59", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3d51db505631a2ef6c8ad16d5eea9ab8f0c0ef59.diff" + }, + "sdk@672cd33": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "672cd3327df1ae93a5032d391e68e5b69e00f96c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/672cd3327df1ae93a5032d391e68e5b69e00f96c.diff" + }, + "sdk@08c351c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "08c351c9b55827d284e679bda2ec31d4962f7fb7", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/08c351c9b55827d284e679bda2ec31d4962f7fb7.diff" + }, + "sdk@179cda2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "179cda20da5720a0bb3da1eab148757e632568eb", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/179cda20da5720a0bb3da1eab148757e632568eb.diff" + }, + "sdk@df91594": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "df91594667d3148b43be20e6653df6c0e76b4e42", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/df91594667d3148b43be20e6653df6c0e76b4e42.diff" + }, + "sdk@f66d62e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f66d62ef5988e0be3cd75d9b41916b2e776ec27d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f66d62ef5988e0be3cd75d9b41916b2e776ec27d.diff" + }, + "sdk@bd5d3af": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "bd5d3af9804ba358bf3f2e1be209418bcc949d16", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/bd5d3af9804ba358bf3f2e1be209418bcc949d16.diff" + }, + "sdk@fdc6404": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "fdc6404f272e9fbed2e79aecd9a9807923685e0f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/fdc6404f272e9fbed2e79aecd9a9807923685e0f.diff" + }, + "sdk@d8ba29e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d8ba29e78726a70cc1a8924d0879fd5eb90c51ab", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d8ba29e78726a70cc1a8924d0879fd5eb90c51ab.diff" + }, + "sdk@cf2e5d6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "cf2e5d604b16265bc0141593826c187d9d471f0f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/cf2e5d604b16265bc0141593826c187d9d471f0f.diff" + }, + "sdk@8688b41": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8688b417a68942f8818e56e5809d136f57a0c289", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8688b417a68942f8818e56e5809d136f57a0c289.diff" + }, + "sdk@f7900e0": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f7900e0ee90e259d65e10e34d55e1e7ce04c6a11", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f7900e0ee90e259d65e10e34d55e1e7ce04c6a11.diff" + }, + "sdk@e898f24": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e898f24761dcbad67251f69e278ef44a0b307bca", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e898f24761dcbad67251f69e278ef44a0b307bca.diff" + }, + "sdk@d74666a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d74666ab99f773a41c2769d14a5aa5e795bd1c07", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d74666ab99f773a41c2769d14a5aa5e795bd1c07.diff" + }, + "sdk@b34aec9": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b34aec96fd080aabc9233e099921aeaa4379071a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b34aec96fd080aabc9233e099921aeaa4379071a.diff" + }, + "sdk@1819039": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1819039aef72a7a2865326b0731dc50a35754d65", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1819039aef72a7a2865326b0731dc50a35754d65.diff" + }, + "sdk@7028695": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7028695fb6a83f035bc4a6690c794f4e2a4cfb3b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7028695fb6a83f035bc4a6690c794f4e2a4cfb3b.diff" + }, + "sdk@c9dc32c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c9dc32c223d3bcdc74db4bd7f7c7c5265cca751f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c9dc32c223d3bcdc74db4bd7f7c7c5265cca751f.diff" + }, + "sdk@aeedfda": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "aeedfda3295fef51a8adbf626d9f321ac24eb28c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/aeedfda3295fef51a8adbf626d9f321ac24eb28c.diff" + }, + "sdk@6bd81f1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6bd81f1f853922dd7be57d5ba0760195da6620c5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6bd81f1f853922dd7be57d5ba0760195da6620c5.diff" + }, + "sdk@2400fb7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2400fb76c1f89202a6acf3835f698a1b996c3728", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2400fb76c1f89202a6acf3835f698a1b996c3728.diff" + }, + "sdk@f6c57fb": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f6c57fbec479ef51980a6212fdc6fb5fbaeef3b0", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f6c57fbec479ef51980a6212fdc6fb5fbaeef3b0.diff" + }, + "sdk@2cf45fe": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2cf45fe9eb6042aaa1963a940bf69e4a78e719b6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2cf45fe9eb6042aaa1963a940bf69e4a78e719b6.diff" + }, + "sdk@8b46229": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8b462293ac730ce420d9a1c6a072f77252cad3b3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8b462293ac730ce420d9a1c6a072f77252cad3b3.diff" + }, + "sdk@4cd2fac": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4cd2fac6b813d3207e86e50458356e88cc79f256", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4cd2fac6b813d3207e86e50458356e88cc79f256.diff" + }, + "sdk@efe7617": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "efe76179724df247481d4a77e650715fa4569dc4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/efe76179724df247481d4a77e650715fa4569dc4.diff" + }, + "sdk@e6fea27": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e6fea27be50d9f406cc6f3c19cc8c55c1014e320", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e6fea27be50d9f406cc6f3c19cc8c55c1014e320.diff" + }, + "sdk@166831f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "166831f96ad2a24e9c895e4d965d710e18724eda", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/166831f96ad2a24e9c895e4d965d710e18724eda.diff" + }, + "sdk@8cef68e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8cef68e5b5cedd679562689fb62d0d92d6416bb7", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8cef68e5b5cedd679562689fb62d0d92d6416bb7.diff" + }, + "sdk@8a4a60a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8a4a60a04d6caea96570e4267af5164cd5b6c8fb", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8a4a60a04d6caea96570e4267af5164cd5b6c8fb.diff" + }, + "sdk@bb7d629": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "bb7d62960f0d320c333d08f30db7c52af0003cc7", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/bb7d62960f0d320c333d08f30db7c52af0003cc7.diff" + }, + "sdk@1eac263": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1eac263250057e3079ba2c754161d812978581f2", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1eac263250057e3079ba2c754161d812978581f2.diff" + }, + "sdk@5516079": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5516079ddc1ddc7420de6bfee4ccd705ed000822", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5516079ddc1ddc7420de6bfee4ccd705ed000822.diff" + }, + "sdk@3249ae0": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3249ae0ba024ca36d49f75e1bf2400dc999b0efb", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3249ae0ba024ca36d49f75e1bf2400dc999b0efb.diff" + }, + "sdk@6b09479": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6b09479f78a07aabe5d73e46bab5bf04a59b616c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6b09479f78a07aabe5d73e46bab5bf04a59b616c.diff" + }, + "sdk@d0b6a66": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d0b6a664ca6f1529d8a47b1716e9cc7a690b68b2", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d0b6a664ca6f1529d8a47b1716e9cc7a690b68b2.diff" + }, + "sdk@d2f50cc": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d2f50ccfd82dbe56bb531fae056947ebe7912c42", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d2f50ccfd82dbe56bb531fae056947ebe7912c42.diff" + }, + "sdk@5ea71ae": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5ea71ae8a1555ed5e710869393440d1bfd551adf", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5ea71ae8a1555ed5e710869393440d1bfd551adf.diff" + }, + "sdk@9d5e578": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9d5e578e9a7ac70fe2683360093e13a73d7b5695", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9d5e578e9a7ac70fe2683360093e13a73d7b5695.diff" + }, + "sdk@de97864": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "de97864e424ee3aad632252b6ae832b4e4cf3465", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/de97864e424ee3aad632252b6ae832b4e4cf3465.diff" + }, + "sdk@d71d920": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d71d920d25d8ba5e85e48b6321ae5e805567075b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d71d920d25d8ba5e85e48b6321ae5e805567075b.diff" + }, + "sdk@a087a43": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a087a43a171159327092d5738c4a84381c51f45c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a087a43a171159327092d5738c4a84381c51f45c.diff" + }, + "sdk@31812eb": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "31812eb9c57af75da8e77989dcf857ed8cd97b7b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/31812eb9c57af75da8e77989dcf857ed8cd97b7b.diff" + }, + "sdk@5912358": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5912358b4e2aaf60f6b9627c543251037ee50fcf", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5912358b4e2aaf60f6b9627c543251037ee50fcf.diff" + }, + "sdk@c63abe2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c63abe28ab1adcec7f2ae28922e5719eeaf3a255", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c63abe28ab1adcec7f2ae28922e5719eeaf3a255.diff" + }, + "sdk@acef1ca": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "acef1ca3b8ad3cd8e8e9dd10b4ba0f34e75bb5ad", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/acef1ca3b8ad3cd8e8e9dd10b4ba0f34e75bb5ad.diff" + }, + "sdk@1a3b359": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1a3b3598d4cb88704822e543f4d91c886f2a9907", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1a3b3598d4cb88704822e543f4d91c886f2a9907.diff" + }, + "sdk@da5dcd2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "da5dcd221c3b8f2423661ec2865319d008449734", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/da5dcd221c3b8f2423661ec2865319d008449734.diff" + }, + "sdk@3e70852": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3e70852cf6c9ce2277dc8dfc89cfa1a015e9a455", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3e70852cf6c9ce2277dc8dfc89cfa1a015e9a455.diff" + }, + "sdk@d6d1edd": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d6d1edd9a4416b847d0c36d8cdbfc1c5c4675afd", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d6d1edd9a4416b847d0c36d8cdbfc1c5c4675afd.diff" + }, + "sdk@88dea37": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "88dea3793ed4836997ec275d667ad9eda3187a0d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/88dea3793ed4836997ec275d667ad9eda3187a0d.diff" + }, + "sdk@d3ca184": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d3ca184ed8ccd1a4247ca0280100fbd2543b7b4c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d3ca184ed8ccd1a4247ca0280100fbd2543b7b4c.diff" + }, + "sdk@d184b01": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d184b0186a7c45607bf4f03fea772b811744dd30", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d184b0186a7c45607bf4f03fea772b811744dd30.diff" + }, + "sdk@0e732ff": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0e732ffe33de03b44df73b48585a01099ec66094", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0e732ffe33de03b44df73b48585a01099ec66094.diff" + }, + "sdk@ff55ce3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ff55ce37e94d59306a05a0223fbd598fbf8fcc77", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ff55ce37e94d59306a05a0223fbd598fbf8fcc77.diff" + }, + "sdk@2d9da0a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2d9da0ab3be91b297e4c148dcda16fa6df49b4a2", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2d9da0ab3be91b297e4c148dcda16fa6df49b4a2.diff" + }, + "sdk@8e95887": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8e95887f3238082a358b3c3d22a7bd38bb786658", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8e95887f3238082a358b3c3d22a7bd38bb786658.diff" + }, + "sdk@16fa16c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "16fa16cc50a77a9e6df9e9c048273c8fd5ebd10f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/16fa16cc50a77a9e6df9e9c048273c8fd5ebd10f.diff" + }, + "sdk@ab41bd5": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ab41bd513f391bf611ad59afb0cc865c5602e67f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ab41bd513f391bf611ad59afb0cc865c5602e67f.diff" + }, + "sdk@9862ead": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9862ead42653ec0783208778c95cb3c2aa9c154f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9862ead42653ec0783208778c95cb3c2aa9c154f.diff" + }, + "sdk@d50a67b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d50a67b11dcfbd8b19c90d1d3eab507e0a6c3440", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d50a67b11dcfbd8b19c90d1d3eab507e0a6c3440.diff" + }, + "sdk@971ea25": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "971ea2597cee77af2a5a4f6833d7eb9a4cd944ed", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/971ea2597cee77af2a5a4f6833d7eb9a4cd944ed.diff" + }, + "sdk@7c7e0ac": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7c7e0ac3307eb8bf1e656f157356dfd349e93260", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7c7e0ac3307eb8bf1e656f157356dfd349e93260.diff" + }, + "sdk@e6a56a3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e6a56a3c3571fe33a02126330eb39804e9f98087", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e6a56a3c3571fe33a02126330eb39804e9f98087.diff" + }, + "sdk@5262ee1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5262ee158744561b0116bac35b12ea66a4890161", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5262ee158744561b0116bac35b12ea66a4890161.diff" + }, + "sdk@b015d8d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b015d8d370553e94993ab9095ea024a78dcd1d68", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b015d8d370553e94993ab9095ea024a78dcd1d68.diff" + }, + "sdk@d07da7f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d07da7fece7b321cfcce8db9c759a17a1a5b8a27", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d07da7fece7b321cfcce8db9c759a17a1a5b8a27.diff" + }, + "sdk@081f309": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "081f309c6619d13d4b6dc88b908ec277c7a8822a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/081f309c6619d13d4b6dc88b908ec277c7a8822a.diff" + }, + "sdk@86a83ac": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "86a83ac41cfebf1d9d266635eced758e113afc4f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/86a83ac41cfebf1d9d266635eced758e113afc4f.diff" + }, + "sdk@e9c45e1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e9c45e19b5ff45fa6e9ccd82da90c200f3b0a9f3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e9c45e19b5ff45fa6e9ccd82da90c200f3b0a9f3.diff" + }, + "sdk@6c4d38d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6c4d38d669bd128e24f3ff13e7bc88a08344fbf8", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6c4d38d669bd128e24f3ff13e7bc88a08344fbf8.diff" + }, + "sdk@1e4c40c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1e4c40cdd4c8da717ac693e7b99f9addd659d65e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1e4c40cdd4c8da717ac693e7b99f9addd659d65e.diff" + }, + "sdk@43549ea": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "43549ea17b6e3e6d91dcf89f04e4ea0a202c1ac0", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/43549ea17b6e3e6d91dcf89f04e4ea0a202c1ac0.diff" + }, + "sdk@1175a14": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1175a14b18de4aa3a1c678a793ce8429fc0e09b5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1175a14b18de4aa3a1c678a793ce8429fc0e09b5.diff" + }, + "sdk@d88e7c6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d88e7c6e97204fa2b81499dba6e0fb99fa43f762", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d88e7c6e97204fa2b81499dba6e0fb99fa43f762.diff" + }, + "sdk@075e8d7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "075e8d7a6a967efe7f6c9569740df0c71dfee9a6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/075e8d7a6a967efe7f6c9569740df0c71dfee9a6.diff" + }, + "sdk@7605d6f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7605d6f5a2fab599e5326161aa20bc81f7c9ab68", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7605d6f5a2fab599e5326161aa20bc81f7c9ab68.diff" + }, + "sdk@a5af8d7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a5af8d708ece9f7a7446ceae70d9a83841260d6b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a5af8d708ece9f7a7446ceae70d9a83841260d6b.diff" + }, + "sdk@4fac7b7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4fac7b75b98ce061e374c12a6feeb3695f336152", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4fac7b75b98ce061e374c12a6feeb3695f336152.diff" + }, + "sdk@c86db80": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c86db802919e3b1af55967bec6cd7377af5209c3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c86db802919e3b1af55967bec6cd7377af5209c3.diff" + }, + "sdk@54a8f45": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "54a8f45821adcf5957827c5f36d34e46c654fe3f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/54a8f45821adcf5957827c5f36d34e46c654fe3f.diff" + }, + "sdk@4d104f1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4d104f1307a1add227188cd1d472d59b06d7c909", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4d104f1307a1add227188cd1d472d59b06d7c909.diff" + }, + "sdk@4470296": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "44702966ca718d6250edea46567013bb2057925a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/44702966ca718d6250edea46567013bb2057925a.diff" + }, + "sdk@773768b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "773768b0e895ce567548013dfc6c7e620a27f675", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/773768b0e895ce567548013dfc6c7e620a27f675.diff" + }, + "sdk@998e8be": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "998e8beb85344b3bb7db34a31a2c6827a80dcde5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/998e8beb85344b3bb7db34a31a2c6827a80dcde5.diff" + }, + "sdk@788997e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "788997e2d04449a1f9da86f7bee17e74a58d4643", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/788997e2d04449a1f9da86f7bee17e74a58d4643.diff" + }, + "sdk@d37e536": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d37e53685674252e365e93702a6b565e4f648241", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d37e53685674252e365e93702a6b565e4f648241.diff" + }, + "sdk@313a703": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "313a703b91dbc84ccf4c3173549e29f3d912c246", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/313a703b91dbc84ccf4c3173549e29f3d912c246.diff" + }, + "sdk@6e84e96": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6e84e96b38d00ac85c0474b1c3ffad7f216dc63d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6e84e96b38d00ac85c0474b1c3ffad7f216dc63d.diff" + }, + "sdk@695247b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "695247b0cea69c9d8a1b098c0aa63e214b093936", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/695247b0cea69c9d8a1b098c0aa63e214b093936.diff" + }, + "sdk@780ab9a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "780ab9a730c4ace69e1285e8d745b5141a3b2a0b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/780ab9a730c4ace69e1285e8d745b5141a3b2a0b.diff" + }, + "sdk@285eea9": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "285eea968519a97cda73e8f8d1a818f171bcdd8e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/285eea968519a97cda73e8f8d1a818f171bcdd8e.diff" + }, + "sdk@07d7aa4": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "07d7aa4a0ab99eb09b605142597344fc626356b3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/07d7aa4a0ab99eb09b605142597344fc626356b3.diff" + }, + "sdk@fd8454b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "fd8454b05a33be2141de6c7cf9befc618e5bc7a8", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/fd8454b05a33be2141de6c7cf9befc618e5bc7a8.diff" + }, + "sdk@65c7913": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "65c791374d87e3d2b5227a0f05e10ab6b97c9448", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/65c791374d87e3d2b5227a0f05e10ab6b97c9448.diff" + }, + "sdk@d95b8d9": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d95b8d972910a80653a25916d800e2b6ef1255ce", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d95b8d972910a80653a25916d800e2b6ef1255ce.diff" + }, + "sdk@5b3917a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5b3917af91a0246205074da0ce417bf737c8c032", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5b3917af91a0246205074da0ce417bf737c8c032.diff" + }, + "sdk@9396d43": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9396d43dc6d7b16db3af666867585c4f4db99628", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9396d43dc6d7b16db3af666867585c4f4db99628.diff" + }, + "sdk@23179aa": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "23179aa0b46b26f889cad46199b863ccdefa0c8e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/23179aa0b46b26f889cad46199b863ccdefa0c8e.diff" + }, + "sdk@d963b10": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d963b10530b152cc453043bb2eaf72a357f6a45c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d963b10530b152cc453043bb2eaf72a357f6a45c.diff" + }, + "sdk@3f9704d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3f9704d5ff85097d6ce4a43efcb6290dbc56ea1e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3f9704d5ff85097d6ce4a43efcb6290dbc56ea1e.diff" + }, + "sdk@a8ad585": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a8ad58559ae0c9beb4ec3cecbf9ce08de0ad08f0", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a8ad58559ae0c9beb4ec3cecbf9ce08de0ad08f0.diff" + }, + "sdk@ad91287": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ad912879b26067cb3b826de77013a395b9c0b811", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ad912879b26067cb3b826de77013a395b9c0b811.diff" + }, + "sdk@5a9be96": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5a9be96aeff9ad09e286b98352ed4420581ed8ce", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5a9be96aeff9ad09e286b98352ed4420581ed8ce.diff" + }, + "sdk@013b8b3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "013b8b35cf070b2e66fe8b15c367634ead16f0d9", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/013b8b35cf070b2e66fe8b15c367634ead16f0d9.diff" + }, + "sdk@e5a1567": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e5a1567cc9c8033c17d60435d042be4b150b09d3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e5a1567cc9c8033c17d60435d042be4b150b09d3.diff" + }, + "sdk@b5a4051": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b5a4051f44b3246ce27dd11e2e497d06987b35d0", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b5a4051f44b3246ce27dd11e2e497d06987b35d0.diff" + }, + "sdk@ff21843": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ff21843fccc41e7287a1f21219bfcea498a99cb6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ff21843fccc41e7287a1f21219bfcea498a99cb6.diff" + }, + "sdk@e90c441": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e90c4413024970eca97d05122243737aa207af11", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e90c4413024970eca97d05122243737aa207af11.diff" + }, + "sdk@6fc33a0": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6fc33a06ff6b03faa534cb84ab36e78eb3f7d5f1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6fc33a06ff6b03faa534cb84ab36e78eb3f7d5f1.diff" + }, + "sdk@458ee8b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "458ee8b21b2b5b9410e645d470c8bf70444a7a2f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/458ee8b21b2b5b9410e645d470c8bf70444a7a2f.diff" + }, + "sdk@772465e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "772465ec96b72ebebf4c3365b8a8f5821e201ac2", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/772465ec96b72ebebf4c3365b8a8f5821e201ac2.diff" + }, + "sdk@546f4be": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "546f4beb9a6649fc810089929dee7a4466d66e1e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/546f4beb9a6649fc810089929dee7a4466d66e1e.diff" + }, + "sdk@e9ee772": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e9ee772daae9e3323af0f3b4f041d23bce2ea002", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e9ee772daae9e3323af0f3b4f041d23bce2ea002.diff" + }, + "sdk@10359b4": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "10359b467ff8c1486ca2703d1a52c94b999abb5d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/10359b467ff8c1486ca2703d1a52c94b999abb5d.diff" + }, + "sdk@52e4ef1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "52e4ef1d81672d456c202dde84a026aea38ec5c1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/52e4ef1d81672d456c202dde84a026aea38ec5c1.diff" + }, + "sdk@888e971": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "888e971521634253fae67c14facf980f824a780d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/888e971521634253fae67c14facf980f824a780d.diff" + }, + "sdk@6e514f6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6e514f6189902a6422a6ab91324804c37035315b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6e514f6189902a6422a6ab91324804c37035315b.diff" + }, + "sdk@f284d9f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f284d9f49aec157d49233ab5785cbcf78ed1ea58", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f284d9f49aec157d49233ab5785cbcf78ed1ea58.diff" + }, + "sdk@a17669f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a17669f151fe08f0deaf0e427d16ed5f74c92bf7", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a17669f151fe08f0deaf0e427d16ed5f74c92bf7.diff" + }, + "sdk@dfa02f2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "dfa02f28175c0025291e5c88bcc2d00575705f70", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/dfa02f28175c0025291e5c88bcc2d00575705f70.diff" + }, + "sdk@7840886": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7840886b439cf10ebcf158a9d6e17206fde314ed", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7840886b439cf10ebcf158a9d6e17206fde314ed.diff" + }, + "sdk@b6e2d4a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b6e2d4a02cc2434dc39aefa4fe68b20208eb31f3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b6e2d4a02cc2434dc39aefa4fe68b20208eb31f3.diff" + }, + "sdk@6f97200": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6f9720054fbad9345e284327b192fbe87fade314", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6f9720054fbad9345e284327b192fbe87fade314.diff" + }, + "sdk@40b692f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "40b692f91c5c1f4211bceabdaed2852aa770388f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/40b692f91c5c1f4211bceabdaed2852aa770388f.diff" + }, + "sdk@a104da2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a104da2805f7afd1702a289f69466ce863016da5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a104da2805f7afd1702a289f69466ce863016da5.diff" + }, + "sdk@32c9942": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "32c9942cd2768f53029e055b7998aa48cba9b3b1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/32c9942cd2768f53029e055b7998aa48cba9b3b1.diff" + }, + "sdk@ba6ab4a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ba6ab4ae38703f26e2cbc341a08be991fab0bb95", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ba6ab4ae38703f26e2cbc341a08be991fab0bb95.diff" + }, + "sdk@8cbac4a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8cbac4a5cdf27c2bb606a282cc47e60a7c4ced45", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8cbac4a5cdf27c2bb606a282cc47e60a7c4ced45.diff" + }, + "sdk@56e4fea": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "56e4feabcce663c458b82d1ac3987caa9e1795f2", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/56e4feabcce663c458b82d1ac3987caa9e1795f2.diff" + }, + "sdk@aad07f3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "aad07f3d1793ebf8eea8b429924f0500958c258c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/aad07f3d1793ebf8eea8b429924f0500958c258c.diff" + }, + "sdk@d40b218": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d40b21888fc01357ea0e54361ee6401c9daa37bd", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d40b21888fc01357ea0e54361ee6401c9daa37bd.diff" + }, + "sdk@18a5ef3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "18a5ef3c9298e94060fa4b5d2b8ae50753ed4744", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/18a5ef3c9298e94060fa4b5d2b8ae50753ed4744.diff" + }, + "sdk@f2f162f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f2f162fbfbc7fc8b02fcd7ec6acd8c819282be7f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f2f162fbfbc7fc8b02fcd7ec6acd8c819282be7f.diff" + }, + "sdk@aa89ea0": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "aa89ea00306b52a84b1cd9fe79c631db9762c298", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/aa89ea00306b52a84b1cd9fe79c631db9762c298.diff" + }, + "sdk@dd78739": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "dd787398bf62c82f235f75ed3556560e435bb410", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/dd787398bf62c82f235f75ed3556560e435bb410.diff" + }, + "sdk@0cd3fa6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0cd3fa6b9827d2cc7493bd8c900f093959d79288", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0cd3fa6b9827d2cc7493bd8c900f093959d79288.diff" + }, + "sdk@a8c3d20": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a8c3d2038237842f6fbb33e2c12ad9a0406e40a8", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a8c3d2038237842f6fbb33e2c12ad9a0406e40a8.diff" + }, + "sdk@e720fab": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e720fab187acd21585da9e4ade4a906a46260868", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e720fab187acd21585da9e4ade4a906a46260868.diff" + }, + "sdk@b6ecfca": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b6ecfca4772c223907a0fe13b0ab944a8e197d53", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b6ecfca4772c223907a0fe13b0ab944a8e197d53.diff" + }, + "sdk@94308f9": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "94308f96f3c4e66ea548407b52163e895c46f9cc", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/94308f96f3c4e66ea548407b52163e895c46f9cc.diff" + }, + "sdk@0e13177": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0e131771b4dbde464cda8d88315820e51cf790e1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0e131771b4dbde464cda8d88315820e51cf790e1.diff" + }, + "sdk@bc1e346": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "bc1e34673c0d30bdb7bc833f0af9a51efd36b933", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/bc1e34673c0d30bdb7bc833f0af9a51efd36b933.diff" + }, + "sdk@0bc2b57": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0bc2b576d25813f4c218bd573e3f7689996d16c5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0bc2b576d25813f4c218bd573e3f7689996d16c5.diff" + }, + "sdk@ec0dde2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ec0dde254b983a55255204a0237c38a993274cf1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ec0dde254b983a55255204a0237c38a993274cf1.diff" + }, + "sdk@716167b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "716167b25bfecf5563e63ac83d6fee9306472c4a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/716167b25bfecf5563e63ac83d6fee9306472c4a.diff" + }, + "sdk@4a8feb3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4a8feb3957f76c38b6bd42dd9f16b8ad853f845d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4a8feb3957f76c38b6bd42dd9f16b8ad853f845d.diff" + }, + "sdk@c5d7b4e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c5d7b4e67d6af2d97d8042dacb98e95f5908c385", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c5d7b4e67d6af2d97d8042dacb98e95f5908c385.diff" + }, + "sdk@db01067": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "db01067a9c4b67dc1806956393ec63b032032166", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/db01067a9c4b67dc1806956393ec63b032032166.diff" + }, + "sdk@64f31ca": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "64f31ca8088039aa1a8f3d3efd9e1c3176459447", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/64f31ca8088039aa1a8f3d3efd9e1c3176459447.diff" + }, + "sdk@722383a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "722383a2b5e19596b8771457d5477e9a823a55e4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/722383a2b5e19596b8771457d5477e9a823a55e4.diff" + }, + "sdk@bdb5a2a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "bdb5a2a5e22dec278a035dc1d84d1bb8a162c149", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/bdb5a2a5e22dec278a035dc1d84d1bb8a162c149.diff" + }, + "sdk@9568598": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "956859843208ffd23020fd156e5c951ac0d62ad1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/956859843208ffd23020fd156e5c951ac0d62ad1.diff" + }, + "sdk@449dad7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "449dad76a0830b2af60e0bf59444e1d44ea7ef16", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/449dad76a0830b2af60e0bf59444e1d44ea7ef16.diff" + }, + "sdk@427fcd8": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "427fcd8dca20b439023f90cd96c070eab15bb2e0", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/427fcd8dca20b439023f90cd96c070eab15bb2e0.diff" + }, + "sdk@9b33c85": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9b33c85d0b43a5c601d8b739385d0fe3792f3cec", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9b33c85d0b43a5c601d8b739385d0fe3792f3cec.diff" + }, + "sdk@29dbf6c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "29dbf6cc2c0d0f7a87a0f974bbb3044028de8bab", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/29dbf6cc2c0d0f7a87a0f974bbb3044028de8bab.diff" + }, + "sdk@916b9a7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "916b9a76a421333b2c86ba5d99112829c8441188", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/916b9a76a421333b2c86ba5d99112829c8441188.diff" + }, + "sdk@a583f95": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a583f95c50123fcdef1caa78026a1fdbe522e954", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a583f95c50123fcdef1caa78026a1fdbe522e954.diff" + }, + "sdk@bfa9395": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "bfa9395d9f0cb280d6634df254dca22129f94e0a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/bfa9395d9f0cb280d6634df254dca22129f94e0a.diff" + }, + "sdk@0fe9e20": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0fe9e20b4c200b67d7f70d939f5ee675103f2080", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0fe9e20b4c200b67d7f70d939f5ee675103f2080.diff" + }, + "sdk@35ef523": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "35ef523b84b49149b28d6daef6d49e3222086a14", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/35ef523b84b49149b28d6daef6d49e3222086a14.diff" + }, + "sdk@8f293f2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8f293f21b4274e806d32ea9d2d44586ba5ba2cc6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8f293f21b4274e806d32ea9d2d44586ba5ba2cc6.diff" + }, + "sdk@e882731": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e882731ed1713905b0f577277889066dd12a59c4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e882731ed1713905b0f577277889066dd12a59c4.diff" + }, + "sdk@166668d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "166668d7c7c098fe501bcd0113e91eda042ea456", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/166668d7c7c098fe501bcd0113e91eda042ea456.diff" + }, + "sdk@165cc52": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "165cc52a93dc2c2650f1d7513c6c03722ed1f963", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/165cc52a93dc2c2650f1d7513c6c03722ed1f963.diff" + }, + "sdk@efbdd02": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "efbdd0230b4a55ac7c45046431287a3e6c9399a3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/efbdd0230b4a55ac7c45046431287a3e6c9399a3.diff" + }, + "sdk@9d64690": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9d646901136779601b49fad772abc2c8e320ea40", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9d646901136779601b49fad772abc2c8e320ea40.diff" + }, + "sdk@35e9e55": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "35e9e5582a8f47e9fa8fdf31908a3b598923da3f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/35e9e5582a8f47e9fa8fdf31908a3b598923da3f.diff" + }, + "sdk@c7310ca": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c7310cabdca9e1663c25b35225aac25641cd8b37", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c7310cabdca9e1663c25b35225aac25641cd8b37.diff" + }, + "sdk@7f1449e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7f1449ec1dd5b5fa29c940e3d213ef517155c456", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7f1449ec1dd5b5fa29c940e3d213ef517155c456.diff" + }, + "sdk@abd1b4d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "abd1b4da0cfe761c07df9b4b809b19619ade1684", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/abd1b4da0cfe761c07df9b4b809b19619ade1684.diff" + }, + "sdk@352097b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "352097b6092a35d3f1cdf62645629e4e5225df79", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/352097b6092a35d3f1cdf62645629e4e5225df79.diff" + }, + "sdk@c69da70": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c69da70c41f0a0f22c355ef481563505d9bcaffb", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c69da70c41f0a0f22c355ef481563505d9bcaffb.diff" + }, + "sdk@1f2c468": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1f2c46844070b1093a34946ec574d950046dd095", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1f2c46844070b1093a34946ec574d950046dd095.diff" + }, + "sdk@fff6e54": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "fff6e547fc3962c34401960e9ad78b1ab40dfa10", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/fff6e547fc3962c34401960e9ad78b1ab40dfa10.diff" + }, + "sdk@5a484c0": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5a484c0c320ccae1341a248352230fad53200d98", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5a484c0c320ccae1341a248352230fad53200d98.diff" + }, + "sdk@103e96d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "103e96de7dc1334427f643254f67aa8866a5a77a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/103e96de7dc1334427f643254f67aa8866a5a77a.diff" + }, + "sdk@827ffaa": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "827ffaa985dbd663104e9787c33825101b480e36", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/827ffaa985dbd663104e9787c33825101b480e36.diff" + }, + "sdk@0c83b23": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0c83b2336adf3c6c51423f90a0aec07534bf8ee8", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0c83b2336adf3c6c51423f90a0aec07534bf8ee8.diff" + }, + "sdk@262bf9c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "262bf9c8e7f0365f43d9fdd1d2fac4dbae4024c0", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/262bf9c8e7f0365f43d9fdd1d2fac4dbae4024c0.diff" + }, + "sdk@b967128": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b967128b63e0d59a1495b55e77ad2c05b0d9c750", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b967128b63e0d59a1495b55e77ad2c05b0d9c750.diff" + }, + "sdk@9edfcdc": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9edfcdcd6e5386d84775e8b2ab97cc7067edba4a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9edfcdcd6e5386d84775e8b2ab97cc7067edba4a.diff" + }, + "sdk@3ab1bc4": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3ab1bc4af29d64c029025dcc3ab60ed593f5a857", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3ab1bc4af29d64c029025dcc3ab60ed593f5a857.diff" + }, + "sdk@8e5cc2e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8e5cc2e290f961dd5432520dbc71a23cf9ec70f4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8e5cc2e290f961dd5432520dbc71a23cf9ec70f4.diff" + }, + "sdk@5eec490": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5eec490a6a21c9f1a0394182f8e2ca1af8ae0542", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5eec490a6a21c9f1a0394182f8e2ca1af8ae0542.diff" + }, + "sdk@1f62394": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1f62394ec750932a2143088e2ae5d1be01372d62", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1f62394ec750932a2143088e2ae5d1be01372d62.diff" + }, + "sdk@cb6c03b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "cb6c03be2983d38a555ef9093da782f9a7f89976", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/cb6c03be2983d38a555ef9093da782f9a7f89976.diff" + }, + "sdk@dd6c2af": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "dd6c2af316e2474e845e3029b9163b2a0ab3ec31", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/dd6c2af316e2474e845e3029b9163b2a0ab3ec31.diff" + }, + "sdk@252ae5a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "252ae5acb33277b55a854252c54620ca57de7d48", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/252ae5acb33277b55a854252c54620ca57de7d48.diff" + }, + "sdk@6c0056a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6c0056a47a62a7445668bf597bb7242358cd7d8f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6c0056a47a62a7445668bf597bb7242358cd7d8f.diff" + }, + "sdk@8467a15": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8467a15a5b834f25e68b5e4f83be5d94a9d9a803", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8467a15a5b834f25e68b5e4f83be5d94a9d9a803.diff" + }, + "sdk@9bc68cc": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9bc68cc920c67d3e395e203057f821d456decbfe", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9bc68cc920c67d3e395e203057f821d456decbfe.diff" + }, + "sdk@a62bda4": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a62bda4ea2e5638d97b12bab20fedb7023a306f4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a62bda4ea2e5638d97b12bab20fedb7023a306f4.diff" + }, + "sdk@14deca1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "14deca1e7c7fed62f19a3d8752c8336d217398ff", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/14deca1e7c7fed62f19a3d8752c8336d217398ff.diff" + }, + "sdk@ae9bd8c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ae9bd8ca5122b08fa9e2f623a0fdf57a3aa4f2df", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ae9bd8ca5122b08fa9e2f623a0fdf57a3aa4f2df.diff" + }, + "sdk@50f2f7f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "50f2f7fdccf95a358942f62537f94f605ed900ca", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/50f2f7fdccf95a358942f62537f94f605ed900ca.diff" + }, + "sdk@dd9a9a8": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "dd9a9a8f352b8d1ac9e720e54ec20cc807565825", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/dd9a9a8f352b8d1ac9e720e54ec20cc807565825.diff" + }, + "sdk@49e2a87": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "49e2a87c0463349ff8a2623329487227499e506f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/49e2a87c0463349ff8a2623329487227499e506f.diff" + }, + "sdk@6765a47": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6765a4795520ede0cf11a3ee25d01f9525e50541", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6765a4795520ede0cf11a3ee25d01f9525e50541.diff" + }, + "sdk@09fa7fa": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "09fa7fad54ccee78ebd9c5aa5494d78d544f0c59", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/09fa7fad54ccee78ebd9c5aa5494d78d544f0c59.diff" + }, + "sdk@98acb9a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "98acb9abc44cc510e88eeea8e55283d4d7b44838", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/98acb9abc44cc510e88eeea8e55283d4d7b44838.diff" + }, + "sdk@73c46a2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "73c46a2d745a53e787e3a92e64c6fdf2591a9567", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/73c46a2d745a53e787e3a92e64c6fdf2591a9567.diff" + }, + "sdk@887959b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "887959b8ba473e28c54254111587f90f42de7c9e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/887959b8ba473e28c54254111587f90f42de7c9e.diff" + }, + "sdk@b21f089": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b21f08995fba325bcc101819bbe610f01684bdce", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b21f08995fba325bcc101819bbe610f01684bdce.diff" + }, + "sdk@beac916": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "beac916fb2578adab119cff48fe6ce45bf9c81d3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/beac916fb2578adab119cff48fe6ce45bf9c81d3.diff" + }, + "sdk@7986874": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "798687480ca3d836b6af7bfbd9d492f756f3247f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/798687480ca3d836b6af7bfbd9d492f756f3247f.diff" + }, + "sdk@6cbef60": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6cbef6033da2d17001c36c51603c926c0c06ad32", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6cbef6033da2d17001c36c51603c926c0c06ad32.diff" + }, + "sdk@436f454": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "436f4542d3b15cf184663f187c0374081e68d57d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/436f4542d3b15cf184663f187c0374081e68d57d.diff" + }, + "sdk@dfc4679": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "dfc4679a5df05aeef597a71cb9926768473c9589", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/dfc4679a5df05aeef597a71cb9926768473c9589.diff" + }, + "sdk@6a12dff": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6a12dff056846dbdc09471f5254d5086bdeb1a9b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6a12dff056846dbdc09471f5254d5086bdeb1a9b.diff" + }, + "sdk@e7eeb60": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e7eeb6064e7bceed882dbd05bdb1c3d478e7ea7f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e7eeb6064e7bceed882dbd05bdb1c3d478e7ea7f.diff" + }, + "sdk@32ad88a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "32ad88ae26ff1574904598068a71c0737ab51971", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/32ad88ae26ff1574904598068a71c0737ab51971.diff" + }, + "sdk@5f324eb": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5f324eb1970caaeccc5a0e6776f513945b2290df", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5f324eb1970caaeccc5a0e6776f513945b2290df.diff" + }, + "sdk@94a9db1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "94a9db173c20eefd2c21b7ded01579b756fcc046", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/94a9db173c20eefd2c21b7ded01579b756fcc046.diff" + }, + "sdk@a0f0828": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a0f0828f96b473367632e4056eb9eed7da03b6e7", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a0f0828f96b473367632e4056eb9eed7da03b6e7.diff" + }, + "sdk@0cafe54": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0cafe5448d55405a1544422b1b05b2aa8a8a75a5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0cafe5448d55405a1544422b1b05b2aa8a8a75a5.diff" + }, + "sdk@ad640d4": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ad640d4b81aa0211b63ab956958f072a50a1597a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ad640d4b81aa0211b63ab956958f072a50a1597a.diff" + }, + "sdk@f2ce0d8": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f2ce0d836482a1c4e5b3c3ea2e83953ae86818d4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f2ce0d836482a1c4e5b3c3ea2e83953ae86818d4.diff" + }, + "sdk@4e7db90": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4e7db90ea0e0830a07a3c9264c192bab551090e6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4e7db90ea0e0830a07a3c9264c192bab551090e6.diff" + }, + "sdk@5bb7e31": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5bb7e315bf797af120abf7ed17b7cbd6145b48f6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5bb7e315bf797af120abf7ed17b7cbd6145b48f6.diff" + }, + "sdk@4325a44": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4325a4482321195d1c0daaacf3ef4ea8aee4c1e1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4325a4482321195d1c0daaacf3ef4ea8aee4c1e1.diff" + }, + "sdk@6f2f88e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6f2f88e7196a0fca85928ffec17a97ea2ec252c1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6f2f88e7196a0fca85928ffec17a97ea2ec252c1.diff" + }, + "sdk@a6819d6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a6819d6dd42e5124b2e738b4d410df01aed11017", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a6819d6dd42e5124b2e738b4d410df01aed11017.diff" + }, + "sdk@7080cc0": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7080cc02d03f13ac4e252074178df53f045a8edd", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7080cc02d03f13ac4e252074178df53f045a8edd.diff" + }, + "sdk@9946ecd": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9946ecd202fa442f6c83eea2527ac2fc58ad005e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9946ecd202fa442f6c83eea2527ac2fc58ad005e.diff" + }, + "sdk@e0cdbcb": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e0cdbcb937738357be00a0c492d2e855d41ba90f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e0cdbcb937738357be00a0c492d2e855d41ba90f.diff" + }, + "sdk@780271d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "780271dfb9c7ec7de8adb4f9ddf710761009ef53", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/780271dfb9c7ec7de8adb4f9ddf710761009ef53.diff" + }, + "sdk@6b60ba3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6b60ba3025d8269fc0aaa8a4138b0ac9e549cb1a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6b60ba3025d8269fc0aaa8a4138b0ac9e549cb1a.diff" + }, + "sdk@3518f9c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3518f9ce1094aa19e0fb9d54561d8dbd568c6390", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3518f9ce1094aa19e0fb9d54561d8dbd568c6390.diff" + }, + "sdk@7af211a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7af211ad8fc89252e2db9cedc1c65c8b9b4b0c04", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7af211ad8fc89252e2db9cedc1c65c8b9b4b0c04.diff" + }, + "sdk@b29023f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b29023fdae7c618982e07871be38cd01aa384b20", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b29023fdae7c618982e07871be38cd01aa384b20.diff" + }, + "sdk@86c075f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "86c075f7e6b614389f63365a32bdf77ba17436e7", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/86c075f7e6b614389f63365a32bdf77ba17436e7.diff" + }, + "sdk@de18352": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "de1835211b6316577c6837079375894481808990", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/de1835211b6316577c6837079375894481808990.diff" + }, + "sdk@986441e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "986441ee094404af43f6644a861abbdc788ae05b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/986441ee094404af43f6644a861abbdc788ae05b.diff" + }, + "sdk@d71a4a1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d71a4a1fbe78d1695cde61f34b4cec323d96f760", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d71a4a1fbe78d1695cde61f34b4cec323d96f760.diff" + }, + "sdk@b6ddae7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b6ddae71bcf4fbde4e380d8fcc7c3153d0d84ebb", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b6ddae71bcf4fbde4e380d8fcc7c3153d0d84ebb.diff" + }, + "sdk@f536e4b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f536e4b36acf74cc99ced6a33f0a00d687e923ca", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f536e4b36acf74cc99ced6a33f0a00d687e923ca.diff" + }, + "sdk@3420fd3": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3420fd38983961e3997c6138a447c3988219cc1c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3420fd38983961e3997c6138a447c3988219cc1c.diff" + }, + "sdk@f455dfc": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f455dfc8004b3972766780760d5cc6bf1c7930b7", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f455dfc8004b3972766780760d5cc6bf1c7930b7.diff" + }, + "sdk@e3a5ef5": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e3a5ef56cc5a178e632d87c361757b7a3c918461", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e3a5ef56cc5a178e632d87c361757b7a3c918461.diff" + }, + "sdk@159d81a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "159d81a7964bf8a22227c7d231ed4f02d1c77ba1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/159d81a7964bf8a22227c7d231ed4f02d1c77ba1.diff" + }, + "sdk@8b2e64c": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8b2e64c6fd407067bdb49cf21fcf55e606fa3206", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8b2e64c6fd407067bdb49cf21fcf55e606fa3206.diff" + }, + "sdk@81cc643": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "81cc6435abccd51759e9b829ecdfe594b4e99476", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/81cc6435abccd51759e9b829ecdfe594b4e99476.diff" + }, + "sdk@1ebefc1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1ebefc15d82534fe267adb5daeeb5e1f876999f7", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1ebefc15d82534fe267adb5daeeb5e1f876999f7.diff" + }, + "sdk@508508e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "508508eb0596ee1da98ea4a8614a4bdbe5400f7d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/508508eb0596ee1da98ea4a8614a4bdbe5400f7d.diff" + }, + "sdk@8fd528b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "8fd528b2e369d0bb21c72a19c0ec9949275d49a1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/8fd528b2e369d0bb21c72a19c0ec9949275d49a1.diff" + }, + "sdk@c98d45a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c98d45aaef0def72e019cee5a4ca7d104be938bc", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c98d45aaef0def72e019cee5a4ca7d104be938bc.diff" + }, + "sdk@27e0106": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "27e0106f616b9d82e7756f0931970b6452a16416", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/27e0106f616b9d82e7756f0931970b6452a16416.diff" + }, + "sdk@c40f47f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c40f47f0d17df1a84bb65178ced76e8d98c43a0c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c40f47f0d17df1a84bb65178ced76e8d98c43a0c.diff" + }, + "sdk@2a02bdf": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2a02bdfdead5795327020938f6c8617fe214066c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2a02bdfdead5795327020938f6c8617fe214066c.diff" + }, + "sdk@027e1c8": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "027e1c8360ce17515958bbfd9653d473d9b9fca1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/027e1c8360ce17515958bbfd9653d473d9b9fca1.diff" + }, + "sdk@9223f30": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9223f30509560d2be96d91ffdee770ef734db656", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9223f30509560d2be96d91ffdee770ef734db656.diff" + }, + "sdk@5dd4512": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5dd45125de30d8e4d6b98c473c6f844d95b221c7", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5dd45125de30d8e4d6b98c473c6f844d95b221c7.diff" + }, + "sdk@c182a90": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c182a9061a84edc75fd46f29d94161b1561313bd", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c182a9061a84edc75fd46f29d94161b1561313bd.diff" + }, + "sdk@07a6324": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "07a63248d6016d29eb667f2d550d4b2319235e38", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/07a63248d6016d29eb667f2d550d4b2319235e38.diff" + }, + "sdk@f7585ed": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f7585ed41ee9e54bf26810a0db7eacd41652c9cf", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f7585ed41ee9e54bf26810a0db7eacd41652c9cf.diff" + }, + "sdk@a616955": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a616955abc3f1e27101521b350ae89820b4c8a26", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a616955abc3f1e27101521b350ae89820b4c8a26.diff" + }, + "sdk@e05d09b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e05d09b9d0a682807fa778157072cc75115a1043", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e05d09b9d0a682807fa778157072cc75115a1043.diff" + }, + "sdk@f593c0b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f593c0bedc2104ab29111f1dfa2ccb3c560f83cf", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f593c0bedc2104ab29111f1dfa2ccb3c560f83cf.diff" + }, + "sdk@7f7422e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7f7422e3e5dbe5b349c440e601dbf18b50f358e0", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7f7422e3e5dbe5b349c440e601dbf18b50f358e0.diff" + }, + "sdk@72febf2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "72febf2562e7ab227acb8124b41fc5ccccd94e58", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/72febf2562e7ab227acb8124b41fc5ccccd94e58.diff" + }, + "sdk@5c9ff29": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5c9ff297b7d134707c007e0fb001d7d9143714d1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5c9ff297b7d134707c007e0fb001d7d9143714d1.diff" + }, + "sdk@adccf6a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "adccf6acaabe7489cd93452abe66dc6cc88cdb23", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/adccf6acaabe7489cd93452abe66dc6cc88cdb23.diff" + }, + "sdk@c08610f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c08610fb6b0949a4b7688d98665d693e2bc6773b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c08610fb6b0949a4b7688d98665d693e2bc6773b.diff" + }, + "sdk@372de0d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "372de0defccf10b253149a8e392b7873f1407315", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/372de0defccf10b253149a8e392b7873f1407315.diff" + }, + "sdk@f3f14ed": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f3f14eda3806962e5e562333835a91f9804c47f9", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f3f14eda3806962e5e562333835a91f9804c47f9.diff" + }, + "sdk@d9a3df1": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d9a3df1a05c76f25d53d5c5267f42f837f39b2e0", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d9a3df1a05c76f25d53d5c5267f42f837f39b2e0.diff" + }, + "sdk@7d19864": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7d19864b0f18ba4d1f56b63add418a032533f0fc", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7d19864b0f18ba4d1f56b63add418a032533f0fc.diff" + }, + "sdk@2ae259a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2ae259a4b99e345a3058034e592a3703836695d3", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2ae259a4b99e345a3058034e592a3703836695d3.diff" + }, + "sdk@2205c5b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2205c5bba94e4859d0b937e893ab6341c9fd4582", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2205c5bba94e4859d0b937e893ab6341c9fd4582.diff" + }, + "sdk@521bd74": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "521bd74fb3de59b5de197b5551931130cdffcb21", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/521bd74fb3de59b5de197b5551931130cdffcb21.diff" + }, + "sdk@b98e0dd": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b98e0dd0246345f4f723d96ad650d7a25b286304", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b98e0dd0246345f4f723d96ad650d7a25b286304.diff" + }, + "sdk@d7500f5": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d7500f55737c233a6164fc3c1cb0638ab15bd279", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d7500f55737c233a6164fc3c1cb0638ab15bd279.diff" + }, + "sdk@6ac4115": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6ac4115dad0f66297846a1b6a3aaf743774fe7e0", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6ac4115dad0f66297846a1b6a3aaf743774fe7e0.diff" + }, + "sdk@b4670c6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b4670c680698b5d56f14fc7ad2408c3bb523b358", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b4670c680698b5d56f14fc7ad2408c3bb523b358.diff" + }, + "sdk@0a4649b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0a4649b3183bb93699efd333a4f593caa0c93cf1", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0a4649b3183bb93699efd333a4f593caa0c93cf1.diff" + }, + "sdk@fa5d8d2": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "fa5d8d28a5f206401cb45a60669cdc8fc9d433ba", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/fa5d8d28a5f206401cb45a60669cdc8fc9d433ba.diff" + }, + "sdk@0a3db7f": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0a3db7f3885937cea55b7ace6780da219c441533", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0a3db7f3885937cea55b7ace6780da219c441533.diff" + }, + "sdk@c61f174": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c61f174fc3cfbec6688a283fa4ec3a79219cafed", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c61f174fc3cfbec6688a283fa4ec3a79219cafed.diff" + }, + "sdk@fd07f07": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "fd07f07bc46abadd88201687ef314bffc993ddd4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/fd07f07bc46abadd88201687ef314bffc993ddd4.diff" + }, + "sdk@85a42bd": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "85a42bd489656416054cf55bd9cc5bb6965ee339", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/85a42bd489656416054cf55bd9cc5bb6965ee339.diff" + }, + "sdk@c37c9c7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "c37c9c79e9c0edbde2f65de86110f9977d62a0ae", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/c37c9c79e9c0edbde2f65de86110f9977d62a0ae.diff" + }, + "sdk@e4f6e1e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e4f6e1e2a0baeecd4d78489e41298e881f9f8df8", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e4f6e1e2a0baeecd4d78489e41298e881f9f8df8.diff" + }, + "sdk@7f56893": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "7f568939e2027a7546db9ee4bc329a32d567ba1f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/7f568939e2027a7546db9ee4bc329a32d567ba1f.diff" + }, + "sdk@e2c08c6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e2c08c66cc1ecaada79a4b00a57ee95ea51cf162", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e2c08c66cc1ecaada79a4b00a57ee95ea51cf162.diff" + }, + "sdk@57a4a8a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "57a4a8a7967da5450bb07173aa5472a9896e7e28", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/57a4a8a7967da5450bb07173aa5472a9896e7e28.diff" + }, + "sdk@1179c9b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1179c9b0931a1ed6e023386a7691d70b8689159a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1179c9b0931a1ed6e023386a7691d70b8689159a.diff" + }, + "sdk@33f0825": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "33f0825f01e0f82320490ea63d4098482d1ff2f6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/33f0825f01e0f82320490ea63d4098482d1ff2f6.diff" + }, + "sdk@6caee54": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6caee544057e2d3e8cd2bb666a507e05957bbd48", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6caee544057e2d3e8cd2bb666a507e05957bbd48.diff" + }, + "sdk@9cd9ee7": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9cd9ee7618877c277db7c78705c04b244745481d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9cd9ee7618877c277db7c78705c04b244745481d.diff" + }, + "sdk@98200d0": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "98200d0a8b773ea8a55898ebbaba5f74cf0d0448", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/98200d0a8b773ea8a55898ebbaba5f74cf0d0448.diff" + }, + "sdk@4e14aaa": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4e14aaa49ff242082df067232aa8ba6c37ea1906", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4e14aaa49ff242082df067232aa8ba6c37ea1906.diff" + }, + "sdk@9cc0024": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9cc002409a4c7ffa4e067217aee0e36baee79d5c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9cc002409a4c7ffa4e067217aee0e36baee79d5c.diff" + }, + "sdk@5589967": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "5589967be369533123990b16eaf3bdd35ccd35f6", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/5589967be369533123990b16eaf3bdd35ccd35f6.diff" + }, + "sdk@4a08e99": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4a08e99aa47025058868a3546dff5a28b0699c37", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4a08e99aa47025058868a3546dff5a28b0699c37.diff" + }, + "sdk@a3fd4e6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a3fd4e66f5cd69bbfeced7779c22ae06f19d08a2", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a3fd4e66f5cd69bbfeced7779c22ae06f19d08a2.diff" + }, + "sdk@a6af779": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "a6af77909c46799080943ee15c028462867c60f5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/a6af77909c46799080943ee15c028462867c60f5.diff" + }, + "sdk@e77dc28": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e77dc282a333e9322c309189cb9962b2ffc25368", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e77dc282a333e9322c309189cb9962b2ffc25368.diff" + }, + "sdk@554315e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "554315ed7b3cb3842b068dfe792d8d6a1437161f", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/554315ed7b3cb3842b068dfe792d8d6a1437161f.diff" + }, + "sdk@b50856e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b50856e28f9b58583c19b7a0f4d20668eebd6da2", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b50856e28f9b58583c19b7a0f4d20668eebd6da2.diff" + }, + "sdk@9ea900a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9ea900ae5a4d954c4ef24a46929ec373271ff50c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9ea900ae5a4d954c4ef24a46929ec373271ff50c.diff" + }, + "sdk@31f158e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "31f158e4da31a48ca3f9a3db7c01dc975064d560", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/31f158e4da31a48ca3f9a3db7c01dc975064d560.diff" + }, + "sdk@073bd0d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "073bd0d48c35f5ffc3783a913cb387f372497f88", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/073bd0d48c35f5ffc3783a913cb387f372497f88.diff" + }, + "sdk@e0a6b80": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e0a6b80004312e1dad76f36b4dec92af9ab98345", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e0a6b80004312e1dad76f36b4dec92af9ab98345.diff" + }, + "sdk@245f8fa": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "245f8fa9bdaa313592e99833a542f08bfcc437ee", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/245f8fa9bdaa313592e99833a542f08bfcc437ee.diff" + }, + "sdk@e236a02": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "e236a022d0104b790db51f444091eeb1663034ad", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/e236a022d0104b790db51f444091eeb1663034ad.diff" + }, + "sdk@cc1b30e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "cc1b30edf44848acbedff76f4070e4a41b82b930", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/cc1b30edf44848acbedff76f4070e4a41b82b930.diff" + }, + "sdk@d60ba8e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "d60ba8e578d1a67bc25b787dfabd82f72e0343b5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/d60ba8e578d1a67bc25b787dfabd82f72e0343b5.diff" + }, + "sdk@3f09f97": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "3f09f9787a135b38c15c2d2b44c91aeb6596856a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/3f09f9787a135b38c15c2d2b44c91aeb6596856a.diff" + }, + "sdk@93b4dfc": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "93b4dfc3d879802f8ad1fb2582196ff97ded6674", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/93b4dfc3d879802f8ad1fb2582196ff97ded6674.diff" + }, + "sdk@53c99bb": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "53c99bbf56bb9e3f786ab1f588b03e71bb9f7f66", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/53c99bbf56bb9e3f786ab1f588b03e71bb9f7f66.diff" + }, + "sdk@40d4c60": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "40d4c60ff35aa1fccfa0627dd13f3c2d3ccdb5da", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/40d4c60ff35aa1fccfa0627dd13f3c2d3ccdb5da.diff" + }, + "sdk@9dfedf8": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "9dfedf85214c5974355a962d622ab96f057a556d", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/9dfedf85214c5974355a962d622ab96f057a556d.diff" + }, + "sdk@4adf9e6": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "4adf9e6ddc72998d17016a0c13c9a5c69693235e", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/4adf9e6ddc72998d17016a0c13c9a5c69693235e.diff" + }, + "sdk@f062f1b": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f062f1be93911246ede8c595c9ec6feb6f6137f5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f062f1be93911246ede8c595c9ec6feb6f6137f5.diff" + }, + "sdk@0f014ce": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0f014ce863c9ee2bce8f808bc7356372608a99a5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0f014ce863c9ee2bce8f808bc7356372608a99a5.diff" + }, + "sdk@aa0ce65": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "aa0ce65c28c98cb16c31ae5382eb19b435080a2a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/aa0ce65c28c98cb16c31ae5382eb19b435080a2a.diff" + }, + "sdk@ba5bec9": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "ba5bec9523959d1ed78760863724b990a760cd4a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/ba5bec9523959d1ed78760863724b990a760cd4a.diff" + }, + "sdk@330bcff": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "330bcffed23bfda1cb3f7daba9ac1af5cafadda8", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/330bcffed23bfda1cb3f7daba9ac1af5cafadda8.diff" + }, + "sdk@1a55591": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "1a5559141734a00d983b25dcee8201487fc92a3a", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/1a5559141734a00d983b25dcee8201487fc92a3a.diff" + }, + "sdk@24d6259": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "24d625941e662b21955873361bc30ddd531b1ab4", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/24d625941e662b21955873361bc30ddd531b1ab4.diff" + }, + "sdk@0e67373": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "0e67373e8f025a96690a45ba40642f307e79a33c", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/0e67373e8f025a96690a45ba40642f307e79a33c.diff" + }, + "sdk@edd676d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "edd676db76688c503c6140792d24e77c5121bc7b", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/edd676db76688c503c6140792d24e77c5121bc7b.diff" + }, + "sdk@6e321aa": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "6e321aa3bb242371ab364e4e17ab720c1af27adc", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/6e321aa3bb242371ab364e4e17ab720c1af27adc.diff" + }, + "sdk@b500038": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "b5000389b4476709c5d0d4dbc0d11f409d31fd65", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/b5000389b4476709c5d0d4dbc0d11f409d31fd65.diff" + }, + "sdk@2122e7d": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "2122e7d265fdb191f9f770aa2cfa6e8a1c7bd136", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/2122e7d265fdb191f9f770aa2cfa6e8a1c7bd136.diff" + }, + "sdk@756927a": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "756927ab607bbcdb6cd17d19d2beeb526f71c194", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/756927ab607bbcdb6cd17d19d2beeb526f71c194.diff" + }, + "sdk@734412e": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "734412e94487e69d3eb20e56f2d964a2ca418df5", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/734412e94487e69d3eb20e56f2d964a2ca418df5.diff" + }, + "sdk@f25f310": { + "repo": "sdk", + "branch": "release/11.0.1xx-preview3", + "hash": "f25f3107b3554e141cbd09113cccf6c321f45143", + "org": "dotnet", + "url": "https://github.com/dotnet/sdk/commit/f25f3107b3554e141cbd09113cccf6c321f45143.diff" + }, + "source-build-reference-packages@f9f00a7": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "f9f00a74a4a2bc8cea089c506b1c6cbcb1fb9c1c", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/f9f00a74a4a2bc8cea089c506b1c6cbcb1fb9c1c.diff" + }, + "source-build-reference-packages@d492faa": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "d492faa78055b3e56cdab5fd2d88056e375482e2", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/d492faa78055b3e56cdab5fd2d88056e375482e2.diff" + }, + "source-build-reference-packages@79173d7": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "79173d77ed27973e023b2d313f80268aaa9d63a6", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/79173d77ed27973e023b2d313f80268aaa9d63a6.diff" + }, + "source-build-reference-packages@53df2d8": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "53df2d8ec665b5c00dfee3866bf7053374d52c7e", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/53df2d8ec665b5c00dfee3866bf7053374d52c7e.diff" + }, + "source-build-reference-packages@fada075": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "fada075c5c15cb33e208628cade97f42824c690d", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/fada075c5c15cb33e208628cade97f42824c690d.diff" + }, + "source-build-reference-packages@867c96d": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "867c96ddea6c1accfeccb11ea8563eca28bc52d8", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/867c96ddea6c1accfeccb11ea8563eca28bc52d8.diff" + }, + "source-build-reference-packages@31d66da": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "31d66da9ba89c34133b1270239d3f578b671594a", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/31d66da9ba89c34133b1270239d3f578b671594a.diff" + }, + "source-build-reference-packages@c2b75e4": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "c2b75e433679003a3a940b20c032c35c4a18eb50", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/c2b75e433679003a3a940b20c032c35c4a18eb50.diff" + }, + "source-build-reference-packages@126ae71": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "126ae71663e3d22030fc7e55d71ead23d140432d", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/126ae71663e3d22030fc7e55d71ead23d140432d.diff" + }, + "source-build-reference-packages@b83413a": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "b83413a4a201695a8bd7ebb6381de7670147ecb7", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/b83413a4a201695a8bd7ebb6381de7670147ecb7.diff" + }, + "source-build-reference-packages@4b65ca1": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "4b65ca17247c0e3f5d50ef8162039065e546fd1d", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/4b65ca17247c0e3f5d50ef8162039065e546fd1d.diff" + }, + "source-build-reference-packages@5204ad3": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "5204ad36f22c85a100f83341d5bbda7d51967d34", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/5204ad36f22c85a100f83341d5bbda7d51967d34.diff" + }, + "source-build-reference-packages@36e942f": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "36e942f1044b201265febf5ef3100097490612d1", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/36e942f1044b201265febf5ef3100097490612d1.diff" + }, + "source-build-reference-packages@88e2559": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "88e25598e94b87ea1b25e7fdd01f1dcc1ed1d135", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/88e25598e94b87ea1b25e7fdd01f1dcc1ed1d135.diff" + }, + "source-build-reference-packages@ccbef8c": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "ccbef8c6d0c9ba8cc132656c917e5eb809117ac8", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/ccbef8c6d0c9ba8cc132656c917e5eb809117ac8.diff" + }, + "source-build-reference-packages@2b29460": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "2b294609a0d52f305765c31232047d23f1ed780a", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/2b294609a0d52f305765c31232047d23f1ed780a.diff" + }, + "source-build-reference-packages@5711e1f": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "5711e1f7e6f8bf26f66cbbf650959755a3fdc705", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/5711e1f7e6f8bf26f66cbbf650959755a3fdc705.diff" + }, + "source-build-reference-packages@314d773": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "314d773ec8dfb656c612d61c0350e356c2b24450", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/314d773ec8dfb656c612d61c0350e356c2b24450.diff" + }, + "source-build-reference-packages@5037ba0": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "5037ba0dcf0929c352e25c3184f0ab4ed5799f33", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/5037ba0dcf0929c352e25c3184f0ab4ed5799f33.diff" + }, + "source-build-reference-packages@d90fb2a": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "d90fb2a224ddfba4da6927c6e7f328f3f535db27", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/d90fb2a224ddfba4da6927c6e7f328f3f535db27.diff" + }, + "source-build-reference-packages@31ef23e": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "31ef23e160d991d30d645f110b6bf5bc7ffadd04", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/31ef23e160d991d30d645f110b6bf5bc7ffadd04.diff" + }, + "source-build-reference-packages@66ddf29": { + "repo": "source-build-reference-packages", + "branch": "release/11.0.1xx-preview3", + "hash": "66ddf29805eb690e48f10bb31f2125520695208e", + "org": "dotnet", + "url": "https://github.com/dotnet/source-build-reference-packages/commit/66ddf29805eb690e48f10bb31f2125520695208e.diff" + }, + "sourcelink@aac1618": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "aac1618190641140df043b1197fbbbe30115df69", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/aac1618190641140df043b1197fbbbe30115df69.diff" + }, + "sourcelink@b25d37e": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "b25d37ed907dd49238a1bd3923e616cac0fec99c", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/b25d37ed907dd49238a1bd3923e616cac0fec99c.diff" + }, + "sourcelink@30a383d": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "30a383db61035c180ad767baf5313b77d8f6de6f", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/30a383db61035c180ad767baf5313b77d8f6de6f.diff" + }, + "sourcelink@2061478": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "20614787937dba7c2bfa8834e451d4a83fb5d40c", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/20614787937dba7c2bfa8834e451d4a83fb5d40c.diff" + }, + "sourcelink@8a4c758": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "8a4c758485a7878d6ae31f54cc8c3128ba9d0a99", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/8a4c758485a7878d6ae31f54cc8c3128ba9d0a99.diff" + }, + "sourcelink@2668313": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "26683137318f55e26442ae3313bd5d255c750eb8", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/26683137318f55e26442ae3313bd5d255c750eb8.diff" + }, + "sourcelink@a7a2ddc": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "a7a2ddc26745aa828b4e5fd2a4e241cb32719a35", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/a7a2ddc26745aa828b4e5fd2a4e241cb32719a35.diff" + }, + "sourcelink@494565b": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "494565b6d10cc9e39bcad37143fd7e35fc469d50", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/494565b6d10cc9e39bcad37143fd7e35fc469d50.diff" + }, + "sourcelink@98ac233": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "98ac2339f8c997b7d81578c15a33c4ec38a67e9d", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/98ac2339f8c997b7d81578c15a33c4ec38a67e9d.diff" + }, + "sourcelink@dca38b9": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "dca38b9eb720be4712bbc709be1f77e84b3608fc", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/dca38b9eb720be4712bbc709be1f77e84b3608fc.diff" + }, + "sourcelink@251760a": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "251760a1f8b193db34fe1c7feaf25de0ba34cd96", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/251760a1f8b193db34fe1c7feaf25de0ba34cd96.diff" + }, + "sourcelink@7c50134": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "7c50134eb8927261288e4263dc5c6a15b84f85b5", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/7c50134eb8927261288e4263dc5c6a15b84f85b5.diff" + }, + "sourcelink@c23996c": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "c23996c885a40466b8e6153efbe4662421cdaef5", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/c23996c885a40466b8e6153efbe4662421cdaef5.diff" + }, + "sourcelink@6ae65fc": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "6ae65fc63222228006b5a031bcf834f5bf7d70a0", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/6ae65fc63222228006b5a031bcf834f5bf7d70a0.diff" + }, + "sourcelink@6ea6adb": { + "repo": "sourcelink", + "branch": "release/11.0.1xx-preview3", + "hash": "6ea6adb7b969c3d58c5aececc1df68e09288cbbf", + "org": "dotnet", + "url": "https://github.com/dotnet/sourcelink/commit/6ea6adb7b969c3d58c5aececc1df68e09288cbbf.diff" + }, + "symreader@01c0841": { + "repo": "symreader", + "branch": "release/11.0.1xx-preview3", + "hash": "01c0841907a56e22c4fadd1d3bd1bc371a2df770", + "org": "dotnet", + "url": "https://github.com/dotnet/symreader/commit/01c0841907a56e22c4fadd1d3bd1bc371a2df770.diff" + }, + "symreader@e5e9322": { + "repo": "symreader", + "branch": "release/11.0.1xx-preview3", + "hash": "e5e93226660ec3780140cd49b3627ec469aede6b", + "org": "dotnet", + "url": "https://github.com/dotnet/symreader/commit/e5e93226660ec3780140cd49b3627ec469aede6b.diff" + }, + "symreader@f106e2a": { + "repo": "symreader", + "branch": "release/11.0.1xx-preview3", + "hash": "f106e2a1c65f02c1b9e47ce354a1d1820d635a95", + "org": "dotnet", + "url": "https://github.com/dotnet/symreader/commit/f106e2a1c65f02c1b9e47ce354a1d1820d635a95.diff" + }, + "symreader@029a1d1": { + "repo": "symreader", + "branch": "release/11.0.1xx-preview3", + "hash": "029a1d10c9a16a26969816010f9ff551e8de1e43", + "org": "dotnet", + "url": "https://github.com/dotnet/symreader/commit/029a1d10c9a16a26969816010f9ff551e8de1e43.diff" + }, + "symreader@e87544a": { + "repo": "symreader", + "branch": "release/11.0.1xx-preview3", + "hash": "e87544a2ca8f13d08c246c0a54db2d54960f2e48", + "org": "dotnet", + "url": "https://github.com/dotnet/symreader/commit/e87544a2ca8f13d08c246c0a54db2d54960f2e48.diff" + }, + "templating@4f4c901": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "4f4c901d2982a50d39f81a40ceb225522ff756eb", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/4f4c901d2982a50d39f81a40ceb225522ff756eb.diff" + }, + "templating@b7755a9": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b7755a99a42d384e8d0fa07c3f2c0c43ab3c3f8a", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b7755a99a42d384e8d0fa07c3f2c0c43ab3c3f8a.diff" + }, + "templating@7369111": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "73691118c993f668eab411c9533a93e9a531f1a7", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/73691118c993f668eab411c9533a93e9a531f1a7.diff" + }, + "templating@cdbf978": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "cdbf978719c3506b7d56ebfb067e5f5148167bba", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/cdbf978719c3506b7d56ebfb067e5f5148167bba.diff" + }, + "templating@9212512": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "92125120b59a9a12fd239645c11596eaeeccc155", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/92125120b59a9a12fd239645c11596eaeeccc155.diff" + }, + "templating@7271f43": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7271f433507cba3ed63328c01fd5dc061dac31a1", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7271f433507cba3ed63328c01fd5dc061dac31a1.diff" + }, + "templating@e99d728": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e99d728d09ae2e529b3e0a17b4f02896af6e70ee", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e99d728d09ae2e529b3e0a17b4f02896af6e70ee.diff" + }, + "templating@5c37c89": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "5c37c89d64da45649f639add584c2bc19c6b0b28", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/5c37c89d64da45649f639add584c2bc19c6b0b28.diff" + }, + "templating@fee905d": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "fee905d30f203c72b05ae46f1b0e51b7fb736fe8", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/fee905d30f203c72b05ae46f1b0e51b7fb736fe8.diff" + }, + "templating@4762e57": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "4762e577809ef123d1da44b094d84f7850e8920d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/4762e577809ef123d1da44b094d84f7850e8920d.diff" + }, + "templating@8f46f06": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "8f46f06fc5132007d96de26d832efc8231542493", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/8f46f06fc5132007d96de26d832efc8231542493.diff" + }, + "templating@3372f62": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "3372f62ff2f1c3de4302bac5ef34bdc8ebf358d9", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/3372f62ff2f1c3de4302bac5ef34bdc8ebf358d9.diff" + }, + "templating@ae11760": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "ae11760a4b4d62dff9ef587da6cf5acf10a1b159", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/ae11760a4b4d62dff9ef587da6cf5acf10a1b159.diff" + }, + "templating@e3b199e": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e3b199ee1a781e32050c8f5eee8d0e88ee96042e", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e3b199ee1a781e32050c8f5eee8d0e88ee96042e.diff" + }, + "templating@36694ea": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "36694ead82c743b226f0bc665cc56ee186796707", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/36694ead82c743b226f0bc665cc56ee186796707.diff" + }, + "templating@b7a4f37": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b7a4f3707f1370b48969306d7b22bbd62ab5a8ea", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b7a4f3707f1370b48969306d7b22bbd62ab5a8ea.diff" + }, + "templating@0d134f4": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "0d134f44193e253c10ed6f41c0e7907c9c1e02d4", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/0d134f44193e253c10ed6f41c0e7907c9c1e02d4.diff" + }, + "templating@2e70b8b": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "2e70b8bdea72cfd0dc31333c18623109cef43898", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/2e70b8bdea72cfd0dc31333c18623109cef43898.diff" + }, + "templating@121dd33": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "121dd33a2607d7b890713117a7a10da4fbba940d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/121dd33a2607d7b890713117a7a10da4fbba940d.diff" + }, + "templating@bde0eb9": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "bde0eb9503d1e46f56ab5b0afa1fc271fb87da79", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/bde0eb9503d1e46f56ab5b0afa1fc271fb87da79.diff" + }, + "templating@5f81707": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "5f81707cb67aff7b02978c2e73864402225bb247", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/5f81707cb67aff7b02978c2e73864402225bb247.diff" + }, + "templating@95ff3b7": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "95ff3b7cb9cc1fc8d4673146b225fa6c74e9b94f", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/95ff3b7cb9cc1fc8d4673146b225fa6c74e9b94f.diff" + }, + "templating@20e5f50": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "20e5f50fede1288b66b7fb20232ecb7ae685437b", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/20e5f50fede1288b66b7fb20232ecb7ae685437b.diff" + }, + "templating@3048685": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "304868563aced4ed9ee671171916b60c458c1e44", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/304868563aced4ed9ee671171916b60c458c1e44.diff" + }, + "templating@7fb54f4": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7fb54f4cb0760b865fb3d048724a26da43ac87ec", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7fb54f4cb0760b865fb3d048724a26da43ac87ec.diff" + }, + "templating@74626d2": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "74626d2400b13a71525dd4d1ee6697e265b8b019", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/74626d2400b13a71525dd4d1ee6697e265b8b019.diff" + }, + "templating@a199b5a": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "a199b5a185fa641534540a10437dfb8f10b5828b", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/a199b5a185fa641534540a10437dfb8f10b5828b.diff" + }, + "templating@f598b06": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f598b06ac7501966102533ca343777fd233eb617", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f598b06ac7501966102533ca343777fd233eb617.diff" + }, + "templating@f566be2": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f566be29b310b89f7b011179f272c5e1d815df30", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f566be29b310b89f7b011179f272c5e1d815df30.diff" + }, + "templating@e6f952e": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e6f952e48c55aa1026b73791bce3bdd4487f2c68", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e6f952e48c55aa1026b73791bce3bdd4487f2c68.diff" + }, + "templating@321f539": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "321f539050368c37448cfc944d1e827f2c5c775d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/321f539050368c37448cfc944d1e827f2c5c775d.diff" + }, + "templating@5e050ff": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "5e050ffcaf7be0b467f23b10b5e283ae15b7e338", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/5e050ffcaf7be0b467f23b10b5e283ae15b7e338.diff" + }, + "templating@40d1aae": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "40d1aae08ff94602da9963f1134661fa23224bb9", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/40d1aae08ff94602da9963f1134661fa23224bb9.diff" + }, + "templating@a23d69a": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "a23d69a9c840a897271c1b43a25ffdb359cffbf6", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/a23d69a9c840a897271c1b43a25ffdb359cffbf6.diff" + }, + "templating@7c5e34e": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7c5e34e3c94c85545720ce8f33660719cc711679", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7c5e34e3c94c85545720ce8f33660719cc711679.diff" + }, + "templating@7ff5d84": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7ff5d841753131f44531174c48b9774dbf686c71", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7ff5d841753131f44531174c48b9774dbf686c71.diff" + }, + "templating@0a9fd5d": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "0a9fd5d5d289bf7e261308745d73c8198b0cc873", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/0a9fd5d5d289bf7e261308745d73c8198b0cc873.diff" + }, + "templating@d138822": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "d138822c8195880da116db49511027381c064236", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/d138822c8195880da116db49511027381c064236.diff" + }, + "templating@7efe8ee": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7efe8eea4dac6382d4c866304fe35bec9105518d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7efe8eea4dac6382d4c866304fe35bec9105518d.diff" + }, + "templating@50e77da": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "50e77dad6edac46defdd1ed88879aaba4d375452", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/50e77dad6edac46defdd1ed88879aaba4d375452.diff" + }, + "templating@c9e4dfd": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "c9e4dfdd52dacef063c19c7c582bf603a28c0ae9", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/c9e4dfdd52dacef063c19c7c582bf603a28c0ae9.diff" + }, + "templating@b342718": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b34271892174c58c11e7bac8977db319624adbbb", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b34271892174c58c11e7bac8977db319624adbbb.diff" + }, + "templating@1089dc7": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "1089dc75824eb5155ec44ffe332eb5c98caab3b7", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/1089dc75824eb5155ec44ffe332eb5c98caab3b7.diff" + }, + "templating@54fc969": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "54fc969c0c413fbfcb07766013926be8327deb69", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/54fc969c0c413fbfcb07766013926be8327deb69.diff" + }, + "templating@6a3a5bd": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "6a3a5bda817600a368664c204d26fdc533c4bacb", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/6a3a5bda817600a368664c204d26fdc533c4bacb.diff" + }, + "templating@c87e7bb": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "c87e7bbce8a4efc0e5f05b76826c68421c1a95f0", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/c87e7bbce8a4efc0e5f05b76826c68421c1a95f0.diff" + }, + "templating@f651898": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f651898ce96302fe6328b5058df23d07c884bcd4", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f651898ce96302fe6328b5058df23d07c884bcd4.diff" + }, + "templating@9076da7": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "9076da791ec237a6ca967ba03ba6b182e9e3eeca", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/9076da791ec237a6ca967ba03ba6b182e9e3eeca.diff" + }, + "templating@7c6a967": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7c6a967f82c731576d7a050df664fa7db9535b85", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7c6a967f82c731576d7a050df664fa7db9535b85.diff" + }, + "templating@d5cf2d1": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "d5cf2d109c462ca93e30be35c89c021a9f44d98b", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/d5cf2d109c462ca93e30be35c89c021a9f44d98b.diff" + }, + "templating@a29321b": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "a29321b12f1edbabbee3f7ea5bb8fe2f8788efdd", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/a29321b12f1edbabbee3f7ea5bb8fe2f8788efdd.diff" + }, + "templating@8e0e26d": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "8e0e26df1d3b7a9bb6d23d4f883e814694c834da", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/8e0e26df1d3b7a9bb6d23d4f883e814694c834da.diff" + }, + "templating@0ca09cb": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "0ca09cb250057b344adb45084749ed24b3f8a6b0", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/0ca09cb250057b344adb45084749ed24b3f8a6b0.diff" + }, + "templating@b71253f": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b71253fd46814646c4359603a5811174f146b194", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b71253fd46814646c4359603a5811174f146b194.diff" + }, + "templating@9ad9b32": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "9ad9b325943d822b6c3f80e0c2d60d1cfdff2af7", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/9ad9b325943d822b6c3f80e0c2d60d1cfdff2af7.diff" + }, + "templating@c4d87f4": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "c4d87f40133af13809b24c719a0afb63c6a08617", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/c4d87f40133af13809b24c719a0afb63c6a08617.diff" + }, + "templating@8213c24": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "8213c24c55165d2e05354cd201761d2ba4134995", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/8213c24c55165d2e05354cd201761d2ba4134995.diff" + }, + "templating@2c875d3": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "2c875d35280e044aede7715ef1cf040e6033bc93", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/2c875d35280e044aede7715ef1cf040e6033bc93.diff" + }, + "templating@1d35c94": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "1d35c946ee692e26b37df147e2c1c8207b4cd73a", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/1d35c946ee692e26b37df147e2c1c8207b4cd73a.diff" + }, + "templating@6e31c69": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "6e31c69f6ee2abff3ab8e8e1ee409ae249d6ccf2", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/6e31c69f6ee2abff3ab8e8e1ee409ae249d6ccf2.diff" + }, + "templating@8eecb41": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "8eecb41a0ebea540dfdda08309d9f0041dcc8c61", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/8eecb41a0ebea540dfdda08309d9f0041dcc8c61.diff" + }, + "templating@5c04422": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "5c044229824e2bd2aaff4944e2514c38702a1280", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/5c044229824e2bd2aaff4944e2514c38702a1280.diff" + }, + "templating@d7ef40f": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "d7ef40f9e527bf18c31cb46f125f36da51a835db", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/d7ef40f9e527bf18c31cb46f125f36da51a835db.diff" + }, + "templating@41eda11": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "41eda1116afcaeddb7de133325a68b3f6140bf3e", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/41eda1116afcaeddb7de133325a68b3f6140bf3e.diff" + }, + "templating@53fd3d4": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "53fd3d4dc5c1e1797fa10ab11f70cf5e322f956b", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/53fd3d4dc5c1e1797fa10ab11f70cf5e322f956b.diff" + }, + "templating@2c0d3f8": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "2c0d3f87ea0ac16bd1a442b528d0045c7d99fc71", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/2c0d3f87ea0ac16bd1a442b528d0045c7d99fc71.diff" + }, + "templating@f69d4eb": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f69d4eb8cab191d8ed5fdbe7c5ed9c9dbe6f6e00", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f69d4eb8cab191d8ed5fdbe7c5ed9c9dbe6f6e00.diff" + }, + "templating@da99ace": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "da99acea1b8d9c1a7902aa2b35459c4503078d06", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/da99acea1b8d9c1a7902aa2b35459c4503078d06.diff" + }, + "templating@7f918c8": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7f918c87bf315b06b54450b04ba0de067ee6fe06", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7f918c87bf315b06b54450b04ba0de067ee6fe06.diff" + }, + "templating@b8604f8": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b8604f8fecffff62bfcc1854bf8a71fa1f4ab4bf", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b8604f8fecffff62bfcc1854bf8a71fa1f4ab4bf.diff" + }, + "templating@47f3950": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "47f3950c60f361d1272d30fb432f321a2d553fb2", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/47f3950c60f361d1272d30fb432f321a2d553fb2.diff" + }, + "templating@23f88df": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "23f88dfd5baa36a7b36020527a3fb1d0f1d5ec10", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/23f88dfd5baa36a7b36020527a3fb1d0f1d5ec10.diff" + }, + "templating@2c0a5c7": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "2c0a5c70c6bd297f291442805da7621eb1d81958", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/2c0a5c70c6bd297f291442805da7621eb1d81958.diff" + }, + "templating@6e3afb3": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "6e3afb3720643f91285077a3bc397b9182e676ab", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/6e3afb3720643f91285077a3bc397b9182e676ab.diff" + }, + "templating@ea80dd1": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "ea80dd1e25eee778d70545227fe75a1b120ffef9", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/ea80dd1e25eee778d70545227fe75a1b120ffef9.diff" + }, + "templating@7be4df5": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7be4df5c970a8f3b30e228f05bd6b4bcd3266e5f", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7be4df5c970a8f3b30e228f05bd6b4bcd3266e5f.diff" + }, + "templating@fe60e19": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "fe60e19061279aa918d0f11997673cd18c9f5f4c", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/fe60e19061279aa918d0f11997673cd18c9f5f4c.diff" + }, + "templating@44ac461": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "44ac4614af1390bc37c508e77714bd0d392cecd0", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/44ac4614af1390bc37c508e77714bd0d392cecd0.diff" + }, + "templating@ea66ab7": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "ea66ab7e079c625bc4d3f76ede5042874c180a4c", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/ea66ab7e079c625bc4d3f76ede5042874c180a4c.diff" + }, + "templating@3d8a1e9": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "3d8a1e9b50dd81227d5df7066a8929c9842021bc", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/3d8a1e9b50dd81227d5df7066a8929c9842021bc.diff" + }, + "templating@2bb4424": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "2bb4424e21e4f1206ed829a7bb1748683dc811f5", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/2bb4424e21e4f1206ed829a7bb1748683dc811f5.diff" + }, + "templating@e1f9198": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e1f919895be25f00c462826fa912918de74c7e56", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e1f919895be25f00c462826fa912918de74c7e56.diff" + }, + "templating@2c1cef2": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "2c1cef2dab7d1617275530e1224fc6fb54c23b3a", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/2c1cef2dab7d1617275530e1224fc6fb54c23b3a.diff" + }, + "templating@f6017ea": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f6017eafec4da0337bda4aaab71c81717065de93", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f6017eafec4da0337bda4aaab71c81717065de93.diff" + }, + "templating@3e8acc7": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "3e8acc7b2111a5a2824b8472377ad02e28caad6d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/3e8acc7b2111a5a2824b8472377ad02e28caad6d.diff" + }, + "templating@af2466d": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "af2466d7f34c86e64437cf5a783d114f557fae53", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/af2466d7f34c86e64437cf5a783d114f557fae53.diff" + }, + "templating@1eee975": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "1eee975867354e520e698969417a65d08a0843ca", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/1eee975867354e520e698969417a65d08a0843ca.diff" + }, + "templating@ffc0ac2": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "ffc0ac226dfdc3ad12cf1a1bd984e3786780c621", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/ffc0ac226dfdc3ad12cf1a1bd984e3786780c621.diff" + }, + "templating@30d3d38": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "30d3d3862bdaea049084a4a36b1914b63ef298f8", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/30d3d3862bdaea049084a4a36b1914b63ef298f8.diff" + }, + "templating@fa5b4ae": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "fa5b4aed22c6f0c3f416e4d7a8f8da76138b4f6f", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/fa5b4aed22c6f0c3f416e4d7a8f8da76138b4f6f.diff" + }, + "templating@ad0a7bf": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "ad0a7bfd946312950531ea203892276b2e6c11cd", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/ad0a7bfd946312950531ea203892276b2e6c11cd.diff" + }, + "templating@998864e": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "998864e206ce92e6ae0233acd1040497c16616bf", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/998864e206ce92e6ae0233acd1040497c16616bf.diff" + }, + "templating@f0e416d": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f0e416dcf3b159b3db97f23a0d8ca42fca1322f7", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f0e416dcf3b159b3db97f23a0d8ca42fca1322f7.diff" + }, + "templating@5ef30ec": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "5ef30ecb8d4114875bf4b4ef9769b58edaf5fde1", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/5ef30ecb8d4114875bf4b4ef9769b58edaf5fde1.diff" + }, + "templating@839db8e": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "839db8e5ce1a58087308e50516025f9b711d5acb", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/839db8e5ce1a58087308e50516025f9b711d5acb.diff" + }, + "templating@eb2e6db": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "eb2e6dbbdf788aa57a01885162347f3937eddce5", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/eb2e6dbbdf788aa57a01885162347f3937eddce5.diff" + }, + "templating@b870186": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b870186bbdf9cbbd3c83fb440c54727f959d6433", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b870186bbdf9cbbd3c83fb440c54727f959d6433.diff" + }, + "templating@87b3671": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "87b36713a06ae7b2ff3c74d4c7849f2fda5956a0", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/87b36713a06ae7b2ff3c74d4c7849f2fda5956a0.diff" + }, + "templating@705477b": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "705477bd3f76062b683ed39339d9090176f3b3d6", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/705477bd3f76062b683ed39339d9090176f3b3d6.diff" + }, + "templating@bd1b258": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "bd1b258cb4afa21231f87792abba2d3f77847cb1", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/bd1b258cb4afa21231f87792abba2d3f77847cb1.diff" + }, + "templating@fb9757b": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "fb9757b64e7849c08dd4b76e0bda92e6e9ec5085", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/fb9757b64e7849c08dd4b76e0bda92e6e9ec5085.diff" + }, + "templating@7ddf30b": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7ddf30b80f4e3042052fe7a40290da4d592e8b23", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7ddf30b80f4e3042052fe7a40290da4d592e8b23.diff" + }, + "templating@b3eb6ce": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b3eb6ce8c313e33375bcf8d853a9a3e3c2b66a82", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b3eb6ce8c313e33375bcf8d853a9a3e3c2b66a82.diff" + }, + "templating@e19ccbd": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e19ccbdcf42d4139dfbdb550655778fb79900a03", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e19ccbdcf42d4139dfbdb550655778fb79900a03.diff" + }, + "templating@d04e5bb": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "d04e5bbdcbaae1bf3510acf57f019adac24656ea", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/d04e5bbdcbaae1bf3510acf57f019adac24656ea.diff" + }, + "templating@670bbf0": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "670bbf0f775c560af857dbc4385462b82160dddf", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/670bbf0f775c560af857dbc4385462b82160dddf.diff" + }, + "templating@4014047": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "4014047aeb6c87e06e79b363e832f29cce79b736", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/4014047aeb6c87e06e79b363e832f29cce79b736.diff" + }, + "templating@fac7fc4": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "fac7fc48227634f5922fcf0f2ae30344cf5eb728", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/fac7fc48227634f5922fcf0f2ae30344cf5eb728.diff" + }, + "templating@602fee8": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "602fee8b56854190805005462e8b4e041738f72c", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/602fee8b56854190805005462e8b4e041738f72c.diff" + }, + "templating@3be9060": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "3be90606001d2ff7dfd406d3f9b76ed1e8dfd9cd", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/3be90606001d2ff7dfd406d3f9b76ed1e8dfd9cd.diff" + }, + "templating@31d5e94": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "31d5e94c745f99846e3ade06a9b3b3ce2ac6a914", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/31d5e94c745f99846e3ade06a9b3b3ce2ac6a914.diff" + }, + "templating@8f3233f": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "8f3233fae9298191f4a83beab50326835b8815ac", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/8f3233fae9298191f4a83beab50326835b8815ac.diff" + }, + "templating@09cce1b": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "09cce1b0ddc3c54fb70cc1aaecac2019f3c187bc", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/09cce1b0ddc3c54fb70cc1aaecac2019f3c187bc.diff" + }, + "templating@ba9beb1": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "ba9beb1ed2a4da0ea9693b68397e33fe2053bc93", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/ba9beb1ed2a4da0ea9693b68397e33fe2053bc93.diff" + }, + "templating@036e553": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "036e5537d7008a6b32c0798256f06f95cec85bfb", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/036e5537d7008a6b32c0798256f06f95cec85bfb.diff" + }, + "templating@7a5d7a5": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7a5d7a555bc61cd2fe17f2f2e01f892e5a427a20", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7a5d7a555bc61cd2fe17f2f2e01f892e5a427a20.diff" + }, + "templating@ace6743": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "ace674390923ed8b52c95d95a0fd94babc4d6a67", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/ace674390923ed8b52c95d95a0fd94babc4d6a67.diff" + }, + "templating@67a0a9c": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "67a0a9c96436297ae85ed20ed4b10633688ee190", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/67a0a9c96436297ae85ed20ed4b10633688ee190.diff" + }, + "templating@aa07580": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "aa0758044d166636f3f8095cfca9588a88adcb2c", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/aa0758044d166636f3f8095cfca9588a88adcb2c.diff" + }, + "templating@db897f4": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "db897f49c74da5baed273c76eb46d1eb26bad04c", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/db897f49c74da5baed273c76eb46d1eb26bad04c.diff" + }, + "templating@a10ed4b": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "a10ed4b6aa09ca0d78e31d11e645a9c35e41d342", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/a10ed4b6aa09ca0d78e31d11e645a9c35e41d342.diff" + }, + "templating@cb565a7": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "cb565a75d77c8fec8f3f89aa5bd4d93043432d7d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/cb565a75d77c8fec8f3f89aa5bd4d93043432d7d.diff" + }, + "templating@a223364": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "a2233640c01a5e58808d5fd1143f34dfebea337e", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/a2233640c01a5e58808d5fd1143f34dfebea337e.diff" + }, + "templating@84c018c": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "84c018c7906eaa9ecf40e174f1ed21ed84b8163b", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/84c018c7906eaa9ecf40e174f1ed21ed84b8163b.diff" + }, + "templating@4822704": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "482270423e2faf505b982ec7275eb782cc42b11c", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/482270423e2faf505b982ec7275eb782cc42b11c.diff" + }, + "templating@8dd0c58": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "8dd0c58f0a537e91961e1cc551d77c264cb9f093", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/8dd0c58f0a537e91961e1cc551d77c264cb9f093.diff" + }, + "templating@79304c8": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "79304c81faa6f1d29ad8985e522a36bf643f86fd", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/79304c81faa6f1d29ad8985e522a36bf643f86fd.diff" + }, + "templating@6550ecd": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "6550ecd2990376e34b126b2b78166ef86657e307", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/6550ecd2990376e34b126b2b78166ef86657e307.diff" + }, + "templating@b8d4b89": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b8d4b89477abe60ec25d62e07933a675ac2f96cb", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b8d4b89477abe60ec25d62e07933a675ac2f96cb.diff" + }, + "templating@8a73ffc": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "8a73ffc5cdce32dcd87c114952f581fd54e350c3", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/8a73ffc5cdce32dcd87c114952f581fd54e350c3.diff" + }, + "templating@c166a63": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "c166a637375cb044458a9c05bd4e720a57256348", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/c166a637375cb044458a9c05bd4e720a57256348.diff" + }, + "templating@98d6433": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "98d6433162cc7d5270b95e0ec72bd3c9d91cbaf0", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/98d6433162cc7d5270b95e0ec72bd3c9d91cbaf0.diff" + }, + "templating@de6dbc7": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "de6dbc743cc9721c15508126fa2fd299779b020d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/de6dbc743cc9721c15508126fa2fd299779b020d.diff" + }, + "templating@39d232b": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "39d232bea6c197964d0b525feb66a4764f027d0e", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/39d232bea6c197964d0b525feb66a4764f027d0e.diff" + }, + "templating@0d11bde": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "0d11bde0596e82571275fae956e6ada7d38a7064", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/0d11bde0596e82571275fae956e6ada7d38a7064.diff" + }, + "templating@386e71a": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "386e71a94cbf5684a09a4cfdfa4d9d9452500b70", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/386e71a94cbf5684a09a4cfdfa4d9d9452500b70.diff" + }, + "templating@e5bdff7": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e5bdff79051b2e5a6760b55f718ea1906a082622", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e5bdff79051b2e5a6760b55f718ea1906a082622.diff" + }, + "templating@c76b3f7": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "c76b3f77b937bf3f99143913b251a08891a66d95", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/c76b3f77b937bf3f99143913b251a08891a66d95.diff" + }, + "templating@7fc381a": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7fc381a8175125c7b20ec95f93626698ebe78e5d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7fc381a8175125c7b20ec95f93626698ebe78e5d.diff" + }, + "templating@e667c11": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e667c11f978ce20d71ebbc151287369008889731", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e667c11f978ce20d71ebbc151287369008889731.diff" + }, + "templating@853b9b9": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "853b9b97ab6839b444bc53e37ca6a6078723af2e", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/853b9b97ab6839b444bc53e37ca6a6078723af2e.diff" + }, + "templating@8853660": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "88536602b05fb08f0a0d7ff9b05ee4749678c930", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/88536602b05fb08f0a0d7ff9b05ee4749678c930.diff" + }, + "templating@f37cdd6": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f37cdd6f8bd4ba74fc6bfe354a3e5df6fa14228b", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f37cdd6f8bd4ba74fc6bfe354a3e5df6fa14228b.diff" + }, + "templating@e7aa5c8": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e7aa5c82f59f3eb89fcff0ffd974c202491c923c", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e7aa5c82f59f3eb89fcff0ffd974c202491c923c.diff" + }, + "templating@e5bd434": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e5bd434255938dc8d223cc1840e1ab99557fe390", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e5bd434255938dc8d223cc1840e1ab99557fe390.diff" + }, + "templating@dcd10ca": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "dcd10caebb2be2ab33586469cb9543d259899112", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/dcd10caebb2be2ab33586469cb9543d259899112.diff" + }, + "templating@b34d25d": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b34d25d4c94a2c5a1ca2ea8c632e8c0b33251f0c", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b34d25d4c94a2c5a1ca2ea8c632e8c0b33251f0c.diff" + }, + "templating@f1a9929": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f1a9929fbc4af2602edc8d65d459ff3faa713f51", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f1a9929fbc4af2602edc8d65d459ff3faa713f51.diff" + }, + "templating@91a12be": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "91a12be029e3403d5ee70875c731b26fdd1ca8ac", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/91a12be029e3403d5ee70875c731b26fdd1ca8ac.diff" + }, + "templating@b04e3aa": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b04e3aa907668c9a8d706d8a49269045ef64b377", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b04e3aa907668c9a8d706d8a49269045ef64b377.diff" + }, + "templating@a91084c": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "a91084c25f6dcf0ce83e00248329642c7e28f2ad", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/a91084c25f6dcf0ce83e00248329642c7e28f2ad.diff" + }, + "templating@f7733e1": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f7733e14bf7c49d78d2c6811f3e0851d6aac0b53", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f7733e14bf7c49d78d2c6811f3e0851d6aac0b53.diff" + }, + "templating@3942ccb": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "3942ccb2e81015f7b95734dfcf35e1010e339226", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/3942ccb2e81015f7b95734dfcf35e1010e339226.diff" + }, + "templating@000bfca": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "000bfca48a571a2fff374e46ad97375657957a51", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/000bfca48a571a2fff374e46ad97375657957a51.diff" + }, + "templating@79351e9": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "79351e9079c05cc3bca884e075f0f5b6e6b9c33e", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/79351e9079c05cc3bca884e075f0f5b6e6b9c33e.diff" + }, + "templating@e381e73": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e381e7331261281badbf53175c4142232dbe81d6", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e381e7331261281badbf53175c4142232dbe81d6.diff" + }, + "templating@c4af218": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "c4af218f99786fa510fbbff5dd63c6fcad5536ae", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/c4af218f99786fa510fbbff5dd63c6fcad5536ae.diff" + }, + "templating@9b5ac70": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "9b5ac707dfd82b5586aa609991e1b1b335b9e625", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/9b5ac707dfd82b5586aa609991e1b1b335b9e625.diff" + }, + "templating@f6ce6aa": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f6ce6aae2abff2fabd976989e51c364c2c9fded9", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f6ce6aae2abff2fabd976989e51c364c2c9fded9.diff" + }, + "templating@6a849d5": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "6a849d521b565ab86b179a6fb06d3cb10825638d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/6a849d521b565ab86b179a6fb06d3cb10825638d.diff" + }, + "templating@d91bd6c": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "d91bd6c8677f897b9bcaac265a5d4dced672cbff", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/d91bd6c8677f897b9bcaac265a5d4dced672cbff.diff" + }, + "templating@e1c12b5": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e1c12b58c5066caef9b5a701cce304119a3b2001", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e1c12b58c5066caef9b5a701cce304119a3b2001.diff" + }, + "templating@83a700d": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "83a700d2aa6852f958a04c539e79980fb63fc05c", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/83a700d2aa6852f958a04c539e79980fb63fc05c.diff" + }, + "templating@62f5f31": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "62f5f31a00e72d0a0317e2e70a74110c97216999", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/62f5f31a00e72d0a0317e2e70a74110c97216999.diff" + }, + "templating@56695be": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "56695beaa867f8a8eb6f59097ccada533f3710e5", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/56695beaa867f8a8eb6f59097ccada533f3710e5.diff" + }, + "templating@987157f": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "987157fe7b5c1ae6110f522fa5aa94eeb937a6d1", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/987157fe7b5c1ae6110f522fa5aa94eeb937a6d1.diff" + }, + "templating@deb53e2": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "deb53e2ebf218096b2e4ad384c7d94df78e29afb", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/deb53e2ebf218096b2e4ad384c7d94df78e29afb.diff" + }, + "templating@c1a147c": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "c1a147c24e58f88c286a1796b85dad33b9e9c72b", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/c1a147c24e58f88c286a1796b85dad33b9e9c72b.diff" + }, + "templating@d196d3e": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "d196d3e64b0de79f3e82a01c2ff8b2e8dd99bf78", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/d196d3e64b0de79f3e82a01c2ff8b2e8dd99bf78.diff" + }, + "templating@0756f96": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "0756f9688a803dcb64f966180d7b61922d76576e", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/0756f9688a803dcb64f966180d7b61922d76576e.diff" + }, + "templating@9419d16": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "9419d1639f772fe7a0e396f5744ef319cb3fce11", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/9419d1639f772fe7a0e396f5744ef319cb3fce11.diff" + }, + "templating@9a6a837": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "9a6a837a37d42c6e58802f8e99a996c363c53976", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/9a6a837a37d42c6e58802f8e99a996c363c53976.diff" + }, + "templating@122b363": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "122b3637731d43f1f7bdb3fcb25399e11a85d909", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/122b3637731d43f1f7bdb3fcb25399e11a85d909.diff" + }, + "templating@b7ec64f": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b7ec64f138ebb11f0ed07d58c40d5b475ec079fb", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b7ec64f138ebb11f0ed07d58c40d5b475ec079fb.diff" + }, + "templating@8b17d41": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "8b17d413ee3ce445ee837c7973ddb50d7881fdfd", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/8b17d413ee3ce445ee837c7973ddb50d7881fdfd.diff" + }, + "templating@6bf67e6": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "6bf67e6d84b87a97c4ac123625208ba005763027", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/6bf67e6d84b87a97c4ac123625208ba005763027.diff" + }, + "templating@06f5915": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "06f59159446d55e882763a12762ea55419f470b4", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/06f59159446d55e882763a12762ea55419f470b4.diff" + }, + "templating@4811a95": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "4811a9533df8cc95f3e0f91583c89e4eb5491700", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/4811a9533df8cc95f3e0f91583c89e4eb5491700.diff" + }, + "templating@e34f843": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "e34f84331fa712f22d0dc8ec789835620a481097", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/e34f84331fa712f22d0dc8ec789835620a481097.diff" + }, + "templating@af3486b": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "af3486b9ca0d8e973173db113d09e5bb2e68ece2", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/af3486b9ca0d8e973173db113d09e5bb2e68ece2.diff" + }, + "templating@31d7490": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "31d74907394562fd9d5466106d7dfa3ea2868397", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/31d74907394562fd9d5466106d7dfa3ea2868397.diff" + }, + "templating@f1dc072": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f1dc072ccf59c3fd82a5eed5b9b833d033f12ac7", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f1dc072ccf59c3fd82a5eed5b9b833d033f12ac7.diff" + }, + "templating@0896113": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "08961137da9bfe83dde3abfc9b6ef226e1dc6a66", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/08961137da9bfe83dde3abfc9b6ef226e1dc6a66.diff" + }, + "templating@92877dd": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "92877ddcf86d89a4dd8f0c4bb558fe7bdc36eef8", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/92877ddcf86d89a4dd8f0c4bb558fe7bdc36eef8.diff" + }, + "templating@901881b": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "901881b6c8cbd27d93c923bbed304edb1fa5ed5f", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/901881b6c8cbd27d93c923bbed304edb1fa5ed5f.diff" + }, + "templating@258701a": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "258701af1001ecc7037c44c730786f21855bcfee", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/258701af1001ecc7037c44c730786f21855bcfee.diff" + }, + "templating@7dce33e": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7dce33e174203496554e610a5711b6b220065dd7", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7dce33e174203496554e610a5711b6b220065dd7.diff" + }, + "templating@a861186": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "a86118608ad1ba12cf99c329510546fa39552568", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/a86118608ad1ba12cf99c329510546fa39552568.diff" + }, + "templating@7e39dc7": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "7e39dc706be0d618759b68d1bf8802bfac65d77d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/7e39dc706be0d618759b68d1bf8802bfac65d77d.diff" + }, + "templating@a70b993": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "a70b993dc61bd090891a3a30d2c4ba3754b715ad", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/a70b993dc61bd090891a3a30d2c4ba3754b715ad.diff" + }, + "templating@0c75dc9": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "0c75dc9a6f8b74c238e62c97aa9ae9d733222044", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/0c75dc9a6f8b74c238e62c97aa9ae9d733222044.diff" + }, + "templating@2f661c8": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "2f661c814ca3281fa149bd60309e66d2c3aff045", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/2f661c814ca3281fa149bd60309e66d2c3aff045.diff" + }, + "templating@34fffb5": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "34fffb5c4c3943ea155cdd8c88a5a1d1007a877e", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/34fffb5c4c3943ea155cdd8c88a5a1d1007a877e.diff" + }, + "templating@b483bf5": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "b483bf59ca8a245b5bf8bad6760d9d1aecc3466d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/b483bf59ca8a245b5bf8bad6760d9d1aecc3466d.diff" + }, + "templating@f957b13": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "f957b135672195edfd98ef44da15a33dddffd35b", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/f957b135672195edfd98ef44da15a33dddffd35b.diff" + }, + "templating@d913801": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "d9138019e05f2c387acd711e4a6746b95a396497", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/d9138019e05f2c387acd711e4a6746b95a396497.diff" + }, + "templating@a5cfe2f": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "a5cfe2fb4bf7c2fb13cbb99081a961599714441c", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/a5cfe2fb4bf7c2fb13cbb99081a961599714441c.diff" + }, + "templating@ba08e9c": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "ba08e9c6ad25bff28504489eca0d4fe06be2ff40", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/ba08e9c6ad25bff28504489eca0d4fe06be2ff40.diff" + }, + "templating@853b858": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "853b8586ba2e99701f8d8a2185ddad815ea60fe8", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/853b8586ba2e99701f8d8a2185ddad815ea60fe8.diff" + }, + "templating@4e8960a": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "4e8960a67d0d474adeac5b095d364d37d6fe2be6", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/4e8960a67d0d474adeac5b095d364d37d6fe2be6.diff" + }, + "templating@953ad16": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "953ad16c40b654e89098bb504561e258c7890f28", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/953ad16c40b654e89098bb504561e258c7890f28.diff" + }, + "templating@97a3783": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "97a3783fb65add30464cc81e469b2d12145d453d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/97a3783fb65add30464cc81e469b2d12145d453d.diff" + }, + "templating@bcf27d1": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "bcf27d15646b5cef4806e900e436a3e9b97ab403", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/bcf27d15646b5cef4806e900e436a3e9b97ab403.diff" + }, + "templating@1c7a76e": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "1c7a76e53b07d7eabb570e5190fdc039993d629d", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/1c7a76e53b07d7eabb570e5190fdc039993d629d.diff" + }, + "templating@1309155": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "1309155117abe44288e8ff2acb19d0205d8efa98", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/1309155117abe44288e8ff2acb19d0205d8efa98.diff" + }, + "templating@4fd4718": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "4fd47184545821bbca0ef2dfb7ffd323ab50663b", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/4fd47184545821bbca0ef2dfb7ffd323ab50663b.diff" + }, + "templating@ab5efea": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "ab5efea38b7009ef1b37041cca3f7c856a73c6db", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/ab5efea38b7009ef1b37041cca3f7c856a73c6db.diff" + }, + "templating@5ed5ce8": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "5ed5ce81bce6ecf827028801ee16c202d0574a42", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/5ed5ce81bce6ecf827028801ee16c202d0574a42.diff" + }, + "templating@2995ec4": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "2995ec4ed64c1b7df7f1a4af72e79040bf507b2a", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/2995ec4ed64c1b7df7f1a4af72e79040bf507b2a.diff" + }, + "templating@054e3da": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "054e3dae2a0d18343175f0774f15cd6e75a5441a", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/054e3dae2a0d18343175f0774f15cd6e75a5441a.diff" + }, + "templating@1b8b725": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "1b8b7255c127612570a91833424919c869ca7dad", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/1b8b7255c127612570a91833424919c869ca7dad.diff" + }, + "templating@bbd8b09": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "bbd8b09f7535b818b0924a405c1fcdb5ecf11ec3", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/bbd8b09f7535b818b0924a405c1fcdb5ecf11ec3.diff" + }, + "templating@791a389": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "791a389797e0d7fc230bca3b08e125eacfcc94ee", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/791a389797e0d7fc230bca3b08e125eacfcc94ee.diff" + }, + "templating@80848b3": { + "repo": "templating", + "branch": "release/11.0.1xx-preview3", + "hash": "80848b3d0a3dc679ad43c05cbf49e9e31e25d0a6", + "org": "dotnet", + "url": "https://github.com/dotnet/templating/commit/80848b3d0a3dc679ad43c05cbf49e9e31e25d0a6.diff" + }, + "winforms@dc6c73b": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "dc6c73b54eab862d0ff4130ad8c2ae06e6b41d9d", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/dc6c73b54eab862d0ff4130ad8c2ae06e6b41d9d.diff" + }, + "winforms@e998107": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "e99810718c1c330e0f6ff2c6e836c71afad97d3d", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/e99810718c1c330e0f6ff2c6e836c71afad97d3d.diff" + }, + "winforms@fdb43c8": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "fdb43c86a4e556a3e98b54fb1cd34685660b171b", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/fdb43c86a4e556a3e98b54fb1cd34685660b171b.diff" + }, + "winforms@d65e8b0": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "d65e8b04a4d56f728b34012026a2bd4c83277f56", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/d65e8b04a4d56f728b34012026a2bd4c83277f56.diff" + }, + "winforms@7ea6398": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "7ea6398101ace0f8014a08f4cba0448c15985716", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/7ea6398101ace0f8014a08f4cba0448c15985716.diff" + }, + "winforms@a4d6573": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "a4d65732527b4274283860df541a0f7b60e4d38f", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/a4d65732527b4274283860df541a0f7b60e4d38f.diff" + }, + "winforms@2846f02": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "2846f02430611fda9f0e1ef8934b19b14d3485f9", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/2846f02430611fda9f0e1ef8934b19b14d3485f9.diff" + }, + "winforms@8e560d0": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "8e560d0c0344a3a22e5400cad0af15c7c542394b", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/8e560d0c0344a3a22e5400cad0af15c7c542394b.diff" + }, + "winforms@6ff69e6": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "6ff69e664855aab95d8911bf4adaa725f1bc4fef", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/6ff69e664855aab95d8911bf4adaa725f1bc4fef.diff" + }, + "winforms@9e5fbe8": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "9e5fbe82d4b4d0ae142d2b15a29627a20e502773", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/9e5fbe82d4b4d0ae142d2b15a29627a20e502773.diff" + }, + "winforms@d7b99bf": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "d7b99bf06c735bae4123ab1cd4eeb67f78caf27a", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/d7b99bf06c735bae4123ab1cd4eeb67f78caf27a.diff" + }, + "winforms@290d8bb": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "290d8bbda75754ee43986b66323798c292194b29", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/290d8bbda75754ee43986b66323798c292194b29.diff" + }, + "winforms@82ed134": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "82ed134cac74a00f8644770b9b1343a272fd2bae", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/82ed134cac74a00f8644770b9b1343a272fd2bae.diff" + }, + "winforms@c83a1bd": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "c83a1bdb737a8995d4fb0b1fd0a90c2f6d785bfd", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/c83a1bdb737a8995d4fb0b1fd0a90c2f6d785bfd.diff" + }, + "winforms@e98325a": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "e98325ab519d8a78f5f3b9387b6d88bedc339bb0", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/e98325ab519d8a78f5f3b9387b6d88bedc339bb0.diff" + }, + "winforms@1dfc02d": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "1dfc02def05132be646087dcce3abae6b2b6ee54", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/1dfc02def05132be646087dcce3abae6b2b6ee54.diff" + }, + "winforms@f3422f9": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "f3422f95aacde9b6faee2c1fe6d1a9e5a20cef4c", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/f3422f95aacde9b6faee2c1fe6d1a9e5a20cef4c.diff" + }, + "winforms@94b12d1": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "94b12d18b5295b18779988f81ef11fa102392087", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/94b12d18b5295b18779988f81ef11fa102392087.diff" + }, + "winforms@7297dbc": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "7297dbc703d096017d07e45bd8aa3effb77887b4", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/7297dbc703d096017d07e45bd8aa3effb77887b4.diff" + }, + "winforms@88c709b": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "88c709b118c8820ac257bf62eb96ff1530902ed4", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/88c709b118c8820ac257bf62eb96ff1530902ed4.diff" + }, + "winforms@4b63688": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "4b63688f8aa4125b18dfc04f0ee4b4f204f5fc52", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/4b63688f8aa4125b18dfc04f0ee4b4f204f5fc52.diff" + }, + "winforms@065dd5f": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "065dd5fcb55d9b732c16d7d21238db2381fa5499", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/065dd5fcb55d9b732c16d7d21238db2381fa5499.diff" + }, + "winforms@f8ef19c": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "f8ef19c448ff39155608cd48df0c74043f783ecb", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/f8ef19c448ff39155608cd48df0c74043f783ecb.diff" + }, + "winforms@86616a8": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "86616a88560d62105f88d6f7f598b13208a5bfb7", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/86616a88560d62105f88d6f7f598b13208a5bfb7.diff" + }, + "winforms@6f9c433": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "6f9c4338754649de458d7a0e5db3b2b00fc8c6a6", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/6f9c4338754649de458d7a0e5db3b2b00fc8c6a6.diff" + }, + "winforms@f75ac9a": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "f75ac9a7e9051d6c5e2728f0dfc2f629454afa73", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/f75ac9a7e9051d6c5e2728f0dfc2f629454afa73.diff" + }, + "winforms@6735caf": { + "repo": "winforms", + "branch": "release/11.0.1xx-preview3", + "hash": "6735caf8ee8ffc6e334595a25aff3f648796fb2f", + "org": "dotnet", + "url": "https://github.com/dotnet/winforms/commit/6735caf8ee8ffc6e334595a25aff3f648796fb2f.diff" + }, + "wpf@cdd7f11": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "cdd7f1100892ac9677d36c273b81a8178d6cb2b3", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/cdd7f1100892ac9677d36c273b81a8178d6cb2b3.diff" + }, + "wpf@d943aee": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "d943aeed94296fe8375262f388eae81d09c7035b", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/d943aeed94296fe8375262f388eae81d09c7035b.diff" + }, + "wpf@f407361": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "f4073618245e20b2c0b4178f49001f821270e282", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/f4073618245e20b2c0b4178f49001f821270e282.diff" + }, + "wpf@9e5051a": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "9e5051a7f70f2b0441687ccf6e37bdd343b0c90c", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/9e5051a7f70f2b0441687ccf6e37bdd343b0c90c.diff" + }, + "wpf@4fd3660": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "4fd3660c0f359c2d5505e155d0a6c9f5f2c57a76", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/4fd3660c0f359c2d5505e155d0a6c9f5f2c57a76.diff" + }, + "wpf@55362c4": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "55362c44cc282b69db6677ad61d58a3c8c191587", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/55362c44cc282b69db6677ad61d58a3c8c191587.diff" + }, + "wpf@24e938e": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "24e938ec3d1ed418e6d8eba80bc8def098e8a075", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/24e938ec3d1ed418e6d8eba80bc8def098e8a075.diff" + }, + "wpf@7b906fa": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "7b906fa0ebcf8d5d65e440752eea1eb9ceaf8996", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/7b906fa0ebcf8d5d65e440752eea1eb9ceaf8996.diff" + }, + "wpf@a9a1b14": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "a9a1b146e0453283f8721cc01566ae6b89526ef8", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/a9a1b146e0453283f8721cc01566ae6b89526ef8.diff" + }, + "wpf@3eeab6e": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "3eeab6e7956c91fff95889ec1a13e67b0f3593ae", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/3eeab6e7956c91fff95889ec1a13e67b0f3593ae.diff" + }, + "wpf@6972bbc": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "6972bbcfc747289771fa7a2c66e1225a73a5f10f", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/6972bbcfc747289771fa7a2c66e1225a73a5f10f.diff" + }, + "wpf@8b3b0b3": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "8b3b0b3d7c7299cea02a2935973857473f68e023", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/8b3b0b3d7c7299cea02a2935973857473f68e023.diff" + }, + "wpf@2e982f6": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "2e982f64e3db2129755ea8481aadf64d86023824", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/2e982f64e3db2129755ea8481aadf64d86023824.diff" + }, + "wpf@6e3b3d9": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "6e3b3d9ca22dbc89ab1d26ad80118f27df816fdc", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/6e3b3d9ca22dbc89ab1d26ad80118f27df816fdc.diff" + }, + "wpf@a56320a": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "a56320a1c552933f42d1feb9dbcf2df7ff086cce", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/a56320a1c552933f42d1feb9dbcf2df7ff086cce.diff" + }, + "wpf@9484c1c": { + "repo": "wpf", + "branch": "release/11.0.1xx-preview3", + "hash": "9484c1c170c5b03f6b8e2b4132c9e13d2be1286c", + "org": "dotnet", + "url": "https://github.com/dotnet/wpf/commit/9484c1c170c5b03f6b8e2b4132c9e13d2be1286c.diff" + }, + "dotnet@8b24ff4": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "8b24ff4c8312b7cd6e026a8cfea62c6af408b255", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/8b24ff4c8312b7cd6e026a8cfea62c6af408b255.diff" + }, + "dotnet@73edf32": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "73edf32f163e0f871258311bbfee37d49daa92af", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/73edf32f163e0f871258311bbfee37d49daa92af.diff" + }, + "dotnet@f69203c": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "f69203cfd4d103877f90f4f3447ec1a0b46df352", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/f69203cfd4d103877f90f4f3447ec1a0b46df352.diff" + }, + "dotnet@ecb6d9d": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "ecb6d9d75fd09e6421ee10f70657d574d19b3944", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/ecb6d9d75fd09e6421ee10f70657d574d19b3944.diff" + }, + "dotnet@a457158": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "a45715813e06ebddbd79d4f65c499a126c7a31ef", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/a45715813e06ebddbd79d4f65c499a126c7a31ef.diff" + }, + "dotnet@d3ae6e9": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "d3ae6e959e05c8817ef3057ac587e749d36afade", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/d3ae6e959e05c8817ef3057ac587e749d36afade.diff" + }, + "dotnet@c6946a8": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "c6946a8f76faa66bff351e1316eff81b41c90224", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/c6946a8f76faa66bff351e1316eff81b41c90224.diff" + }, + "dotnet@c463141": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "c4631417caea5d5f72d63619dbf5ea1634b26716", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/c4631417caea5d5f72d63619dbf5ea1634b26716.diff" + }, + "dotnet@7a05b89": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "7a05b893962264500f3d73b2b633fe896a9b44e2", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/7a05b893962264500f3d73b2b633fe896a9b44e2.diff" + }, + "dotnet@5b3fa07": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "5b3fa0749024d683a091aa06b2080f58340faa69", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/5b3fa0749024d683a091aa06b2080f58340faa69.diff" + }, + "dotnet@9cbf747": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "9cbf747fc6c2bf3b2416a38ae8495bda23792266", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/9cbf747fc6c2bf3b2416a38ae8495bda23792266.diff" + }, + "dotnet@9b01a55": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "9b01a55687d0f8a1b51f664014c647d87304208a", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/9b01a55687d0f8a1b51f664014c647d87304208a.diff" + }, + "dotnet@c7efe30": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "c7efe30730ed1014a9c7e718c4bd825b81b341f5", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/c7efe30730ed1014a9c7e718c4bd825b81b341f5.diff" + }, + "dotnet@e921c3d": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "e921c3d511279a7ed37f83dbd346019c5b3ffc0e", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/e921c3d511279a7ed37f83dbd346019c5b3ffc0e.diff" + }, + "dotnet@561e25b": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "561e25b2550ff7598d066e276272f274dcb7c9a7", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/561e25b2550ff7598d066e276272f274dcb7c9a7.diff" + }, + "dotnet@2615092": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "2615092a05c1f505f603fb4b389f7e38a1ad66fa", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/2615092a05c1f505f603fb4b389f7e38a1ad66fa.diff" + }, + "dotnet@36ea4de": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "36ea4de4a4409ace6bdf48c2dae2b6713f47c1b9", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/36ea4de4a4409ace6bdf48c2dae2b6713f47c1b9.diff" + }, + "dotnet@99f8332": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "99f833287ea37479368616d1de055453ac5643a8", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/99f833287ea37479368616d1de055453ac5643a8.diff" + }, + "dotnet@d9499bf": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "d9499bf3f2202585d5a1b6b9d7bdea9be12a9342", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/d9499bf3f2202585d5a1b6b9d7bdea9be12a9342.diff" + }, + "dotnet@9efe2b7": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "9efe2b70238fbb8d6a0ac5630e5404850fbfdb36", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/9efe2b70238fbb8d6a0ac5630e5404850fbfdb36.diff" + }, + "dotnet@93f3a33": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "93f3a33bb8c84ba42bc0654aef5c6002ec3e2509", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/93f3a33bb8c84ba42bc0654aef5c6002ec3e2509.diff" + }, + "dotnet@db38f08": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "db38f08708f1dea67c441a9586ff191e9efa785d", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/db38f08708f1dea67c441a9586ff191e9efa785d.diff" + }, + "dotnet@205078e": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "205078e7394ea4691e900ef674784f4ec7f775cc", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/205078e7394ea4691e900ef674784f4ec7f775cc.diff" + }, + "dotnet@e2ab8e7": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "e2ab8e74afde756e1d66e39a05bf5de4c7f3f7d3", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/e2ab8e74afde756e1d66e39a05bf5de4c7f3f7d3.diff" + }, + "dotnet@1fe064f": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "1fe064f67ae550e241ec34e9fa9261bd85b5844c", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/1fe064f67ae550e241ec34e9fa9261bd85b5844c.diff" + }, + "dotnet@cee323e": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "cee323e4510cfc76797c46fd4e8f8116edd4e2db", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/cee323e4510cfc76797c46fd4e8f8116edd4e2db.diff" + }, + "dotnet@f9f6ec2": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "f9f6ec2fc5a0947a1996e29da8187ad67d472984", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/f9f6ec2fc5a0947a1996e29da8187ad67d472984.diff" + }, + "dotnet@f494a49": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "f494a49ac7497bdde8623eba7acd75ebc18f14fe", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/f494a49ac7497bdde8623eba7acd75ebc18f14fe.diff" + }, + "dotnet@95a45c6": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "95a45c6885524317b783224082abf717239dff56", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/95a45c6885524317b783224082abf717239dff56.diff" + }, + "dotnet@491bbab": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "491bbab262d2f8179cf5f5651bc0689d9c12739a", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/491bbab262d2f8179cf5f5651bc0689d9c12739a.diff" + }, + "dotnet@d2f30e6": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "d2f30e67c93c1314ef9e9e3fe31f7074779ddd52", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/d2f30e67c93c1314ef9e9e3fe31f7074779ddd52.diff" + }, + "dotnet@44f7171": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "44f717137f37d3b75e99001d94de16d0188dd7eb", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/44f717137f37d3b75e99001d94de16d0188dd7eb.diff" + }, + "dotnet@17aaf56": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "17aaf561af94555a773922804c08d84420767fef", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/17aaf561af94555a773922804c08d84420767fef.diff" + }, + "dotnet@7535708": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "7535708a0413f28d73acfd77c742e272a4efcc0e", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/7535708a0413f28d73acfd77c742e272a4efcc0e.diff" + }, + "dotnet@6e01e62": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "6e01e622d4e3a501d258d6a38868e2391f7726f9", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/6e01e622d4e3a501d258d6a38868e2391f7726f9.diff" + }, + "dotnet@9d2430d": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "9d2430d02c3cb8086f6ec0ee345d6406819f8480", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/9d2430d02c3cb8086f6ec0ee345d6406819f8480.diff" + }, + "dotnet@9cbaa7e": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "9cbaa7edfde9f0cca76eefb14352f3c21e27e1e7", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/9cbaa7edfde9f0cca76eefb14352f3c21e27e1e7.diff" + }, + "dotnet@2b330ce": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "2b330ceb84daa38dbbc91eeffd8e2f75fcd8cacf", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/2b330ceb84daa38dbbc91eeffd8e2f75fcd8cacf.diff" + }, + "dotnet@51587e2": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "51587e2f3d5f86ca27184a6b5e8a778841d05b31", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/51587e2f3d5f86ca27184a6b5e8a778841d05b31.diff" + }, + "dotnet@605aaa9": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "605aaa9cd39a623ab4057bf18f89f8c1c12fce24", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/605aaa9cd39a623ab4057bf18f89f8c1c12fce24.diff" + }, + "dotnet@5d0ff92": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "5d0ff9248152371091e929c199e8d39583f01091", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/5d0ff9248152371091e929c199e8d39583f01091.diff" + }, + "dotnet@debd236": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "debd236427ff86bd22d9f3f2eeaea704e9d8872e", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/debd236427ff86bd22d9f3f2eeaea704e9d8872e.diff" + }, + "dotnet@a40fded": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "a40fdeda67bf0c25bd0b984717c832f7a058c424", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/a40fdeda67bf0c25bd0b984717c832f7a058c424.diff" + }, + "dotnet@c4221be": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "c4221be622e58eae845f10c6e6583205a40a51e3", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/c4221be622e58eae845f10c6e6583205a40a51e3.diff" + }, + "dotnet@352ee4c": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "352ee4cde5ef7c91a591c19faa517d3c81b24d3a", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/352ee4cde5ef7c91a591c19faa517d3c81b24d3a.diff" + }, + "dotnet@0f9b4fe": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "0f9b4feec391e7787b37ed1a61b8466f4a5f9729", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/0f9b4feec391e7787b37ed1a61b8466f4a5f9729.diff" + }, + "dotnet@ed58d9a": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "ed58d9a52d40d126be921003a82c93e1288130b5", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/ed58d9a52d40d126be921003a82c93e1288130b5.diff" + }, + "dotnet@f03ea81": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "f03ea813c3ccdaeb7ce7959e5291f32b44b50d04", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/f03ea813c3ccdaeb7ce7959e5291f32b44b50d04.diff" + }, + "dotnet@ee56b9a": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "ee56b9a0106c983775a0691bde4a4a988f4351d3", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/ee56b9a0106c983775a0691bde4a4a988f4351d3.diff" + }, + "dotnet@4f6fd25": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4f6fd2511d464af90003d1e8d531f0c2d1312cb9", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4f6fd2511d464af90003d1e8d531f0c2d1312cb9.diff" + }, + "dotnet@c12d1f5": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "c12d1f565f615d5d48ff443858a67ac148a3bd8b", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/c12d1f565f615d5d48ff443858a67ac148a3bd8b.diff" + }, + "dotnet@4c1c254": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4c1c2548faacf2102c7c3a8359a2d958f28c97f3", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4c1c2548faacf2102c7c3a8359a2d958f28c97f3.diff" + }, + "dotnet@803eb28": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "803eb28628f5623c108f1bf33504c86e19815821", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/803eb28628f5623c108f1bf33504c86e19815821.diff" + }, + "dotnet@b4ddb57": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "b4ddb578024538369fbdc9f413053bd681d9a164", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/b4ddb578024538369fbdc9f413053bd681d9a164.diff" + }, + "dotnet@bf0350c": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "bf0350cac3924f3e42ffa989df2c76da8ece3314", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/bf0350cac3924f3e42ffa989df2c76da8ece3314.diff" + }, + "dotnet@c5dbcf5": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "c5dbcf5d5f8368beaca06f2cc39f6f6af11cfc0e", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/c5dbcf5d5f8368beaca06f2cc39f6f6af11cfc0e.diff" + }, + "dotnet@591f22b": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "591f22b67e17d9fca2c67acae257124a2932bb32", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/591f22b67e17d9fca2c67acae257124a2932bb32.diff" + }, + "dotnet@86d7aba": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "86d7abad7c4d12966604b4cc64a93f62a1cd0a6e", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/86d7abad7c4d12966604b4cc64a93f62a1cd0a6e.diff" + }, + "dotnet@6c584d9": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "6c584d9ce4802d0c8ca7e586dd0999761efbb485", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/6c584d9ce4802d0c8ca7e586dd0999761efbb485.diff" + }, + "dotnet@dd9825a": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "dd9825aa898bd6f38255e8cf0d285922508a24bd", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/dd9825aa898bd6f38255e8cf0d285922508a24bd.diff" + }, + "dotnet@0697b32": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "0697b32947fb33989fe4e8357fbb8ce6f7ef155c", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/0697b32947fb33989fe4e8357fbb8ce6f7ef155c.diff" + }, + "dotnet@542fea6": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "542fea6988c173c64859bab06c9d2d100034843c", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/542fea6988c173c64859bab06c9d2d100034843c.diff" + }, + "dotnet@34a1648": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "34a1648fe82a4db2e0290769902a5087291de899", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/34a1648fe82a4db2e0290769902a5087291de899.diff" + }, + "dotnet@fb19a97": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "fb19a9736fe1fbfd110a2328938bb9429e5cfd59", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/fb19a9736fe1fbfd110a2328938bb9429e5cfd59.diff" + }, + "dotnet@646090b": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "646090b18e70dcac958f5b7be8c0af4170a5ac66", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/646090b18e70dcac958f5b7be8c0af4170a5ac66.diff" + }, + "dotnet@8103dd0": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "8103dd06c78454e497b78d2ff47ec668d42186ca", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/8103dd06c78454e497b78d2ff47ec668d42186ca.diff" + }, + "dotnet@8be2ae1": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "8be2ae1441bec4dd428335b8dc2d980541a7315a", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/8be2ae1441bec4dd428335b8dc2d980541a7315a.diff" + }, + "dotnet@1056a87": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "1056a872956c27b8861847dbc0e40fd23dcd94a3", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/1056a872956c27b8861847dbc0e40fd23dcd94a3.diff" + }, + "dotnet@5f4c69f": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "5f4c69f708466b44d4017a1fbae56140bc9688e1", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/5f4c69f708466b44d4017a1fbae56140bc9688e1.diff" + }, + "dotnet@e311f21": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "e311f219f20b9518f32c15b60cf284be155cce7b", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/e311f219f20b9518f32c15b60cf284be155cce7b.diff" + }, + "dotnet@da71424": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "da71424348a0814c50e17bad03c602afc3cec498", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/da71424348a0814c50e17bad03c602afc3cec498.diff" + }, + "dotnet@13db7a6": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "13db7a6c6b11c3246f107801b74714970bd29426", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/13db7a6c6b11c3246f107801b74714970bd29426.diff" + }, + "dotnet@7e7ab8a": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "7e7ab8af8a8921096d880968c90979825fda24b9", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/7e7ab8af8a8921096d880968c90979825fda24b9.diff" + }, + "dotnet@eca1665": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "eca16658ea4c47dabfb5a2a519a21a3f8a8f09c0", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/eca16658ea4c47dabfb5a2a519a21a3f8a8f09c0.diff" + }, + "dotnet@8cb849f": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "8cb849fd2f1935064aebffd6acb128eae6ca46bc", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/8cb849fd2f1935064aebffd6acb128eae6ca46bc.diff" + }, + "dotnet@d22e935": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "d22e93523cdf89610bd3ee7ce5533733ff2d49ea", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/d22e93523cdf89610bd3ee7ce5533733ff2d49ea.diff" + }, + "dotnet@4c361a5": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4c361a504c001d0870f531088c0f285007adeb35", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4c361a504c001d0870f531088c0f285007adeb35.diff" + }, + "dotnet@0061c2b": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "0061c2b191020c54b84b874f914bec92bb414384", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/0061c2b191020c54b84b874f914bec92bb414384.diff" + }, + "dotnet@435654e": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "435654e5061825b16b8a45ae7250cdb849a0ecdd", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/435654e5061825b16b8a45ae7250cdb849a0ecdd.diff" + }, + "dotnet@08797ec": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "08797ec284a9b6d6cdac3ee9166f94bb52bbba0b", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/08797ec284a9b6d6cdac3ee9166f94bb52bbba0b.diff" + }, + "dotnet@8abef4f": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "8abef4f45a60b0bfd82b7067a4c8d38903b8ea3b", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/8abef4f45a60b0bfd82b7067a4c8d38903b8ea3b.diff" + }, + "dotnet@c141211": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "c141211395bb21fdacc5c680d2c52c095e2ee721", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/c141211395bb21fdacc5c680d2c52c095e2ee721.diff" + }, + "dotnet@865f098": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "865f09801def155c0e8f6a14addbc82a48ebb9cd", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/865f09801def155c0e8f6a14addbc82a48ebb9cd.diff" + }, + "dotnet@6a24598": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "6a245985f3e09d4434aba4ac758841bcc96ca847", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/6a245985f3e09d4434aba4ac758841bcc96ca847.diff" + }, + "dotnet@893864c": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "893864cab20c747dc7c3e6eabb48b3b103be03ed", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/893864cab20c747dc7c3e6eabb48b3b103be03ed.diff" + }, + "dotnet@cb76c30": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "cb76c30e4fca44963b44bd3d9dc17ce330963bdc", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/cb76c30e4fca44963b44bd3d9dc17ce330963bdc.diff" + }, + "dotnet@41b5534": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "41b5534fb35f8e90bbed513ab5ca7d614bf1a176", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/41b5534fb35f8e90bbed513ab5ca7d614bf1a176.diff" + }, + "dotnet@5ff448a": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "5ff448a6425ec6980e08b5c9a35e454c8a843c35", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/5ff448a6425ec6980e08b5c9a35e454c8a843c35.diff" + }, + "dotnet@0088929": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "00889291c78c95ad52f492c5a120ccbdb600c079", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/00889291c78c95ad52f492c5a120ccbdb600c079.diff" + }, + "dotnet@b9fcd94": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "b9fcd941bf605c63018e28e2d9d195827465ed0b", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/b9fcd941bf605c63018e28e2d9d195827465ed0b.diff" + }, + "dotnet@5e22ce0": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "5e22ce0686f5c7b1c5892d160d2b129dfe7fc1c9", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/5e22ce0686f5c7b1c5892d160d2b129dfe7fc1c9.diff" + }, + "dotnet@1948989": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "1948989e277a41b84849a83c57f0637d685b0f09", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/1948989e277a41b84849a83c57f0637d685b0f09.diff" + }, + "dotnet@be7bfd8": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "be7bfd8f8355c4ec763e32315e7870ffc47c16b6", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/be7bfd8f8355c4ec763e32315e7870ffc47c16b6.diff" + }, + "dotnet@a2179ce": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "a2179ce864adb67e7639cc9322b55c2427545e0d", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/a2179ce864adb67e7639cc9322b55c2427545e0d.diff" + }, + "dotnet@e959381": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "e9593819ed84a62923fe87c8d0958025726934c3", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/e9593819ed84a62923fe87c8d0958025726934c3.diff" + }, + "dotnet@afb647c": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "afb647c559e070ce3123a7eeb61dc1bda07fd41f", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/afb647c559e070ce3123a7eeb61dc1bda07fd41f.diff" + }, + "dotnet@f7fe5df": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "f7fe5df7e4091dac0f650cea58e5d0b4acbf5808", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/f7fe5df7e4091dac0f650cea58e5d0b4acbf5808.diff" + }, + "dotnet@281ef27": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "281ef27878f6c0bf07abe7ca8944fb85618aaca2", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/281ef27878f6c0bf07abe7ca8944fb85618aaca2.diff" + }, + "dotnet@5f8ce37": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "5f8ce37be39cedc7948edb6d7481eadef8853e87", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/5f8ce37be39cedc7948edb6d7481eadef8853e87.diff" + }, + "dotnet@15791d9": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "15791d9a9a22e020417ddcd6f071cca7e228ad80", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/15791d9a9a22e020417ddcd6f071cca7e228ad80.diff" + }, + "dotnet@905a186": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "905a1861c44966a86becd40f7bf2ed25612cd751", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/905a1861c44966a86becd40f7bf2ed25612cd751.diff" + }, + "dotnet@9886077": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "98860779997368ef64c4450c3d74efc620cb8174", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/98860779997368ef64c4450c3d74efc620cb8174.diff" + }, + "dotnet@2cfc8f5": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "2cfc8f5bbd0acd7f9b39a5a96ecea4dcc58e7e3f", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/2cfc8f5bbd0acd7f9b39a5a96ecea4dcc58e7e3f.diff" + }, + "dotnet@3b3d683": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "3b3d6836ffa5ec5327d3105dfd6ac3117c072e5c", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/3b3d6836ffa5ec5327d3105dfd6ac3117c072e5c.diff" + }, + "dotnet@1394de1": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "1394de12e7353caf2c2aab97fe22fb621cee5148", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/1394de12e7353caf2c2aab97fe22fb621cee5148.diff" + }, + "dotnet@a4cbc2d": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "a4cbc2dff004a13a13476f571eb00f5b90d9b532", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/a4cbc2dff004a13a13476f571eb00f5b90d9b532.diff" + }, + "dotnet@267adfa": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "267adfa9250190524e438c4909a6b26c9bf703a0", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/267adfa9250190524e438c4909a6b26c9bf703a0.diff" + }, + "dotnet@4c6f71e": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4c6f71ed5b4744b1ba78eca2d379a61c467f06fb", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4c6f71ed5b4744b1ba78eca2d379a61c467f06fb.diff" + }, + "dotnet@58ab089": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "58ab089153a45fc40c73583d48c1537ff1384d88", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/58ab089153a45fc40c73583d48c1537ff1384d88.diff" + }, + "dotnet@43760d2": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "43760d22bfcbde60d1ceaed208f7dbec86a83ef6", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/43760d22bfcbde60d1ceaed208f7dbec86a83ef6.diff" + }, + "dotnet@8d610ff": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "8d610ff9469c1813733b65fa5d01747a0dd0521c", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/8d610ff9469c1813733b65fa5d01747a0dd0521c.diff" + }, + "dotnet@9125b13": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "9125b1394d3efb03c42d9120f9eb36325e5f80b7", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/9125b1394d3efb03c42d9120f9eb36325e5f80b7.diff" + }, + "dotnet@a66d14e": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "a66d14e1fcfc6474837f9c951759d049c380bc59", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/a66d14e1fcfc6474837f9c951759d049c380bc59.diff" + }, + "dotnet@370cba6": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "370cba60b0e878c49ce0c5dcced1cf0f43d604a2", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/370cba60b0e878c49ce0c5dcced1cf0f43d604a2.diff" + }, + "dotnet@08b4f88": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "08b4f885e14c565465e1c6981021dc738d98f099", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/08b4f885e14c565465e1c6981021dc738d98f099.diff" + }, + "dotnet@c722a3a": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "c722a3a09b101b590552cbb1b834b4076f67637b", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/c722a3a09b101b590552cbb1b834b4076f67637b.diff" + }, + "dotnet@23952a4": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "23952a414528e1fc23151321cacc06dc231ab81f", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/23952a414528e1fc23151321cacc06dc231ab81f.diff" + }, + "dotnet@4395a78": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4395a78b0d41bf01140b15333d35a7dddb08f5bb", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4395a78b0d41bf01140b15333d35a7dddb08f5bb.diff" + }, + "dotnet@4c9f444": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4c9f4449966c72b1c646db69990a475b8a19b21b", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4c9f4449966c72b1c646db69990a475b8a19b21b.diff" + }, + "dotnet@e405b1f": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "e405b1f8f787a96f20acc0f6bada26dd5704e51b", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/e405b1f8f787a96f20acc0f6bada26dd5704e51b.diff" + }, + "dotnet@85f49ae": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "85f49ae616c40c738c91ee7bc738daf3cc6bebfa", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/85f49ae616c40c738c91ee7bc738daf3cc6bebfa.diff" + }, + "dotnet@1b989af": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "1b989af698e6e1267434e4d3d25116b4b188b068", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/1b989af698e6e1267434e4d3d25116b4b188b068.diff" + }, + "dotnet@60a26bb": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "60a26bbb6d7564bc4082cd45f399c3e654f44e02", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/60a26bbb6d7564bc4082cd45f399c3e654f44e02.diff" + }, + "dotnet@5568120": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "5568120d34d41323d51052ad494de61f035fd132", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/5568120d34d41323d51052ad494de61f035fd132.diff" + }, + "dotnet@681a2b1": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "681a2b1cd33bd3805b2ccbf079931f996e644a67", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/681a2b1cd33bd3805b2ccbf079931f996e644a67.diff" + }, + "dotnet@b8a322b": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "b8a322b3ca6d9d072378f687677a52810643ee94", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/b8a322b3ca6d9d072378f687677a52810643ee94.diff" + }, + "dotnet@74c3eaa": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "74c3eaad1495a8a919a58aad6dbffed21529e4ae", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/74c3eaad1495a8a919a58aad6dbffed21529e4ae.diff" + }, + "dotnet@c15a55e": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "c15a55e509d0fede3a229515bbbbdccba3a1abf6", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/c15a55e509d0fede3a229515bbbbdccba3a1abf6.diff" + }, + "dotnet@7c48c5b": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "7c48c5b7310f16fde841851e34aa9f0be1c0d294", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/7c48c5b7310f16fde841851e34aa9f0be1c0d294.diff" + }, + "dotnet@4f7fd39": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4f7fd39e780b4b0b2f1c07e7368dd2a02527e466", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4f7fd39e780b4b0b2f1c07e7368dd2a02527e466.diff" + }, + "dotnet@8a523a7": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "8a523a75f75027836cf3f7a8ae21f5023a8bd17e", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/8a523a75f75027836cf3f7a8ae21f5023a8bd17e.diff" + }, + "dotnet@df311e5": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "df311e561f7f53880dfaa4b12df0eb75da8a7bce", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/df311e561f7f53880dfaa4b12df0eb75da8a7bce.diff" + }, + "dotnet@caa18ba": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "caa18baabf28496056547129c6a4bfbf11c8a0bd", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/caa18baabf28496056547129c6a4bfbf11c8a0bd.diff" + }, + "dotnet@252f779": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "252f7793357c8dc3e53acb6232124e224222948b", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/252f7793357c8dc3e53acb6232124e224222948b.diff" + }, + "dotnet@4b95540": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4b95540c28f893bdc92df3d42e5be211950c3d79", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4b95540c28f893bdc92df3d42e5be211950c3d79.diff" + }, + "dotnet@e10ada3": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "e10ada3237c5f7740818230e7d868985332eb590", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/e10ada3237c5f7740818230e7d868985332eb590.diff" + }, + "dotnet@f335787": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "f335787f98548568d306ef11825769d1557410df", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/f335787f98548568d306ef11825769d1557410df.diff" + }, + "dotnet@d9d6b9c": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "d9d6b9cf01c7a5a122ac7dfc7dae1247a23b272f", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/d9d6b9cf01c7a5a122ac7dfc7dae1247a23b272f.diff" + }, + "dotnet@b892348": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "b892348106bdc7898e113cd352ff6efda704c766", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/b892348106bdc7898e113cd352ff6efda704c766.diff" + }, + "dotnet@131a5cd": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "131a5cdd27e5181fe0dc84bf22cdddb6786c5bd1", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/131a5cdd27e5181fe0dc84bf22cdddb6786c5bd1.diff" + }, + "dotnet@856f699": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "856f69955c79a685a753283ea03701c4d04264ba", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/856f69955c79a685a753283ea03701c4d04264ba.diff" + }, + "dotnet@21d3994": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "21d39943141665df7666f286113ff39fc43a7a16", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/21d39943141665df7666f286113ff39fc43a7a16.diff" + }, + "dotnet@08e21da": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "08e21da2d882e5ae91f5fe0adf11568cb00c2d1e", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/08e21da2d882e5ae91f5fe0adf11568cb00c2d1e.diff" + }, + "dotnet@bce25ed": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "bce25ed4f3b8529ce5550e44a59efbe9ba9e4bef", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/bce25ed4f3b8529ce5550e44a59efbe9ba9e4bef.diff" + }, + "dotnet@30bf7b3": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "30bf7b358a934641d4efb0012e26d4f03b246da3", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/30bf7b358a934641d4efb0012e26d4f03b246da3.diff" + }, + "dotnet@8301b7f": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "8301b7f6edf2b41d5788651366b84753887c80ac", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/8301b7f6edf2b41d5788651366b84753887c80ac.diff" + }, + "dotnet@56dbb5a": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "56dbb5a6a0d7e01f365b6fdd14af10092ca3b626", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/56dbb5a6a0d7e01f365b6fdd14af10092ca3b626.diff" + }, + "dotnet@bebe99a": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "bebe99aee2529c25ffbfef835c70cc02ae59875d", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/bebe99aee2529c25ffbfef835c70cc02ae59875d.diff" + }, + "dotnet@86f9e88": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "86f9e8865b59d09ab526f8fd589db500510ab7d4", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/86f9e8865b59d09ab526f8fd589db500510ab7d4.diff" + }, + "dotnet@4230e45": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4230e45a2a328ced12d7af12004c4883fc61e111", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4230e45a2a328ced12d7af12004c4883fc61e111.diff" + }, + "dotnet@e95736f": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "e95736fe223fcbea38c903fae50e0dcfd07daf99", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/e95736fe223fcbea38c903fae50e0dcfd07daf99.diff" + }, + "dotnet@0b1d6b6": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "0b1d6b65a323ddf941a460036dd1bee6d3cc6e5a", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/0b1d6b65a323ddf941a460036dd1bee6d3cc6e5a.diff" + }, + "dotnet@4170dc2": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4170dc2d003242147aa0065dd669f7a5ac0f0135", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4170dc2d003242147aa0065dd669f7a5ac0f0135.diff" + }, + "dotnet@be4d18a": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "be4d18a35d49758c2269f8c54967a04ff2dcfeb8", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/be4d18a35d49758c2269f8c54967a04ff2dcfeb8.diff" + }, + "dotnet@5aace91": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "5aace91695c4d1979e7c65584283e1060a13e729", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/5aace91695c4d1979e7c65584283e1060a13e729.diff" + }, + "dotnet@a650f55": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "a650f5551c620b8386bf4cc401f08b05f4947753", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/a650f5551c620b8386bf4cc401f08b05f4947753.diff" + }, + "dotnet@747a8af": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "747a8af9c00fb01c96cbe215b5fc9a60f99a5ede", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/747a8af9c00fb01c96cbe215b5fc9a60f99a5ede.diff" + }, + "dotnet@81bdad2": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "81bdad2c5ef15e461e70a39473e0b98f079c4b08", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/81bdad2c5ef15e461e70a39473e0b98f079c4b08.diff" + }, + "dotnet@e2617a8": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "e2617a86b1878564f255be9aaa4c6127b427bf27", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/e2617a86b1878564f255be9aaa4c6127b427bf27.diff" + }, + "dotnet@7d1bae2": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "7d1bae26d15d95777f6ed6e93c7ce16336aeecc9", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/7d1bae26d15d95777f6ed6e93c7ce16336aeecc9.diff" + }, + "dotnet@11368ab": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "11368abb5b0db6cb7e55808344845fa799888f9a", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/11368abb5b0db6cb7e55808344845fa799888f9a.diff" + }, + "dotnet@3911028": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "3911028ad0d23877caa730c7e1ede873859e9ce7", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/3911028ad0d23877caa730c7e1ede873859e9ce7.diff" + }, + "dotnet@4a256fd": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4a256fddcd24a7e87f5c6cb71446395ce4179d31", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4a256fddcd24a7e87f5c6cb71446395ce4179d31.diff" + }, + "dotnet@7f6bb12": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "7f6bb12d679eddb06b4d768e4c120790316a4b2f", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/7f6bb12d679eddb06b4d768e4c120790316a4b2f.diff" + }, + "dotnet@a40e078": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "a40e0789da020543871fb776551c2cd7b0fbe98e", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/a40e0789da020543871fb776551c2cd7b0fbe98e.diff" + }, + "dotnet@ebc8503": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "ebc8503bf2c9083d23577f4f59534a5f3e1edb79", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/ebc8503bf2c9083d23577f4f59534a5f3e1edb79.diff" + }, + "dotnet@5902468": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "59024688febfd0fe35ce8c54cf413a4044b93d68", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/59024688febfd0fe35ce8c54cf413a4044b93d68.diff" + }, + "dotnet@1967d7a": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "1967d7a76d3911e984c0ca0503512ebbf0a523ff", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/1967d7a76d3911e984c0ca0503512ebbf0a523ff.diff" + }, + "dotnet@65db323": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "65db323b30df211f0a66ca9c5329df0d247f5e70", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/65db323b30df211f0a66ca9c5329df0d247f5e70.diff" + }, + "dotnet@4a405d7": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "4a405d7eb0846560c27d0dfa27931293cb80053c", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/4a405d7eb0846560c27d0dfa27931293cb80053c.diff" + }, + "dotnet@d8fa7f7": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "d8fa7f7a62276d7567dd042c229113e4bd26156d", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/d8fa7f7a62276d7567dd042c229113e4bd26156d.diff" + }, + "dotnet@55dc39b": { + "repo": "dotnet", + "branch": "release/11.0.1xx-preview3", + "hash": "55dc39bc7a6869153f80d6041fb6af39bd00ea64", + "org": "dotnet", + "url": "https://github.com/dotnet/dotnet/commit/55dc39bc7a6869153f80d6041fb6af39bd00ea64.diff" + } + } +} diff --git a/release-notes/11.0/preview/preview3/libraries.md b/release-notes/11.0/preview/preview3/libraries.md new file mode 100644 index 0000000000..8758afcef9 --- /dev/null +++ b/release-notes/11.0/preview/preview3/libraries.md @@ -0,0 +1,177 @@ +# .NET Libraries in .NET 11 Preview 3 - Release Notes + +.NET 11 Preview 3 includes new library features and reliability improvements: + +- [System.Text.Json offers more control over naming and ignore defaults](#systemtextjson-offers-more-control-over-naming-and-ignore-defaults) +- [Zstandard moved to System.IO.Compression and ZIP reads validate CRC32](#zstandard-moved-to-systemiocompression-and-zip-reads-validate-crc32) +- [SafeFileHandle and RandomAccess expand pipe support](#safefilehandle-and-randomaccess-expand-pipe-support) +- [Regex recognizes all Unicode newline sequences](#regex-recognizes-all-unicode-newline-sequences) +- [Breaking changes](#breaking-changes) +- [Bug fixes](#bug-fixes) +- [Community contributors](#community-contributors) + +.NET Libraries updates in .NET 11: + +- [What's new in .NET 11 libraries](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-11/libraries) + + + +## System.Text.Json offers more control over naming and ignore defaults + +Preview 3 expands the built-in naming and ignore options in `System.Text.Json`. +`JsonNamingPolicy.PascalCase` adds to the existing camel, snake, and kebab +presets, `[JsonNamingPolicy]` lets you override naming on individual members, +and type-level `[JsonIgnore(Condition = ...)]` lets a model set its default +ignore behavior in one place +([dotnet/runtime #124644](https://github.com/dotnet/runtime/pull/124644), +[dotnet/runtime #124645](https://github.com/dotnet/runtime/pull/124645), +[dotnet/runtime #124646](https://github.com/dotnet/runtime/pull/124646)). + +```csharp +using System.Text.Json; +using System.Text.Json.Serialization; + +[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] +public sealed class EventData +{ + [JsonNamingPolicy(JsonKnownNamingPolicy.CamelCase)] + public string EventName { get; set; } = ""; + + public string? Notes { get; set; } +} + +var options = new JsonSerializerOptions +{ + PropertyNamingPolicy = JsonNamingPolicy.PascalCase +}; +``` + +## Zstandard moved to System.IO.Compression and ZIP reads validate CRC32 + +The Zstandard APIs introduced earlier in .NET 11 now live in +`System.IO.Compression`, so they sit alongside `DeflateStream`, `GZipStream`, +and `BrotliStream` +([dotnet/runtime #124634](https://github.com/dotnet/runtime/pull/124634)). +Preview 3 also adds CRC32 validation when reading ZIP entries, which means +corrupted payloads now fail fast with `InvalidDataException` instead of being +silently accepted +([dotnet/runtime #124766](https://github.com/dotnet/runtime/pull/124766)). +If you used the earlier preview package, remove the separate +`System.IO.Compression.Zstandard` package reference. + +```diff +- +``` + +## SafeFileHandle and RandomAccess expand pipe support + +Preview 3 adds several low-level I/O updates. `SafeFileHandle.Type` reports +whether a handle is a file, pipe, socket, directory, or other OS object +([dotnet/runtime #124561](https://github.com/dotnet/runtime/pull/124561)). +`SafeFileHandle.CreateAnonymousPipe` creates pipe pairs with separate async +behavior for each end +([dotnet/runtime #125220](https://github.com/dotnet/runtime/pull/125220)), and +`RandomAccess.Read` / `Write` now work with non-seekable handles such as pipes +([dotnet/runtime #125512](https://github.com/dotnet/runtime/pull/125512)). On +Windows, `Process` now uses overlapped I/O for redirected stdout/stderr, which +reduces thread-pool blocking in process-heavy apps +([dotnet/runtime #125643](https://github.com/dotnet/runtime/pull/125643)). + +```csharp +using Microsoft.Win32.SafeHandles; +using System.IO; + +SafeFileHandle readEnd = null!; +SafeFileHandle writeEnd = null!; +SafeFileHandle.CreateAnonymousPipe(ref readEnd, ref writeEnd, true, false); + +Console.WriteLine(readEnd.Type); // Pipe +``` + +## Regex recognizes all Unicode newline sequences + +A new `RegexOptions.AnyNewLine` flag makes `^`, `$`, and `.` treat the full set +of Unicode newline characters as line terminators, not just `\n` +([dotnet/runtime #124701](https://github.com/dotnet/runtime/pull/124701)). This +helps when you parse text that may mix Windows, Unix, and Unicode-specific line +endings. Preview 3 also includes optimizer improvements for common regex +patterns. + +```csharp +using System.Text.RegularExpressions; + +string text = "line1\r\nline2\u0085line3\u2028line4"; + +var matches = Regex.Matches( + text, + @"^line\d$", + RegexOptions.Multiline | RegexOptions.AnyNewLine); +``` + + + +## Breaking changes + +- `ZipArchive` now validates CRC32 while reading entries. Corrupt or truncated + archives that previously slipped through may now throw + `InvalidDataException` + ([dotnet/runtime #124766](https://github.com/dotnet/runtime/pull/124766)). +- AIA certificate downloads are now disabled by default during server + client-certificate validation. If you depended on online AIA fetching, review + your validation setup + ([dotnet/runtime #125049](https://github.com/dotnet/runtime/pull/125049)). +- `TarWriter` now emits `HardLink` entries when the same hard-linked file is + archived more than once + ([dotnet/runtime #123874](https://github.com/dotnet/runtime/pull/123874)). + +## Bug fixes + +- **Dependency injection** + - Factory-based circular dependencies now throw a clear + `InvalidOperationException` instead of failing with a less helpful error + ([dotnet/runtime #124331](https://github.com/dotnet/runtime/pull/124331)). +- **Logging** + - The logging source generator now supports generic methods + ([dotnet/runtime #124638](https://github.com/dotnet/runtime/pull/124638)). +- **Networking** + - `HttpListener` on Windows can now control HTTP.sys kernel response buffering + ([dotnet/runtime #124720](https://github.com/dotnet/runtime/pull/124720)). + +## Community contributors + +Thank you contributors! ❤️ + +- [@am11](https://github.com/am11) +- [@ArcadeMode](https://github.com/ArcadeMode) +- [@DoctorKrolic](https://github.com/DoctorKrolic) +- [@gwr](https://github.com/gwr) +- [@haltandcatchwater](https://github.com/haltandcatchwater) +- [@jgh07](https://github.com/jgh07) +- [@jonathandavies-arm](https://github.com/jonathandavies-arm) +- [@karimsalem1](https://github.com/karimsalem1) +- [@koszeggy](https://github.com/koszeggy) +- [@kzrnm](https://github.com/kzrnm) +- [@laveeshb](https://github.com/laveeshb) +- [@lolleko](https://github.com/lolleko) +- [@lufen](https://github.com/lufen) +- [@martincostello](https://github.com/martincostello) +- [@matantsach](https://github.com/matantsach) +- [@Neo-vortex](https://github.com/Neo-vortex) +- [@pentp](https://github.com/pentp) +- [@prozolic](https://github.com/prozolic) +- [@RenderMichael](https://github.com/RenderMichael) +- [@rogerbriggen](https://github.com/rogerbriggen) +- [@Ruihan-Yin](https://github.com/Ruihan-Yin) +- [@rustamque](https://github.com/rustamque) +- [@sethjackson](https://github.com/sethjackson) +- [@ShreyaLaxminarayan](https://github.com/ShreyaLaxminarayan) +- [@Smaug123](https://github.com/Smaug123) +- [@teo-tsirpanis](https://github.com/teo-tsirpanis) +- [@tmds](https://github.com/tmds) +- [@Tomius](https://github.com/Tomius) +- [@ylpoonlg](https://github.com/ylpoonlg) +- [@Zurisen](https://github.com/Zurisen) diff --git a/release-notes/11.0/preview/preview3/runtime.md b/release-notes/11.0/preview/preview3/runtime.md new file mode 100644 index 0000000000..38f6f53770 --- /dev/null +++ b/release-notes/11.0/preview/preview3/runtime.md @@ -0,0 +1,130 @@ +# .NET Runtime in .NET 11 Preview 3 - Release Notes + +.NET 11 Preview 3 includes new runtime features and performance work: + +- [Runtime async removes the preview-API opt-in requirement](#runtime-async-removes-the-preview-api-opt-in-requirement) +- [JIT optimizations improve switches, bounds checks, and casts](#jit-optimizations-improve-switches-bounds-checks-and-casts) +- [Browser and WebAssembly add WebCIL and debugging improvements](#browser-and-webassembly-add-webcil-and-debugging-improvements) +- [Breaking changes](#breaking-changes) +- [Bug fixes](#bug-fixes) +- [Community contributors](#community-contributors) + +.NET Runtime updates in .NET 11: + +- [What's new in .NET 11 runtime](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-11/runtime) + + + +## Runtime async removes the preview-API opt-in requirement + +Runtime async still uses the `runtime-async=on` feature switch, but Preview 3 +removes the `[RequiresPreviewFeatures]` gate from its APIs. A `net11.0` +project no longer needs `true` +just to enable `runtime-async=on` +([dotnet/runtime #124488](https://github.com/dotnet/runtime/pull/124488)). + +Support for NativeAOT and ReadyToRun also landed in this preview +([dotnet/runtime #123952](https://github.com/dotnet/runtime/pull/123952), +[dotnet/runtime #124203](https://github.com/dotnet/runtime/pull/124203), +[dotnet/runtime #125420](https://github.com/dotnet/runtime/pull/125420)). +Follow-on work reuses continuation objects more aggressively and avoids saving +unchanged locals, which reduces allocation pressure in async-heavy code +([dotnet/runtime #125556](https://github.com/dotnet/runtime/pull/125556), +[dotnet/runtime #125615](https://github.com/dotnet/runtime/pull/125615)). + +```diff + + runtime-async=on +- true + +``` + +## JIT optimizations improve switches, bounds checks, and casts + +Preview 3 continues the steady JIT work that benefits normal code without any +source changes. Common patterns like multi-target `switch` expressions now fold +into simpler branchless checks +([dotnet/runtime #124567](https://github.com/dotnet/runtime/pull/124567)), +index-from-end access can drop more redundant bounds checks +([dotnet/runtime #124571](https://github.com/dotnet/runtime/pull/124571)), and +`uint` to `float` / `double` casts are faster on pre-AVX-512 x86 hardware +([dotnet/runtime #124114](https://github.com/dotnet/runtime/pull/124114)). + +Supporting compiler work lets the JIT apply these reductions across more +real-world code. + +```csharp +bool isSmall = x is 0 or 1 or 2 or 3 or 4; +int tail = values[^1] + values[^2]; +double d = someUint; +``` + +## Browser and WebAssembly add WebCIL and debugging improvements + +Preview 3 expands the browser/CoreCLR work with WebCIL payload loading +([dotnet/runtime #124758](https://github.com/dotnet/runtime/pull/124758), +[dotnet/runtime #124904](https://github.com/dotnet/runtime/pull/124904)), better +symbols and stack traces for debugging +([dotnet/runtime #124500](https://github.com/dotnet/runtime/pull/124500), +[dotnet/runtime #124483](https://github.com/dotnet/runtime/pull/124483)), and +marshal `float[]`, `Span`, and `ArraySegment` more directly across +JS boundaries +([dotnet/runtime #123642](https://github.com/dotnet/runtime/pull/123642)). + + + +## Breaking changes + +- Unhandled `BackgroundService` exceptions now propagate from the host instead of + being quietly swallowed + ([dotnet/runtime #124863](https://github.com/dotnet/runtime/pull/124863)). +- NativeAOT native-library outputs now use the conventional `lib` prefix on + Unix. If your scripts expected `MyLib.so`, update them to look for + `libMyLib.so` + ([dotnet/runtime #124611](https://github.com/dotnet/runtime/pull/124611)). + +## Bug fixes + +- **JIT** + - Fixed correctness issues around async save/restore, if-conversion, and + return-block cloning + ([dotnet/runtime #125044](https://github.com/dotnet/runtime/pull/125044), + [dotnet/runtime #125072](https://github.com/dotnet/runtime/pull/125072), + [dotnet/runtime #124642](https://github.com/dotnet/runtime/pull/124642)). +- **VM / runtime async** + - Fixed a race leak in runtime-async resumption stubs and a lock-level issue + that could deadlock under contention + ([dotnet/runtime #125407](https://github.com/dotnet/runtime/pull/125407), + [dotnet/runtime #125675](https://github.com/dotnet/runtime/pull/125675)). + +## Community contributors + +Thank you contributors! ❤️ + +- [@a74nh](https://github.com/a74nh) +- [@alexcovington](https://github.com/alexcovington) +- [@am11](https://github.com/am11) +- [@benaadams](https://github.com/benaadams) +- [@BoyBaykiller](https://github.com/BoyBaykiller) +- [@filipnavara](https://github.com/filipnavara) +- [@FixBo](https://github.com/FixBo) +- [@gbalykov](https://github.com/gbalykov) +- [@gwr](https://github.com/gwr) +- [@jonathandavies-arm](https://github.com/jonathandavies-arm) +- [@LuckyXu-HF](https://github.com/LuckyXu-HF) +- [@mrvoorhe](https://github.com/mrvoorhe) +- [@Pietrodjaowjao](https://github.com/Pietrodjaowjao) +- [@saucecontrol](https://github.com/saucecontrol) +- [@sethjackson](https://github.com/sethjackson) +- [@shushanhf](https://github.com/shushanhf) +- [@SingleAccretion](https://github.com/SingleAccretion) +- [@SkyShield](https://github.com/SkyShield) +- [@snickolls-arm](https://github.com/snickolls-arm) +- [@tmds](https://github.com/tmds) +- [@tpa95](https://github.com/tpa95) +- [@ylpoonlg](https://github.com/ylpoonlg) +- [@yykkibbb](https://github.com/yykkibbb) diff --git a/release-notes/11.0/preview/preview3/sdk.md b/release-notes/11.0/preview/preview3/sdk.md new file mode 100644 index 0000000000..2a92a36d96 --- /dev/null +++ b/release-notes/11.0/preview/preview3/sdk.md @@ -0,0 +1,100 @@ +# .NET SDK in .NET 11 Preview 3 - Release Notes + +.NET 11 Preview 3 includes new SDK and CLI improvements: + +- [Solution filters can now be edited from the CLI](#solution-filters-can-now-be-edited-from-the-cli) +- [File-based apps can be split across files](#file-based-apps-can-be-split-across-files) +- [`dotnet run -e` passes environment variables from the command line](#dotnet-run--e-passes-environment-variables-from-the-command-line) +- [`dotnet watch` adds Aspire, crash recovery, and Windows desktop improvements](#dotnet-watch-adds-aspire-crash-recovery-and-windows-desktop-improvements) +- [Other CLI improvements](#other-cli-improvements) +- [Bug fixes](#bug-fixes) +- [Community contributors](#community-contributors) + +.NET SDK updates in .NET 11: + +- [What's new in .NET 11](https://learn.microsoft.com/dotnet/core/whats-new/dotnet-11/sdk) + +## Solution filters can now be edited from the CLI + +`dotnet sln` can now create and edit solution filters (`.slnf`) directly from +the CLI ([dotnet/sdk #51156](https://github.com/dotnet/sdk/pull/51156)). This +lets large repositories load or build a subset of projects without changing the +main solution. + +```bash +dotnet sln MyApp.slnf add src/Lib/Lib.csproj +dotnet sln MyApp.slnf list +dotnet sln MyApp.slnf remove src/Lib/Lib.csproj +``` + +## File-based apps can be split across files + +File-based apps now support `#:include`, so shared helpers can move into +separate files without giving up the file-based workflow +([dotnet/sdk #52347](https://github.com/dotnet/sdk/pull/52347)). Roslyn also adds +editor completion for the directive +([dotnet/roslyn #82625](https://github.com/dotnet/roslyn/pull/82625)). + +```csharp +#:include helpers.cs +#:include models/customer.cs + +Console.WriteLine(Helpers.FormatOutput(new Customer())); +``` + +## `dotnet run -e` passes environment variables from the command line + +`dotnet run -e FOO=BAR` lets you pass environment variables from the command +line for local app runs, without requiring you to export shell state or edit +launch profiles ([dotnet/sdk #52664](https://github.com/dotnet/sdk/pull/52664)). +This keeps short-lived configuration overrides on the command line instead of +in shell state or launch settings. + +```bash +dotnet run -e ASPNETCORE_ENVIRONMENT=Development -e LOG_LEVEL=Debug +``` + +## `dotnet watch` adds Aspire, crash recovery, and Windows desktop improvements + +Preview 3 adds several `dotnet watch` updates for long-running local development +loops. It can now integrate with Aspire app hosts +([dotnet/sdk #53192](https://github.com/dotnet/sdk/pull/53192)), automatically +relaunch after a crash when the next relevant file change arrives +([dotnet/sdk #53314](https://github.com/dotnet/sdk/pull/53314)), and handle +Ctrl+C more gracefully for Windows desktop apps such as WinForms and WPF +([dotnet/sdk #53127](https://github.com/dotnet/sdk/pull/53127)). + +## Other CLI improvements + +- `dotnet format` now accepts `--framework` for multi-targeted projects + ([dotnet/sdk #53202](https://github.com/dotnet/sdk/pull/53202)). +- `dotnet test` in MTP mode now supports `--artifacts-path` + ([dotnet/sdk #53353](https://github.com/dotnet/sdk/pull/53353)). +- `dotnet tool exec` and `dnx` no longer stop for an extra approval prompt + ([dotnet/sdk #52956](https://github.com/dotnet/sdk/pull/52956)). + + + +## Bug fixes + +- Fixed `dotnet tool install --source` not being respected for global and local + tools ([dotnet/sdk #52787](https://github.com/dotnet/sdk/pull/52787)). +- Fixed `dotnet remove package` not recognizing the project argument + ([dotnet/sdk #53401](https://github.com/dotnet/sdk/pull/53401)). +- Fixed `NETSDK1005` when `dotnet run` targets a project that references + projects with different target frameworks + ([dotnet/sdk #53523](https://github.com/dotnet/sdk/pull/53523)). + +## Community contributors + +Thank you to all the community contributors who helped make this release +possible! 💜 + +- [@am11](https://github.com/am11) +- [@Hextaku](https://github.com/Hextaku) +- [@kasperk81](https://github.com/kasperk81) +- [@manfred-brands](https://github.com/manfred-brands) diff --git a/release-notes/features.json b/release-notes/features.json index 2a9fdc8b18..02e2bca1c3 100644 --- a/release-notes/features.json +++ b/release-notes/features.json @@ -7,8 +7,7 @@ "repos": ["roslyn", "runtime"], "preview_in": "11.0", "stable_in": "12.0", - "callout": "This is a preview feature for .NET 11.", - "notes": "Use the official name in headings and body copy. Keep aliases for matching only rather than as the default wording. Avoid generic phrasing such as 'Unsafe code adds ...'." + "callout": "Unsafe Evolution remains a preview feature in .NET 11." } ] }