Skip to content

Commit a8e8505

Browse files
authored
Regenerate diffs for 10.0 previews 1-5 (#10013)
* Regenerate diffs for 10.0 previews 1-5 * Remove System.Threading.AccessControl from ASP.NET p5 diff * Fix indenting
1 parent 63b04e3 commit a8e8505

File tree

120 files changed

+3118
-3431
lines changed

Some content is hidden

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

120 files changed

+3118
-3431
lines changed
Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
1-
# API Difference net9.0-ga vs net10.0-preview1
1+
# API difference between .NET 9.0 GA and .NET 10.0 Preview 1
22

33
API listing follows standard diff formatting.
44
Lines preceded by a '+' are additions and a '-' indicates removal.
55

66
* [Microsoft.AspNetCore.Components](10.0-preview1_Microsoft.AspNetCore.Components.md)
7-
* [Microsoft.AspNetCore.Components.Routing](10.0-preview1_Microsoft.AspNetCore.Components.Routing.md)
8-
* [Microsoft.AspNetCore.Connections.Features](10.0-preview1_Microsoft.AspNetCore.Connections.Features.md)
9-
* [Microsoft.AspNetCore.Http](10.0-preview1_Microsoft.AspNetCore.Http.md)
10-
* [Microsoft.AspNetCore.Http.HttpResults](10.0-preview1_Microsoft.AspNetCore.Http.HttpResults.md)
11-
* [Microsoft.AspNetCore.Http.Metadata](10.0-preview1_Microsoft.AspNetCore.Http.Metadata.md)
12-
* [Microsoft.AspNetCore.Mvc](10.0-preview1_Microsoft.AspNetCore.Mvc.md)
13-
* [Microsoft.AspNetCore.Mvc.ApiExplorer](10.0-preview1_Microsoft.AspNetCore.Mvc.ApiExplorer.md)
14-
* [Microsoft.Extensions.DependencyInjection](10.0-preview1_Microsoft.Extensions.DependencyInjection.md)
15-
7+
* [Microsoft.AspNetCore.Connections.Abstractions](10.0-preview1_Microsoft.AspNetCore.Connections.Abstractions.md)
8+
* [Microsoft.AspNetCore.Http.Abstractions](10.0-preview1_Microsoft.AspNetCore.Http.Abstractions.md)
9+
* [Microsoft.AspNetCore.Http.Results](10.0-preview1_Microsoft.AspNetCore.Http.Results.md)
10+
* [Microsoft.AspNetCore.Mvc.Abstractions](10.0-preview1_Microsoft.AspNetCore.Mvc.Abstractions.md)
11+
* [Microsoft.AspNetCore.Mvc.Core](10.0-preview1_Microsoft.AspNetCore.Mvc.Core.md)
12+
* [Microsoft.Extensions.DependencyInjection.Abstractions](10.0-preview1_Microsoft.Extensions.DependencyInjection.Abstractions.md)

release-notes/10.0/preview/preview1/api-diff/Microsoft.AspNetCore.App/10.0-preview1_Microsoft.AspNetCore.Components.Routing.md

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

release-notes/10.0/preview/preview1/api-diff/Microsoft.AspNetCore.App/10.0-preview1_Microsoft.AspNetCore.Components.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
# Microsoft.AspNetCore.Components
22

3-
``` diff
4-
namespace Microsoft.AspNetCore.Components {
5-
[AttributeUsageAttribute(4, AllowMultiple=true, Inherited=false)]
6-
public sealed class RouteAttribute : Attribute {
7-
- public RouteAttribute(string template);
8-
+ public RouteAttribute([StringSyntaxAttribute("Route")] string template);
9-
}
10-
}
3+
```diff
4+
namespace Microsoft.AspNetCore.Components.Routing
5+
{
6+
public class Router : Microsoft.AspNetCore.Components.IComponent, Microsoft.AspNetCore.Components.IHandleAfterRender, System.IDisposable
7+
{
8+
- [System.ObsoleteAttribute("This property is obsolete and configuring it has not effect.")]
9+
+ [System.ObsoleteAttribute("This property is obsolete and configuring it has no effect.")]
10+
public bool PreferExactMatches { get; set; }
11+
}
12+
}
1113
```
12-
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Microsoft.AspNetCore.Connections.Abstractions
2+
3+
```diff
4+
namespace Microsoft.AspNetCore.Connections.Features
5+
{
6+
public interface ITlsHandshakeFeature
7+
{
8+
+ [System.ObsoleteAttribute("KeyExchangeAlgorithm, KeyExchangeStrength, CipherAlgorithm, CipherStrength, HashAlgorithm and HashStrength properties are obsolete. Use NegotiatedCipherSuite instead.", DiagnosticId = "SYSLIB0058", UrlFormat = "https://aka.ms/dotnet-warnings/{0}")]
9+
System.Security.Authentication.CipherAlgorithmType CipherAlgorithm { get; }
10+
+ [System.ObsoleteAttribute("KeyExchangeAlgorithm, KeyExchangeStrength, CipherAlgorithm, CipherStrength, HashAlgorithm and HashStrength properties are obsolete. Use NegotiatedCipherSuite instead.", DiagnosticId = "SYSLIB0058", UrlFormat = "https://aka.ms/dotnet-warnings/{0}")]
11+
int CipherStrength { get; }
12+
+ [System.ObsoleteAttribute("KeyExchangeAlgorithm, KeyExchangeStrength, CipherAlgorithm, CipherStrength, HashAlgorithm and HashStrength properties are obsolete. Use NegotiatedCipherSuite instead.", DiagnosticId = "SYSLIB0058", UrlFormat = "https://aka.ms/dotnet-warnings/{0}")]
13+
System.Security.Authentication.HashAlgorithmType HashAlgorithm { get; }
14+
+ [System.ObsoleteAttribute("KeyExchangeAlgorithm, KeyExchangeStrength, CipherAlgorithm, CipherStrength, HashAlgorithm and HashStrength properties are obsolete. Use NegotiatedCipherSuite instead.", DiagnosticId = "SYSLIB0058", UrlFormat = "https://aka.ms/dotnet-warnings/{0}")]
15+
int HashStrength { get; }
16+
+ [System.ObsoleteAttribute("KeyExchangeAlgorithm, KeyExchangeStrength, CipherAlgorithm, CipherStrength, HashAlgorithm and HashStrength properties are obsolete. Use NegotiatedCipherSuite instead.", DiagnosticId = "SYSLIB0058", UrlFormat = "https://aka.ms/dotnet-warnings/{0}")]
17+
System.Security.Authentication.ExchangeAlgorithmType KeyExchangeAlgorithm { get; }
18+
+ [System.ObsoleteAttribute("KeyExchangeAlgorithm, KeyExchangeStrength, CipherAlgorithm, CipherStrength, HashAlgorithm and HashStrength properties are obsolete. Use NegotiatedCipherSuite instead.", DiagnosticId = "SYSLIB0058", UrlFormat = "https://aka.ms/dotnet-warnings/{0}")]
19+
int KeyExchangeStrength { get; }
20+
}
21+
}
22+
```

release-notes/10.0/preview/preview1/api-diff/Microsoft.AspNetCore.App/10.0-preview1_Microsoft.AspNetCore.Connections.Features.md

Lines changed: 0 additions & 27 deletions
This file was deleted.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Microsoft.AspNetCore.Http.Abstractions
2+
3+
```diff
4+
namespace Microsoft.AspNetCore.Http
5+
{
6+
public sealed class ProducesResponseTypeMetadata : Microsoft.AspNetCore.Http.Metadata.IProducesResponseTypeMetadata
7+
{
8+
+ public string? Description { get; set; }
9+
}
10+
}
11+
namespace Microsoft.AspNetCore.Http.Metadata
12+
{
13+
public interface IProducesResponseTypeMetadata
14+
{
15+
+ string? Description { get; }
16+
}
17+
}
18+
```

release-notes/10.0/preview/preview1/api-diff/Microsoft.AspNetCore.App/10.0-preview1_Microsoft.AspNetCore.Http.HttpResults.md

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

release-notes/10.0/preview/preview1/api-diff/Microsoft.AspNetCore.App/10.0-preview1_Microsoft.AspNetCore.Http.Metadata.md

Lines changed: 0 additions & 12 deletions
This file was deleted.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Microsoft.AspNetCore.Http.Results
2+
3+
```diff
4+
namespace Microsoft.AspNetCore.Http.HttpResults
5+
{
6+
public sealed class RedirectHttpResult : Microsoft.AspNetCore.Http.IResult
7+
{
8+
+ public static bool IsLocalUrl(string? url);
9+
}
10+
}
11+
```

release-notes/10.0/preview/preview1/api-diff/Microsoft.AspNetCore.App/10.0-preview1_Microsoft.AspNetCore.Http.md

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

0 commit comments

Comments
 (0)