Justin Kotalik
4aebd29abc
Increase Http2 Header limit size to the MaxFrameSize ( #12625 )
2019-07-26 14:31:48 -07:00
John Luo
e149f9c0aa
Improve components infrastructure ( #12145 )
...
* Remove generated Web.JS javascript files files
* Build NodeJS project referenced by managed projects by default
* Build Web.JS before other CI jobs
- We can't build Web.JS on Linux Musl for example
* Make BuildAll not override explicit BuildJava/NodeJS/Native/Managed settings
* Capture CodeCheck logs for debugging
* Skip NodeJS projects when generation ref assemblies
* Do not build dependent projects if NodeJS is not built
* Make build fail immediately if BuildNodeJS is true but NodeJS is not installed
* Do not build nodejs in installer builds
2019-07-26 13:31:01 -07:00
Chris Ross
922fd9cb0d
React to kestrel merge conflict ( #12624 )
2019-07-26 11:55:37 -07:00
Hao Kung
a0e0338d7e
Add missing area in link generation for identity UI ( #12590 )
2019-07-26 11:04:08 -07:00
Javier Calvarro Nelson
0d553f7147
Fix small issue in Identity UI ( #12607 )
...
The logic for selecting the views assembly had a small bug.
Added an E2E test to cover the scenario.
2019-07-26 19:37:13 +02:00
Justin Kotalik
51497f72a6
Check length for pipe test rather than byte content ( #12612 )
2019-07-26 09:59:08 -07:00
Ryan Nowak
bfd4305fd8
Blazor API Review: Parameters ( #12547 )
...
* Blazor API Review: Parameters
Part of #11610
2019-07-26 09:46:47 -07:00
Chris Ross
5631b97d12
Kestrel HttpClient Http2 interop tests #4763 ( #11869 )
2019-07-26 09:45:45 -07:00
Justin Kotalik
2a35f8ee4c
Merge pull request #12444 from dotnet-maestro-bot/merge/release/2.2-to-master
...
[automated] Merge branch 'release/2.2' => 'master'
2019-07-26 08:02:12 -07:00
David Fowler
e78d17e07b
Update HubProtocol.md ( #12509 )
...
* Update HubProtocol.md
Updated the code sample in the protocol doc to reflect the actual programming API
* Update src/SignalR/docs/specs/HubProtocol.md
Co-Authored-By: Brennan <brecon@microsoft.com>
2019-07-25 19:12:14 -07:00
Brennan
331ff2404d
Send HttpOnly (if applicable) when deleting cookies ( #12593 )
2019-07-25 17:42:23 -07:00
Pranav K
d7bfbb5824
Add formatter mapping for JSON ( #12592 )
...
Fixes https://github.com/aspnet/AspNetCore/issues/12414
2019-07-25 16:50:54 -07:00
Martin Stenhoff
b13f2614de
Changing Analzyer to Analyzer
2019-07-25 16:38:24 -07:00
Dylan Dmitri Gray
1aebfa681a
Dylan/resettable tcs ( #12453 )
...
* renames, resettable tcs; custom awaitable now dispatches
2019-07-25 16:38:13 -07:00
Chris Ross
080660967b
Unified response body features ( #12328 )
2019-07-25 16:27:08 -07:00
John Luo
2884ef6e1f
Update default project names ( #12431 )
2019-07-25 14:56:51 -07:00
Harley Adams
a07ad16e4d
IIS - Skip setting a header if the value is empty #11032 ( #12486 )
2019-07-25 14:39:52 -07:00
Brennan
648bdf706e
Avoid unobserved tasks in WebSocketsTransport ( #12315 )
2019-07-25 14:25:00 -07:00
Andrew Stanton-Nurse
cac51846e9
fix #12516 by cleaning up Hosting error page ( #12545 )
...
* fix #12516 by cleaning up error page
* add a Diagnostics.slnf because I was there
* missed the IIS update
* update WebHost's error page
* Fix slnf path
2019-07-25 13:01:00 -07:00
Javier Calvarro Nelson
e0d522e1f7
Remove flaky mark from E2E templates tests ( #12450 )
...
* Removes the [Flaky] mark for the React_IndividualAuth test.
* Removes the [Flaky] mark for all the blazorserverside template tests.
2019-07-25 21:59:51 +02:00
Justin Kotalik
8cbc76f1ec
Merge remote-tracking branch 'origin/release/2.2'
2019-07-25 11:41:11 -07:00
Justin Kotalik
d463dc7721
Update CorsMiddlewareFunctionalTest.cs ( #12571 )
2019-07-25 11:28:30 -07:00
Pranav K
a181fc2b67
Clean up MvcSandbox ( #12542 )
2019-07-25 10:25:07 -07:00
Ryan Nowak
6526022f6c
Blazor API Review: RenderTreeBuilder
...
Fixes : #12415
2019-07-25 09:45:26 -07:00
N. Taylor Mullen
c76cb9248d
Add support for increment/decrement [Parameter] usage detection.
...
- Didn't realize there was an increment or decrement operation kind.
- Added tests to cover this scenario
#12543
2019-07-25 08:47:13 -07:00
Javier Calvarro Nelson
143c101693
[Identity] Move to use static web assets support. ( #11029 )
...
* Moves Identity UI to use Static Web Assets
* Removes the static files as embedded content.
* Stops plugging the static assets through the embedded file provider.
* Selects the UI framework at build time instead of runtime.
2019-07-25 17:34:45 +02:00
Justin Kotalik
9a6d4af9d6
Merge release/2.1 into release/2.2 ( #12290 )
2019-07-24 18:01:57 -07:00
Justin Kotalik
69feac2633
Catch all exceptions from Exit shutdown (master). ( #12522 )
2019-07-24 14:56:04 -07:00
Stephen Halter
34903da1e9
Fix ConcurrentPipeWriterTests ( #12383 )
2019-07-24 14:51:31 -07:00
N. Taylor Mullen
c54a7209d7
Clear route values after middleware invocation.
...
#11233
2019-07-24 14:12:06 -07:00
N. Taylor Mullen
479d5ed40a
Addressed code review comments.
2019-07-24 14:12:06 -07:00
N. Taylor Mullen
9a6881b0e8
Fix endpoint routing statefulness.
...
- In the case that other middleware change the path of an `HttpContext` and cause middleware to re-invoke we used to short-circuit on second time through the middleware pipeline, now we allow routing to occur.
- Added unit tests to validate the clearing of state.
#11233
2019-07-24 14:12:06 -07:00
Steve Sanderson
54da777b7c
Reset scroll position after navigation. Fixes #10482 ( #12423 )
2019-07-24 10:25:59 -07:00
Steve Sanderson
8b7fcf1f76
Update user on reconnect. Fixes #12051 ( #12421 )
2019-07-24 10:23:38 -07:00
Artak
9b6f10d20c
Marked the RunClientTests as flaky ( #12497 )
2019-07-24 09:51:55 -07:00
Steve Sanderson
dd0d483f7d
Fix Web.JS tests ( #12513 )
2019-07-24 09:48:12 -07:00
Hisham Bin Ateya
28678ee430
Change unsupported culture log level ( #12153 )
...
* Change unsupported culture log level to Debug
* Fix unit tests
2019-07-23 20:05:10 -07:00
Andrew Stanton-Nurse
4928eb3de0
fix #12445 by migrating dotnet-sql-cache to new SqlClient ( #12447 )
2019-07-23 14:40:18 -07:00
Ryan Nowak
3e2f88497d
Remove manual ref-assembly generation for Components
2019-07-23 14:39:14 -07:00
Alessio Franceschelli
14c6abafda
Test PageActionInvoker logs and fix declaring type name for handler in logs ( #12326 )
...
* Test PageActionInvoker logs and fix declaring type name for handler
2019-07-23 10:38:39 -07:00
Andrew Stanton-Nurse
48b44dbb92
Add clarifying comment to HttpMethods.cs ( #12441 )
...
To help prevent well-meaning (but not actually desirable) changes like https://github.com/aspnet/AspNetCore/pull/12439
2019-07-23 08:09:16 -07:00
Ben Adams
2e0d7889ad
Kestrel code tidyups ( #11896 )
2019-07-22 12:57:52 -07:00
Javier Calvarro Nelson
c918d72f36
[Blazor] [ Fixes #11847 ] Renderer.DispatchEventAsync throws null reference exception if event handler throws synchronously ( #12393 )
...
[Blazor] [Fixes #11847 ] Renderer.DispatchEventAsync throws null
reference exception if event handler throws synchronously
* Returns after handling the exception.
* Adds a unit test and an E2E test to validate expected behavior.
2019-07-22 19:14:30 +02:00
Javier Calvarro Nelson
d846cb4b97
[Blazor] Update typescript dependencies ( #12395 )
...
* [Blazor] Update npm dependencies to fix security vulnerabilities
* Update to latest typescript compiler
2019-07-22 19:10:45 +02:00
Pranav K
a99ab25700
Add converters for ProblemDetails and ValidationProblemDetails ( #12216 )
...
* Add converters for ProblemDetails and ValidationProblemDetails
ProblemDetails & ValidationProblemDetails require IgnoreNullValues to be
applied on the types. We'll use a converter to workaround the absence of this
feature
Fixes https://github.com/aspnet/AspNetCore/issues/11522
2019-07-22 09:40:04 -07:00
David Fowler
f8c22859a0
Complete the reader in Dispose ( #12430 )
...
- This should avoid issues about completing while still reading.
- Dispose the HttpResponseMessage in some tests that use ResponseHeadersRead);
2019-07-22 09:23:22 -07:00
Andrew Stanton-Nurse
fd5517f301
Be more defensive in BufferingDisabled test ( #12278 )
...
Fixes https://github.com/aspnet/AspNetCore-Internal/issues/2826
We [use `?.` in `master`](f56cb72b7f/src/Hosting/Server.IntegrationTesting/src/Deployers/ApplicationDeployer.cs (L103) ) and it seems like the test can end up in this state (by the linked issue) so back-porting that defensive measure seems reasonable.
2019-07-22 09:20:40 -07:00
Steve Sanderson
077df0e3ca
Support more types of redirection during prerendering. Fixes #11591 ( #12418 )
...
* E2E test to show current behavior
* Actually support base-relative, root-relative, and absolute redirections during prerendering
* Fix MVC functional test
2019-07-22 08:14:10 -07:00
Steve Sanderson
178374d228
Make reconnection work more realistically ( #12420 )
...
* Support reconnection even if an earlier attempt failed
* Add "reload" button to reconnect dialog on failure
* Update blazor.*.js
2019-07-22 07:52:20 -07:00
Artak Mkrtchyan
330a7708c0
Dependency updates
2019-07-22 06:59:25 -07:00