Commit Graph

37701 Commits

Author SHA1 Message Date
ASP.NET CI 6db081fff7 Updating submodule(s)
SignalR => 1edf818104

[auto-updated: submodules]
2018-10-29 13:37:22 -07:00
Mikael Mengistu 1edf818104 Remove hidden BiConsumer reference (#3215) 2018-10-29 13:33:19 -07:00
Pranav K 4015c9863e
Merge pull request #8664 from dotnet-maestro-bot/merge/release/2.2-to-master
[automated] Merge branch 'release/2.2' => 'master'
2018-10-29 12:54:42 -07:00
John Luo a058bc0c0a Win-arm shared framework 2018-10-29 12:54:38 -07:00
Chris Ross 3fb2949b51 Enable trace logging for nginx scenarios 2018-10-29 12:09:12 -07:00
ASP.NET CI f3e4d442ac Updating BuildTools from 2.2.0-preview2-20181027.2 to 2.2.0-preview2-20181029.2
[auto-updated: buildtools]
2018-10-29 12:04:22 -07:00
ASP.NET CI acce5fe965 Updating BuildTools from 3.0.0-alpha1-20181026.5 to 3.0.0-alpha1-20181029.3
[auto-updated: buildtools]
2018-10-29 12:04:14 -07:00
ASP.NET CI 0855b08f34 Updating submodule(s)
EntityFrameworkCore => f2b5430c3cb589e5bd515b44be9cdd0ad07748e0
Mvc => 35d2ab37f7
Razor => 8674dd9236
SignalR => 9407fe12f6

[auto-updated: submodules]
2018-10-29 12:04:14 -07:00
ASP.NET CI 45f684318e Updating submodule(s)
EntityFrameworkCore => 647aed13836f1f4f0d3c3d7f6a9a0165826e3e6a
Logging => cc90113f450182d472ae155767ff388fc92698e8
Mvc => 13cf754425
Razor => 4d44639a51

[auto-updated: submodules]
2018-10-29 12:04:06 -07:00
BrennanConroy 9407fe12f6
RxJava is on the public API so the library needs to declare it as such (#3155) 2018-10-29 11:43:01 -07:00
Ajay Bhargav Baaskaran 8674dd9236 Removed duplocate Id for a RazorDiagnostic 2018-10-29 11:25:29 -07:00
Pavel Krymets 134bd90888
Filter paths in SiteExtension trigger (#3747) 2018-10-29 10:59:37 -07:00
Pranav K 13cf754425
Merge pull request #8663 from dotnet-maestro-bot/merge/release/2.2-to-master
[automated] Merge branch 'release/2.2' => 'master'
2018-10-29 09:59:34 -07:00
Pranav K 35d2ab37f7 Allow passing a dictionary to ValidationProblemDetails
Fixes https://github.com/aspnet/Mvc/issues/8645
2018-10-29 09:56:17 -07:00
Pranav K ccde910b29 Specify TaskCreationOptions when using TCS
Fixes https://github.com/aspnet/Mvc/issues/8558
2018-10-29 09:33:05 -07:00
Ryan Nowak 4d44639a51 Incorporate breaking changes from CPS 2018-10-29 08:51:21 -07:00
Ryan Nowak b253f9dc56 Update CPS packages to incorporate breaking change
We need to consume a new Dev16 package since they are making breaking
changes. The changes have already been merged into dev16 so now is a
good time to mainline this change.
2018-10-29 08:50:43 -07:00
ASP.NET CI f2bf295cdf Updating submodule(s)
Mvc => 0b6932dc15

[auto-updated: submodules]
2018-10-29 07:09:09 +00:00
ASP.NET CI 409ffd5fda Updating submodule(s)
Mvc => 3f52894b1b

[auto-updated: submodules]
2018-10-29 00:04:57 -07:00
Doug Bunting 3f52894b1b
Merge pull request #8662 from dotnet-maestro-bot/merge/release/2.2-to-master
[automated] Merge branch 'release/2.2' => 'master'
2018-10-28 21:36:51 -07:00
Doug Bunting 0b6932dc15 Quick fix: Clean up test warnings
- avoid "Skipping test case with duplicate ID" messages
  - xUnit gets confused when `[Theory]`s are overridden
- avoid "falling back to single test case" messages
  - fix inspired by aspnet/SignalR#1820
2018-10-28 21:18:57 -07:00
ASP.NET CI 02a22c9725 Updating submodule(s)
Diagnostics => 08699702ad
Mvc => 0cea1b2a5f

[auto-updated: submodules]
2018-10-28 00:06:15 -07:00
ASP.NET CI b773918d76 Updating submodule(s)
Diagnostics => 1afd5b2594
Mvc => 37e562902f

[auto-updated: submodules]
2018-10-28 07:05:19 +00:00
Ryan Nowak 08699702ad
Merge pull request #518 from dotnet-maestro-bot/merge/release/2.2-to-master
[automated] Merge branch 'release/2.2' => 'master'
2018-10-27 21:57:41 -07:00
Ryan Nowak 1afd5b2594 Don't use Map
Fixes aspnet/Diagnostics#511 and aspnet/Diagnostics#514

It's really confusing to people that we use Map. Users expect that the
URL they provide for the health check middleware will only process
exact matches. The way it behaves when using map is not optimal for some
of the common patterns.
2018-10-27 21:01:55 -07:00
Doug Bunting 0cea1b2a5f
Merge pull request #8656 from dotnet-maestro-bot/merge/release/2.2-to-master
[automated] Merge branch 'release/2.2' => 'master'
2018-10-27 16:53:19 -07:00
Doug Bunting 37e562902f Support single `IDocumentProvider` method signature
- #8593
- also find `IDocumentProvider` using a more-laborious process
  - `Type.GetType(string)` requires an assembly-qualified name and we don't know the assembly
- default method name now `GenerateAsync`
- only supported signature is `public Task GenerateAsync(string, TextWriter)`

also:
- handle more error cases in the tool's inside man
- avoid an empty document file if `IDocumentProvider.GenerateAsync(...)` fails
- unwrap an `AggregateException`

nits:
- remove duplicate comments
- change `GetDocumentCommandWorker.TryProcess(...)` to return `false` on failure
  - minor because return value is currently ignored
- rename `GetDocumentCommandContext.Output` -> `OutputPath`
- reflect recent change to `dotnet-getdocument`'s `Resources.resx` file in its designer file
2018-10-27 15:27:33 -07:00
ASP.NET CI 728ad474a9 Updating BuildTools from 2.2.0-preview2-20181026.4 to 2.2.0-preview2-20181027.2
[auto-updated: buildtools]
2018-10-27 12:04:25 -07:00
ASP.NET CI f8a49f8a13 Updating submodule(s)
DotNetTools => 774a64bbed
Razor => 7177a7311f

[auto-updated: submodules]
2018-10-27 12:04:04 -07:00
Nate McMaster 373e67896a
Fix the path to RPM template and config files 2018-10-27 03:02:45 -07:00
ASP.NET CI 09f8473d29 Updating submodule(s)
DotNetTools => bda375e411
Razor => 25a895123e

[auto-updated: submodules]
2018-10-27 02:36:10 -07:00
Nate McMaster 7177a7311f
Merge branch 'release/2.2' 2018-10-27 02:31:26 -07:00
ASP.NET CI e339aa6adf Updating submodule(s)
DotNetTools => eba014d534

[auto-updated: submodules]
2018-10-27 09:19:32 +00:00
ASP.NET CI 25a895123e
Update dependencies.props
[auto-updated: dependencies]
2018-10-27 02:18:52 -07:00
Nate McMaster 774a64bbed
Merge branch 'release/2.2' 2018-10-27 02:14:36 -07:00
Nate McMaster bda375e411
Merge branch 'release/2.1' into release/2.2 2018-10-27 02:14:28 -07:00
Nate McMaster eba014d534
Add additional signing configuration for external assemblies in the tools packages 2018-10-27 02:06:55 -07:00
Nate McMaster 89377c5ef3
Merge branch 'release/2.2' 2018-10-27 01:51:31 -07:00
Nate McMaster c6130df988
Upgrade dependencies and build tools 2018-10-27 01:47:18 -07:00
Nate McMaster 3a0cd0593d
Remove unnecessary check for all shared framework archives when generating .deb and .rpm installers 2018-10-27 01:38:52 -07:00
ASP.NET CI 40ae5a92b0 Updating submodule(s)
DotNetTools => d957ac9da0

[auto-updated: submodules]
2018-10-27 01:37:52 -07:00
Nate McMaster 3c0f4ef14f
Merge branch 'release/2.2' 2018-10-27 01:31:58 -07:00
Nate McMaster c8b1d2cfe5
Merge branch 'release/2.1' into release/2.2 2018-10-27 01:31:12 -07:00
Nate McMaster d957ac9da0
Remove Microsoft.DotNet.GlobalTools.Sdk, upgrade BuildTools, and change VSIX signing cert name 2018-10-27 01:28:14 -07:00
ASP.NET CI c159cba529 Updating BuildTools from 2.1.3-rtm-15832 to 2.1.3-rtm-15833
[auto-updated: buildtools]
2018-10-27 01:16:22 -07:00
Seyyed davud hosseiny e8b9dc52ba
Fix NullPointerException when unboxing null to int.
Change int to Integer to allow use null as code.
2018-10-27 10:48:14 +03:30
ASP.NET CI ff0e4f5d9a Updating BuildTools from 3.0.0-alpha1-20181026.2 to 3.0.0-alpha1-20181026.5
[auto-updated: buildtools]
2018-10-27 07:07:52 +00:00
ASP.NET CI 5f2162fd06 Updating submodule(s)
CORS => f5a0237486
Mvc => 1a093686e6
Razor => e7edf237b5
SignalR => 86f4e80ecf
Templating => d2af13517b

[auto-updated: submodules]
2018-10-27 07:07:44 +00:00
ASP.NET CI d9f66a68b7 Updating BuildTools from 2.2.0-preview2-20181026.1 to 2.2.0-preview2-20181026.4
[auto-updated: buildtools]
2018-10-27 00:04:30 -07:00
ASP.NET CI 908653d4d3 Updating submodule(s)
Identity => 6c45bfc0dc
Razor => 6ecf5374c6
SignalR => e1b602a7c5

[auto-updated: submodules]
2018-10-27 00:04:22 -07:00