Commit Graph

18091 Commits

Author SHA1 Message Date
Brennan Conroy 859c1e085e Merge branch 'master' into merge/release/3.1-to-master 2019-10-23 14:06:23 -07:00
Brennan 97db4938f7
Remove flaky test (#15269) 2019-10-23 12:45:43 -07:00
Patrick Westerhoff e6c9912ec5 Render sections asynchronously in templates (#13091) 2019-10-23 09:56:42 -07:00
Brennan 74360c7d97
Fix a couple things in Typescript client (#13863) 2019-10-22 20:40:15 -07:00
Hao Kung 8a4b839cd3
Fixes in DownloadPersonalData (#14203)
* Fixes in DownloadPersonalData
* use SerializeToUTf8 instead
* Remove reference to newtonsoft
2019-10-22 12:56:28 -07:00
Nikita Potapenko b960e07e37 Add hubType to HubInvocationContext (#14459) 2019-10-22 10:28:17 -07:00
Chris Ross 1ba180e87c
Remove Microsoft.AspNetCore.SuppressSameSiteNone compat switch #14739 (#15092) 2019-10-22 10:05:37 -07:00
Javier Calvarro Nelson 1189a2c294
[SPA] Fixes the error message on timeouts (#15220)
When the angular CLI middleware takes too long to start, it produces an error message with an incorrect value, as it uses `timeSpan.Seconds` instead of `timeSpan.TotalSeconds`
2019-10-22 12:04:22 +02:00
Andrew Scott 4303bbe786 Clarify documentation of RefreshSignInAsync (#10637)
Helps to address issues of confusion raised in https://github.com/aspnet/Identity/issues/1900 and https://github.com/aspnet/AspNetCore/issues/5844
2019-10-21 22:18:09 -07:00
Doug Bunting 70392d94aa
Update generated Javascript files 2019-10-21 11:57:02 -07:00
Hao Kung a0eb923ab5
Add TryAddScheme (#14448) 2019-10-21 10:08:52 -07:00
Kahbazi c1cc168441 Add Backlog to SocketTransportOptions and LibuvTransportOptions (#15111) 2019-10-21 08:48:51 -07:00
Chris Ross 8255e3ef26
Convert sample project to sdk format #6505 (#15174) 2019-10-21 08:39:51 -07:00
Chris Ross 4dd9bfc492
Prevent modifying ContentLength after starting response #14056 (#15089) 2019-10-17 13:40:08 -07:00
Brennan 23f3a10965
[TS Client] Catch exception in onreceive and close connection (#15082) 2019-10-17 11:27:03 -07:00
Kahbazi f651fdf1f1 Add AutomaticAuthentication option in HttpSys #5877 (#6516) 2019-10-17 05:46:20 -07:00
David Fowler 9098a47dbf
Some minor clean up of Stream implementations (#14986)
* Some minor clean up of Stream implementations
- Use TaskToApm from corefx to implement Begin/End in streams
- Use PipeReader.CopyToAsync(Stream) to implement CopyToAsync
- Add more overrides on derived Streams in IIS
2019-10-16 22:04:29 -07:00
David Fowler 16be9a264e
Don't re-use DefaultHttpContext if IHttpContextAccessor is in use (#15049)
* Don't re-use DefaultHttpContext if IHttpContextAccessor is in use
- Consumers may still get null or an ODE but will never end up with data from a different request.
- Make sure an ODE is thrown from all properties on HttpContext after the request is over.
2019-10-16 17:09:54 -07:00
wtgodbe d0115a0c5d merge master into branch 2019-10-16 13:30:40 -07:00
wtgodbe ba2ed9fae9 merge release/3.1 to master 2019-10-16 13:23:32 -07:00
Javier Calvarro Nelson 1046cc2daa
[Blazor] Fix sample and turn debug logs and detailed errors client and server-side on the sample (#15052) 2019-10-16 22:12:25 +02:00
Steve Sanderson d3f1f5a6ea Make InputBase respond to validation state notifications (#14818)
* InputBase subscribes to OnValidationStateChanged. Fixes #11914

* E2E test
2019-10-16 11:35:34 -07:00
William Godbe 2c6d7a0cb8
Merge pull request #14602 from dotnet-maestro-bot/merge/release/3.0-to-release/3.1
[automated] Merge branch 'release/3.0' => 'release/3.1'
2019-10-16 10:27:06 -07:00
Javier Calvarro Nelson efc2f024f3
[Blazor][Fixes #14959] Update navlink to perform case-insensitive matches (#14991)
Otherwise the link doesn't get highlighted even though the route matches (routing is case insensitive).
2019-10-16 19:04:19 +02:00
Javier Calvarro Nelson cad6e06a83
[Templating][Fixes #15048] Fixes build hang in template tests caused by an unbound blocking collection (#15058) 2019-10-16 18:50:08 +02:00
Koen Ekelschot 1599a5a2a7 Improve documentation RequestHeaders and ResponseHeaders #3465 (#14971) 2019-10-16 09:41:28 -07:00
Bharat Kumar Bellamkonda d73dfd3a1d Replaced >= with > in condition. (#14825) 2019-10-16 09:36:16 -07:00
Joni 8f9073e8ea Fixes typo in StaticComponentRenderer.cs (#14925)
Fixes "reponse" => "response"
2019-10-16 09:29:56 -07:00
TeBeCo 49191f4d56 Make ApiDescriptionActionData public (#15023)
* Make ApiDescriptionActionData public

Fixes https://github.com/aspnet/AspNetCore/issues/14954
2019-10-16 08:59:51 -07:00
Pranav K 504f7f6856
Produce a ModelState error when reading the form throws (#14994)
* Introduce ValueProviderException analogous to InputFormatterException
* Record ValueProviderException as a model state error
* Fixup bug in reading ProblemDetails \ ValidationProblemDetails using the converter

Fixes https://github.com/aspnet/AspNetCore/issues/10291
2019-10-15 16:46:35 -07:00
Brennan 10863cfaea
Add tests to verify protocol message size (#15030) 2019-10-15 16:28:42 -07:00
Pranav K 30b31d7086
Account for Layout ordering in Blazor (#15001)
The server requires that clients send descriptors in sequence. Since MVC executes
Layouts in an inside-out manner, modify the client to explicitly order descriptors

Fixes https://github.com/aspnet/AspNetCore/issues/14474
2019-10-15 13:17:58 -07:00
Javier Calvarro Nelson 579f30f591
[Blazor][Fixes #14999] Razor Class Library Static Assets with spaces do not resolve (#15024) 2019-10-15 22:17:05 +02:00
William Godbe 700f4301ea
Fixup prop 2019-10-15 12:16:07 -07:00
William Godbe eccabc68ff
Another fixup to item->prop conversion 2019-10-15 11:26:57 -07:00
William Godbe d74a2b00eb
Fix Item->Property conversion in GenerateTestProps.targets 2019-10-15 10:10:24 -07:00
Doug Bunting faf9a071cb
Merge branch 'master' into merge/release/3.1-to-master 2019-10-15 09:50:16 -07:00
Brennan d35b33f294
Add user agent header to TS client and normalized the other clients (#14484) 2019-10-15 08:36:15 -07:00
wtgodbe 1a71156f6a Fix typo in GenerateTestProps.targets 2019-10-14 15:59:40 -07:00
wtgodbe 35f148b7fc Don't skip RefPack tests 2019-10-14 13:28:08 -07:00
wtgodbe 8deeed2fa8 Merge branches 2019-10-14 13:21:58 -07:00
William Godbe 649ee1fb8c
Merge pull request #14746 from aspnet/DisableRefPackBuild
Disable ref pack build in 3.0
2019-10-14 11:23:01 -07:00
Doug Bunting 0dedfa95d4
Merge branch 'release/3.1' -> 'master' 2019-10-14 09:32:59 -07:00
John Doe 288bedd9a3 Fixes spell across test classes and comments (#14958) 2019-10-13 20:46:20 -07:00
Pranav K d299ae2491
Introduce ComponentTagHelper (#14592)
* Introduce ComponentTagHelper
Fixes https://github.com/aspnet/AspNetCore/issues/13726
2019-10-11 15:59:52 -07:00
Pranav K 6dee2f548a
Ensure Microsoft.AspNetCore.Razor.RuntimeCompilation has the right build targets (#14863)
* Include build and build transitive folders in RuntimeCompilation package
* Use a different folder name to allow GitHub indexing. See https://github.com/aspnet/AspNetCore/issues/14846
* Add a test to verify transitive build targets work

Fixes https://github.com/aspnet/AspNetCore/issues/14813
Fixes https://github.com/aspnet/AspNetCore/issues/12768
2019-10-11 13:53:16 -07:00
Pranav K 79a1769e47
fixup 2019-10-11 13:46:45 -07:00
Pranav K 3fe0e303c6
Make sealed 2019-10-11 13:32:50 -07:00
Pranav K 0557585b0a
More fixups 2019-10-11 13:32:50 -07:00
Pranav K 2e7ff1e9b8
Restore the app element 2019-10-11 13:32:49 -07:00