Commit Graph

37701 Commits

Author SHA1 Message Date
Kiran Challa 087183ea18 Updated to use the latest shared runtime 2017-05-29 04:40:44 -07:00
Kiran Challa 3e7ac46d70 Updated to use the latest shared runtime 2017-05-29 04:40:35 -07:00
Kiran Challa bdd09062ff Updated to use the latest shared runtime 2017-05-29 04:39:34 -07:00
Pranav K 9b131ea7d3 Remove unused usings 2017-05-27 18:58:17 -07:00
Pranav K 3089bf74fe Remove reference to Microsoft.Extensions.PlatformAbstractions 2017-05-27 17:22:05 -07:00
BrennanConroy 762d52133c Change Base64 to Base64Encoder (#492) 2017-05-26 17:48:36 -07:00
Jass Bagga 8273d0aa27 Rename ApplicationInsights test project (#60) 2017-05-26 17:40:03 -07:00
Javier Calvarro Nelson 6a3fca86b5 Add support for proof of key for code exchange 2017-05-26 17:32:05 -07:00
Mikael Mengistu b862d35b10 Update Targets (#486) 2017-05-26 20:00:12 -04:00
Hao Kung 4b18cf52ae Add ConfigureAspNetCoreDefaults 2017-05-26 16:20:32 -07:00
Hao Kung a99d1d96cc Add new identity packages back 2017-05-26 15:25:38 -07:00
Hao Kung be8232d3f9 Add support for store versioning + IUserActivityStore 2017-05-26 15:08:57 -07:00
Pranav K 597a0c9a11 Add support for friendly routes in pages
FIxes #6325
2017-05-26 14:29:00 -07:00
Javier Calvarro Nelson 1939384685 Add Microsoft.AspNetCore.Identity.Service.AzureKeyVault package 2017-05-26 13:21:29 -07:00
Javier Calvarro Nelson f0a6eee30e Add support for keyvault 2017-05-26 13:16:29 -07:00
Javier Calvarro Nelson 63f7f9a62c Include the developer certificate by default, make it noop when environment != development 2017-05-26 12:51:39 -07:00
Kiran Challa 461d8a77db Updated to use the latest shared runtime 2017-05-26 12:46:53 -07:00
Hao Kung 45f9780d32 Switch back to netstandard2.0 2017-05-26 12:45:28 -07:00
Kiran Challa 176be2749d Updated to use the latest shared runtime 2017-05-26 12:45:18 -07:00
Kiran Challa 87d063b2b5 Updated to use the latest shared runtime 2017-05-26 12:44:55 -07:00
Kiran Challa 9dd8f1c4b9 Updated to use the latest shared runtime 2017-05-26 12:44:43 -07:00
Kiran Challa 0276c4b0a0 Updated to use the latest shared runtime 2017-05-26 12:44:11 -07:00
Kiran Challa 6a17e4899c Updated to use the latest shared runtime 2017-05-26 12:44:02 -07:00
Kiran Challa fcb96242a7 Updated to use the latest shared runtime 2017-05-26 12:42:55 -07:00
Kiran Challa 13de0cdc7c Updated to use the latest shared runtime 2017-05-26 12:42:03 -07:00
Kiran Challa 758006d17f Updated to use the latest shared runtime 2017-05-26 12:41:43 -07:00
Kiran Challa db88056e77 Updated to use the latest shared runtime 2017-05-26 12:41:22 -07:00
Kiran Challa a2c22afd7e Updated to use the latest shared runtime 2017-05-26 12:40:59 -07:00
Kiran Challa c7ba8137a8 Updated to use the latest shared runtime 2017-05-26 12:40:48 -07:00
Kiran Challa 46dd25fcac Updated to use the latest shared runtime 2017-05-26 12:40:38 -07:00
Kiran Challa 57647bff2e Updated to use the latest shared runtime 2017-05-26 12:40:28 -07:00
Kiran Challa 85d712251d Updated to use the latest shared runtime 2017-05-26 12:39:37 -07:00
Kiran Challa bd921bf96d Updated to use the latest shared runtime 2017-05-26 12:39:26 -07:00
Kiran Challa 9ef496fe5b Updated to use the latest shared runtime 2017-05-26 12:39:04 -07:00
Kiran Challa 6d3ce16da9 Updated to use the latest shared runtime 2017-05-26 12:38:52 -07:00
Kiran Challa aae6b44900 Updated to use the latest shared runtime 2017-05-26 12:37:59 -07:00
Kiran Challa 0ab3f1e94f Updated to use the latest shared runtime 2017-05-26 12:36:36 -07:00
Ajay Bhargav Baaskaran 2f03a39e41 Refactored attribute values IR 2017-05-26 12:34:34 -07:00
Ryan Nowak 688e518991 Add result filters to pages 2017-05-26 12:33:46 -07:00
Ryan Nowak 84e007a2a7 Move exception and result filters in base 2017-05-26 12:33:46 -07:00
Ryan Nowak e7bd6cfc06 Refactor invoker tests for reuse 2017-05-26 12:33:46 -07:00
N. Taylor Mullen dcccea3004 Add Checksum computation to RazorSourceDocument.
- Renamed many of our `RazorSourceDocument` abstractions to not include the word `Razor`.
- Added a `GetChecksum()` method to `RazorSourceDocument` to allow source documents to compute their own checksums.
- Re-generated codegen tests that did not normalize new lines. Ones that did re-generate newlines converted from stream => string => normalized string and then ran the Razor parser.
- Added tests to validate `GetChecksum` for all source document types.
- Removed unused `LegacySourceDocument`.
2017-05-26 12:29:36 -07:00
Ryan Nowak b7db6dbc8e Remove pass-through activator for pages
This change removes a 'pass through' IRazorPageActivator that we were
using to avoid the default one initializing the Page twice.

The fix is to add an adapter so that the IRazorPage that the RazorView has
isn't the *real* page, it's the adapter. The adapter doesn't have anything
interesting to activate :).
2017-05-26 12:29:10 -07:00
Nate McMaster c343628926 Implement max connection limits
- Added new options to allow configuring the maximum number of concurrent connections and upgraded connections.
- `KestrelServerLimits.MaxConcurrentConnections` defaults unlimited.
- `KestrelServerLimits.MaxConcurrentUpgradedConnections` defaults to unlimited.
- Calls to IHttpUpgradeFeature.UpgradeAsync() will throw when the MaxConcurrentUpgradedConnections limit has been reached.
- Kestrel will close new connections without response when MaxConcurrentConnections is reached.
2017-05-26 12:27:48 -07:00
John Luo c523839078 Update default settings for SameSite
- Need Lax policy for social authentication
- Need None policy for OIDC
2017-05-26 12:19:18 -07:00
N. Taylor Mullen 8c822a8e77 Move away from `Assembly.Load` to Assembly.LoadFile
- Fixes build break.
2017-05-26 12:18:49 -07:00
John Luo 1619166911 Update manifest names 2017-05-26 11:43:36 -07:00
Ryan Nowak c3f7613725 Make RazorReferenceManage public
Fix for #4938. This change makes the reference manager public and
documented so that it can be replaced.
2017-05-26 10:58:45 -07:00
John Luo 47ac4e5bf9 React to Hosting changes 2017-05-26 10:53:10 -07:00
John Luo 3b488c470a Make IHostedServiceAsync 2017-05-26 10:52:08 -07:00