dotnet-maestro[bot] [Sat, 5 Sep 2020 12:49:58 +0000 (12:49 +0000)]
Update dependencies from https://github.com/dotnet/installer build
20200904.3 (#1530)
[master] Update dependencies from dotnet/installer
- Updates:
- Microsoft.Dotnet.Sdk.Internal: from 5.0.100-rc.2.20453.8 to 5.0.100-rc.2.20454.3
chrisnas [Fri, 4 Sep 2020 17:49:14 +0000 (19:49 +0200)]
Add extended commands to dotnet-dump (#1514)
Add extended commands to dotnet-dump
- dump concurrent queue
- thread pool queue
Share TryParseAddress() between all commands to support hex address
with 0x... or 0000... format
Bump ClrMD version to 2.0.145301 and update the code accordingly
Replace commented code by link to source code
Co-authored-by: Christophe Nasarre <c.nasarresoulier@criteo.com>
dotnet-maestro[bot] [Fri, 4 Sep 2020 03:43:20 +0000 (03:43 +0000)]
Update dependencies from https://github.com/dotnet/installer build
20200903.8 (#1527)
[master] Update dependencies from dotnet/installer
- Updates:
- Microsoft.Dotnet.Sdk.Internal: from 5.0.100-rc.2.20453.6 to 5.0.100-rc.2.20453.8
dotnet-maestro[bot] [Fri, 4 Sep 2020 02:31:53 +0000 (02:31 +0000)]
Update dependencies from https://github.com/Microsoft/clrmd build
20200903.1 (#1526)
[master] Update dependencies from microsoft/clrmd
- Updates:
- Microsoft.Diagnostics.Runtime: from 2.0.142103 to 2.0.145301
- Microsoft.Diagnostics.Runtime.Utilities: from 2.0.142103 to 2.0.145301
Juan Hoyos [Thu, 3 Sep 2020 22:59:54 +0000 (15:59 -0700)]
Add dependencies on CLRMD and SDK (#1525)
* Add dependency information on CLRMD
* Add dependency on the SDK for testing
John Salem [Thu, 3 Sep 2020 16:39:46 +0000 (09:39 -0700)]
General Test Improvements (#1490)
* Enable environment test
* Use new diagnosticport config
* re-enable broken tests
* TestRunner uess newest DARC version
* Auto inject DARC version into C#
* Increase timeouts in reverse server tests
* modify how the target is invoked
* only generate darcversion file at build
* PR Feedback
dotnet-maestro[bot] [Thu, 3 Sep 2020 12:46:51 +0000 (12:46 +0000)]
Update dependencies from https://github.com/dotnet/runtime build
20200902.14 (#1523)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20451.14 to 5.0.0-rc.1.20452.14
Justin Anderson [Thu, 3 Sep 2020 00:19:33 +0000 (17:19 -0700)]
Bump dotnet-monitor to 5.0.0-preview.3.* (#1521)
dotnet-maestro[bot] [Wed, 2 Sep 2020 22:25:41 +0000 (22:25 +0000)]
[master] Update dependencies from dotnet/arcade (#1511)
[master] Update dependencies from dotnet/arcade
- Updates:
- Microsoft.DotNet.RemoteExecutor: from 5.0.0-beta.20419.21 to 5.0.0-beta.20427.5
- Microsoft.DotNet.Arcade.Sdk: from 5.0.0-beta.20419.21 to 5.0.0-beta.20427.5
- Fix arcade update build break by change from netappcore2.0 to netappcore2.1
dotnet-maestro[bot] [Wed, 2 Sep 2020 12:49:52 +0000 (12:49 +0000)]
[master] Update dependencies from dotnet/aspnetcore (#1516)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20430.3 to 5.0.0-rc.1.20451.17
dotnet-maestro[bot] [Wed, 2 Sep 2020 12:46:37 +0000 (12:46 +0000)]
Update dependencies from https://github.com/dotnet/runtime build
20200901.14 (#1520)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20431.18 to 5.0.0-rc.1.20451.14
Mike McLaughlin [Wed, 2 Sep 2020 00:28:27 +0000 (17:28 -0700)]
Fix SOS crashes in !dumpstack and !eestack (#1519)
Fix module version search and off-by-1 in module names API. Other misc cleanup.
Sung Yoon Whang [Tue, 1 Sep 2020 23:39:31 +0000 (16:39 -0700)]
fix UnixDomainSocketEndPoint exception on Mono (#1518)
dotnet-maestro[bot] [Tue, 1 Sep 2020 12:48:24 +0000 (12:48 +0000)]
Update dependencies from https://github.com/dotnet/symstore build
20200831.2 (#1517)
[master] Update dependencies from dotnet/symstore
- Updates:
- Microsoft.SymbolStore: from 1.0.142401 to 1.0.143102
dotnet-maestro[bot] [Tue, 1 Sep 2020 12:45:49 +0000 (12:45 +0000)]
Update dependencies from https://github.com/dotnet/runtime build
20200831.18 (#1515)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20430.6 to 5.0.0-rc.1.20431.18
Kirill Frolov [Tue, 1 Sep 2020 04:16:58 +0000 (07:16 +0300)]
Fix bug in SOS PrintManagedFrameContext (64-bit regs) (#1501)
The bug caused by the following:
At first -- Windows and Linux use different data models for 64-bit
computing: LLP64 and LP64. sizeof(long) have different values in both
models, and printf format specifiers required to print long values might
be different. For Linux PRIx (in inttypes.h) defined as "%lx", but it
isn't suitable for Windows. At same time PRIx is defined as "%llx" and
works for Linux too (because sizeof(long) == sizeof(long long) on 64-bit
Linux).
Second -- SOS code doesn't use standard functions from C library,
instead it uses own implementation from statically linked PAL library.
This library assumes LLP64 data model (where sizeof(long) ==
sizeof(int)), which is differs from LP64 model used in linux compiler's
defines, standard C-library include files, etc...
Due this incompatibility data values might be printed truncated on
Linux when using PRI... macro from stdint.h
To avoid truncation of printed values following is needed:
1) avoid using definitions from C-library (PRI... macro from inttypes.h);
2) don't print "long" data type as is, convert it to long long
and print with use "%ll..." format specifier.
Also see comments at line 180 in pal_mstypes.h
dotnet-maestro[bot] [Mon, 31 Aug 2020 16:15:01 +0000 (16:15 +0000)]
Update dependencies from https://github.com/dotnet/aspnetcore build
20200830.3 (#1513)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20429.8 to 5.0.0-rc.1.20430.3
dotnet-maestro[bot] [Mon, 31 Aug 2020 12:51:19 +0000 (12:51 +0000)]
Update dependencies from https://github.com/dotnet/runtime build
20200830.6 (#1512)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20429.3 to 5.0.0-rc.1.20430.6
dotnet-maestro[bot] [Sun, 30 Aug 2020 16:24:38 +0000 (16:24 +0000)]
Update dependencies from https://github.com/dotnet/runtime build
20200829.3 (#1509)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20428.9 to 5.0.0-rc.1.20429.3
dotnet-maestro[bot] [Sun, 30 Aug 2020 12:43:01 +0000 (12:43 +0000)]
Update dependencies from https://github.com/dotnet/aspnetcore build
20200829.8 (#1510)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20429.4 to 5.0.0-rc.1.20429.8
dotnet-maestro[bot] [Sat, 29 Aug 2020 12:53:30 +0000 (12:53 +0000)]
Update dependencies from https://github.com/dotnet/aspnetcore build
20200829.4 (#1508)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20427.9 to 5.0.0-rc.1.20429.4
dotnet-maestro[bot] [Sat, 29 Aug 2020 12:52:01 +0000 (12:52 +0000)]
Update dependencies from https://github.com/dotnet/runtime build
20200828.9 (#1507)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20427.16 to 5.0.0-rc.1.20428.9
Wiktor Kopec [Fri, 28 Aug 2020 16:22:53 +0000 (09:22 -0700)]
For nettrace files, we should disable response buffering to make sure that the file begins downloading as soon as the request starts, rather than when the tracing is finished. (#1495)
dotnet-maestro[bot] [Fri, 28 Aug 2020 12:57:44 +0000 (12:57 +0000)]
[master] Update dependencies from dotnet/aspnetcore (#1499)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20425.11 to 5.0.0-rc.1.20427.9
dotnet-maestro[bot] [Fri, 28 Aug 2020 12:56:29 +0000 (12:56 +0000)]
Update dependencies from https://github.com/dotnet/runtime build
20200827.16 (#1502)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20427.1 to 5.0.0-rc.1.20427.16
dotnet-maestro[bot] [Thu, 27 Aug 2020 19:44:07 +0000 (19:44 +0000)]
Update dependencies from https://github.com/dotnet/runtime build
20200827.1 (#1498)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20425.18 to 5.0.0-rc.1.20427.1
chrisnas [Wed, 26 Aug 2020 16:29:16 +0000 (18:29 +0200)]
Support timers for .NET Core 3+ (#1489)
Update to .NET Core 3.+ implementation of timers (add Short/Long timer information in output)
dotnet-maestro[bot] [Wed, 26 Aug 2020 12:50:21 +0000 (12:50 +0000)]
Update dependencies from https://github.com/dotnet/aspnetcore build
20200825.11 (#1493)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20425.3 to 5.0.0-rc.1.20425.11
dotnet-maestro[bot] [Wed, 26 Aug 2020 12:49:04 +0000 (12:49 +0000)]
Update dependencies from https://github.com/dotnet/runtime build
20200825.18 (#1492)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20425.1 to 5.0.0-rc.1.20425.18
dotnet-maestro[bot] [Tue, 25 Aug 2020 16:50:00 +0000 (16:50 +0000)]
Update dependencies from https://github.com/dotnet/runtime build
20200825.1 (#1484)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20423.8 to 5.0.0-rc.1.20425.1
dotnet-maestro[bot] [Tue, 25 Aug 2020 12:54:47 +0000 (12:54 +0000)]
Update dependencies from https://github.com/dotnet/symstore build
20200824.1 (#1486)
[master] Update dependencies from dotnet/symstore
- Updates:
- Microsoft.SymbolStore: from 1.0.142101 to 1.0.142401
dotnet-maestro[bot] [Tue, 25 Aug 2020 12:38:34 +0000 (12:38 +0000)]
Update dependencies from https://github.com/dotnet/aspnetcore build
20200825.3 (#1485)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20424.2 to 5.0.0-rc.1.20425.3
Mike McLaughlin [Tue, 25 Aug 2020 02:30:25 +0000 (19:30 -0700)]
Convert dotnet-dump and SOS to ClrMD 2.0 (#1476)
Convert to clrmd 2.0
Remove conditional on ClrMD2
Fix stack smashing on Linux
Mike McLaughlin [Tue, 25 Aug 2020 02:29:39 +0000 (19:29 -0700)]
Fix the dumpil /i on Linux (#1479)
On Linux/MacOS '/' isn't allowed as an option but the dumpil command had '/i'. The reason '/' is not allowed on xplat is that it caused problems parsing file paths as args. It most cases '-' is used except for this case and for the dml '/d' which isn't supported on lldb.
I'll fix it by adding -i as an option to dumpil and add it to the doc.
This also give me the chance to remove a bunch of unnecessary #ifndef FEATURE_PAL around the "/d" DML option.
Issue #https://github.com/dotnet/diagnostics/issues/1478
dotnet-maestro[bot] [Tue, 25 Aug 2020 02:06:47 +0000 (02:06 +0000)]
[master] Update dependencies from dotnet/runtime (#1472)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20412.8 to 5.0.0-rc.1.20423.8
Sung Yoon Whang [Tue, 25 Aug 2020 01:03:40 +0000 (18:03 -0700)]
Disable failing tests for darc update to come in (#1483)
Mike McLaughlin [Mon, 24 Aug 2020 20:51:04 +0000 (13:51 -0700)]
Update debugging-coredump.md (#1480)
Add the --debugging option to the dotnet-symbol directions.
dotnet-maestro[bot] [Mon, 24 Aug 2020 16:35:16 +0000 (16:35 +0000)]
[master] Update dependencies from dotnet/aspnetcore (#1475)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20421.11 to 5.0.0-rc.1.20424.2
dotnet-maestro[bot] [Mon, 24 Aug 2020 16:02:11 +0000 (16:02 +0000)]
Update dependencies from https://github.com/dotnet/arcade build
20200819.21 (#1477)
[master] Update dependencies from dotnet/arcade
- Updates:
- Microsoft.DotNet.RemoteExecutor: from 5.0.0-beta.20417.6 to 5.0.0-beta.20419.21
- Microsoft.DotNet.Arcade.Sdk: from 5.0.0-beta.20417.6 to 5.0.0-beta.20419.21
dotnet-maestro[bot] [Sat, 22 Aug 2020 16:58:18 +0000 (16:58 +0000)]
Update dependencies from https://github.com/dotnet/symstore build
20200821.1 (#1474)
[master] Update dependencies from dotnet/symstore
- Updates:
- Microsoft.SymbolStore: from 1.0.141801 to 1.0.142101
dotnet-maestro[bot] [Sat, 22 Aug 2020 12:33:56 +0000 (12:33 +0000)]
Update dependencies from https://github.com/dotnet/aspnetcore build
20200821.11 (#1473)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20420.8 to 5.0.0-rc.1.20421.11
John Salem [Sat, 22 Aug 2020 01:46:49 +0000 (18:46 -0700)]
Add process environment spec command and impl (#1465)
dotnet-maestro[bot] [Fri, 21 Aug 2020 17:44:28 +0000 (17:44 +0000)]
Update dependencies from https://github.com/dotnet/aspnetcore build
20200820.8 (#1463)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20419.22 to 5.0.0-rc.1.20420.8
chrisnas [Thu, 20 Aug 2020 21:36:19 +0000 (23:36 +0200)]
Add TaskState command to dotnet-dump (#1446)
Add TaskState command to dotnet-dump
dotnet-maestro[bot] [Thu, 20 Aug 2020 18:23:14 +0000 (18:23 +0000)]
Update dependencies from https://github.com/dotnet/aspnetcore build
20200819.22 (#1459)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20415.5 to 5.0.0-rc.1.20419.22
Mike McLaughlin [Wed, 19 Aug 2020 19:40:32 +0000 (12:40 -0700)]
Increase the LLDBPluginTests time to 10min (#1457)
Fixes Debug MacOS CI failures
dotnet-maestro[bot] [Wed, 19 Aug 2020 18:00:37 +0000 (18:00 +0000)]
Update dependencies from https://github.com/dotnet/symstore build
20200818.1 (#1455)
[master] Update dependencies from dotnet/symstore
- Updates:
- Microsoft.SymbolStore: from 1.0.141001 to 1.0.141801
Justin Anderson [Tue, 18 Aug 2020 23:40:42 +0000 (16:40 -0700)]
Build dotnet-monitor tool as ASP.NET Core 3.1 application. (#1420)
* Filter dotnet-monitor from available processes.
* Change port description to be supplied by options configuration.
* Enable synchronous IO on response output streams.
* Use Brotli compression instead of GZip.
Justin Anderson [Tue, 18 Aug 2020 22:07:24 +0000 (15:07 -0700)]
Separate accepting new connections from loop that listens for all connections. (#1417)
dotnet-maestro[bot] [Tue, 18 Aug 2020 16:49:57 +0000 (16:49 +0000)]
Update dependencies from https://github.com/dotnet/arcade build
20200817.6 (#1448)
[master] Update dependencies from dotnet/arcade
- Updates:
- Microsoft.DotNet.Arcade.Sdk: from 5.0.0-beta.20411.8 to 5.0.0-beta.20417.6
- Microsoft.DotNet.RemoteExecutor: from 5.0.0-beta.20411.8 to 5.0.0-beta.20417.6
John Salem [Tue, 18 Aug 2020 02:58:10 +0000 (19:58 -0700)]
handle case where streaming stops before usr input (#1445)
Youssef Victor [Mon, 17 Aug 2020 23:14:40 +0000 (01:14 +0200)]
Use markdown link syntax (#1443)
dotnet-maestro[bot] [Mon, 17 Aug 2020 22:27:08 +0000 (22:27 +0000)]
[master] Update dependencies from dotnet/arcade (#1426)
[master] Update dependencies from dotnet/arcade
- Updates:
- Microsoft.DotNet.Arcade.Sdk: from 5.0.0-beta.20374.1 to 5.0.0-beta.20411.8
- Microsoft.DotNet.RemoteExecutor: from 5.0.0-beta.20374.1 to 5.0.0-beta.20411.8
Justin Anderson [Mon, 17 Aug 2020 21:20:28 +0000 (14:20 -0700)]
Fix metrics snapshot to prevent modified collection exception. (#1444)
dotnet-maestro[bot] [Mon, 17 Aug 2020 16:41:32 +0000 (16:41 +0000)]
Update dependencies from https://github.com/dotnet/aspnetcore build
20200815.5 (#1442)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20414.12 to 5.0.0-rc.1.20415.5
dotnet-maestro[bot] [Sat, 15 Aug 2020 12:47:05 +0000 (12:47 +0000)]
Update dependencies from https://github.com/dotnet/aspnetcore build
20200814.12 (#1441)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20414.2 to 5.0.0-rc.1.20414.12
Sung Yoon Whang [Fri, 14 Aug 2020 21:20:55 +0000 (14:20 -0700)]
Fix diagnostics client test hang in CentOS (#1433)
* Try to repro test hang in CentOS release
* Try removing incorrect assert
* Add comment
dotnet-maestro[bot] [Fri, 14 Aug 2020 16:09:20 +0000 (16:09 +0000)]
[master] Update dependencies from dotnet/aspnetcore (#1435)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20411.10 to 5.0.0-rc.1.20414.2
Juan Hoyos [Fri, 14 Aug 2020 04:32:09 +0000 (21:32 -0700)]
Fix module-by-name lookup (#1437)
dotnet-maestro[bot] [Thu, 13 Aug 2020 14:59:51 +0000 (14:59 +0000)]
Update dependencies from https://github.com/dotnet/runtime build
20200812.8 (#1434)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20411.5 to 5.0.0-rc.1.20412.8
dotnet-maestro[bot] [Wed, 12 Aug 2020 17:39:11 +0000 (17:39 +0000)]
Update dependencies from https://github.com/dotnet/runtime build
20200811.5 (#1431)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20410.10 to 5.0.0-rc.1.20411.5
dotnet-maestro[bot] [Wed, 12 Aug 2020 12:42:38 +0000 (12:42 +0000)]
Update dependencies from https://github.com/dotnet/aspnetcore build
20200811.10 (#1432)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20410.6 to 5.0.0-rc.1.20411.10
Sung Yoon Whang [Tue, 11 Aug 2020 23:56:57 +0000 (16:56 -0700)]
Update incorrect TraceEvent usage in diagnostics client library docs (#1415)
dotnet-maestro[bot] [Tue, 11 Aug 2020 23:01:56 +0000 (23:01 +0000)]
Update dependencies from https://github.com/dotnet/runtime build
20200810.10 (#1429)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20409.3 to 5.0.0-rc.1.20410.10
dotnet-maestro[bot] [Tue, 11 Aug 2020 16:31:04 +0000 (16:31 +0000)]
Update dependencies from https://github.com/dotnet/symstore build
20200810.1 (#1430)
[master] Update dependencies from dotnet/symstore
- Updates:
- Microsoft.SymbolStore: from 1.0.140301 to 1.0.141001
dotnet-maestro[bot] [Tue, 11 Aug 2020 12:47:35 +0000 (12:47 +0000)]
[master] Update dependencies from dotnet/aspnetcore (#1424)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20405.9 to 5.0.0-rc.1.20410.6
Mike McLaughlin [Tue, 11 Aug 2020 03:52:05 +0000 (20:52 -0700)]
Misc SOS changes (#1428)
Misc changes
Fix coreclr reload message for linux dumps on Windows
Fallback to getting assembly name (like when SOS is running on Linux/OSX) when building a function name when either GetModuleByteOffset or GetModuleNames fail.
Add target based get directory separator char function (GetTargetDirectorySeparatorW) to use in the linux module name returned by dbgeng for linux core dumps on Windows.
dotnet-maestro[bot] [Mon, 10 Aug 2020 12:41:05 +0000 (12:41 +0000)]
Update dependencies from https://github.com/dotnet/runtime build
20200809.3 (#1427)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20408.3 to 5.0.0-rc.1.20409.3
dotnet-maestro[bot] [Sun, 9 Aug 2020 12:40:51 +0000 (12:40 +0000)]
Update dependencies from https://github.com/dotnet/runtime build
20200808.3 (#1423)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20406.11 to 5.0.0-rc.1.20408.3
Justin Anderson [Fri, 7 Aug 2020 20:42:23 +0000 (13:42 -0700)]
Allow process selection using runtime instance cookie. (#1414)
dotnet-maestro[bot] [Fri, 7 Aug 2020 17:18:31 +0000 (17:18 +0000)]
Update dependencies from https://github.com/dotnet/runtime build
20200806.11 (#1416)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20405.17 to 5.0.0-rc.1.20406.11
Justin Anderson [Thu, 6 Aug 2020 18:46:34 +0000 (11:46 -0700)]
Add reversed diagnostics server, endpoints, and endpoint sources. (#1303)
Add reversed diagnostics server and endpoint information.
Add diagnostics endpoint source for unifying server and client connections into same contract.
Consume endpoint source in dotnet-monitor.
Add unit tests for reversed server, endpoints, and endpoint source concepts.
dotnet-maestro[bot] [Thu, 6 Aug 2020 12:47:04 +0000 (12:47 +0000)]
Update dependencies from https://github.com/dotnet/runtime build
20200805.17 (#1410)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20404.16 to 5.0.0-rc.1.20405.17
dotnet-maestro[bot] [Thu, 6 Aug 2020 12:42:45 +0000 (12:42 +0000)]
Update dependencies from https://github.com/dotnet/aspnetcore build
20200805.9 (#1411)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20404.11 to 5.0.0-rc.1.20405.9
dotnet-maestro[bot] [Wed, 5 Aug 2020 12:47:26 +0000 (12:47 +0000)]
Update dependencies from https://github.com/dotnet/aspnetcore build
20200804.11 (#1407)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20403.8 to 5.0.0-rc.1.20404.11
dotnet-maestro[bot] [Wed, 5 Aug 2020 12:41:16 +0000 (12:41 +0000)]
Update dependencies from https://github.com/dotnet/runtime build
20200804.16 (#1406)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20402.3 to 5.0.0-rc.1.20404.16
Sung Yoon Whang [Wed, 5 Aug 2020 00:51:30 +0000 (17:51 -0700)]
Add GC heap fragmentation counter to known list of counters (#1404)
dotnet-maestro[bot] [Tue, 4 Aug 2020 17:32:19 +0000 (17:32 +0000)]
[master] Update dependencies from dotnet/aspnetcore (#1400)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20381.8 to 5.0.0-rc.1.20403.8
Sung Yoon Whang [Mon, 3 Aug 2020 21:50:13 +0000 (14:50 -0700)]
Add --runtime-version flag to dotnet-counters list command (#1369)
* Add --runtime-version flag to dotnet-counters list command
* Change POH counter to 5.0 only, active-timer to 3.0, 3.1, 5.0
* change default version to 3.1
* Change help text
* PR feedback
Will Speak [Mon, 3 Aug 2020 19:37:12 +0000 (20:37 +0100)]
Use 24 Hour Time in Default Output Format (#1285)
This ensures that collection taken in the afternoon are sorted after
those taken in the morning.
dotnet-maestro[bot] [Mon, 3 Aug 2020 15:21:38 +0000 (15:21 +0000)]
Update dependencies from https://github.com/dotnet/symstore build
20200803.1 (#1401)
[master] Update dependencies from dotnet/symstore
- Updates:
- Microsoft.SymbolStore: from 1.0.136501 to 1.0.140301
dotnet-maestro[bot] [Mon, 3 Aug 2020 15:13:14 +0000 (15:13 +0000)]
Update dependencies from https://github.com/dotnet/runtime build
20200802.3 (#1399)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20401.1 to 5.0.0-rc.1.20402.3
dotnet-maestro[bot] [Sat, 1 Aug 2020 16:47:34 +0000 (16:47 +0000)]
Update dependencies from https://github.com/dotnet/aspnetcore build
20200731.8 (#1396)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20380.7 to 5.0.0-rc.1.20381.8
dotnet-maestro[bot] [Sat, 1 Aug 2020 12:34:58 +0000 (12:34 +0000)]
Update dependencies from https://github.com/dotnet/runtime build
20200801.1 (#1395)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20380.20 to 5.0.0-rc.1.20401.1
chrisnas [Sat, 1 Aug 2020 01:07:21 +0000 (03:07 +0200)]
Allow dotnet-trace to be used while the input/output is redirected (#1348)
Co-authored-by: Christophe Nasarre <c.nasarresoulier@criteo.com>
dotnet-maestro[bot] [Fri, 31 Jul 2020 18:13:55 +0000 (18:13 +0000)]
Update dependencies from https://github.com/dotnet/runtime build
20200730.20 (#1393)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20380.1 to 5.0.0-rc.1.20380.20
dotnet-maestro[bot] [Fri, 31 Jul 2020 18:09:10 +0000 (18:09 +0000)]
Update dependencies from https://github.com/dotnet/aspnetcore build
20200730.7 (#1394)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20379.14 to 5.0.0-rc.1.20380.7
dotnet-maestro[bot] [Thu, 30 Jul 2020 20:57:38 +0000 (20:57 +0000)]
Update dependencies from https://github.com/dotnet/arcade build
20200724.1 (#1392)
[master] Update dependencies from dotnet/arcade
- Updates:
- Microsoft.DotNet.RemoteExecutor: from 5.0.0-beta.20364.3 to 5.0.0-beta.20374.1
- Microsoft.DotNet.Arcade.Sdk: from 5.0.0-beta.20364.3 to 5.0.0-beta.20374.1
dotnet-maestro[bot] [Thu, 30 Jul 2020 12:49:09 +0000 (12:49 +0000)]
Update dependencies from https://github.com/dotnet/aspnetcore build
20200729.14 (#1391)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20377.3 to 5.0.0-rc.1.20379.14
dotnet-maestro[bot] [Thu, 30 Jul 2020 12:38:46 +0000 (12:38 +0000)]
Update dependencies from https://github.com/dotnet/runtime build
20200730.1 (#1390)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20371.13 to 5.0.0-rc.1.20380.1
Youssef Victor [Thu, 30 Jul 2020 00:06:21 +0000 (02:06 +0200)]
Fix typos (#1388)
* Add missing "for" word
* Update CollectCommandHandler.cs
* Fix typo in --process-id description
* Update CollectCommandHandler.cs
* Update Program.cs
* Update ReportCommandHandler.cs
* Changes to re-trigger build
dotnet-maestro[bot] [Mon, 27 Jul 2020 23:27:37 +0000 (23:27 +0000)]
Update dependencies from https://github.com/dotnet/aspnetcore build
20200727.3 (#1385)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20375.2 to 5.0.0-rc.1.20377.3
John Salem [Mon, 27 Jul 2020 18:46:48 +0000 (11:46 -0700)]
Simplify dotnet-trace main loop (#1257)
* Simplify main loop of dotnet-trace
* comments
* prevent multiple calls to session.stop
* refactor line rewriter
* more simplification
* Go back to loop
* timer could cause interleved output
* Only decrement clear line if we moved buffer
* needs to be checked on Windows terminal
* Adjust behavior by platform
* allow for input/output redirection
* Apply suggestions from code review
* Update CollectCommand.cs
dotnet-maestro[bot] [Sun, 26 Jul 2020 17:37:12 +0000 (17:37 +0000)]
Update dependencies from https://github.com/dotnet/aspnetcore build
20200725.2 (#1382)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20374.1 to 5.0.0-rc.1.20375.2
Mike McLaughlin [Sat, 25 Jul 2020 17:00:37 +0000 (10:00 -0700)]
Merge pull request #1376 from criteo-forks/PR_dotnet-dump
Add new "extended" commands based on ClrMD to dotnet-dump
dotnet-maestro[bot] [Fri, 24 Jul 2020 16:58:04 +0000 (16:58 +0000)]
Update dependencies from https://github.com/dotnet/runtime build
20200721.13 (#1379)
[master] Update dependencies from dotnet/runtime
- Updates:
- Microsoft.NETCore.App: from 5.0.0-rc.1.20370.4 to 5.0.0-rc.1.20371.13
dotnet-maestro[bot] [Fri, 24 Jul 2020 12:37:13 +0000 (12:37 +0000)]
Update dependencies from https://github.com/dotnet/aspnetcore build
20200724.1 (#1380)
[master] Update dependencies from dotnet/aspnetcore
- Updates:
- Microsoft.AspNetCore.App.Ref: from 5.0.0-rc.1.20371.1 to 5.0.0-rc.1.20374.1
Christophe Nasarre [Wed, 22 Jul 2020 07:28:13 +0000 (09:28 +0200)]
Add new "extended" commands based on ClrMD to dotnet-dump
- TimerInfo lists timers details and displays a summary
- both ClrMD 1.1 and 2.0 implementations are provided (based on ClrMD2 symbol
defined or not to make the move to 2.0 simple by just removing the 1.1 code)
Juan Hoyos [Thu, 23 Jul 2020 21:04:34 +0000 (14:04 -0700)]
Retarget tests against 5.0 and 3.1 as needed (#1337)
* Retarget tests against 5.0 and 3.1 as needed
* Exclude EventPipe tests from 5.0
Co-authored-by: Sung Yoon Whang <suwhang@microsoft.com>
Sung Yoon Whang [Thu, 23 Jul 2020 20:00:51 +0000 (13:00 -0700)]
Try fixing WriteDumpTests