Skip to content

Commit 7559524

Browse files
authored
Merge pull request #18089 from dotnet/master
Update live with master
2 parents 23243f6 + 055a387 commit 7559524

5 files changed

Lines changed: 78 additions & 125 deletions

File tree

aspnetcore/performance/response-compression.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public void ConfigureServices(IServiceCollection services)
124124
}
125125
```
126126

127-
The Brotoli Compression Provider must be added when any compression providers are explicitly added:
127+
The Brotli Compression Provider must be added when any compression providers are explicitly added:
128128

129129
[!code-csharp[](response-compression/samples/3.x/SampleApp/Startup.cs?name=snippet1&highlight=5)]
130130

@@ -370,7 +370,7 @@ public void ConfigureServices(IServiceCollection services)
370370
}
371371
```
372372

373-
The Brotoli Compression Provider must be added when any compression providers are explicitly added:
373+
The Brotli Compression Provider must be added when any compression providers are explicitly added:
374374

375375
[!code-csharp[](response-compression/samples/2.x/SampleApp/Startup.cs?name=snippet1&highlight=5)]
376376

aspnetcore/whats-new/2019-10.md

Lines changed: 0 additions & 119 deletions
This file was deleted.

aspnetcore/whats-new/2020-04.md

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
---
2+
title: "ASP.NET Core docs: What's new for April 2020"
3+
description: "What's new in ASP.NET Core docs for April 2020."
4+
ms.date: 05/01/2020
5+
---
6+
7+
# ASP.NET Core docs: What's new for April 2020
8+
9+
This article lists some of the significant changes to docs during this period.
10+
11+
## Blazor
12+
13+
### Updated articles
14+
15+
- [Create and use ASP.NET Core Razor components](../blazor/components.md) - Surface warning/approach for component state
16+
- [ASP.NET Core Blazor hosting model configuration](../blazor/hosting-model-configuration.md) - Document Blazor WASM support for using configuration values in startup logic
17+
18+
## gRPC
19+
20+
### Updated articles
21+
22+
- [Call gRPC services with the .NET client](../grpc/client.md) - Update gRPC client docs with trailer information
23+
24+
## MVC
25+
26+
### Updated articles
27+
28+
- [Razor file compilation in ASP.NET Core](../mvc/views/view-compilation.md) - Adapt Razor runtime compilation guidance to changes made in ASP.NET Core 3.1
29+
30+
## Security
31+
32+
### Updated articles
33+
34+
- [Add, download, and delete custom user data to Identity in an ASP.NET Core project](../security/authentication/add-user-data.md) - Adding additional claims to Identity
35+
- [ASP.NET Core Blazor authentication and authorization](../security/blazor/index.md) - Improvements to Blazor auth coverage
36+
- [Secure ASP.NET Core Blazor Server apps](../security/blazor/server.md) - Improvements to Blazor auth coverage
37+
- [ASP.NET Core Blazor WebAssembly additional security scenarios](../security/blazor/webassembly/additional-scenarios.md)
38+
- Apply Blazor Preview 5 updates
39+
- Move two Blazor WASM Overview sections
40+
- [Secure ASP.NET Core Blazor WebAssembly](../security/blazor/webassembly/index.md) - Improvements to Blazor auth coverage
41+
- [Enable Cross-Origin Requests (CORS) in ASP.NET Core](../security/cors.md)
42+
- Rewrite entire doc and update for ASP.NET Core 3.1
43+
- Provide links to Azure apps for testing CORS
44+
- [Client IP safelist for ASP.NET Core](../security/ip-safelist.md) - Update client IP address safelist doc and app for ASP.NET Core 3.1
45+
46+
## SignalR
47+
48+
### Updated articles
49+
50+
- [ASP.NET Core SignalR configuration](../signalr/configuration.md) - Document the MinimumProtocolVersion property used for advanced SignalR HTTP configuration
51+
- [Use MessagePack Hub Protocol in SignalR for ASP.NET Core](../signalr/messagepackhubprotocol.md) - Update MessagePack docs for 5.0
52+
53+
## Community contributors
54+
55+
The following people have contributed to ASP.NET Core docs in April 2020. Thank you! You can learn how to contribute by following the links under "Get involved" in the [what's new landing page](index.yml).
56+
57+
- [serpent5](https://github.com/serpent5) - Kirk Larkin (11)
58+
- [HamidMolareza](https://github.com/HamidMolareza) - Hamid Molareza (3)
59+
- [MelbourneDeveloper](https://github.com/MelbourneDeveloper) - Christian Findlay (3)
60+
- [inouiw](https://github.com/inouiw) - David New (2)
61+
- [kurtfurbush](https://github.com/kurtfurbush) - Kurt Furbush (2)
62+
- [rdeveen](https://github.com/rdeveen) - R. de Veen (2)
63+
- [wenhx](https://github.com/wenhx) - wenhx (2)
64+
- [brgrz](https://github.com/brgrz) - Marko Hrovatic (1)
65+
- [damienbod](https://github.com/damienbod) - damienbod (1)
66+
- [DrakeLambert](https://github.com/DrakeLambert) - Drake Lambert (1)
67+
- [kkbruce](https://github.com/kkbruce) - Bruce Chen (1)
68+
- [KyleMit](https://github.com/KyleMit) - Kyle (1)
69+
- [Marcel0024](https://github.com/Marcel0024) - Marcel (1)
70+
- [MohamedSahbi](https://github.com/MohamedSahbi) - Mohamed Sahbi (1)
71+
72+
Want to contribute to the ASP.NET Core docs? Read our [contribution guidelines](https://github.com/dotnet/AspNetCore.Docs/blob/master/CONTRIBUTING.md).

aspnetcore/whats-new/index.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ landingContent:
1414
linkLists:
1515
- linkListType: whats-new
1616
links:
17+
- text: April 2020
18+
url: 2020-04.md
1719
- text: March 2020
1820
url: 2020-03.md
1921
- text: February 2020
@@ -24,8 +26,6 @@ landingContent:
2426
url: 2019-12.md
2527
- text: November 2019
2628
url: 2019-11.md
27-
- text: October 2019
28-
url: 2019-10.md
2929

3030
- title: "Get involved - contribute to ASP.NET Core docs"
3131
linkLists:

aspnetcore/whats-new/toc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
- name: 2020
66
expanded: true
77
items:
8+
- name: April
9+
href: 2020-04.md
810
- name: March
911
href: 2020-03.md
1012
- name: February
@@ -18,5 +20,3 @@
1820
href: 2019-12.md
1921
- name: November
2022
href: 2019-11.md
21-
- name: October
22-
href: 2019-10.md

0 commit comments

Comments
 (0)