Skip to content

Regenerate diffs for 10.0 previews 1-5 #10013

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
# API Difference net9.0-ga vs net10.0-preview1
# API difference between .NET 9.0 GA and .NET 10.0 Preview 1

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

* [Microsoft.AspNetCore.Components](10.0-preview1_Microsoft.AspNetCore.Components.md)
* [Microsoft.AspNetCore.Components.Routing](10.0-preview1_Microsoft.AspNetCore.Components.Routing.md)
* [Microsoft.AspNetCore.Connections.Features](10.0-preview1_Microsoft.AspNetCore.Connections.Features.md)
* [Microsoft.AspNetCore.Http](10.0-preview1_Microsoft.AspNetCore.Http.md)
* [Microsoft.AspNetCore.Http.HttpResults](10.0-preview1_Microsoft.AspNetCore.Http.HttpResults.md)
* [Microsoft.AspNetCore.Http.Metadata](10.0-preview1_Microsoft.AspNetCore.Http.Metadata.md)
* [Microsoft.AspNetCore.Mvc](10.0-preview1_Microsoft.AspNetCore.Mvc.md)
* [Microsoft.AspNetCore.Mvc.ApiExplorer](10.0-preview1_Microsoft.AspNetCore.Mvc.ApiExplorer.md)
* [Microsoft.Extensions.DependencyInjection](10.0-preview1_Microsoft.Extensions.DependencyInjection.md)

* [Microsoft.AspNetCore.Connections.Abstractions](10.0-preview1_Microsoft.AspNetCore.Connections.Abstractions.md)
* [Microsoft.AspNetCore.Http.Abstractions](10.0-preview1_Microsoft.AspNetCore.Http.Abstractions.md)
* [Microsoft.AspNetCore.Http.Results](10.0-preview1_Microsoft.AspNetCore.Http.Results.md)
* [Microsoft.AspNetCore.Mvc.Abstractions](10.0-preview1_Microsoft.AspNetCore.Mvc.Abstractions.md)
* [Microsoft.AspNetCore.Mvc.Core](10.0-preview1_Microsoft.AspNetCore.Mvc.Core.md)
* [Microsoft.Extensions.DependencyInjection.Abstractions](10.0-preview1_Microsoft.Extensions.DependencyInjection.Abstractions.md)

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# Microsoft.AspNetCore.Components

``` diff
namespace Microsoft.AspNetCore.Components {
[AttributeUsageAttribute(4, AllowMultiple=true, Inherited=false)]
public sealed class RouteAttribute : Attribute {
- public RouteAttribute(string template);
+ public RouteAttribute([StringSyntaxAttribute("Route")] string template);
}
}
```diff
namespace Microsoft.AspNetCore.Components.Routing
{
public class Router : Microsoft.AspNetCore.Components.IComponent, Microsoft.AspNetCore.Components.IHandleAfterRender, System.IDisposable
{
- [System.ObsoleteAttribute("This property is obsolete and configuring it has not effect.")]
+ [System.ObsoleteAttribute("This property is obsolete and configuring it has no effect.")]
public bool PreferExactMatches { get; set; }
}
}
```

Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Microsoft.AspNetCore.Connections.Abstractions

```diff
namespace Microsoft.AspNetCore.Connections.Features
{
public interface ITlsHandshakeFeature
{
+ [System.ObsoleteAttribute("KeyExchangeAlgorithm, KeyExchangeStrength, CipherAlgorithm, CipherStrength, HashAlgorithm and HashStrength properties are obsolete. Use NegotiatedCipherSuite instead.", DiagnosticId = "SYSLIB0058", UrlFormat = "https://aka.ms/dotnet-warnings/{0}")]
System.Security.Authentication.CipherAlgorithmType CipherAlgorithm { get; }
+ [System.ObsoleteAttribute("KeyExchangeAlgorithm, KeyExchangeStrength, CipherAlgorithm, CipherStrength, HashAlgorithm and HashStrength properties are obsolete. Use NegotiatedCipherSuite instead.", DiagnosticId = "SYSLIB0058", UrlFormat = "https://aka.ms/dotnet-warnings/{0}")]
int CipherStrength { get; }
+ [System.ObsoleteAttribute("KeyExchangeAlgorithm, KeyExchangeStrength, CipherAlgorithm, CipherStrength, HashAlgorithm and HashStrength properties are obsolete. Use NegotiatedCipherSuite instead.", DiagnosticId = "SYSLIB0058", UrlFormat = "https://aka.ms/dotnet-warnings/{0}")]
System.Security.Authentication.HashAlgorithmType HashAlgorithm { get; }
+ [System.ObsoleteAttribute("KeyExchangeAlgorithm, KeyExchangeStrength, CipherAlgorithm, CipherStrength, HashAlgorithm and HashStrength properties are obsolete. Use NegotiatedCipherSuite instead.", DiagnosticId = "SYSLIB0058", UrlFormat = "https://aka.ms/dotnet-warnings/{0}")]
int HashStrength { get; }
+ [System.ObsoleteAttribute("KeyExchangeAlgorithm, KeyExchangeStrength, CipherAlgorithm, CipherStrength, HashAlgorithm and HashStrength properties are obsolete. Use NegotiatedCipherSuite instead.", DiagnosticId = "SYSLIB0058", UrlFormat = "https://aka.ms/dotnet-warnings/{0}")]
System.Security.Authentication.ExchangeAlgorithmType KeyExchangeAlgorithm { get; }
+ [System.ObsoleteAttribute("KeyExchangeAlgorithm, KeyExchangeStrength, CipherAlgorithm, CipherStrength, HashAlgorithm and HashStrength properties are obsolete. Use NegotiatedCipherSuite instead.", DiagnosticId = "SYSLIB0058", UrlFormat = "https://aka.ms/dotnet-warnings/{0}")]
int KeyExchangeStrength { get; }
}
}
```

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Microsoft.AspNetCore.Http.Abstractions

```diff
namespace Microsoft.AspNetCore.Http
{
public sealed class ProducesResponseTypeMetadata : Microsoft.AspNetCore.Http.Metadata.IProducesResponseTypeMetadata
{
+ public string? Description { get; set; }
}
}
namespace Microsoft.AspNetCore.Http.Metadata
{
public interface IProducesResponseTypeMetadata
{
+ string? Description { get; }
}
}
```

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Microsoft.AspNetCore.Http.Results

```diff
namespace Microsoft.AspNetCore.Http.HttpResults
{
public sealed class RedirectHttpResult : Microsoft.AspNetCore.Http.IResult
{
+ public static bool IsLocalUrl(string? url);
}
}
```

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Microsoft.AspNetCore.Mvc.Abstractions

```diff
namespace Microsoft.AspNetCore.Mvc.ApiExplorer
{
public class ApiResponseType
{
+ public string? Description { get; set; }
}
}
```

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Microsoft.AspNetCore.Mvc.Core

```diff
namespace Microsoft.AspNetCore.Mvc
{
public class ProducesAttribute : System.Attribute, Microsoft.AspNetCore.Mvc.Filters.IResultFilter, Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata, Microsoft.AspNetCore.Mvc.Filters.IOrderedFilter, Microsoft.AspNetCore.Mvc.ApiExplorer.IApiResponseMetadataProvider
{
+ public string? Description { get; set; }
}
public sealed class ProducesDefaultResponseTypeAttribute : System.Attribute, Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDefaultResponseMetadataProvider, Microsoft.AspNetCore.Mvc.ApiExplorer.IApiResponseMetadataProvider, Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata
{
+ public string? Description { get; set; }
}
public class ProducesResponseTypeAttribute : System.Attribute, Microsoft.AspNetCore.Mvc.ApiExplorer.IApiResponseMetadataProvider, Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata
{
+ public string? Description { get; set; }
}
}
namespace Microsoft.AspNetCore.Mvc.ApiExplorer
{
public interface IApiResponseMetadataProvider : Microsoft.AspNetCore.Mvc.Filters.IFilterMetadata
{
+ string? Description { get; }
}
}
```

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Microsoft.Extensions.DependencyInjection.Abstractions

```diff
namespace Microsoft.Extensions.DependencyInjection
{
- public delegate T ObjectFactory<T>(System.IServiceProvider serviceProvider, object?[]? arguments);
+ public delegate T ObjectFactory<out T>(System.IServiceProvider serviceProvider, object?[]? arguments);
public static class ServiceProviderKeyedServiceExtensions
{
+ public static object? GetKeyedService(this System.IServiceProvider provider, System.Type serviceType, object? serviceKey);
}
}
```

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,36 +1,26 @@
# API Difference net9.0-ga vs net10.0-preview1
# API difference between .NET 9.0 GA and .NET 10.0 Preview 1

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

* [System](10.0-preview1_System.md)
* [System.Collections.Generic](10.0-preview1_System.Collections.Generic.md)
* [System.Collections](10.0-preview1_System.Collections.md)
* [System.Collections.Immutable](10.0-preview1_System.Collections.Immutable.md)
* [System.Collections.ObjectModel](10.0-preview1_System.Collections.ObjectModel.md)
* [System.Collections.Specialized](10.0-preview1_System.Collections.Specialized.md)
* [System.Diagnostics.CodeAnalysis](10.0-preview1_System.Diagnostics.CodeAnalysis.md)
* [System.Console](10.0-preview1_System.Console.md)
* [System.Diagnostics.Tracing](10.0-preview1_System.Diagnostics.Tracing.md)
* [System.Formats.Asn1](10.0-preview1_System.Formats.Asn1.md)
* [System.Globalization](10.0-preview1_System.Globalization.md)
* [System.IO](10.0-preview1_System.IO.md)
* [System.Linq](10.0-preview1_System.Linq.md)
* [System.Net](10.0-preview1_System.Net.md)
* [System.Linq.AsyncEnumerable](10.0-preview1_System.Linq.AsyncEnumerable.md)
* [System.Linq.Queryable](10.0-preview1_System.Linq.Queryable.md)
* [System.Memory](10.0-preview1_System.Memory.md)
* [System.Net.Primitives](10.0-preview1_System.Net.Primitives.md)
* [System.Net.Quic](10.0-preview1_System.Net.Quic.md)
* [System.Net.Security](10.0-preview1_System.Net.Security.md)
* [System.Numerics](10.0-preview1_System.Numerics.md)
* [System.Reflection](10.0-preview1_System.Reflection.md)
* [System.Numerics.Vectors](10.0-preview1_System.Numerics.Vectors.md)
* [System.Reflection.Emit](10.0-preview1_System.Reflection.Emit.md)
* [System.Reflection.Metadata](10.0-preview1_System.Reflection.Metadata.md)
* [System.Runtime.ExceptionServices](10.0-preview1_System.Runtime.ExceptionServices.md)
* [System.Runtime.InteropServices](10.0-preview1_System.Runtime.InteropServices.md)
* [System.Runtime](10.0-preview1_System.Runtime.md)
* [System.Runtime.Intrinsics](10.0-preview1_System.Runtime.Intrinsics.md)
* [System.Runtime.Intrinsics.X86](10.0-preview1_System.Runtime.Intrinsics.X86.md)
* [System.Security.Authentication](10.0-preview1_System.Security.Authentication.md)
* [System.Runtime.Loader](10.0-preview1_System.Runtime.Loader.md)
* [System.Security.Cryptography](10.0-preview1_System.Security.Cryptography.md)
* [System.Security.Cryptography.X509Certificates](10.0-preview1_System.Security.Cryptography.X509Certificates.md)
* [System.Text.Json](10.0-preview1_System.Text.Json.md)
* [System.Text.Json.Nodes](10.0-preview1_System.Text.Json.Nodes.md)
* [System.Text.Json.Serialization](10.0-preview1_System.Text.Json.Serialization.md)
* [System.Threading](10.0-preview1_System.Threading.md)
* [System.Threading.Tasks](10.0-preview1_System.Threading.Tasks.md)
* [System.Xml](10.0-preview1_System.Xml.md)

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
# System.Collections.Immutable

``` diff
namespace System.Collections.Immutable {
public static class ImmutableArray {
- public static ImmutableArray<T> Create<T>(Span<T> items);
+ [OverloadResolutionPriorityAttribute(-1)]
+ public static ImmutableArray<T> Create<T>(Span<T> items);
- public static ImmutableArray<T> ToImmutableArray<T>(this Span<T> items);
+ [OverloadResolutionPriorityAttribute(-1)]
+ public static ImmutableArray<T> ToImmutableArray<T>(this Span<T> items);
}
}
```diff
namespace System.Collections.Immutable
{
public static class ImmutableArray
{
+ [System.Runtime.CompilerServices.OverloadResolutionPriorityAttribute(-1)]
public static System.Collections.Immutable.ImmutableArray<T> Create<T>(System.Span<T> items);
+ [System.Runtime.CompilerServices.OverloadResolutionPriorityAttribute(-1)]
public static System.Collections.Immutable.ImmutableArray<T> ToImmutableArray<T>(this System.Span<T> items);
}
}
```

This file was deleted.

Loading