Bump Swashbuckle.AspNetCore from 7.3.1 to 8.0.0
Bumps Swashbuckle.AspNetCore from 7.3.1 to 8.0.0.
Release notes
Sourced from Swashbuckle.AspNetCore's releases.
v8.0.0
[!IMPORTANT]
Swashbuckle.AspNetCore drops support for .NET 6.Swashbuckle.AspNetCore v8.0.0 makes the following notable changes:
To prepare for future support for OpenAPI 3.1 documents, the Swashbuckle.AspNetCore.Cli tool has deprecated the
- Drops support for
net6.0.- The
netstandard2.0TFM now depends on ASP.NET Core 2.3 instead of ASP.NET Core 2.1.- Updates Microsoft.OpenApi to v1.6.23. This update requires the use of swagger-ui v5.19.0 or later (v5.20.1 is included in the Swashbuckle.AspNetCore.SwaggerUI NuGet package).
- To prepare for future support for OpenAPI 3.1 documents, deprecates the
SerializeAsV2property by marking it as[Obsolete]. Users should update their code as illustrated below, depending on their use case:- options.SerializeAsV2 = true; + options.OpenApiVersion = Microsoft.OpenApi.OpenApiSpecVersion.OpenApi2_0; // or if explicitly disabling (the same as the default behaviour) options.SerializeAsV2 = false; options.OpenApiVersion = Microsoft.OpenApi.OpenApiSpecVersion.OpenApi3_0;--serializeasv2option and logs a warning to the console. Users should update their usage as illustrated below, depending on their use case:- swagger tofile --output [output] [startupassembly] [swaggerdoc] --serializeasv2 + swagger tofile --output [output] [startupassembly] [swaggerdoc] --openapiversion "2.0"What's Changed
- More reliable coverage by
@martincostelloin domaindrivendev/Swashbuckle.AspNetCore#3294- Apply IDE refactoring suggestions by
@martincostelloin domaindrivendev/Swashbuckle.AspNetCore#3254- .NET 10 preparation by
@martincostelloin domaindrivendev/Swashbuckle.AspNetCore#3285- Move snapshots by
@martincostelloin domaindrivendev/Swashbuckle.AspNetCore#3314- Snapshot OpenApiDocument as JSON by
@martincostelloin domaindrivendev/Swashbuckle.AspNetCore#3315- Enable implicit usings by
@martincostelloin domaindrivendev/Swashbuckle.AspNetCore#3316- Drop .NET 6 by
@martincostelloin domaindrivendev/Swashbuckle.AspNetCore#3183- Deprecate
SerializeAsV2by@martincostelloin domaindrivendev/Swashbuckle.AspNetCore#3286- Improve release automation by
@martincostelloin domaindrivendev/Swashbuckle.AspNetCore#3317- Bump NuGet packages by
@martincostelloin domaindrivendev/Swashbuckle.AspNetCore#3319Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v7.3.2...v8.0.0
v7.3.2
What's Changed
- Fix humanize for multiline
codeand<para>tags by@EvgeniyZin domaindrivendev/Swashbuckle.AspNetCore#3295- Fix
DescribeAllParametersInCamelCaseusage for parameters by@maksim-sovkovin domaindrivendev/Swashbuckle.AspNetCore#3309New Contributors
@maksim-sovkovmade their first contribution in domaindrivendev/Swashbuckle.AspNetCore#3309Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v7.3.1...v7.3.2
Commits
-
8e674b4Bump NuGet packages -
4252befImprove release automation (#3317) -
cb39741Deprecate SerializeAsV2 (#3286) -
114c2f0Drop .NET 6 (#3183) -
730b315Enable implicit usings (#3316) -
5826b72Snapshot OpenApiDocument as JSON -
f8bcb7dMove snapshots (#3314) -
ecbb87f.NET 10 preparation (#3285) -
1d7aed0Apply IDE refactoring suggestions (#3254) -
1433ce6More reliable coverage (#3294) - Additional commits viewable in compare view
Dependabot commands
You can trigger Dependabot actions by commenting on this MR
-
$dependabot recreatewill recreate this MR rewriting all the manual changes and resolving conflicts