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
Andrew Stanton-Nurse
b2bbaa1d32
Merge pull request #1668 from aspnet/release/2.1
...
clean up test output (#1656 )
2018-03-20 17:24:09 -07:00
Andrew Stanton-Nurse
a2764109b0
clean up test output ( #1656 )
2018-03-20 17:23:34 -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
N. Taylor Mullen
8f8bbda27a
Merge branch 'release/2.1' into dev
2018-03-20 16:35:07 -07:00
Mike Harder
72d706526e
Upgrade Microsoft.NET.Test.Sdk to 15.6.1 ( #972 )
2018-03-20 16:32:00 -07:00
N. Taylor Mullen
6a7a6669e7
Merge branch 'rel/vs15.7' into release/2.1
2018-03-20 16:19:14 -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
Kiran Challa
f831df00a7
Merge branch 'release/2.1' into dev
2018-03-20 15:29:43 -07:00
Kiran Challa
431a8e195a
[ Fixes #2144 ] Incorrect target element of nested tag helper
2018-03-20 15:25:07 -07:00
N. Taylor Mullen
c874f84c3d
Revert "Revert "Make Razor HTML Comments aware ( #2178 )""
...
This reverts commit 1f3f4b79da .
2018-03-20 15:23:53 -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
BrennanConroy
498ec1597a
Merge pull request #1665 from aspnet/release/2.1
...
Fix LongPolling retry after poll timeout (#1654 )
2018-03-20 14:51:34 -07:00
BrennanConroy
24f07ce791
Fix LongPolling retry after poll timeout ( #1654 )
2018-03-20 14:51:00 -07:00
Pranav K
23db9bfb11
Merge remote-tracking branch 'origin/release/2.1' into dev
...
# Conflicts:
# build/dependencies.props
# korebuild-lock.txt
2018-03-20 14:50:31 -07:00
Pranav K
3e319ae2aa
React to Sdk changes
2018-03-20 14:48:27 -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
Chris Ross (ASP.NET)
3fae140900
Merge branch 'release/2.1' into dev
2018-03-20 13:45:13 -07:00
Ryan Brandenburg
9e7291d18d
Set 2.0 baselines
2018-03-20 13:34:12 -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
Chris Ross (ASP.NET)
81fb221d9e
Embed OIDC metadata and mock out the backchannel #1686
2018-03-20 12:42:16 -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
Pranav K
49e46832e8
Merge pull request #1664 from aspnet/release/2.1
...
Merge Release/2.1
2018-03-20 12:07:15 -07:00
Pranav K
88b1cff273
No-op signalr dotnet-ci builds
2018-03-20 12:06:25 -07:00
Pranav K
7606ae42d6
Revert "Remove dotnet-build scripts"
...
This reverts commit 9992e48c60 .
2018-03-20 12:06:25 -07:00
N. Taylor Mullen
1f3f4b79da
Revert "Make Razor HTML Comments aware ( #2178 )"
...
This reverts commit b58986414e .
2018-03-20 11:54:09 -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
Ryan Brandenburg
07db6cc038
Set 2.0 baselines
2018-03-20 11:48:38 -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