Artak
93eec70bb8
Added `aspnet-blazor-eng` as a code-owner for the `src/Components` ( #20593 )
...
* Added `aspnet-blazor-eng` as a code-owner for the `src/Components`
* Fixed the alias
2020-04-07 00:51:44 +00:00
Javier Calvarro Nelson
f34ef732d2
[Blazor][Wasm] Auth cleanups ( #20587 )
...
* Avoid using query parameter when passing messages to the error UI.
* Adds an additional parameter to automatically perform the redirect.
* Fix provisioning additional tokens in MACWA.
* Fix create solution with spaces
* Cleanup Msal startup APIs.
* Rename UserFactory -> AccountClaimsPrincipalFactory
2020-04-06 16:07:17 -07:00
Steve Sanderson
3224092fdd
Update ws-proxy sources to match Mono commit c5149e31b4d7c ( #20579 )
2020-04-06 22:52:14 +01:00
dotnet-maestro[bot]
96e70ebe0e
[blazor-wasm] Update dependencies from dotnet/blazor dotnet/arcade ( #20531 )
...
* Update dependencies from https://github.com/dotnet/blazor build 20200403.1
- Microsoft.AspNetCore.Components.WebAssembly.Runtime - 3.2.0-preview4.20203.1
* Update dependencies from https://github.com/dotnet/blazor build 20200404.1
- Microsoft.AspNetCore.Components.WebAssembly.Runtime - 3.2.0-preview4.20204.1
* Update dependencies from https://github.com/dotnet/blazor build 20200405.1
- Microsoft.AspNetCore.Components.WebAssembly.Runtime - 3.2.0-preview4.20205.1
* Update dependencies from https://github.com/dotnet/arcade build 20200402.9
- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.20202.9
- Microsoft.DotNet.GenAPI - 1.0.0-beta.20202.9
- Microsoft.DotNet.Helix.Sdk - 2.0.0-beta.20202.9
* Add dotnet-tools
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Co-authored-by: Pranav K <prkrishn@hotmail.com>
2020-04-06 14:08:17 -07:00
Artak
c2afc704a6
Enable doc comments generation ( #20564 )
...
Co-authored-by: Pranav K <prkrishn@hotmail.com>
2020-04-06 10:41:28 -07:00
Pranav K
351eba767c
Cleanup Blazor standalone publish output ( #20470 )
...
* Remove stray content from Blazor's publish output.
* Introduce BlazorPrunePublishOutput as a way for users to opt-out of this.
Fixes https://github.com/dotnet/aspnetcore/issues/17018
2020-04-06 08:50:27 -07:00
Javier Calvarro Nelson
8232c6a4d8
[ Fixes #19644 ][Blazor] Support brotli compression for framework files ( #20363 )
...
* [Blazor] Support brotli compression for framework files
* Adds a new tool to the Blazor.Build package to perform brotli compression.
* Performs brotli compression at publish time
* Centralizes hashing computation in one place and creates hash files for
performing incremental compilations
2020-04-06 08:29:24 -07:00
Javier Calvarro Nelson
fd9c786165
[Blazor] More auth fixes ( #20192 )
...
* Introduces customization options for mapping user claims principals.
* Supports login/logout flows extensibility.
* Improves E2E test reliability
* Improves reliability on the AuthenticationService
* Improves the experience by trying to silently log-in users on startup.
* Avoids loading the Blazor application when within a hidden iframe.
2020-04-04 04:06:25 -07:00
Safia Abdalla
e67e7a08ca
Remove WebAssemblyLoggerFactory and refactor logging setup ( #20432 )
...
**Changes in this PR**
- Replaces `WebAssemblyLoggerFactory` with `LoggerFactory` from logging extensions package
- Moves WebAssemblyConsoleLogger and PrependMessageLogger to provider model
Now that we are using the standard `LoggerFactory` support for config options like `SetMinimumLevel` and `AddProvider` is available.
Compared to what is currently in the `blazor-wasm` branch, the changes in this PR add an additional 12 kb to the total compressed size.
Addresses #19737
2020-04-03 10:22:05 -07:00
Pranav K
41a9588353
Move specifying default Blazor linker config to props file ( #20458 )
...
Fixes #20443
2020-04-03 09:04:38 -07:00
Pranav K
b906b1033c
Preserve files being published to the publish root and the wwwroot ( #19938 )
...
* Preserve files being published to the publish root and the wwwroot
Fixes https://github.com/dotnet/aspnetcore/issues/19926
2020-04-02 16:29:04 -07:00
Pranav K
1b2cb0b93c
Apply suggestions from code review
...
Co-Authored-By: Steve Sanderson <SteveSandersonMS@users.noreply.github.com>
2020-04-02 15:21:42 -07:00
Pranav K
a127eb86da
Fixup
2020-04-02 15:14:48 -07:00
Pranav K
861e88c61b
Fixup tests
2020-04-02 15:14:44 -07:00
Pranav K
a7c2d25ffa
Remove constraints on WebAssembly.Build package
...
Make Blazor-Wasm projects not-packable by default
2020-04-02 15:13:35 -07:00
Pranav K
0c614ff9c7
Fixup
2020-04-02 15:13:34 -07:00
Pranav K
a9494214fa
Preserve files being published to the publish root and the wwwroot
...
Fixes https://github.com/dotnet/aspnetcore/issues/19926
2020-04-02 15:13:33 -07:00
Steve Sanderson
113cb5422d
Support JsonStringEnumConverter. Fixes #19086 ( #20446 )
...
* Fix serializing enums. Fixes #19086
* Add E2E test
2020-04-02 16:09:34 +01:00
Pranav K
dd2f0c9d90
Remove the use of toJavaScriptString ( #20260 )
...
* Allow readString to optionally read boolean values as string
Fixes https://github.com/dotnet/aspnetcore/issues/19784
2020-04-02 07:51:57 -07:00
Steve Sanderson
ae569e2b48
Add some extra publish integration tests, plus fix publish-from-VS-with-RID ( #20410 )
...
* Add detailed integration tests for publishing service workers, assets manifests, and blazor.boot.json
* Fix publishing from VS with non-portable RID
2020-04-01 13:35:30 -07:00
Markus Rodler
a8bd551d99
Set crossorigin to anonymous for integrity attribute ( #20348 )
...
* Set crossorigin to anonymous for integrity attribute
dotnet/aspnetcore#20305
* Fix formatting of output
dotnet/aspnetcore#20305
2020-04-01 09:53:46 -07:00
dotnet-maestro[bot]
5285c5e47e
Update dependencies from https://github.com/dotnet/blazor build 20200331.1 ( #20380 )
...
- Microsoft.AspNetCore.Components.WebAssembly.Runtime - 3.2.0-preview4.20181.1
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
2020-04-01 00:15:07 +00:00
Steve Sanderson
aeff119dc4
Blazor dev server: serve all files ( #20355 )
...
* Serve all files in development. Fixes #19931
* Dev server code tidy
2020-03-31 16:08:22 +01:00
Steve Sanderson
05ee136e87
Rename site.css to app.css. Fixes #19779
2020-03-31 12:31:57 +01:00
Steve Sanderson
c877f88026
Add error page to hosted server project. Fixes #19670
2020-03-31 12:31:57 +01:00
Artak
87539a81f9
Removed the `useWebAssemblyDebugging` flag ( #20325 )
2020-03-30 13:00:09 -07:00
Safia Abdalla
cba5387f28
Bring back logic to remove unwanted env variables ( #20326 )
2020-03-30 12:34:19 -07:00
Pranav K
df1252a3f8
Load satellite resources before rendering root components ( #20299 )
...
* Load satellite resources before rendering components
2020-03-30 11:26:25 -07:00
Pranav K
fa2db44d89
Update WebAssemblyHost.cs
2020-03-29 19:08:10 -07:00
Pranav K
248b31e0fb
Load satellite resources before rendering components
2020-03-29 15:20:59 -07:00
dotnet-maestro[bot]
78534e59c1
Update dependencies from https://github.com/dotnet/blazor build 20200329.1 ( #20296 )
...
- Microsoft.AspNetCore.Components.WebAssembly.Runtime - 3.2.0-preview4.20179.1
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
2020-03-29 22:11:08 +00:00
dotnet-maestro[bot]
07b12fe0bc
Update dependencies from https://github.com/dotnet/blazor build 20200328.1 ( #20278 )
...
- Microsoft.AspNetCore.Components.WebAssembly.Runtime - 3.2.0-preview4.20178.1
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
2020-03-28 22:02:10 +00:00
Pranav K
56b944f46c
Fix missing pdbs in Blazor build ( #20257 )
...
* Fix missing pdbs in Blazor build
* Allow tests to run in Debug and Release independent of the configuration test project is built in
Fixes https://github.com/dotnet/aspnetcore/issues/20242
2020-03-28 14:50:11 -07:00
Steve Sanderson
c379bae8e9
Fix SWAM hash ( #20240 )
2020-03-28 17:53:46 +00:00
dotnet-maestro[bot]
18a196bcef
Update dependencies from https://github.com/dotnet/corefx build 20200327.1 ( #20244 )
...
- System.Net.Http.Json - 3.2.0-preview4.20177.1
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
2020-03-27 16:40:30 +00:00
dotnet-maestro[bot]
35d7da843a
Update dependencies from https://github.com/dotnet/corefx build 20200326.5 ( #20218 )
...
- System.Net.Http.Json - 3.2.0-preview4.20176.5
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
2020-03-27 00:46:42 +00:00
dotnet-maestro[bot]
45eb0398b8
Update dependencies from https://github.com/dotnet/blazor build 20200326.1 ( #20213 )
...
- Microsoft.AspNetCore.Components.WebAssembly.Runtime - 3.2.0-preview4.20176.1
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
2020-03-26 22:25:29 +00:00
Pranav K
82d05ae785
Add support for loading satellite assemblies ( #20033 )
...
* Add support for loading satellite assemblies
Fixes #17016
2020-03-26 13:58:00 -07:00
Pranav K
cb6858fe31
Update to using System.Net.Http.Json ( #20195 )
2020-03-26 10:13:23 -07:00
Javier Calvarro Nelson
b0a95d05e0
[Blazor] Auth fixes ( #20191 )
...
* Adds MetadataAddress property to OidcProviderOptions.
* Sets defaults for the Msal cache location on the provider initialization.
* Updates the template to avoid redirecting to the login page if the user is already authenticated.
* Fixes startup APIs for AddRemoteAuthentication.
* Fixes TryGetToken for the Blazor MSAL library when the token can't be acquired silently.
2020-03-26 09:07:46 -07:00
dotnet-maestro[bot]
3e07040bd1
Update dependencies from https://github.com/dotnet/blazor build 20200325.4 ( #20177 )
...
- Microsoft.AspNetCore.Components.WebAssembly.Runtime - 3.2.0-preview4.20175.4
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
2020-03-26 05:55:27 +00:00
dotnet-maestro[bot]
c93389f449
Update dependencies from https://github.com/dotnet/blazor build 20200325.2 ( #20161 )
...
- Microsoft.AspNetCore.Components.WebAssembly.Runtime - 3.2.0-preview4.20175.2
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
2020-03-25 23:05:31 +00:00
Pranav K
263cf0bbd2
Skip flaky test
2020-03-25 15:59:17 -07:00
Pranav K
de2fa4c69c
Update versions
...
* Update Blazor version to preview4
* Update ASP.NET Core references to 3.1.3
* Remove DisableImplicitComponentsAnalyzers workaround
2020-03-25 15:59:17 -07:00
Steve Sanderson
bbe9cca327
Write hash to service worker on publish ( #20131 )
...
* Write SWAM version into service worker output
* Update project template
* Add publishing test
* Update src/Components/WebAssembly/Build/src/targets/ServiceWorkerAssetsManifest.targets
Co-Authored-By: Pranav K <prkrishn@hotmail.com>
* Add E2E test for hosted PWA too
* Avoid test clashes
* E2E test fix
* E2E test fix
* E2E test fix
Co-authored-by: Pranav K <prkrishn@hotmail.com>
2020-03-25 20:06:03 +00:00
dotnet-maestro[bot]
b9d7772816
Update dependencies from https://github.com/dotnet/blazor build 20200325.1 ( #20139 )
...
- Microsoft.AspNetCore.Components.WebAssembly.Runtime - 3.2.0-preview4.20175.1
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
2020-03-25 17:51:25 +00:00
Pranav K
9f9783c0df
Tweaks for WASM stress runs ( #20109 )
...
Prevent interleaved console writes when reporting stats
Do not print browser logs by defualt
2020-03-25 09:04:29 -07:00
Pranav K
4ab628ff76
Merge pull request #20129 from dotnet/prkrishn/fixup-merge
...
Redo merge from blazor-wasm-preview4 preserving commit history
2020-03-25 07:38:52 -07:00
Pranav K
7e62656975
Merge remote-tracking branch 'origin/blazor-wasm-preview4' into blazor-wasm
2020-03-25 06:36:51 -07:00
Pranav K
383a4ebc52
Revert "Blazor wasm preview4 ( #20117 )"
...
This reverts commit 47536a3c14 .
2020-03-25 06:36:30 -07:00