Swashbuckle.AspNetCore icon indicating copy to clipboard operation
Swashbuckle.AspNetCore copied to clipboard

Swagger tools for documenting API's built on ASP.NET Core

Results 332 Swashbuckle.AspNetCore issues
Sort by recently updated
recently updated
newest added

## Description & reference issues As of .NET 6.0, Swagger/OpenAPI supports using [TagsAttribute](https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.http.tagsattribute?view=aspnetcore-7.0) to rename each group of endpoints, overriding the default value of the controller name. (See also e.g....

cf https://github.com/domaindrivendev/Swashbuckle.AspNetCore/issues/2383 - Add non-regression tests to ensure [DataMember(IsRequired)] do not bypass existing [JsonObject], [JsonProperty] or [JsonRequired] attributes. - Add tests for [DataMember(IsRequired)] and [DataMember(name)] - Update NewtonsoftDataContractResolver to directly...

Review the public API and see if there's any types that are public that don't need to be, such as `SwaggerMiddleware`. That gives us more agility to change implementation details,...

Tracking issue to add support for `net8.0`. This issue does _not_ cover adding support for any new language features added as part of .NET 8 (or 7), such as `required`...

.NET 7 adds support for representing 128-bit integers via the Int128 and UInt128 types. When provided as inputs for an API, the schema generator interprets the type as a string....

feature suggestion

We should add the [Microsoft.CodeAnalysis.PublicApiAnalyzers analyser](https://github.com/dotnet/roslyn-analyzers/blob/main/src/PublicApiAnalyzers/PublicApiAnalyzers.Help.md) to avoid making unintentional binary-breaking changes. Examples: - https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/2418#pullrequestreview-2000191284. - https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/2610#discussion_r1565295657 - https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/2677#discussion_r1565538897 - https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/2718#discussion_r1566883950 - https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/2803#discussion_r1566871645

feature suggestion

Add support for using SwaggerUI with native AoT. SwaggerGen still does not support native AoT, though it happens to work for simple cases from testing the sample app locally. Resolves...

aot
bug fix

Hey there I know it might be an edge case but the HTTP protocol allows to use custom verbs, unfortunately this is currently not supported. I would like to expand...

When I have public class Base { public int BaseProperty { get; set; } } public class Generic : Base { public T GenericProperty { get; set; } } public...

p1
bug

Bump Microsoft.OpenApi packages to 1.6.14. - Resolves #2602. - Resolves #2606.

dependencies
.NET
bug fix