Commit Graph

27752 Commits

Author SHA1 Message Date
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
John Luo a48b32fd08 Merge branch 'release/2.1' into dev 2018-03-20 12:08:46 -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
John Luo e233e60e6f Add logging for functional tests 2018-03-20 12:05:12 -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 a5ffd9b7e6 Set 2.0 baselines 2018-03-20 11:49:13 -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 167a108f4e
Add AddDefaultIdentity (#1698) 2018-03-20 10:10:22 -07:00
Hao Kung 56666e349c Add AddDefaultIdentity 2018-03-20 09:53:34 -07: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
Pranav K f84c27c0a7
Merge pull request #2199 from aspnet/release/2.1
Stop expressly testing on netcoreapp2.0
2018-03-20 09:37:46 -07:00
Pranav K 5f3908cb54 Stop expressly testing on netcoreapp2.0 2018-03-20 09:37:26 -07: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
David Fowler 885679c8bd
Made HubEndPoint derive from EndPoint (#1658)
* Made HubEndPoint derive from EndPoint
2018-03-20 08:31:35 -07: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
BrennanConroy 3a3cebb884 Merge branch 'release/2.1' into dev 2018-03-19 22:02:44 -07:00
BrennanConroy b91499b2fc
Cleanup rogue timeout in TS client (#1653) 2018-03-19 22:01:52 -07:00
BrennanConroy 473e578efc
Fix CORS on TS Client (#1652) 2018-03-19 22:01:28 -07:00
ASP.NET CI a71493bf7d Updating submodule(s)
Razor => 2bc3466e3d
SignalR => 4f10560087

[auto-updated: submodules]
2018-03-19 21:55:26 -07:00
James Newton-King 4f10560087
Rename negotiate to handshake, add handshake response, add close frame (#1591) 2018-03-20 17:40:22 +13:00
ASP.NET CI 4191aebec6 Updating submodule(s)
SignalR => 69bce8ff85

[auto-updated: submodules]
2018-03-19 21:31:46 -07:00
Pranav K d0a0317df2
Merge pull request #2198 from aspnet/release/2.1
Do not write generated files to disk if the input has parser errors
2018-03-19 21:31:16 -07:00
Pranav K 2bc3466e3d Do not write generated files to disk if the input has parser errors
Fixes #2169
2018-03-19 21:30:47 -07:00
Andrew Peters ca674ed419
Update artifacts.props 2018-03-19 20:55:32 -07:00
Andrew Stanton-Nurse 69bce8ff85 Merge branch 'release/2.1' into dev 2018-03-19 20:54:28 -07:00
ASP.NET CI 2a8214776b Updating submodule(s)
SignalR => 71fd4ffd8a

[auto-updated: submodules]
2018-03-20 03:26:46 +00:00
Andrew Stanton-Nurse 71fd4ffd8a
fix #1542 by removing browser field (#1625) 2018-03-19 20:22:18 -07:00
ASP.NET CI 5e90de0056 Updating submodule(s)
Razor => a8d6eac1d6

[auto-updated: submodules]
2018-03-19 19:21:38 -07:00
ASP.NET CI 77e136e80a Updating submodule(s)
Razor => c934bd08ac

[auto-updated: submodules]
2018-03-20 02:19:31 +00:00
Ajay Bhargav Baaskaran a8d6eac1d6 Merge branch 'release/2.1' into dev 2018-03-19 19:15:19 -07:00
Ajay Bhargav Baaskaran c934bd08ac Merge branch 'rel/vs15.7' into release/2.1 2018-03-19 19:14:51 -07:00