Commit Graph

16116 Commits

Author SHA1 Message Date
Nate McMaster c42db123bd
Add NuGetPackageVerifier 2018-03-21 10:35:29 -07:00
Nate McMaster 6e9cb0260c
Merge branch 'release/2.1' into dev 2018-03-21 10:04:02 -07:00
Nate McMaster 4abcdf23a6
React to aspnet/BuildTools#616 - add additional exclusions for Newtonsoft.Json 11 2018-03-21 10:03:42 -07:00
Chris Ross (ASP.NET) e5cffe685b Do not rely on the implicit StringValues to array converter. 2018-03-21 09:42:20 -07:00
Nate McMaster 39fc608adb
React to changes in NuGetPackageVerifier 2018-03-21 09:37:08 -07:00
Nate McMaster 44acd6e721
Merge branch 'release/2.1' into dev 2018-03-21 09:01:32 -07:00
Nate McMaster 1ddea573bb
Update to Newtonsoft.Json 11.0.1 (#979) 2018-03-21 09:00:05 -07:00
David Fowler bb89551d0d Merge branch 'release/2.1' into dev 2018-03-21 08:59:01 -07:00
David Fowler 5748898fc4
Make the RequestServicesContainerMiddleware thinner (#1360) (#1362)
- Today the request services middleware is responsible for making sure there are request scoped services.
This PR tries introduces some breaking changes that are hopefully acceptable in order to gain some performance.
- Here are the assumptions this PR makes:
 - Since this middleware is first in the pipeline, the only thing that can
  set a default service provider would be the server itself. Since we have no servers that do that
  I removed that code that tries to noop if there's an existing service provider.
 - This PR no longer restores the previous service provider feature since it gets replaced every request
 anyways. Kestrel also clears out the feature on each request so it shouldn't be a problem (in theory).
 Once again, since this middleware is first, it is the last thing that runs before the server re-gains
 control on the way out so there's no need to restore anything.
 - We use the RegisterForDispose method to dispose of the IServiceProvider instead of doing it inline.
2018-03-21 08:58:03 -07:00
Nate McMaster 03efe5a4a7
Update Templating submodule 2018-03-21 08:40:00 -07:00
David Fowler 22423271c9 Make the RequestServicesContainerMiddleware thinner (#1360)
- Today the request services middleware is responsible for making sure there are request scoped services.
This PR tries introduces some breaking changes that are hopefully acceptable in order to gain some performance.
- Here are the assumptions this PR makes:
 - Since this middleware is first in the pipeline, the only thing that can
  set a default service provider would be the server itself. Since we have no servers that do that
  I removed that code that tries to noop if there's an existing service provider.
 - This PR no longer restores the previous service provider feature since it gets replaced every request
 anyways. Kestrel also clears out the feature on each request so it shouldn't be a problem (in theory).
 Once again, since this middleware is first, it is the last thing that runs before the server re-gains
 control on the way out so there's no need to restore anything.
 - We use the RegisterForDispose method to dispose of the IServiceProvider instead of doing it inline.
2018-03-21 02:19:25 -07:00
Nate McMaster d3cb158f11
Merge branch 'release/2.1' into dev 2018-03-20 17:27:01 -07:00
Nate McMaster dfc550a9ab
Fix the release channel for CLI blobs 2018-03-20 17:26:28 -07:00
Nate McMaster 526382fc63
Merge branch 'release/2.1' into dev 2018-03-20 17:10:28 -07:00
Kiran Challa 53a66b5ce8 Removed Microsoft.AspNetCore.SpaTemplates from artifacts as its no longer produced 2018-03-20 16:57:35 -07:00
Mike Harder 72d706526e
Upgrade Microsoft.NET.Test.Sdk to 15.6.1 (#972) 2018-03-20 16:32:00 -07:00
Nate McMaster 5aa5f92345
Adjust docker build to use current user ID (#977) 2018-03-20 16:17:59 -07:00
pan-wang 5baa53393f
fixing fowarding handler for AsyncCompletion (#669)
to make sure ANCM does not release IIS pipeline until all WinHttp handlers get closed.
2018-03-20 15:56:16 -07:00
Nate McMaster fde11611f8
Fix the latest version pointer file in the blob store 2018-03-20 15:23:21 -07:00
Jass Bagga 1d00bb449f
Merge pull request #387 from aspnet/release/2.1
Move layout and partial script to Shared dir (#368)
2018-03-20 15:18:13 -07:00
Jass Bagga 586c4ff780
Move layout and partial script to Shared dir (#368)
Addresses #340
2018-03-20 15:17:50 -07:00
Ryan Brandenburg f38ebee489 Set 2.0 baselines 2018-03-20 14:46:34 -07:00
Ryan Brandenburg 7dd0424825 Set 2.0 baselines 2018-03-20 14:44:10 -07:00
Kiran Challa 88f8f97702 Merge branch 'release/2.1' into dev 2018-03-20 13:47:26 -07:00
ASP.NET CI f95a11b06b Updating submodule(s)
EntityFrameworkCore => 6e2f6cc5b86f43e68c85b9aa0bef2a15d1805a72

[auto-updated: submodules]
2018-03-20 13:46:33 -07:00
Kiran Challa 69f52cc3b6 Removing Microsoft.AspNetCore.SpaTemplates project and friends 2018-03-20 13:46:11 -07:00
ASP.NET CI b6118fd4dc Updating submodule(s)
EntityFrameworkCore => fdb8eceb74a3fd585f90eced744977f74477b1dd

[auto-updated: submodules]
2018-03-20 13:25:16 -07:00
ASP.NET CI 60effd225b Updating submodule(s)
Common => 2fa1ce5815fe7c771445f681a3113189608f9cbc
EntityFrameworkCore => e5c85bbcdca09f5fd7b74c2b15bc348af8282e22
Hosting => b3625b8173
Identity => a48b32fd08
KestrelHttpServer => b90766d097

[auto-updated: submodules]
2018-03-20 12:47:52 -07:00
David Fowler b3625b8173
Make the RequestServicesContainerMiddleware thinner (#1360)
- Today the request services middleware is responsible for making sure there are request scoped services.
This PR tries introduces some breaking changes that are hopefully acceptable in order to gain some performance.
- Here are the assumptions this PR makes:
 - Since this middleware is first in the pipeline, the only thing that can
  set a default service provider would be the server itself. Since we have no servers that do that
  I removed that code that tries to noop if there's an existing service provider.
 - This PR no longer restores the previous service provider feature since it gets replaced every request
 anyways. Kestrel also clears out the feature on each request so it shouldn't be a problem (in theory).
 Once again, since this middleware is first, it is the last thing that runs before the server re-gains
 control on the way out so there's no need to restore anything.
 - We use the RegisterForDispose method to dispose of the IServiceProvider instead of doing it inline.
2018-03-20 12:42:24 -07:00
Stephen Halter b90766d097
React to aspnet/BuildTools#611 (#2409) 2018-03-20 12:19:20 -07:00
ASP.NET CI 8328f1bf26 Updating submodule(s)
Configuration => 142371f9be551fb3b6f4a5b403778cd2f6c76179
Diagnostics => 424c0b0209
HttpAbstractions => f91db5b794
Identity => e233e60e6f
Localization => a5ffd9b7e6
ResponseCaching => 07db6cc038
SignalR => 88b1cff273

[auto-updated: submodules]
2018-03-20 19:15:42 +00:00
ASP.NET CI 1bd17e370e Updating submodule(s)
SignalR => 49e46832e8
Templating => 001f37263b

[auto-updated: submodules]
2018-03-20 12:12:15 -07:00
Ryan Brandenburg 424c0b0209 Set 2.0 baselines 2018-03-20 11:50:45 -07:00
Ryan Brandenburg f91db5b794 Set 2.0 baselines 2018-03-20 11:49:29 -07:00
ASP.NET CI 18fa0b902a Updating submodule(s)
Templating => f786df9dc9

[auto-updated: submodules]
2018-03-20 18:40:09 +00:00
Jass Bagga 001f37263b
Merge pull request #385 from aspnet/release/2.1
Use partial tag helper (#375)
2018-03-20 10:36:34 -07:00
Jass Bagga f786df9dc9
Use partial tag helper (#375)
Addresses #338
2018-03-20 10:36:08 -07:00
ASP.NET CI 942bbb21d3 Updating submodule(s)
Identity => 56666e349c
Razor => 5f3908cb54

[auto-updated: submodules]
2018-03-20 17:31:09 +00:00
ASP.NET CI 47d402b113 Updating submodule(s)
Identity => 167a108f4e
Templating => edaf72c7fc

[auto-updated: submodules]
2018-03-20 17:22:22 +00:00
Hao Kung edaf72c7fc
Add update migrations script (#376) 2018-03-20 09:45:53 -07:00
ASP.NET CI f00695e68f Updating submodule(s)
Razor => f84c27c0a7

[auto-updated: submodules]
2018-03-20 16:44:47 +00:00
ASP.NET CI 6dab43da28 Updating submodule(s)
IISIntegration => f1d8ca3045

[auto-updated: submodules]
2018-03-20 09:25:44 -07:00
Pavel Krymets f1d8ca3045
Add CommitHash to file info (#700) 2018-03-20 09:20:37 -07:00
ASP.NET CI 10f92953bc Updating submodule(s)
SignalR => 885679c8bd

[auto-updated: submodules]
2018-03-20 15:35:58 +00:00
ASP.NET CI e50654acc3 Updating submodule(s)
SignalR => b91499b2fc

[auto-updated: submodules]
2018-03-19 23:00:48 -07:00
ASP.NET CI c68e3729cf Updating submodule(s)
Razor => d0a0317df2
SignalR => 3a3cebb884

[auto-updated: submodules]
2018-03-19 22:36:23 -07:00
ASP.NET CI a71493bf7d Updating submodule(s)
Razor => 2bc3466e3d
SignalR => 4f10560087

[auto-updated: submodules]
2018-03-19 21:55:26 -07:00
ASP.NET CI 4191aebec6 Updating submodule(s)
SignalR => 69bce8ff85

[auto-updated: submodules]
2018-03-19 21:31:46 -07:00
Andrew Peters ca674ed419
Update artifacts.props 2018-03-19 20:55:32 -07:00
ASP.NET CI 2a8214776b Updating submodule(s)
SignalR => 71fd4ffd8a

[auto-updated: submodules]
2018-03-20 03:26:46 +00:00