[dotnet/main] Update dependencies from dotnet/cpython, dotnet/llvm-project#357
Merged
akoeplinger merged 11 commits intoJul 22, 2026
Merged
Conversation
…0612.1 On relative base path root runtime.osx-arm64.Microsoft.NETCore.Runtime.Wasm.Python.Transport , runtime.osx-x64.Microsoft.NETCore.Runtime.Wasm.Python.Transport , runtime.win-arm64.Microsoft.NETCore.Runtime.Wasm.Python.Transport , runtime.win-x64.Microsoft.NETCore.Runtime.Wasm.Python.Transport From Version 11.0.0-alpha.1.26308.1 -> To Version 11.0.0-alpha.1.26312.1
… 20260614.2 On relative base path root runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.linux-musl-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-musl-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools From Version 23.1.0-alpha.1.26261.2 -> To Version 23.1.0-alpha.1.26314.2
… 20260626.1 On relative base path root runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.linux-musl-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-musl-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools From Version 23.1.0-alpha.1.26261.2 -> To Version 23.1.0-alpha.1.26326.1
…0703.1 On relative base path root runtime.osx-arm64.Microsoft.NETCore.Runtime.Wasm.Python.Transport , runtime.osx-x64.Microsoft.NETCore.Runtime.Wasm.Python.Transport , runtime.win-arm64.Microsoft.NETCore.Runtime.Wasm.Python.Transport , runtime.win-x64.Microsoft.NETCore.Runtime.Wasm.Python.Transport From Version 11.0.0-alpha.1.26308.1 -> To Version 11.0.0-alpha.1.26353.1
… 20260629.1 On relative base path root runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.linux-musl-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-musl-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools From Version 23.1.0-alpha.1.26261.2 -> To Version 23.1.0-alpha.1.26329.1
… 20260707.1 On relative base path root runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.linux-musl-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-musl-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools From Version 23.1.0-alpha.1.26261.2 -> To Version 23.1.0-alpha.1.26357.1
…0715.1 On relative base path root runtime.osx-arm64.Microsoft.NETCore.Runtime.Wasm.Python.Transport , runtime.osx-x64.Microsoft.NETCore.Runtime.Wasm.Python.Transport , runtime.win-arm64.Microsoft.NETCore.Runtime.Wasm.Python.Transport , runtime.win-x64.Microsoft.NETCore.Runtime.Wasm.Python.Transport From Version 11.0.0-alpha.1.26308.1 -> To Version 11.0.0-alpha.1.26365.1
… 20260714.1 On relative base path root runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-musl-arm64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.linux-musl-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-musl-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools , runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Sdk , runtime.linux-x64.Microsoft.NETCore.Runtime.Mono.LLVM.Tools From Version 23.1.0-alpha.1.26261.2 -> To Version 23.1.0-alpha.1.26364.1
The libc++ update from the dotnet/llvm-project bump drops the transitive <vector> include (via <functional>) by default, so ncrypto.cc no longer compiles its std::vector uses. Include <vector> explicitly. Caused by upstream libc++ change 'Drop transitive includes by default': llvm/llvm-project#195509 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: f79fae9f-5c8f-4e6c-afa5-b2b12636025b
Member
|
This needed a small fix to react to upstream libc++ change 'Drop transitive includes by default': |
Same libc++ transitive-include drop from the dotnet/llvm-project bump: traced_value.cc uses std::fpclassify but relied on a transitive <cmath> include. Include it explicitly. Upstream libc++ change: llvm/llvm-project#195509 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: f79fae9f-5c8f-4e6c-afa5-b2b12636025b
Same libc++ transitive-include drop from the dotnet/llvm-project bump: pgo.h uses std::atomic<uint32_t> but relied on a transitive <atomic> include. Include it explicitly. Upstream libc++ change: llvm/llvm-project#195509 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: f79fae9f-5c8f-4e6c-afa5-b2b12636025b
akoeplinger
approved these changes
Jul 22, 2026
akoeplinger
enabled auto-merge (squash)
July 22, 2026 08:55
maraf
approved these changes
Jul 22, 2026
dotnet-maestro
Bot
deleted the
darc-dotnet/main-e0d9d803-d401-46a0-98a1-51766e5af60f
branch
July 22, 2026 09:39
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates the following dependencies
From https://github.com/dotnet/cpython
From https://github.com/dotnet/llvm-project