Skip to content

Commit 79a2d6a

Browse files
authored
Merge pull request #16020 from dotnet/master
Update live with current master 11/27/19
2 parents 93762e1 + 649b656 commit 79a2d6a

File tree

137 files changed

+1057
-550
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+1057
-550
lines changed

.openpublishing.redirection.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,26 @@
8989
"source_path": "docs/core/app-types.md",
9090
"redirect_url": "/dotnet/core/deploying/index"
9191
},
92+
{
93+
"source_path": "docs/core/compatibility/3.0.6-3.0.7.md",
94+
"redirect_url": "/dotnet/core/compatibility/2.2-3.0"
95+
},
96+
{
97+
"source_path": "docs/core/compatibility/3.0.7-3.0.8.md",
98+
"redirect_url": "/dotnet/core/compatibility/2.2-3.0"
99+
},
100+
{
101+
"source_path": "docs/core/compatibility/3.0.8-3.0.9.md",
102+
"redirect_url": "/dotnet/core/compatibility/2.2-3.0"
103+
},
104+
{
105+
"source_path": "docs/core/compatibility/3.0.9-3.0rc1.md",
106+
"redirect_url": "/dotnet/core/compatibility/2.2-3.0"
107+
},
108+
{
109+
"source_path": "docs/core/compatibility/framework-core.md",
110+
"redirect_url": "/dotnet/core/porting/winforms-breaking-changes"
111+
},
92112
{
93113
"source_path": "docs/core/deploying/applications.md",
94114
"redirect_url": "/dotnet/core/deploying/index"

docs/architecture/cloud-native/identity-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public class Startup
5959
options.SignInScheme = IdentityServerConstants.ExternalCookieAuthenticationScheme;
6060

6161
options.ClientId = "<insert here>";
62-
options.ClientSecret = "<inser here>";
62+
options.ClientSecret = "<insert here>";
6363
})
6464
.AddOpenIdConnect("demoidsrv", "IdentityServer", options =>
6565
{

docs/architecture/microservices/multi-container-microservice-net-applications/database-server-container.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ However, when you run Redis in production, it is better to look for a high-avail
156156

157157
Redis provides a Docker image with Redis. That image is available from Docker Hub at this URL:
158158

159-
<https://hub.docker.com/\_/redis/>
159+
<https://hub.docker.com/_/redis/>
160160

161161
You can directly run a Docker Redis container by executing the following Docker CLI command in your command prompt:
162162

docs/breadcrumb/toc.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
tocHref: /dotnet/core/
116116
topicHref: /dotnet/core/index
117117
items:
118-
- name: Compatibility
118+
- name: Breaking changes
119119
tocHref: /dotnet/core/compatibility/
120120
topicHref: /dotnet/core/compatibility/index
121121
- name: Run-time configuration
@@ -127,10 +127,6 @@
127127
- name: Installation guide
128128
tocHref: /dotnet/core/install/
129129
topicHref: /dotnet/core/install/index
130-
items:
131-
- name: Linux package managers
132-
tocHref: /dotnet/core/install/
133-
topicHref: /dotnet/core/install/index
134130
- name: .NET Framework
135131
tocHref: /dotnet/framework/
136132
topicHref: /dotnet/framework/index

docs/core/compatibility/2.2-3.0.md

Lines changed: 40 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
title: Breaking changes, version 2.2 to 3.0 - .NET Core
33
description: Lists the breaking changes from version 2.2 to version 3.0 of .NET Core, ASP.NET Core, and EF Core.
4-
ms.date: "11/20/2019"
4+
ms.date: 11/20/2019
55
---
66
# Breaking changes for migration from Version 2.2 to 3.0
77

8-
If you're migrating from version 2.2 to version 3.0 of .NET Core, ASP.NET Core, or EF Core, review the following topics for breaking changes that may affect your app:
8+
If you're migrating from version 2.2 to version 3.0 of .NET Core, ASP.NET Core, or EF Core, the breaking changes listed in this article may affect your app.
99

1010
## ASP.NET Core
1111

@@ -197,60 +197,84 @@ If you're migrating from version 2.2 to version 3.0 of .NET Core, ASP.NET Core,
197197

198198
## CoreFx
199199

200-
[!INCLUDE[APIs that report version now report product and not file version](~/includes/core-changes/corefx/version-information-changes.md)]
200+
[!INCLUDE[APIs that report version now report product and not file version](~/includes/core-changes/corefx/3.0/version-information-changes.md)]
201201

202202
***
203203

204-
[!INCLUDE[Custom EncoderFallbackBuffer instances cannot fall back recursively](~/includes/core-changes/corefx/custom-encoderfallbackbuffer-cannot-be-recursive.md)]
204+
[!INCLUDE[Custom EncoderFallbackBuffer instances cannot fall back recursively](~/includes/core-changes/corefx/3.0/custom-encoderfallbackbuffer-cannot-be-recursive.md)]
205205

206206
***
207207

208-
[!INCLUDE[Floating point formatting and parsing behavior changes](~/includes/core-changes/corefx/floating-point-changes.md)]
208+
[!INCLUDE[Floating point formatting and parsing behavior changes](~/includes/core-changes/corefx/3.0/floating-point-changes.md)]
209209

210210
***
211211

212-
[!INCLUDE[Floating-point parsing operations no longer fail or throw an OverflowException](~/includes/core-changes/corefx/floating-point-parsing-does-not-overflow.md)]
212+
[!INCLUDE[Floating-point parsing operations no longer fail or throw an OverflowException](~/includes/core-changes/corefx/3.0/floating-point-parsing-does-not-overflow.md)]
213213

214214
***
215215

216-
[!INCLUDE[InvalidAsynchronousStateException moved to another assembly](~/includes/core-changes/corefx/move-invalidasynchronousstateexception.md)]
216+
[!INCLUDE[InvalidAsynchronousStateException moved to another assembly](~/includes/core-changes/corefx/3.0/move-invalidasynchronousstateexception.md)]
217217

218218
***
219219

220-
[!INCLUDE[NET Core 3.0 follows Unicode best practices when replacing ill-formed UTF-8 byte sequences](~/includes/core-changes/corefx/net-core-3-0-follows-unicode-utf8-best-practices.md)]
220+
[!INCLUDE[NET Core 3.0 follows Unicode best practices when replacing ill-formed UTF-8 byte sequences](~/includes/core-changes/corefx/3.0/net-core-3-0-follows-unicode-utf8-best-practices.md)]
221221

222222
***
223223

224-
[!INCLUDE[TypeDescriptionProviderAttribute moved to another assembly](~/includes/core-changes/corefx/move-typedescriptionproviderattribute.md)]
224+
[!INCLUDE[TypeDescriptionProviderAttribute moved to another assembly](~/includes/core-changes/corefx/3.0/move-typedescriptionproviderattribute.md)]
225225

226226
***
227227

228-
[!INCLUDE[ZipArchiveEntry no longer handles archives with inconsistent entry sizes](~/includes/core-changes/corefx/ziparchiveentry-and-inconsistent-entry-sizes.md)]
228+
[!INCLUDE[Change in semantics of `(string)null` in Utf8JsonWriter](~/includes/core-changes/corefx/3.0/change-in-null-in-utf8jsonwriter.md)]
229+
230+
***
231+
232+
[!INCLUDE[Json serializer exception type changed from JsonException to NotSupportedException](~/includes/core-changes/corefx/3.0/serializer-throws-notsupportedexception.md)]
233+
234+
***
235+
236+
[!INCLUDE[JsonEncodedText.Encode methods have an additional JavaScriptEncoder argument](~/includes/core-changes/corefx/3.0/jsonencodedtext-encode-has-additional-argument.md)]
237+
238+
***
239+
240+
[!INCLUDE[JSonFactoryConverter.CreateConverter signature changed](~/includes/core-changes/corefx/3.0/jsonfactoryconverter-createconverter.md)]
241+
242+
***
243+
244+
[!INCLUDE[ZipArchiveEntry no longer handles archives with inconsistent entry sizes](~/includes/core-changes/corefx/3.0/ziparchiveentry-and-inconsistent-entry-sizes.md)]
245+
246+
***
247+
248+
[!INCLUDE[JsonElement API changes](~/includes/core-changes/corefx/3.0/jsonelement-api-changes.md)]
229249

230250
## Cryptography
231251

232-
[!INCLUDE[EnvelopedCms defaults to AES-256 encryption](~/includes/core-changes/cryptography/envelopedcms-defaults-to-aes256.md)]
252+
[!INCLUDE[EnvelopedCms defaults to AES-256 encryption](~/includes/core-changes/cryptography/3.0/envelopedcms-defaults-to-aes256.md)]
253+
254+
***
255+
256+
[!INCLUDE[Minimum size for RSAOpenSsl key generation has increased](~/includes/core-changes/cryptography/3.0/minimum-rsaopenssl-key-size-change.md)]
233257

234258
***
235259

236-
[!INCLUDE[Minimum size for RSAOpenSsl key generation has increased](~/includes/core-changes/cryptography/minimum-rsaopenssl-key-size-change.md)]
260+
[!INCLUDE[.NET Core 3.0 prefers OpenSSL 1.1.x to OpenSSL 1.0.x](~/includes/core-changes/cryptography/3.0/net-core-3-0-prefers-openssl-1-1-x.md)]
237261

238262
***
239263

240-
[!INCLUDE[.NET Core 3.0 prefers OpenSSL 1.1.x to OpenSSL 1.0.x](~/includes/core-changes/cryptography/net-core-3-0-prefers-openssl-1-1-x.md)]
264+
[!INCLUDE[Better argument validation in the Pkcs8PrivateKeyInfo constructor](~/includes/core-changes/cryptography/3.0/better-argument-validation-in-pkcs8privatekeyinfo-ctor.md)]
241265

242266
## Entity Framework Core
243267

244268
[Entity Framework Core breaking changes](/ef/core/what-is-new/ef-core-3.0/breaking-changes)
245269

246270
## Globalization
247271

248-
[!INCLUDE["C" locale maps to the invariant locale](~/includes/core-changes/globalization/c-locale-maps-to-invariant-locale.md)]
272+
[!INCLUDE["C" locale maps to the invariant locale](~/includes/core-changes/globalization/3.0/c-locale-maps-to-invariant-locale.md)]
249273

250274
## Networking
251275

252-
[!INCLUDE[Default value of HttpRequestMessage.Version changed to 1.1](~/includes/core-changes/networking/httprequestmessage-version-change.md)]
276+
[!INCLUDE[Default value of HttpRequestMessage.Version changed to 1.1](~/includes/core-changes/networking/3.0/httprequestmessage-version-change.md)]
253277

254278
## Visual Basic
255279

256-
[!INCLUDE[vbNewLine is obsolete](~/includes/core-changes/visualbasic/vbnewline-is-obsolete.md)]
280+
[!INCLUDE[vbNewLine is obsolete](~/includes/core-changes/visualbasic/3.0/vbnewline-is-obsolete.md)]

0 commit comments

Comments
 (0)