dotnet-maestro[bot] [Wed, 18 Oct 2023 13:28:42 +0000 (13:28 +0000)]
[main] Update dependencies from dotnet/runtime (#4340)
[main] Update dependencies from dotnet/runtime
dotnet-maestro[bot] [Wed, 18 Oct 2023 13:23:05 +0000 (13:23 +0000)]
[main] Update dependencies from microsoft/clrmd (#4339)
[main] Update dependencies from microsoft/clrmd
kkeirstead [Tue, 17 Oct 2023 20:59:18 +0000 (13:59 -0700)]
[Dotnet Monitor] Small Fix For SDM Triggers (#4332)
Small bug fix on the dotnet-monitor side from the unification work - we
previously didn't create a payload for `BeginInstrumentReporting`, and
thus only checked that a payload wasn't an error or the end of a
counter. The code now leverages the newly-added `IsValuePublishedEvent`
from the unification to only apply to the correct payloads.
dotnet-maestro[bot] [Tue, 17 Oct 2023 15:33:59 +0000 (08:33 -0700)]
[main] Update dependencies from dotnet/aspnetcore (#4333)
This pull request updates the following dependencies
[marker]: <> (Begin:
319094f3-ed78-47c4-53e7-
08d8e409d87d)
## From https://github.com/dotnet/aspnetcore
- **Subscription**:
319094f3-ed78-47c4-53e7-
08d8e409d87d
- **Build**:
20231016.6
- **Date Produced**: October 16, 2023 8:00:36 PM UTC
- **Commit**:
02bdf7077b8d96039bd39d6189a1abdefc41e65e
- **Branch**: refs/heads/release/8.0
[DependencyUpdate]: <> (Begin)
- **Updates**:
- **Microsoft.AspNetCore.App.Ref**: [from 8.0.0-rtm.23514.1 to
8.0.0-rtm.23516.6][1]
- **Microsoft.AspNetCore.App.Ref.Internal**: [from 8.0.0-rtm.23514.1 to
8.0.0-rtm.23516.6][1]
[1]:
https://github.com/dotnet/aspnetcore/compare/
faf594a066...
02bdf7077b
[DependencyUpdate]: <> (End)
[marker]: <> (End:
319094f3-ed78-47c4-53e7-
08d8e409d87d)
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
dotnet-maestro[bot] [Tue, 17 Oct 2023 13:45:57 +0000 (13:45 +0000)]
[main] Update dependencies from dotnet/source-build-reference-packages (#4336)
[main] Update dependencies from dotnet/source-build-reference-packages
dotnet-maestro[bot] [Tue, 17 Oct 2023 13:24:49 +0000 (13:24 +0000)]
[main] Update dependencies from dotnet/runtime (#4335)
[main] Update dependencies from dotnet/runtime
dotnet-maestro[bot] [Tue, 17 Oct 2023 13:24:38 +0000 (13:24 +0000)]
[main] Update dependencies from dotnet/symstore (#4334)
[main] Update dependencies from dotnet/symstore
dotnet-maestro[bot] [Mon, 16 Oct 2023 18:16:41 +0000 (18:16 +0000)]
[main] Update dependencies from dotnet/installer (#4331)
[main] Update dependencies from dotnet/installer
- Update Versions.props
dotnet-maestro[bot] [Mon, 16 Oct 2023 13:24:40 +0000 (13:24 +0000)]
[main] Update dependencies from dotnet/arcade (#4330)
[main] Update dependencies from dotnet/arcade
dotnet-maestro[bot] [Sun, 15 Oct 2023 13:10:32 +0000 (13:10 +0000)]
[main] Update dependencies from dotnet/aspnetcore (#4329)
[main] Update dependencies from dotnet/aspnetcore
Lee Culver [Sat, 14 Oct 2023 16:46:32 +0000 (09:46 -0700)]
Additional !maddress fixes (#4325)
More issues found by the GC team. With this fix the output of !maddress
now exactly lines of with GC data structures.
dotnet-maestro[bot] [Sat, 14 Oct 2023 13:22:52 +0000 (13:22 +0000)]
[main] Update dependencies from dotnet/runtime (#4328)
[main] Update dependencies from dotnet/runtime
dotnet-maestro[bot] [Sat, 14 Oct 2023 13:17:09 +0000 (13:17 +0000)]
[main] Update dependencies from microsoft/clrmd (#4327)
[main] Update dependencies from microsoft/clrmd
dotnet-maestro[bot] [Sat, 14 Oct 2023 13:16:29 +0000 (13:16 +0000)]
[main] Update dependencies from dotnet/aspnetcore (#4326)
[main] Update dependencies from dotnet/aspnetcore
Mikhail Kurinnoi [Fri, 13 Oct 2023 18:12:25 +0000 (21:12 +0300)]
Initial Patch for RISC-V support. (#4322)
Based on CoreCLR changes.
CC @clamp03 @wscho77 @HJLeee @JongHeonChoi @t-mustafin @gbalykov
dotnet-maestro[bot] [Fri, 13 Oct 2023 13:28:10 +0000 (13:28 +0000)]
[main] Update dependencies from microsoft/clrmd (#4321)
[main] Update dependencies from microsoft/clrmd
dotnet-maestro[bot] [Fri, 13 Oct 2023 13:27:22 +0000 (13:27 +0000)]
[main] Update dependencies from dotnet/aspnetcore (#4320)
[main] Update dependencies from dotnet/aspnetcore
Joe Schmitt [Thu, 12 Oct 2023 22:25:15 +0000 (15:25 -0700)]
Handle log messages with null state (#4319)
This PR addresses an issue were certain log messages could be dropped:
- A log message with placeholders can have an entirely null state (e.g.
`_logger.LogInformational("Test {A}", args: null)`). In this scenario,
the event source args payload will only contain the original format
string, not the null args.
- The current code assumes all placeholders will exist in the event
source args payload, which results in an exception being thrown and the
log message being dropped.
Lee Culver [Thu, 12 Oct 2023 18:59:35 +0000 (11:59 -0700)]
!maddress misattributes memory to the GC (#4318)
Fixes an issue reported by the GC team.
On windows, VirtualQuery information (bounds of allocated segments) is
very accurate in dumps because we have an entire segment of the dump
format which describes it. On Linux, it seems like we smash together
regions which came from two different calls of VirtualAlloc (well, the
Linux equivalent).
So, only use a heuristic of attributing regions of allocated memory on
Windows. Additionally, we are 100% accurate in reporting every byte of
memory that the GC allocates as of .Net 8. We shouldn't be ever using
this heuristic to attribute any memory to the GC.
dotnet-maestro[bot] [Thu, 12 Oct 2023 13:23:18 +0000 (13:23 +0000)]
[main] Update dependencies from dotnet/runtime (#4317)
[main] Update dependencies from dotnet/runtime
dotnet-maestro[bot] [Thu, 12 Oct 2023 13:21:58 +0000 (13:21 +0000)]
[main] Update dependencies from dotnet/aspnetcore (#4316)
[main] Update dependencies from dotnet/aspnetcore
kkeirstead [Wed, 11 Oct 2023 22:11:49 +0000 (15:11 -0700)]
Dotnet Counters + Dotnet Monitor Unification (#4254)
kkeirstead [Wed, 11 Oct 2023 14:10:55 +0000 (07:10 -0700)]
Dotnet Counters + Dotnet Monitor Unification - Automated `Collect` Testing (#4253)
dotnet-maestro[bot] [Wed, 11 Oct 2023 13:34:58 +0000 (13:34 +0000)]
[main] Update dependencies from dotnet/source-build-reference-packages (#4313)
[main] Update dependencies from dotnet/source-build-reference-packages
dotnet-maestro[bot] [Wed, 11 Oct 2023 13:28:01 +0000 (13:28 +0000)]
[main] Update dependencies from dotnet/aspnetcore (#4311)
[main] Update dependencies from dotnet/aspnetcore
dotnet-maestro[bot] [Wed, 11 Oct 2023 13:23:39 +0000 (13:23 +0000)]
[main] Update dependencies from microsoft/clrmd (#4312)
[main] Update dependencies from microsoft/clrmd
Maoni Stephens [Wed, 11 Oct 2023 02:11:08 +0000 (19:11 -0700)]
fix doc for fq -allReady (#4310)
fixing some incorrect info for the explaination of the -allReady arg for the !fq cmd.
dotnet-maestro[bot] [Tue, 10 Oct 2023 17:38:43 +0000 (10:38 -0700)]
[main] Update dependencies from dotnet/source-build-reference-packages (#4309)
This pull request updates the following dependencies
[marker]: <> (Begin:
8fefa124-13dd-4c66-7dae-
08d9c02d7834)
## From https://github.com/dotnet/source-build-reference-packages
- **Subscription**:
8fefa124-13dd-4c66-7dae-
08d9c02d7834
- **Build**:
20231009.2
- **Date Produced**: October 9, 2023 1:15:04 PM UTC
- **Commit**:
8a2f652b1f23d493fcce31b73e829de56df38d5f
- **Branch**: refs/heads/main
[DependencyUpdate]: <> (Begin)
- **Updates**:
-
**Microsoft.SourceBuild.Intermediate.source-build-reference-packages**:
[from 9.0.0-alpha.1.23502.1 to 9.0.0-alpha.1.23509.2][1]
[1]:
https://github.com/dotnet/source-build-reference-packages/compare/
05ffbf9df6...
8a2f652b1f
[DependencyUpdate]: <> (End)
[marker]: <> (End:
8fefa124-13dd-4c66-7dae-
08d9c02d7834)
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
dotnet-maestro[bot] [Tue, 10 Oct 2023 17:37:26 +0000 (10:37 -0700)]
[main] Update dependencies from dotnet/symstore (#4307)
This pull request updates the following dependencies
[marker]: <> (Begin:
678f7c5b-6647-4e77-0d75-
08d8e40a4c7c)
## From https://github.com/dotnet/symstore
- **Subscription**:
678f7c5b-6647-4e77-0d75-
08d8e40a4c7c
- **Build**:
20231009.1
- **Date Produced**: October 9, 2023 4:51:26 PM UTC
- **Commit**:
a3b341f9e61c8d8e832c4acfeb5b3a2305e51bcc
- **Branch**: refs/heads/main
[DependencyUpdate]: <> (Begin)
- **Updates**:
- **Microsoft.SymbolStore**: [from 1.0.446801 to 1.0.450901][1]
[1]: https://github.com/dotnet/symstore/compare/
8cc6f03fdb...
a3b341f9e6
[DependencyUpdate]: <> (End)
[marker]: <> (End:
678f7c5b-6647-4e77-0d75-
08d8e40a4c7c)
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
dotnet-maestro[bot] [Tue, 10 Oct 2023 13:26:51 +0000 (13:26 +0000)]
[main] Update dependencies from dotnet/runtime (#4308)
[main] Update dependencies from dotnet/runtime
dotnet-maestro[bot] [Tue, 10 Oct 2023 13:25:09 +0000 (13:25 +0000)]
[main] Update dependencies from dotnet/aspnetcore (#4305)
[main] Update dependencies from dotnet/aspnetcore
dotnet-maestro[bot] [Tue, 10 Oct 2023 13:20:52 +0000 (13:20 +0000)]
[main] Update dependencies from microsoft/clrmd (#4306)
[main] Update dependencies from microsoft/clrmd
Mike McLaughlin [Tue, 10 Oct 2023 04:49:51 +0000 (21:49 -0700)]
Re-enable dumpmt tests in OtherCommands.script (#4304)
Addresses issue #https://github.com/dotnet/diagnostics/issues/3516
Mike McLaughlin [Tue, 10 Oct 2023 00:43:52 +0000 (17:43 -0700)]
Remove SOS's CRT invalid parameter handler (#4303)
SOS does get built dynamically linking to the C++ CRT in release so the
invalid parameter handler that gets installed affects all the code in
the process.
Fixes issue: https://github.com/dotnet/diagnostics/issues/4070
dotnet-maestro[bot] [Mon, 9 Oct 2023 21:29:39 +0000 (14:29 -0700)]
[main] Update dependencies from dotnet/installer (#4301)
This pull request updates the following dependencies
[marker]: <> (Begin:
638f1194-0c1a-4d47-eb59-
08d8e4d5099b)
## From https://github.com/dotnet/installer
- **Subscription**:
638f1194-0c1a-4d47-eb59-
08d8e4d5099b
- **Build**:
20231006.1
- **Date Produced**: October 6, 2023 9:36:48 PM UTC
- **Commit**:
0ffc9fdc93e578268a09b0dccdc4c3527f4697f3
- **Branch**: refs/heads/release/8.0.1xx
[DependencyUpdate]: <> (Begin)
- **Updates**:
- **Microsoft.Dotnet.Sdk.Internal**: [from 8.0.100-rtm.23479.3 to
8.0.100-rtm.23506.1][1]
[1]: https://github.com/dotnet/installer/compare/
6dae8493a5...
0ffc9fdc93
[DependencyUpdate]: <> (End)
[marker]: <> (End:
638f1194-0c1a-4d47-eb59-
08d8e4d5099b)
---------
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Co-authored-by: Mike McLaughlin <mikem@microsoft.com>
dotnet-maestro[bot] [Mon, 9 Oct 2023 19:40:37 +0000 (19:40 +0000)]
[main] Update dependencies from dotnet/arcade (#4300)
[main] Update dependencies from dotnet/arcade
- Fix build from new analysis checks
dotnet-maestro[bot] [Sat, 7 Oct 2023 17:17:46 +0000 (10:17 -0700)]
[main] Update dependencies from dotnet/aspnetcore (#4298)
This pull request updates the following dependencies
[marker]: <> (Begin:
319094f3-ed78-47c4-53e7-
08d8e409d87d)
## From https://github.com/dotnet/aspnetcore
- **Subscription**:
319094f3-ed78-47c4-53e7-
08d8e409d87d
- **Build**:
20231006.5
- **Date Produced**: October 7, 2023 1:42:18 AM UTC
- **Commit**:
6bd37340c54e3b9690102886afca6198a461cb3e
- **Branch**: refs/heads/release/8.0
[DependencyUpdate]: <> (Begin)
- **Updates**:
- **Microsoft.AspNetCore.App.Ref**: [from 8.0.0-rtm.23505.1 to
8.0.0-rtm.23506.5][1]
- **Microsoft.AspNetCore.App.Ref.Internal**: [from 8.0.0-rtm.23505.1 to
8.0.0-rtm.23506.5][1]
[1]:
https://github.com/dotnet/aspnetcore/compare/
51f80c73e5...
6bd37340c5
[DependencyUpdate]: <> (End)
[marker]: <> (End:
319094f3-ed78-47c4-53e7-
08d8e409d87d)
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
dotnet-maestro[bot] [Sat, 7 Oct 2023 17:17:34 +0000 (10:17 -0700)]
[main] Update dependencies from dotnet/runtime (#4299)
This pull request updates the following dependencies
[marker]: <> (Begin:
e4bfb556-e13c-47f6-eb5a-
08d8e4d5099b)
## From https://github.com/dotnet/runtime
- **Subscription**:
e4bfb556-e13c-47f6-eb5a-
08d8e4d5099b
- **Build**:
20231006.12
- **Date Produced**: October 7, 2023 3:40:26 AM UTC
- **Commit**:
b17a34c818bd5e01fdb9827fea64727a5fc51025
- **Branch**: refs/heads/release/8.0
[DependencyUpdate]: <> (Begin)
- **Updates**:
- **Microsoft.NETCore.App.Runtime.win-x64**: [from 8.0.0-rtm.23504.8 to
8.0.0-rtm.23506.12][1]
- **VS.Redist.Common.NetCore.SharedFramework.x64.8.0**: [from
8.0.0-rtm.23504.8 to 8.0.0-rtm.23506.12][1]
[1]: https://github.com/dotnet/runtime/compare/
22b8a5665f...
b17a34c818
[DependencyUpdate]: <> (End)
[marker]: <> (End:
e4bfb556-e13c-47f6-eb5a-
08d8e4d5099b)
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
dotnet-maestro[bot] [Fri, 6 Oct 2023 13:23:01 +0000 (13:23 +0000)]
[main] Update dependencies from dotnet/aspnetcore (#4297)
[main] Update dependencies from dotnet/aspnetcore
Mike McLaughlin [Thu, 5 Oct 2023 23:39:39 +0000 (16:39 -0700)]
Use new ModuleInfo.TryCreateResourceRoot in DataReader impl (#4295)
Some test fixes to make them more reliable.
dotnet-maestro[bot] [Thu, 5 Oct 2023 17:12:36 +0000 (10:12 -0700)]
[main] Update dependencies from dotnet/aspnetcore (#4293)
This pull request updates the following dependencies
[marker]: <> (Begin:
319094f3-ed78-47c4-53e7-
08d8e409d87d)
## From https://github.com/dotnet/aspnetcore
- **Subscription**:
319094f3-ed78-47c4-53e7-
08d8e409d87d
- **Build**:
20231004.12
- **Date Produced**: October 4, 2023 8:08:32 PM UTC
- **Commit**:
91314b6bde6e9823f848fb37100aea5df4e44c99
- **Branch**: refs/heads/release/8.0
[DependencyUpdate]: <> (Begin)
- **Updates**:
- **Microsoft.AspNetCore.App.Ref**: [from 8.0.0-rtm.23503.8 to
8.0.0-rtm.23504.12][1]
- **Microsoft.AspNetCore.App.Ref.Internal**: [from 8.0.0-rtm.23503.8 to
8.0.0-rtm.23504.12][1]
[1]:
https://github.com/dotnet/aspnetcore/compare/
2d2f880867...
91314b6bde
[DependencyUpdate]: <> (End)
[marker]: <> (End:
319094f3-ed78-47c4-53e7-
08d8e409d87d)
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
dotnet-maestro[bot] [Thu, 5 Oct 2023 17:12:16 +0000 (10:12 -0700)]
[main] Update dependencies from dotnet/runtime (#4294)
This pull request updates the following dependencies
[marker]: <> (Begin:
e4bfb556-e13c-47f6-eb5a-
08d8e4d5099b)
## From https://github.com/dotnet/runtime
- **Subscription**:
e4bfb556-e13c-47f6-eb5a-
08d8e4d5099b
- **Build**:
20231004.8
- **Date Produced**: October 4, 2023 10:14:40 PM UTC
- **Commit**:
22b8a5665f5725a2c7bb09cfbe88f2cdc9847c1a
- **Branch**: refs/heads/release/8.0
[DependencyUpdate]: <> (Begin)
- **Updates**:
- **Microsoft.NETCore.App.Runtime.win-x64**: [from 8.0.0-rtm.23503.15 to
8.0.0-rtm.23504.8][1]
- **VS.Redist.Common.NetCore.SharedFramework.x64.8.0**: [from
8.0.0-rtm.23503.15 to 8.0.0-rtm.23504.8][1]
[1]: https://github.com/dotnet/runtime/compare/
a84f8ffbf5...
22b8a5665f
[DependencyUpdate]: <> (End)
[marker]: <> (End:
e4bfb556-e13c-47f6-eb5a-
08d8e4d5099b)
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
dotnet-maestro[bot] [Thu, 5 Oct 2023 17:12:05 +0000 (10:12 -0700)]
[main] Update dependencies from microsoft/clrmd (#4287)
This pull request updates the following dependencies
[marker]: <> (Begin:
cb58fe07-ae24-4e73-0e84-
08d8e40a189f)
## From https://github.com/microsoft/clrmd
- **Subscription**:
cb58fe07-ae24-4e73-0e84-
08d8e40a189f
- **Build**:
20231004.2
- **Date Produced**: October 4, 2023 10:57:18 PM UTC
- **Commit**:
10828baeeb7a144414259d9c00a9923c2fcb61e7
- **Branch**: refs/heads/main
[DependencyUpdate]: <> (Begin)
- **Updates**:
- **Microsoft.Diagnostics.Runtime**: [from 3.0.450101 to 3.1.450402][3]
- **Microsoft.Diagnostics.Runtime.Utilities**: [from 3.0.450101 to
3.1.450402][3]
[3]: https://github.com/microsoft/clrmd/compare/
1c8f0f18ea...
10828baeeb
[DependencyUpdate]: <> (End)
[marker]: <> (End:
cb58fe07-ae24-4e73-0e84-
08d8e40a189f)
---------
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Mike McLaughlin [Wed, 4 Oct 2023 23:17:50 +0000 (16:17 -0700)]
Command groups to support duplicate command names and better help support (#4285)
Add extension load testing that includes duplicate command names.
Add internal CommandGroup class to CommandService
dotnet-dump analyze -c/--command will exit on any parsing errors or
exceptions in the command
command help not displayed on parsing errors/invalid options
Add INIT_API_CHECK_MANAGED native SOS command macro
Rename clrmodules command to assemblies and keep clrmodules as an alias
Support static HelpInvoke/FilterInvoke methods
Add command service testing
Better command service help interface. Returns help text instead of
printing it on the console directly. ICommandService.DisplayHelp() =>
GetHelpText(). Better help sorting.
Fix some SOS scripts
Return error code for command line option errors in native SOS
Load next to executing assembly first when hosted under desktop
Framework
Test using "clrthreads" instead of "Threads"
Replace testing "u" with "clru"
Add more general command filter mechanism. Add FilterType property to
Command attribute. Remove OS filter command flags.
NativeAddressHelper service work
Move Windows managed command stubs to separate file
Add SOS.Hosting services to SOS.Extensions for better native command
help. This requires the special ManagedOnlyCommandFilter service to
prevent recursion of the C++ commands. On Windows this recursion is from
"C++ command" -> "checking if managed version" -> "executing the command
in SOS.Hosting" -> "C++ command".
Help is now uniform across managed/native, alphabetized and filtered by
the current runtime.
dotnet-maestro[bot] [Wed, 4 Oct 2023 15:55:51 +0000 (08:55 -0700)]
[main] Update dependencies from dotnet/runtime (#4292)
This pull request updates the following dependencies
[marker]: <> (Begin:
e4bfb556-e13c-47f6-eb5a-
08d8e4d5099b)
## From https://github.com/dotnet/runtime
- **Subscription**:
e4bfb556-e13c-47f6-eb5a-
08d8e4d5099b
- **Build**:
20231003.15
- **Date Produced**: October 4, 2023 5:51:18 AM UTC
- **Commit**:
a84f8ffbf5d597b8a91e893a1f413466de017a68
- **Branch**: refs/heads/release/8.0
[DependencyUpdate]: <> (Begin)
- **Updates**:
- **Microsoft.NETCore.App.Runtime.win-x64**: [from 8.0.0-rtm.23502.11 to
8.0.0-rtm.23503.15][1]
- **VS.Redist.Common.NetCore.SharedFramework.x64.8.0**: [from
8.0.0-rtm.23502.11 to 8.0.0-rtm.23503.15][1]
[1]: https://github.com/dotnet/runtime/compare/
ef6283ac0a...
a84f8ffbf5
[DependencyUpdate]: <> (End)
[marker]: <> (End:
e4bfb556-e13c-47f6-eb5a-
08d8e4d5099b)
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
dotnet-maestro[bot] [Wed, 4 Oct 2023 13:15:09 +0000 (13:15 +0000)]
[main] Update dependencies from dotnet/aspnetcore (#4291)
[main] Update dependencies from dotnet/aspnetcore
dotnet-maestro[bot] [Tue, 3 Oct 2023 16:29:48 +0000 (09:29 -0700)]
[main] Update dependencies from dotnet/runtime (#4288)
This pull request updates the following dependencies
[marker]: <> (Begin:
e4bfb556-e13c-47f6-eb5a-
08d8e4d5099b)
## From https://github.com/dotnet/runtime
- **Subscription**:
e4bfb556-e13c-47f6-eb5a-
08d8e4d5099b
- **Build**:
20231002.11
- **Date Produced**: October 3, 2023 11:06:54 AM UTC
- **Commit**:
ef6283ac0a14c78d9e9fef4841545099bd7ad12b
- **Branch**: refs/heads/release/8.0
[DependencyUpdate]: <> (Begin)
- **Updates**:
- **Microsoft.NETCore.App.Runtime.win-x64**: [from 8.0.0-rtm.23478.17 to
8.0.0-rtm.23502.11][1]
- **VS.Redist.Common.NetCore.SharedFramework.x64.8.0**: [from
8.0.0-rtm.23478.17 to 8.0.0-rtm.23502.11][1]
[1]: https://github.com/dotnet/runtime/compare/
b20f704cc0...
ef6283ac0a
[DependencyUpdate]: <> (End)
[marker]: <> (End:
e4bfb556-e13c-47f6-eb5a-
08d8e4d5099b)
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
dotnet-maestro[bot] [Tue, 3 Oct 2023 13:21:16 +0000 (13:21 +0000)]
[main] Update dependencies from dotnet/aspnetcore (#4286)
[main] Update dependencies from dotnet/aspnetcore
dotnet-maestro[bot] [Tue, 3 Oct 2023 13:14:33 +0000 (13:14 +0000)]
[main] Update dependencies from dotnet/source-build-reference-packages (#4289)
[main] Update dependencies from dotnet/source-build-reference-packages
Mike McLaughlin [Tue, 3 Oct 2023 00:28:43 +0000 (17:28 -0700)]
Add the "crashinfo" command for NativeAOT. (#4125)
Reads the JSON crash info from the triage buffer in the NativeAOT
runtime.
Adds a ICrashInfoService and SpecialDiagInfo helper class.
Mike McLaughlin [Mon, 2 Oct 2023 18:52:14 +0000 (11:52 -0700)]
Remove the symstore dependency from Microsoft.Diagnostics.DebugServices (#4279)
This is needed to reduce the conflicts/dependencies on loadable
extensions.
dotnet-maestro[bot] [Mon, 2 Oct 2023 18:31:12 +0000 (18:31 +0000)]
[main] Update dependencies from dotnet/installer (#4283)
[main] Update dependencies from dotnet/installer
- Update Versions.props
dotnet-maestro[bot] [Mon, 2 Oct 2023 13:05:32 +0000 (13:05 +0000)]
[main] Update dependencies from dotnet/aspnetcore (#4282)
[main] Update dependencies from dotnet/aspnetcore
dotnet-maestro[bot] [Mon, 2 Oct 2023 13:02:36 +0000 (13:02 +0000)]
[main] Update dependencies from microsoft/clrmd (#4281)
[main] Update dependencies from microsoft/clrmd
Johan Lorensson [Mon, 2 Oct 2023 09:25:27 +0000 (11:25 +0200)]
Improve dotnet-dsrouter log levels and info. (#4199)
* Add support for -v none, suppressing all logging making
dotnet-dsrouter quiet.
* Add support for --info option for new iOS/Android preconfig commands,
outputs details on how to configure app and diagnostic tools to connect
to current running dsrouter instance.
* Improve error handling when failing to find or execute adb binary.
* Specify and validate supported verbose logging levels.
dotnet-maestro[bot] [Sun, 1 Oct 2023 13:09:38 +0000 (13:09 +0000)]
[main] Update dependencies from dotnet/aspnetcore (#4280)
[main] Update dependencies from dotnet/aspnetcore
dotnet-maestro[bot] [Sat, 30 Sep 2023 18:31:39 +0000 (11:31 -0700)]
[main] Update dependencies from microsoft/clrmd (#4278)
This pull request updates the following dependencies
[marker]: <> (Begin:
cb58fe07-ae24-4e73-0e84-
08d8e40a189f)
## From https://github.com/microsoft/clrmd
- **Subscription**:
cb58fe07-ae24-4e73-0e84-
08d8e40a189f
- **Build**:
20230929.1
- **Date Produced**: September 29, 2023 3:41:14 PM UTC
- **Commit**:
547545a301475a7cfd23ce8c2f6e24eddf55d83e
- **Branch**: refs/heads/main
[DependencyUpdate]: <> (Begin)
- **Updates**:
- **Microsoft.Diagnostics.Runtime**: [from 3.0.447801 to 3.0.447901][1]
- **Microsoft.Diagnostics.Runtime.Utilities**: [from 3.0.447801 to
3.0.447901][1]
[1]: https://github.com/microsoft/clrmd/compare/
10e87fb192...
547545a301
[DependencyUpdate]: <> (End)
[marker]: <> (End:
cb58fe07-ae24-4e73-0e84-
08d8e40a189f)
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Eduardo Velarde [Sat, 30 Sep 2023 18:30:11 +0000 (11:30 -0700)]
Update SOS to show the relevant information for the !ThreadPool command when using the Windows thread pool (#4160)
Uses the properties exposed in
https://github.com/microsoft/clrmd/pull/1175 to show relevant Windows
thread pool information if it's enabled
---------
Co-authored-by: Mike McLaughlin <mikem@microsoft.com>
dotnet-maestro[bot] [Sat, 30 Sep 2023 13:55:29 +0000 (13:55 +0000)]
[main] Update dependencies from dotnet/aspnetcore (#4277)
[main] Update dependencies from dotnet/aspnetcore
Mike McLaughlin [Sat, 30 Sep 2023 00:22:13 +0000 (17:22 -0700)]
Fix build breaks (#4276)
dotnet-maestro[bot] [Fri, 29 Sep 2023 19:34:10 +0000 (12:34 -0700)]
[main] Update dependencies from microsoft/clrmd (#4274)
This pull request updates the following dependencies
[marker]: <> (Begin:
cb58fe07-ae24-4e73-0e84-
08d8e40a189f)
## From https://github.com/microsoft/clrmd
- **Subscription**:
cb58fe07-ae24-4e73-0e84-
08d8e40a189f
- **Build**:
20230928.1
- **Date Produced**: September 28, 2023 10:49:03 PM UTC
- **Commit**:
10e87fb192d41e22d5fd0fd54f02ed011726e991
- **Branch**: refs/heads/main
[DependencyUpdate]: <> (Begin)
- **Updates**:
- **Microsoft.Diagnostics.Runtime**: [from 3.0.447501 to 3.0.447801][1]
- **Microsoft.Diagnostics.Runtime.Utilities**: [from 3.0.447501 to
3.0.447801][1]
[1]: https://github.com/microsoft/clrmd/compare/
6d7c5a7288...
10e87fb192
[DependencyUpdate]: <> (End)
[marker]: <> (End:
cb58fe07-ae24-4e73-0e84-
08d8e40a189f)
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
dotnet-maestro[bot] [Fri, 29 Sep 2023 13:21:30 +0000 (13:21 +0000)]
[main] Update dependencies from dotnet/runtime (#4275)
[main] Update dependencies from dotnet/runtime
dotnet-maestro[bot] [Fri, 29 Sep 2023 13:00:18 +0000 (13:00 +0000)]
[main] Update dependencies from dotnet/aspnetcore (#4273)
[main] Update dependencies from dotnet/aspnetcore
Andrew Au [Thu, 28 Sep 2023 16:40:32 +0000 (09:40 -0700)]
Change Frozen object heap to NonGC heap in !EEHeap output (#4269)
dotnet-maestro[bot] [Thu, 28 Sep 2023 13:10:26 +0000 (13:10 +0000)]
[main] Update dependencies from dotnet/aspnetcore (#4270)
[main] Update dependencies from dotnet/aspnetcore
dotnet-maestro[bot] [Thu, 28 Sep 2023 13:06:12 +0000 (13:06 +0000)]
[main] Update dependencies from dotnet/runtime (#4271)
[main] Update dependencies from dotnet/runtime
dotnet-maestro[bot] [Wed, 27 Sep 2023 16:36:26 +0000 (09:36 -0700)]
[main] Update dependencies from dotnet/runtime (#4267)
This pull request updates the following dependencies
[marker]: <> (Begin:
e4bfb556-e13c-47f6-eb5a-
08d8e4d5099b)
## From https://github.com/dotnet/runtime
- **Subscription**:
e4bfb556-e13c-47f6-eb5a-
08d8e4d5099b
- **Build**:
20230926.15
- **Date Produced**: September 27, 2023 7:00:19 AM UTC
- **Commit**:
0933e300f0c0647a15a0433f1a3b07bcab9882f4
- **Branch**: refs/heads/release/8.0
[DependencyUpdate]: <> (Begin)
- **Updates**:
- **Microsoft.NETCore.App.Runtime.win-x64**: [from 8.0.0-rtm.23475.7 to
8.0.0-rtm.23476.15][1]
- **VS.Redist.Common.NetCore.SharedFramework.x64.8.0**: [from
8.0.0-rtm.23475.7 to 8.0.0-rtm.23476.15][1]
[1]: https://github.com/dotnet/runtime/compare/
a3d5300bae...
0933e300f0
[DependencyUpdate]: <> (End)
[marker]: <> (End:
e4bfb556-e13c-47f6-eb5a-
08d8e4d5099b)
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
dotnet-maestro[bot] [Wed, 27 Sep 2023 13:14:36 +0000 (13:14 +0000)]
[main] Update dependencies from dotnet/aspnetcore (#4266)
[main] Update dependencies from dotnet/aspnetcore
Mike McLaughlin [Wed, 27 Sep 2023 01:04:22 +0000 (18:04 -0700)]
Update Microsoft.DiaSymReader.Native version (#4265)
dotnet-maestro[bot] [Tue, 26 Sep 2023 17:44:50 +0000 (17:44 +0000)]
[main] Update dependencies from dotnet/installer (#4258)
[main] Update dependencies from dotnet/installer
- Update Versions.props
- Update Versions.props
dotnet-maestro[bot] [Tue, 26 Sep 2023 16:31:06 +0000 (09:31 -0700)]
[main] Update dependencies from dotnet/runtime (#4263)
This pull request updates the following dependencies
[marker]: <> (Begin:
e4bfb556-e13c-47f6-eb5a-
08d8e4d5099b)
## From https://github.com/dotnet/runtime
- **Subscription**:
e4bfb556-e13c-47f6-eb5a-
08d8e4d5099b
- **Build**:
20230925.7
- **Date Produced**: September 25, 2023 8:30:46 PM UTC
- **Commit**:
a3d5300baee03169bf737cfc4e9b1f7dbece4d05
- **Branch**: refs/heads/release/8.0
[DependencyUpdate]: <> (Begin)
- **Updates**:
- **Microsoft.NETCore.App.Runtime.win-x64**: [from 8.0.0-rtm.23472.12 to
8.0.0-rtm.23475.7][1]
- **VS.Redist.Common.NetCore.SharedFramework.x64.8.0**: [from
8.0.0-rtm.23472.12 to 8.0.0-rtm.23475.7][1]
[1]: https://github.com/dotnet/runtime/compare/
e95228dbcf...
a3d5300bae
[DependencyUpdate]: <> (End)
[marker]: <> (End:
e4bfb556-e13c-47f6-eb5a-
08d8e4d5099b)
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Thays Grazia [Tue, 26 Sep 2023 13:25:17 +0000 (10:25 -0300)]
Adding more parameters to connect to mono runtime (#4261)
Now it's tested on all platforms: Windows, Linux and Mac, connecting to
iOS and Android, devices and emulators.
dotnet-maestro[bot] [Tue, 26 Sep 2023 13:23:15 +0000 (13:23 +0000)]
[main] Update dependencies from dotnet/source-build-reference-packages (#4264)
[main] Update dependencies from dotnet/source-build-reference-packages
dotnet-maestro[bot] [Tue, 26 Sep 2023 13:15:06 +0000 (13:15 +0000)]
[main] Update dependencies from microsoft/clrmd (#4247)
[main] Update dependencies from microsoft/clrmd
dotnet-maestro[bot] [Tue, 26 Sep 2023 13:14:05 +0000 (13:14 +0000)]
[main] Update dependencies from dotnet/aspnetcore (#4262)
[main] Update dependencies from dotnet/aspnetcore
dotnet-maestro[bot] [Mon, 25 Sep 2023 17:04:39 +0000 (10:04 -0700)]
[main] Update dependencies from dotnet/aspnetcore (#4257)
This pull request updates the following dependencies
[marker]: <> (Begin:
319094f3-ed78-47c4-53e7-
08d8e409d87d)
## From https://github.com/dotnet/aspnetcore
- **Subscription**:
319094f3-ed78-47c4-53e7-
08d8e409d87d
- **Build**:
20230924.1
- **Date Produced**: September 24, 2023 4:06:30 PM UTC
- **Commit**:
d8a3aa870862d01a8b3a3235f8dd7fc951dd8ff4
- **Branch**: refs/heads/release/8.0
[DependencyUpdate]: <> (Begin)
- **Updates**:
- **Microsoft.AspNetCore.App.Ref**: [from 8.0.0-rtm.23471.8 to
8.0.0-rtm.23474.1][1]
- **Microsoft.AspNetCore.App.Ref.Internal**: [from 8.0.0-rtm.23471.8 to
8.0.0-rtm.23474.1][1]
[1]:
https://github.com/dotnet/aspnetcore/compare/
cca9840c7d...
d8a3aa8708
[DependencyUpdate]: <> (End)
[marker]: <> (End:
319094f3-ed78-47c4-53e7-
08d8e409d87d)
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
dotnet-maestro[bot] [Sat, 23 Sep 2023 13:15:47 +0000 (13:15 +0000)]
[main] Update dependencies from dotnet/source-build-reference-packages (#4256)
[main] Update dependencies from dotnet/source-build-reference-packages
dotnet-maestro[bot] [Sat, 23 Sep 2023 13:09:41 +0000 (13:09 +0000)]
[main] Update dependencies from dotnet/runtime (#4255)
[main] Update dependencies from dotnet/runtime
dotnet-maestro[bot] [Fri, 22 Sep 2023 17:18:50 +0000 (10:18 -0700)]
[main] Update dependencies from dotnet/aspnetcore (#4252)
This pull request updates the following dependencies
[marker]: <> (Begin:
319094f3-ed78-47c4-53e7-
08d8e409d87d)
## From https://github.com/dotnet/aspnetcore
- **Subscription**:
319094f3-ed78-47c4-53e7-
08d8e409d87d
- **Build**:
20230921.8
- **Date Produced**: September 21, 2023 10:39:05 PM UTC
- **Commit**:
cca9840c7d56a44dac424493a94365c7ac5f1427
- **Branch**: refs/heads/release/8.0
[DependencyUpdate]: <> (Begin)
- **Updates**:
- **Microsoft.AspNetCore.App.Ref**: [from 8.0.0-rtm.23470.10 to
8.0.0-rtm.23471.8][1]
- **Microsoft.AspNetCore.App.Ref.Internal**: [from 8.0.0-rtm.23470.10 to
8.0.0-rtm.23471.8][1]
[1]:
https://github.com/dotnet/aspnetcore/compare/
470af14260...
cca9840c7d
[DependencyUpdate]: <> (End)
[marker]: <> (End:
319094f3-ed78-47c4-53e7-
08d8e409d87d)
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
dotnet-maestro[bot] [Thu, 21 Sep 2023 18:22:31 +0000 (18:22 +0000)]
[main] Update dependencies from dotnet/aspnetcore (#4250)
[main] Update dependencies from dotnet/aspnetcore
dotnet-maestro[bot] [Thu, 21 Sep 2023 17:27:40 +0000 (17:27 +0000)]
[main] Update dependencies from dotnet/runtime (#4251)
[main] Update dependencies from dotnet/runtime
JongHeonChoi [Thu, 21 Sep 2023 16:54:05 +0000 (01:54 +0900)]
[RISC-V] Set the HAVE_FUNCTIONAL_PTHREAD_ROBUST_MUTEXES_EXITCOD value to 0 in RISCV64 (#4249)
https://github.com/dotnet/runtime/pull/92324
dotnet-maestro[bot] [Wed, 20 Sep 2023 13:16:51 +0000 (13:16 +0000)]
[main] Update dependencies from dotnet/runtime (#4248)
[main] Update dependencies from dotnet/runtime
dotnet-maestro[bot] [Tue, 19 Sep 2023 16:39:50 +0000 (09:39 -0700)]
[main] Update dependencies from dotnet/symstore (#4245)
This pull request updates the following dependencies
[marker]: <> (Begin:
678f7c5b-6647-4e77-0d75-
08d8e40a4c7c)
## From https://github.com/dotnet/symstore
- **Subscription**:
678f7c5b-6647-4e77-0d75-
08d8e40a4c7c
- **Build**:
20230918.1
- **Date Produced**: September 18, 2023 5:42:54 PM UTC
- **Commit**:
8cc6f03fdbd9c79f0bf9ffbe0a788dca1a81348a
- **Branch**: refs/heads/main
[DependencyUpdate]: <> (Begin)
- **Updates**:
- **Microsoft.SymbolStore**: [from 1.0.445401 to 1.0.446801][1]
[1]: https://github.com/dotnet/symstore/compare/
4827cdd43b...
8cc6f03fdb
[DependencyUpdate]: <> (End)
[marker]: <> (End:
678f7c5b-6647-4e77-0d75-
08d8e40a4c7c)
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
dotnet-maestro[bot] [Tue, 19 Sep 2023 13:35:57 +0000 (13:35 +0000)]
[main] Update dependencies from dotnet/source-build-reference-packages (#4246)
[main] Update dependencies from dotnet/source-build-reference-packages
dotnet-maestro[bot] [Tue, 19 Sep 2023 13:27:08 +0000 (13:27 +0000)]
[main] Update dependencies from microsoft/clrmd (#4244)
[main] Update dependencies from microsoft/clrmd
dotnet-maestro[bot] [Tue, 19 Sep 2023 13:26:26 +0000 (13:26 +0000)]
[main] Update dependencies from dotnet/aspnetcore (#4243)
[main] Update dependencies from dotnet/aspnetcore
dotnet-maestro[bot] [Mon, 18 Sep 2023 18:57:05 +0000 (18:57 +0000)]
[main] Update dependencies from dotnet/installer (#4242)
[main] Update dependencies from dotnet/installer
- Update Versions.props
dotnet-maestro[bot] [Mon, 18 Sep 2023 13:29:20 +0000 (13:29 +0000)]
[main] Update dependencies from dotnet/arcade (#4241)
[main] Update dependencies from dotnet/arcade
dotnet-maestro[bot] [Sun, 17 Sep 2023 13:11:33 +0000 (13:11 +0000)]
[main] Update dependencies from dotnet/runtime (#4238)
[main] Update dependencies from dotnet/runtime
dotnet-maestro[bot] [Sat, 16 Sep 2023 13:24:35 +0000 (13:24 +0000)]
[main] Update dependencies from dotnet/source-build-reference-packages (#4237)
[main] Update dependencies from dotnet/source-build-reference-packages
dotnet-maestro[bot] [Sat, 16 Sep 2023 13:17:12 +0000 (13:17 +0000)]
[main] Update dependencies from dotnet/runtime (#4236)
[main] Update dependencies from dotnet/runtime
dotnet-maestro[bot] [Sat, 16 Sep 2023 13:11:25 +0000 (13:11 +0000)]
[main] Update dependencies from dotnet/aspnetcore (#4235)
[main] Update dependencies from dotnet/aspnetcore
dotnet-maestro[bot] [Fri, 15 Sep 2023 17:00:40 +0000 (10:00 -0700)]
[main] Update dependencies from dotnet/source-build-reference-packages (#4234)
This pull request updates the following dependencies
[marker]: <> (Begin:
8fefa124-13dd-4c66-7dae-
08d9c02d7834)
## From https://github.com/dotnet/source-build-reference-packages
- **Subscription**:
8fefa124-13dd-4c66-7dae-
08d9c02d7834
- **Build**:
20230914.1
- **Date Produced**: September 14, 2023 4:36:51 PM UTC
- **Commit**:
41fe34a0b95c36e7683504852b708e538a13e36f
- **Branch**: refs/heads/main
[DependencyUpdate]: <> (Begin)
- **Updates**:
-
**Microsoft.SourceBuild.Intermediate.source-build-reference-packages**:
[from 9.0.0-alpha.1.23463.2 to 9.0.0-alpha.1.23464.1][1]
[1]:
https://github.com/dotnet/source-build-reference-packages/compare/
00e23a41d7...
41fe34a0b9
[DependencyUpdate]: <> (End)
[marker]: <> (End:
8fefa124-13dd-4c66-7dae-
08d9c02d7834)
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
dotnet-maestro[bot] [Fri, 15 Sep 2023 13:19:08 +0000 (13:19 +0000)]
[main] Update dependencies from dotnet/runtime (#4233)
[main] Update dependencies from dotnet/runtime
dotnet-maestro[bot] [Fri, 15 Sep 2023 13:18:21 +0000 (13:18 +0000)]
[main] Update dependencies from dotnet/aspnetcore (#4232)
[main] Update dependencies from dotnet/aspnetcore
dotnet-maestro[bot] [Thu, 14 Sep 2023 13:47:18 +0000 (13:47 +0000)]
[main] Update dependencies from dotnet/source-build-reference-packages (#4231)
[main] Update dependencies from dotnet/source-build-reference-packages
dotnet-maestro[bot] [Thu, 14 Sep 2023 13:27:50 +0000 (13:27 +0000)]
[main] Update dependencies from dotnet/runtime (#4230)
[main] Update dependencies from dotnet/runtime
dotnet-maestro[bot] [Thu, 14 Sep 2023 13:26:41 +0000 (13:26 +0000)]
[main] Update dependencies from dotnet/aspnetcore (#4229)
[main] Update dependencies from dotnet/aspnetcore
dotnet-maestro[bot] [Wed, 13 Sep 2023 13:41:21 +0000 (13:41 +0000)]
[main] Update dependencies from dotnet/source-build-reference-packages (#4228)
[main] Update dependencies from dotnet/source-build-reference-packages