Ryan Nowak
3cc6e8373b
Fail faster in Blazor E2E tests
...
This change adds a fail-fast mechanism to our E2E tests based on
the browser console. This will fail super hard if an unhandled exception
is thrown.
I think it would be interesting to also see if we could do the same
thing for 404s.
The goal of this change is to make it so that the E2E tests can fail
faster (3-4s) than the 30s timeout in the case that something
catastrophic happens. As a nice side benefit you get to see the
exception message.
2019-08-02 17:23:46 -07:00
Ryan Nowak
40e268f59e
Skip failing tests
2019-08-02 17:23:46 -07:00
Ryan Nowak
da49e0e0f6
Fix broken test
...
These parameters are declared incorrectly.
2019-08-02 17:23:46 -07:00
Steve Sanderson
8a1cf8386f
Stricter key clash detection. Fixes #12691 ( #12837 )
2019-08-02 22:16:47 +01:00
Brennan
c15f1e145f
[SignalR] Change log levels ( #12742 )
2019-08-02 10:51:23 -07:00
N. Taylor Mullen
d312d797fc
Change non-public [Parameter] warning severities to error.
...
- In preview8 we warned users for non-public `[Parameter]`s and `[Parameter]` setters. For preview9 this is now an error because things will not work as they expect.
- Updated existing tests to reflect the new error expectation.
#12294
2019-08-02 10:25:26 -07:00
Artak
45f9a2a44e
Updated dependencies ( #12836 )
2019-08-02 09:57:10 -07:00
Justin Kotalik
02d28e1c54
Only use read Pipe when running on Http2. ( #12737 )
2019-08-02 08:02:59 -07:00
Doug Bunting
8dd1be9474
Fix XML escaping
...
- #12786
- escape `'<'` chars in attribute values to make the .targets file valid XML
- escape `'\''` chars nested within single-quoted values to make `msbuild` conditions valid
2019-08-01 22:04:52 -07:00
dotnet-maestro[bot]
7324387bf6
[release/3.0] Update dependencies from 2 repositories ( #12815 )
...
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20190801.4
- Microsoft.EntityFrameworkCore.Tools - 3.0.0-preview9.19401.4
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.0-preview9.19401.4
- dotnet-ef - 3.0.0-preview9.19401.4
- Microsoft.EntityFrameworkCore - 3.0.0-preview9.19401.4
- Microsoft.EntityFrameworkCore.InMemory - 3.0.0-preview9.19401.4
- Microsoft.EntityFrameworkCore.Relational - 3.0.0-preview9.19401.4
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.0-preview9.19401.4
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20190801.6
- Microsoft.EntityFrameworkCore.Tools - 3.0.0-preview9.19401.6
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.0-preview9.19401.6
- dotnet-ef - 3.0.0-preview9.19401.6
- Microsoft.EntityFrameworkCore - 3.0.0-preview9.19401.6
- Microsoft.EntityFrameworkCore.InMemory - 3.0.0-preview9.19401.6
- Microsoft.EntityFrameworkCore.Relational - 3.0.0-preview9.19401.6
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.0-preview9.19401.6
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20190801.7
- Microsoft.EntityFrameworkCore.Tools - 3.0.0-preview9.19401.7
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.0-preview9.19401.7
- dotnet-ef - 3.0.0-preview9.19401.7
- Microsoft.EntityFrameworkCore - 3.0.0-preview9.19401.7
- Microsoft.EntityFrameworkCore.InMemory - 3.0.0-preview9.19401.7
- Microsoft.EntityFrameworkCore.Relational - 3.0.0-preview9.19401.7
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.0-preview9.19401.7
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190801.4
- Microsoft.NET.Sdk.Razor - 3.0.0-preview9.19401.4
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview9.19401.4
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview9.19401.4
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview9.19401.4
2019-08-02 00:47:10 +00:00
Ryan Nowak
9b888e9df5
Blazor API Review: IUriHelper ( #12425 )
...
* Rename IUriHelper -> NavigationManager
- Remove IUriHelper interface
- Rename to NavigationManager
- Remove all traces of old naming
There's no functional or design change in this commit - just removing
all traces of the old name. The next few iterations will try to improve
the design.
* Minor API tweaks to NavigationManager
Making Initialize protected causes problems because right now the
server-side code needs to deal with one of two different
implementations, hence an exchange type is used. I followed the same
pattern that was used for auth for symmetry but I have some *cool*
thoughts.
- We can remove this when we remove stateful prerendering
- I have another idea to banish this pattern to the land of wind and
ghosts
If this ends up sticking around longer than a week in the code, lets
discuss other ideas and try to improve the pattern.
* Use hub method for server-side navigation
* Get rid of async local
* Add hub method test
* Misc bikeshedding
* Update src/Components/Server/src/Circuits/DefaultCircuitFactory.cs
Co-Authored-By: campersau <buchholz.bastian@googlemail.com>
* PR feedback
2019-08-01 17:11:09 -07:00
Chris Ross
59f6b852c2
HPACK circular overflow #12190 ( #12782 )
2019-08-01 14:30:32 -07:00
Ryan Nowak
001b54f42e
Add component for managing a DI scope
...
Fixes : #5496
Fixes : #10448
This change adds a *utility* base class that encourages you to do the
right thing when you need to interact with a disposable scoped or
transient service.
This solution ties the lifetime of a DI scope and a service to a
component instance. Note that this is not recursive - we expect users to
pass services like this around (or as cascading values) if the design
dictates it.
2019-08-01 12:03:34 -07:00
dotnet-maestro[bot]
bff3f9e0ac
[release/3.0] Update dependencies from 2 repositories ( #12806 )
...
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190801.3
- Microsoft.NET.Sdk.Razor - 3.0.0-preview9.19401.3
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview9.19401.3
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview9.19401.3
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview9.19401.3
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20190801.2
- Microsoft.EntityFrameworkCore.Tools - 3.0.0-preview9.19401.2
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.0-preview9.19401.2
- dotnet-ef - 3.0.0-preview9.19401.2
- Microsoft.EntityFrameworkCore - 3.0.0-preview9.19401.2
- Microsoft.EntityFrameworkCore.InMemory - 3.0.0-preview9.19401.2
- Microsoft.EntityFrameworkCore.Relational - 3.0.0-preview9.19401.2
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.0-preview9.19401.2
* Dependency coherency updates
- Microsoft.AspNetCore.Analyzer.Testing - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ActivatorUtilities.Sources - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Abstractions - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Memory - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.SqlServer - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.StackExchangeRedis - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.CommandLineUtils.Sources - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Abstractions - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.AzureKeyVault - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Binder - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.CommandLine - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.EnvironmentVariables - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.FileExtensions - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Ini - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Json - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.KeyPerFile - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.UserSecrets - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Xml - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection.Abstractions - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DiagnosticAdapter - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Abstractions - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Composite - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Embedded - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Physical - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileSystemGlobbing - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting.Abstractions - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HostFactoryResolver.Sources - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Http - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization.Abstractions - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Abstractions - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.AzureAppServices - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Configuration - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Console - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Debug - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventSource - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventLog - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.TraceSource - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Testing - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ObjectPool - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.ConfigurationExtensions - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.DataAnnotations - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ParameterDefaultValue.Sources - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Primitives - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.TypeNameHelper.Sources - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ValueStopwatch.Sources - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.WebEncoders - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Internal.Extensions.Refs - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.JSInterop - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Mono.WebAssembly.Interop - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Internal.AspNetCore.Analyzers - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.Testing - 3.0.0-preview9.19401.2 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Net.Compilers.Toolset - 3.3.0-beta3-19401-01 (parent: Microsoft.Extensions.Logging)
2019-08-01 18:54:18 +00:00
Chris Ross
0559d39746
Fix form pipe parser #12381 ( #12749 )
2019-08-01 11:28:35 -07:00
dotnet-maestro[bot]
999d61b1be
[release/3.0] Update dependencies from 2 repositories ( #12801 )
...
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190801.2
- Microsoft.NET.Sdk.Razor - 3.0.0-preview9.19401.2
- Microsoft.CodeAnalysis.Razor - 3.0.0-preview9.19401.2
- Microsoft.AspNetCore.Razor.Language - 3.0.0-preview9.19401.2
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 3.0.0-preview9.19401.2
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20190801.1
- Microsoft.EntityFrameworkCore.Tools - 3.0.0-preview9.19401.1
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.0-preview9.19401.1
- dotnet-ef - 3.0.0-preview9.19401.1
- Microsoft.EntityFrameworkCore - 3.0.0-preview9.19401.1
- Microsoft.EntityFrameworkCore.InMemory - 3.0.0-preview9.19401.1
- Microsoft.EntityFrameworkCore.Relational - 3.0.0-preview9.19401.1
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.0-preview9.19401.1
2019-08-01 17:21:09 +00:00
Ryan Nowak
45f50905d5
Remove stateful prerendering
...
Fixes : #12245
Fixes : #12630
This change removes stateful pre-rendering from Server-Side Blazor. This
means that when you render a component during the initial HTTP request,
we we will no longer preserve the component instances and their
parameters. While this feature was useful, it cause serious scalability
concerns.
This means that it will now be required to register "entry-point"
components in startup similar to client-side Blazor.
2019-08-01 07:44:14 -07:00
dotnet-maestro[bot]
97489dc50d
[release/3.0] Update dependencies from 3 repositories ( #12699 )
...
Update dependencies from https://github.com/aspnet/Blazor build 20190729.2
- Microsoft.AspNetCore.Blazor.Mono - 3.0.0-preview9.19379.2
Add .NET Standard 2.1 workaround (@dougbu)
- we don't have dotnet/sdk#3463 fix
* Update dependencies from https://github.com/aspnet/AspNetCore-Tooling build 20190731.10
- Microsoft.NET.Sdk.Razor - 5.0.0-alpha1.19381.10
- Microsoft.CodeAnalysis.Razor - 5.0.0-alpha1.19381.10
- Microsoft.AspNetCore.Razor.Language - 5.0.0-alpha1.19381.10
- Microsoft.AspNetCore.Mvc.Razor.Extensions - 5.0.0-alpha1.19381.10
Dependency coherency updates
- Microsoft.Net.Compilers.Toolset - 3.3.0-beta2-19374-05 (parent: Microsoft.Extensions.Logging)
* Update dependencies from https://github.com/aspnet/EntityFrameworkCore build 20190731.15
- Microsoft.EntityFrameworkCore.Tools - 3.0.0-preview9.19381.15
- Microsoft.EntityFrameworkCore.SqlServer - 3.0.0-preview9.19381.15
- dotnet-ef - 3.0.0-preview9.19381.15
- Microsoft.EntityFrameworkCore - 3.0.0-preview9.19381.15
- Microsoft.EntityFrameworkCore.InMemory - 3.0.0-preview9.19381.15
- Microsoft.EntityFrameworkCore.Relational - 3.0.0-preview9.19381.15
- Microsoft.EntityFrameworkCore.Sqlite - 3.0.0-preview9.19381.15
Dependency coherency updates
- Microsoft.AspNetCore.Analyzer.Testing - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.BenchmarkRunner.Sources - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ActivatorUtilities.Sources - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Abstractions - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.Memory - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.SqlServer - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Caching.StackExchangeRedis - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.CommandLineUtils.Sources - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Abstractions - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.AzureKeyVault - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Binder - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.CommandLine - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.EnvironmentVariables - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.FileExtensions - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Ini - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Json - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.KeyPerFile - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.UserSecrets - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration.Xml - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Configuration - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection.Abstractions - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DependencyInjection - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.DiagnosticAdapter - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Diagnostics.HealthChecks - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Abstractions - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Composite - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Embedded - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileProviders.Physical - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.FileSystemGlobbing - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HashCodeCombiner.Sources - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting.Abstractions - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Hosting - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.HostFactoryResolver.Sources - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Http - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization.Abstractions - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Localization - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Abstractions - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.AzureAppServices - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Configuration - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Console - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Debug - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventSource - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.EventLog - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.TraceSource - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Logging.Testing - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ObjectPool - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.ConfigurationExtensions - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options.DataAnnotations - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Options - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ParameterDefaultValue.Sources - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.Primitives - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.TypeNameHelper.Sources - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.ValueStopwatch.Sources - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Extensions.WebEncoders - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Internal.Extensions.Refs - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.JSInterop - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Mono.WebAssembly.Interop - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Bcl.AsyncInterfaces - 1.0.0-preview8.19378.8 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.NETCore.App.Runtime.win-x64 - 3.0.0-preview8-28379-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.Extensions.Logging - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.CSharp - 4.6.0-preview8.19378.8 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.Win32.Registry - 4.6.0-preview8.19378.8 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.Win32.SystemEvents - 4.6.0-preview8.19378.8 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.ComponentModel.Annotations - 4.6.0-preview8.19378.8 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Diagnostics.EventLog - 4.6.0-preview8.19378.8 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Drawing.Common - 4.6.0-preview8.19378.8 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.IO.Pipelines - 4.6.0-preview8.19378.8 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Net.Http.WinHttpHandler - 4.6.0-preview8.19378.8 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Net.WebSockets.WebSocketProtocol - 4.6.0-preview8.19378.8 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Reflection.Metadata - 1.7.0-preview8.19378.8 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Runtime.CompilerServices.Unsafe - 4.6.0-preview8.19378.8 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Cryptography.Cng - 4.6.0-preview8.19378.8 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Cryptography.Pkcs - 4.6.0-preview8.19378.8 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Cryptography.Xml - 4.6.0-preview8.19378.8 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Permissions - 4.6.0-preview8.19378.8 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Security.Principal.Windows - 4.6.0-preview8.19378.8 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.ServiceProcess.ServiceController - 4.6.0-preview8.19378.8 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Text.Encodings.Web - 4.6.0-preview8.19378.8 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Text.Json - 4.6.0-preview8.19378.8 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Threading.Channels - 4.6.0-preview8.19378.8 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- System.Windows.Extensions - 4.6.0-preview8.19378.8 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Microsoft.Extensions.DependencyModel - 3.0.0-preview8-28379-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.NETCore.App.Ref - 3.0.0-preview8-28379-05 (parent: Microsoft.Extensions.Logging)
- NETStandard.Library.Ref - 2.1.0-preview8-28379-05 (parent: Microsoft.Extensions.Logging)
- Microsoft.NETCore.Platforms - 3.0.0-preview8.19378.8 (parent: Microsoft.NETCore.App.Runtime.win-x64)
- Internal.AspNetCore.Analyzers - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.AspNetCore.Testing - 3.0.0-preview9.19381.9 (parent: Microsoft.EntityFrameworkCore)
- Microsoft.Net.Compilers.Toolset - 3.3.0-beta2-19381-04 (parent: Microsoft.Extensions.Logging)
2019-08-01 07:01:19 -07:00
Ryan Nowak
b42ebf119d
Fix incrementalism of Blazor solution
2019-07-31 13:31:26 -07:00
James Newton-King
1434e239d6
Change OSX to macOS in error message ( #12756 )
2019-08-01 08:30:56 +12:00
Javier Calvarro Nelson
2969001a75
[Identity] Fix flaky test ( #12771 )
2019-07-31 21:58:10 +02:00
Pranav K
9e6924235e
Add logging to RemoteRenderer to time a round-trip ( #12638 )
2019-07-31 12:18:31 -07:00
Justin Kotalik
aab75e8dda
Decrement activeStreamCount earlier s.t. client view matches the server. ( #12704 )
2019-07-31 07:45:36 -07:00
Javier Calvarro Nelson
7a0a286ce6
[Blazor][ Fixes #12197 ] Dispose the circuit on graceful disconnections ( #12449 )
...
* Immediately releases the circuit when the client disconnects gracefully.
* This functionality is limited to websockets.
* We are able to release the circuit in the following situations:
* The user closes the browser.
* The user navigates away.
* The user reloads the page.
2019-07-31 13:17:00 +02:00
Phil Henning
b2e11d77e8
Insert seed localization for templates. ( #11040 )
...
* Insert seed localization for templates.
* Updated loc strings for Worker for some langs
* Update en string.json for Blazor project template
* Refresh strings for initial seeding
2019-07-30 16:00:08 -07:00
Ryan Nowak
6045c08072
Blazor API Review: Built-in components
...
Fixes : #12548
Renaming properties to drop 'Content' as a suffix. We haven't been
consistent in using this, and we're removing it instead of adding it
elsewhere.
2019-07-30 09:35:49 -07:00
Ryan Nowak
bef01f3e9a
Blazor API Review: UIEventArgs types
...
Fixes : #12550
Removes UIEventArgs in favor of EventArgs as the base class.
Moving Type into all of our event args types - this is important because
many of the events types are used for multiple events.
The only think about this that isn't perfect is that we have keep
special casing change because of how binding works. I renamed the type
to drop the `UI` prefix. It's not possible to define a subclass in the
Web project because of the way covariance works (or doesn't work) in
.NET.
2019-07-29 22:40:28 -07:00
Ryan Nowak
3919dd55c6
Fix globalization for `@bind-value`
...
Fixes : #12631
These mappings were missing and adding them restores the correct
behaviour. Mixing up the usage of `@bind` vs `@bind-value` so we have
more coverage of this.
2019-07-29 22:39:56 -07:00
Ryan Nowak
82478eac6b
Blazor API Review: Forms
...
Fixes : #12549
2019-07-29 22:37:12 -07:00
John Luo
56193850b9
Update branding to preview 9 ( #12698 )
2019-07-29 14:08:23 -07:00
Doug Bunting
e0e9096af5
Make Roslyn package coherent with Extensions version
2019-07-29 10:21:32 -07:00
Stephen Halter
75f4159e5a
Accurately count only newly examined bytes ( #12639 )
...
- Ensure Kestrel count all bytes read using TryRead
- Ensure Kestrel doesn't double count examined but
not consumed bytes
2019-07-29 10:14:14 -07:00
John Luo
4debc9c455
Update SDK to preview7 ( #12682 )
...
- react to SDK changes (Microsoft.NETCore.App.Ref assemblies grouping)
- update `dotnet new -u` logic
2019-07-29 10:06:07 -07:00
John Luo
e2d57e2806
Revert "Improve components infrastructure ( #12145 )" ( #12679 )
...
* Revert "Improve components infrastructure (#12145 )"
This reverts commit e149f9c0aa .
* Update JS file
2019-07-29 09:03:57 -07:00
David Fowler
ad94d41a7f
Fixed parameter name casing ( #12681 )
2019-07-29 07:25:28 -07:00
Alessio Franceschelli
c23b9feb19
HeaderPropagation: reworded registration exception for clarity ( #12636 )
...
* HeaderPropagation: reworded registration exception for clarity
* feedback
2019-07-27 12:59:17 -07:00
Brennan
a1e77a2c09
Set transport handlers earlier in Typescript client ( #12524 )
2019-07-26 21:54:07 -07:00
James Newton-King
2d4fd05adf
Add host caution to MVC GetUri extension methods ( #12629 )
2019-07-27 15:39:25 +12:00
Brennan
98abd9e256
Cleanup exception message ( #12623 )
2019-07-26 15:54:27 -07:00
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
Doug Bunting
922baf932e
Reduce truncation of information in the runningProcesses*.txt files ( #12398 )
...
- widen lines in process dump files
- increase process dump frequency to once every 2 minutes (from 5 minutes)
- simplify process dump filenames
- no need to keep files from previous ./build.ps1 invocations around
- by definition, job isn't hung if it can move to next build step
- save previous process dump files
- should help if cancellation kills processes before final process dump runs
nits:
- move from deprecated `Get-WmiObject` to `Get-CimInstance`
- trim trailing whitespace
2019-07-25 22:27:45 -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