Update dependency Swashbuckle.AspNetCore to v10 #31

Merged
mcmuzzle merged 1 commits from renovate/major-swashbuckle-aspnetcore-monorepo into main 2026-02-06 22:47:26 +00:00
Collaborator

This PR contains the following updates:

Package Change Age Confidence
Swashbuckle.AspNetCore 6.9.010.1.2 age confidence

Release Notes

domaindrivendev/Swashbuckle.AspNetCore (Swashbuckle.AspNetCore)

v10.1.2

What's Changed

Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v10.1.1...v10.1.2

v10.1.1

What's Changed

New Contributors

Full Changelog:

v10.1.0

What's Changed

New Features
Bug Fixes
Miscellaneous

New Contributors

Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v10.0.1...v10.1.0

v10.0.1

What's Changed

Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v10.0.0...v10.0.1

v10.0.0

Swashbuckle.AspNetCore v10.0.0

[!IMPORTANT]
This release contains major breaking changes.

Read our v10 migration guide for further information.

With this release, Swashbuckle.AspNetCore adds support for generating OpenAPI 3.1 documents and for ASP.NET Core 10.

Swashbuckle.AspNetCore v10 depends on OpenAPI.NET v2.3 which introduces many breaking changes to the public API surface. More information can be found in their OpenAPI.NET v2 Upgrade Guide.

To reduce the number of breaking behavioural changes in Swashbuckle.AspNetCore v10, generation of OpenAPI 3.1 documents is opt-in.
To generate OpenAPI 3.1 documents, change the OpenAPI version as shown in the code snippet below:

app.UseSwagger(options =>
{
    options.OpenApiVersion = OpenApiSpecVersion.OpenApi3_1;
});

[!TIP]
It is strongly recommended that you upgrade to Swashbuckle.AspNetCore v9.0.6 before upgrading to v10.

[!IMPORTANT]
Use of Swashbuckle.AspNetCore with the ASP.NET Core WithOpenApi() method is no longer supported.

What's Changed

Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v9.0.6...v10.0.0

v9.0.6

What's Changed

Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v9.0.5...v9.0.6

v9.0.5

What's Changed

Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v9.0.4...v9.0.5

v9.0.4

What's Changed

New Contributors

Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v9.0.3...v9.0.4

v9.0.3

What's Changed

Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v9.0.2...v9.0.3

v9.0.2

What's Changed

New Contributors

Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v9.0.1...v9.0.2

v9.0.1

What's Changed

Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v9.0.0...v9.0.1

v9.0.0

📣 This release contains the following breaking changes:

  • Drops support for netstandard2.0 and thus .NET Framework - now only net8.0 and net9.0 are supported.
  • Removes all public members annotated as [Obsolete] in previous releases.
  • Removes the deprecated --serializeasv2 option from Swashbuckle.AspNetCore.Cli, which was superseded by --openapiversion from version 8.0.0.

What's Changed

Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v8.1.4...v9.0.0

v8.1.4

What's Changed

Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v8.1.3...v8.1.4

v8.1.3

What's Changed

New Contributors

Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v8.1.2...v8.1.3

v8.1.2

What's Changed

New Contributors

Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v8.1.1...v8.1.2

v8.1.1

What's Changed

Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v8.1.0...v8.1.1

v8.1.0

What's Changed

Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v8.0.0...v8.1.0

v8.0.0

[!IMPORTANT]
Swashbuckle.AspNetCore drops support for .NET 6.

Swashbuckle.AspNetCore v8.0.0 makes the following notable changes:

  • Drops support for net6.0.
  • The netstandard2.0 TFM 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). You may need to clear your browser's cache to pick up the latest JavaScript files for swagger-ui.
  • To prepare for future support for OpenAPI 3.1 documents, deprecates the SerializeAsV2 property 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;
    
  • To prepare for future support for OpenAPI 3.1 documents, the Swashbuckle.AspNetCore.Cli tool has deprecated the --serializeasv2 option 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

Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v7.3.2...v8.0.0

v7.3.2

What's Changed

New Contributors

Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v7.3.1...v7.3.2

v7.3.1

What's Changed

Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v7.3.0...v7.3.1

v7.3.0

What's Changed

New Contributors

Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v7.2.0...v7.3.0

v7.2.0

What's Changed

New Contributors

Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v7.1.0...v7.2.0

v7.1.0

What's Changed

New Contributors

Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v7.0.0...v7.1.0

v7.0.0

What's Changed

New Contributors

Full Changelog: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v6.9.0...v7.0.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [Swashbuckle.AspNetCore](https://github.com/domaindrivendev/Swashbuckle.AspNetCore) | `6.9.0` → `10.1.2` | ![age](https://developer.mend.io/api/mc/badges/age/nuget/Swashbuckle.AspNetCore/10.1.2?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/nuget/Swashbuckle.AspNetCore/6.9.0/10.1.2?slim=true) | --- ### Release Notes <details> <summary>domaindrivendev/Swashbuckle.AspNetCore (Swashbuckle.AspNetCore)</summary> ### [`v10.1.2`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v10.1.2) #### What's Changed - Fix browser caching behaviour by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3772](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3772) - Fix document URL serialization by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3773](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3773) **Full Changelog**: <https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v10.1.1...v10.1.2> ### [`v10.1.1`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v10.1.1) #### What's Changed - Add cache headers to document URLs endpoint by [@&#8203;Copilot](https://github.com/Copilot) and [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3766](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3766) #### New Contributors - [@&#8203;Copilot](https://github.com/Copilot) made their first contribution in [#&#8203;3766](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3766) **Full Changelog**: ### [`v10.1.0`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v10.1.0) #### What's Changed ##### New Features - Add public method `SchemaRepository.ReplaceSchemaId` by [@&#8203;bkoelman](https://github.com/bkoelman) in [#&#8203;3708](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3708) ##### Bug Fixes - Exclude inherited properties only when base added to `AllOf` by [@&#8203;John-Paul-R](https://github.com/John-Paul-R) in [#&#8203;3692](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3692) ##### Miscellaneous - Add clarifying example in migration guide to v10 by [@&#8203;markuspalme](https://github.com/markuspalme) in [#&#8203;3672](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3672) - Add markdown linter by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3673](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3673) - Update dependencies by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3685](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3685) - Validate OpenAPI documents create valid C# clients by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3686](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3686) - End-to-end client validation tests by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3687](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3687) - Add NSwag client test by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3689](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3689) - Fix GitHub step summaries by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3691](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3691) - Clarify compatibility by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3694](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3694) - Update zizmor by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3695](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3695) - Suppress zizmor false-positive by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3696](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3696) - Refactor tests by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3705](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3705) - Use NuGet Trusted Publishing by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3574](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3574) - Annotate `TryLookupByType` with nullability hints by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3719](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3719) - Bump swagger-ui-dist to 5.31.0 by [@&#8203;dependabot](https://github.com/dependabot) in [#&#8203;3720](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3720) #### New Contributors - [@&#8203;markuspalme](https://github.com/markuspalme) made their first contribution in [#&#8203;3672](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3672) - [@&#8203;John-Paul-R](https://github.com/John-Paul-R) made their first contribution in [#&#8203;3692](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3692) **Full Changelog**: <https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v10.0.1...v10.1.0> ### [`v10.0.1`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v10.0.1) #### What's Changed - Prepare for OpenAPI.NET 3.0 by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3647](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3647) - Fix exception sorting operation tags by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3652](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3652) - Improve version table by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3653](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3653) - Update migration guide by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3654](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3654) **Full Changelog**: <https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v10.0.0...v10.0.1> ### [`v10.0.0`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v10.0.0) ### Swashbuckle.AspNetCore v10.0.0 > \[!IMPORTANT]\ > This release contains major breaking changes. > > Read our [v10 migration guide](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/blob/HEAD/docs/migrating-to-v10.md) for further information. With this release, Swashbuckle.AspNetCore adds support for generating OpenAPI 3.1 documents and for ASP.NET Core 10. Swashbuckle.AspNetCore v10 depends on [OpenAPI.NET v2.3](https://github.com/microsoft/OpenAPI.NET/releases/tag/v2.3.0) which introduces many breaking changes to the public API surface. More information can be found in their [OpenAPI.NET v2 Upgrade Guide](https://github.com/microsoft/OpenAPI.NET/blob/main/docs/upgrade-guide-2.md). To reduce the number of breaking behavioural changes in Swashbuckle.AspNetCore v10, generation of OpenAPI 3.1 documents is **opt-in**. To generate OpenAPI 3.1 documents, change the OpenAPI version as shown in the code snippet below: ```csharp app.UseSwagger(options => { options.OpenApiVersion = OpenApiSpecVersion.OpenApi3_1; }); ``` > \[!TIP] > It is strongly recommended that you upgrade to [Swashbuckle.AspNetCore v9.0.6](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v9.0.6) **before** upgrading to v10. > \[!IMPORTANT]\ > Use of Swashbuckle.AspNetCore with the ASP.NET Core [`WithOpenApi()` method](https://learn.microsoft.com/dotnet/core/compatibility/aspnet-core/10/withopenapi-deprecated) is no longer supported. #### What's Changed - Update README badges by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3597](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3597) - Extend NuGet package validation by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3602](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3602) - Support .NET 10 by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3283](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3283) **Full Changelog**: <https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v9.0.6...v10.0.0> ### [`v9.0.6`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v9.0.6) #### What's Changed - Bump redoc from 2.5.0 to 2.5.1 by [@&#8203;dependabot](https://github.com/dependabot) in [#&#8203;3587](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3587) - Bump swagger-ui from 5.29.1 to 5.29.2 by [@&#8203;dependabot](https://github.com/dependabot) in [#&#8203;3595](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3595) **Full Changelog**: <https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v9.0.5...v9.0.6> ### [`v9.0.5`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v9.0.5) #### What's Changed - .NET 10 preparation by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3565](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3565) - Update NuGet packages by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3573](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3573) - Fix anchors by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3577](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3577) - Bump swagger-ui-dist from 5.27.1 to 5.29.1 **Full Changelog**: <https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v9.0.4...v9.0.5> ### [`v9.0.4`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v9.0.4) #### What's Changed - Fix incorrect `ETag` values by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3490](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3490) - Fix `Accept-Encoding` parsing by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3492](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3492) - Check `Accept-Encoding` quality by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3493](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3493) - Update xunit packages by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3500](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3500) - Add release notes configuration by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3502](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3502) - Simplify release workflow by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3503](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3503) - Bump xunit dependencies by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3508](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3508) - Update NuGet dependencies by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3513](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3513) - Remove `WebHost` usage from tests by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3517](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3517) - Fix typos by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3520](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3520) - Sign-off commits by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3526](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3526) - Add zizmor by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3528](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3528) - Fix permissions by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3529](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3529) - Bump zizmor by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3535](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3535) - Add default `$type` discriminator for `[JsonPolymorphic]` by [@&#8203;lilinus](https://github.com/lilinus) in [#&#8203;3496](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3496) - Update NuGet dependencies by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3545](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3545) #### New Contributors - [@&#8203;lilinus](https://github.com/lilinus) made their first contribution in [#&#8203;3496](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3496) **Full Changelog**: <https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v9.0.3...v9.0.4> ### [`v9.0.3`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v9.0.3) #### What's Changed - Fix incorrect `Content-Length` for swagger-ui and Redoc static assets by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3488](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3488) **Full Changelog**: <https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v9.0.2...v9.0.3> ### [`v9.0.2`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v9.0.2) #### What's Changed - Generate SBOM by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3468](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3468) - Compress swagger-ui and Redoc files in embedded resources with GZip by [@&#8203;stratosblue](https://github.com/stratosblue) in [#&#8203;3399](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3399) - Refactor GZip compression by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3480](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3480) #### New Contributors - [@&#8203;stratosblue](https://github.com/stratosblue) made their first contribution in [#&#8203;3399](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3399) **Full Changelog**: <https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v9.0.1...v9.0.2> ### [`v9.0.1`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v9.0.1) #### What's Changed - Fix missing Swashbuckle.AspNetCore metapackage dependencies by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3460](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3460) **Full Changelog**: <https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v9.0.0...v9.0.1> ### [`v9.0.0`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v9.0.0) 📣 This release contains the following **breaking changes**: - Drops support for `netstandard2.0` and thus .NET Framework - now only `net8.0` and `net9.0` are supported. - Removes all public members annotated as `[Obsolete]` in previous releases. - Removes the deprecated `--serializeasv2` option from Swashbuckle.AspNetCore.Cli, which was superseded by `--openapiversion` from version 8.0.0. #### What's Changed - Add tests for `[Range]` and respect `ParseLimitsInInvariantCulture` property by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3448](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3448) - Fix `[Range]` behaviour by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3449](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3449) - Refactor sample websites by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3450](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3450) - Drop netstandard support by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3422](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3422) **Full Changelog**: <https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v8.1.4...v9.0.0> ### [`v8.1.4`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v8.1.4) #### What's Changed - Avoid `ArgumentNullException` being thrown generating examples by [@&#8203;skironDotNet](https://github.com/skironDotNet) in [#&#8203;3444](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3444) **Full Changelog**: <https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v8.1.3...v8.1.4> ### [`v8.1.3`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v8.1.3) #### What's Changed - Re-enable MyGet publishing by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3421](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3421) - Improve test reliability by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3423](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3423) - Fix conflicting Git/EditorConfig settings by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3430](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3430) - Add integration test logging by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3431](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3431) - Disable Static Web Assets by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3432](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3432) - Typo fixes by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3433](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3433) - Fix HumanizeHrefTags not working when see tag spans over multiple lines by [@&#8203;Focus1337](https://github.com/Focus1337) in [#&#8203;3435](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3435) - Revert [#&#8203;3377](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/issues/3377) by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3436](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3436) #### New Contributors - [@&#8203;Focus1337](https://github.com/Focus1337) made their first contribution in [#&#8203;3435](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3435) **Full Changelog**: <https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v8.1.2...v8.1.3> ### [`v8.1.2`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v8.1.2) #### What's Changed - Update to fix Lists/Arrays of nullables not getting marked as nullable by [@&#8203;Scarecrow7250](https://github.com/Scarecrow7250) in [#&#8203;3364](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3364) - Add build timeout by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3370](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3370) - Bump redoc to 2.5.0 by [@&#8203;dependabot](https://github.com/dependabot) in [#&#8203;3374](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3374) - Add test analytics by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3376](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3376) - Fix schema for nullable enums by [@&#8203;ItsVeryWindy](https://github.com/ItsVeryWindy) in [#&#8203;3377](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3377) - \[Docs] Split readme md by [@&#8203;peter-csala](https://github.com/peter-csala) in [#&#8203;3405](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3405) - \[Docs] Improve the formatting of documentation files by [@&#8203;peter-csala](https://github.com/peter-csala) in [#&#8203;3409](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3409) - Spruce-up the READMEs by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3410](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3410) - Migrate to slnx by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3411](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3411) - Documentation refresh by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3412](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3412) - Bump swagger-ui to 5.22.0 by [@&#8203;dependabot](https://github.com/dependabot) in [#&#8203;3417](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3417) #### New Contributors - [@&#8203;Scarecrow7250](https://github.com/Scarecrow7250) made their first contribution in [#&#8203;3364](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3364) - [@&#8203;ItsVeryWindy](https://github.com/ItsVeryWindy) made their first contribution in [#&#8203;3377](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3377) - [@&#8203;peter-csala](https://github.com/peter-csala) made their first contribution in [#&#8203;3405](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3405) **Full Changelog**: <https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v8.1.1...v8.1.2> ### [`v8.1.1`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v8.1.1) #### What's Changed - Bump swagger-ui to 5.20.8 by [@&#8203;dependabot](https://github.com/dependabot) in [#&#8203;3359](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3359) **Full Changelog**: <https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v8.1.0...v8.1.1> ### [`v8.1.0`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v8.1.0) #### What's Changed - Adopt File-scoped namespaces by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3331](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3331) - Apply analyzer suggestions by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3334](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3334) - Add cache headers for ReDoc and SwaggerUI by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3341](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3341) **Full Changelog**: <https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v8.0.0...v8.1.0> ### [`v8.0.0`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v8.0.0) > \[!IMPORTANT]\ > Swashbuckle.AspNetCore drops support for .NET 6. Swashbuckle.AspNetCore v8.0.0 makes the following notable changes: - Drops support for `net6.0`. - The `netstandard2.0` TFM now depends on [ASP.NET Core 2.3](https://github.com/dotnet/announcements/issues/331) instead of ASP.NET Core 2.1. - Updates Microsoft.OpenApi to [v1.6.23](https://github.com/microsoft/OpenAPI.NET/releases/tag/1.6.23). This update requires the use of swagger-ui [v5.19.0](https://github.com/swagger-api/swagger-ui/releases/tag/v5.19.0) or later ([v5.20.1](https://github.com/swagger-api/swagger-ui/releases/tag/v5.20.1) is included in the Swashbuckle.AspNetCore.SwaggerUI NuGet package). You may need to clear your browser's cache to pick up the latest JavaScript files for swagger-ui. - To prepare for future support for OpenAPI 3.1 documents, deprecates the `SerializeAsV2` property by marking it as `[Obsolete]`. Users should update their code as illustrated below, depending on their use case: ```diff - 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; ``` - To prepare for future support for OpenAPI 3.1 documents, the [Swashbuckle.AspNetCore.Cli](https://www.nuget.org/packages/Swashbuckle.AspNetCore.Cli) tool has deprecated the `--serializeasv2` option and logs a warning to the console. Users should update their usage as illustrated below, depending on their use case: ```diff - swagger tofile --output [output] [startupassembly] [swaggerdoc] --serializeasv2 + swagger tofile --output [output] [startupassembly] [swaggerdoc] --openapiversion "2.0" ``` #### What's Changed - More reliable coverage by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3294](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3294) - Apply IDE refactoring suggestions by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3254](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3254) - .NET 10 preparation by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3285](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3285) - Move snapshots by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3314](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3314) - Snapshot OpenApiDocument as JSON by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3315](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3315) - Enable implicit usings by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3316](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3316) - Drop .NET 6 by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3183](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3183) - Deprecate `SerializeAsV2` by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3286](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3286) - Improve release automation by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3317](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3317) - Bump NuGet packages by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3319](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3319) **Full Changelog**: <https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v7.3.2...v8.0.0> ### [`v7.3.2`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v7.3.2) #### What's Changed - Fix humanize for multiline `code` and `<para>` tags by [@&#8203;EvgeniyZ](https://github.com/EvgeniyZ) in [#&#8203;3295](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3295) - Fix `DescribeAllParametersInCamelCase` usage for parameters by [@&#8203;maksim-sovkov](https://github.com/maksim-sovkov) in [#&#8203;3309](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3309) #### New Contributors - [@&#8203;maksim-sovkov](https://github.com/maksim-sovkov) made their first contribution in [#&#8203;3309](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3309) **Full Changelog**: <https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v7.3.1...v7.3.2> ### [`v7.3.1`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v7.3.1) #### What's Changed - Fix for ApiDescriptionProvider throws NRE by [@&#8203;EvgeniyZ](https://github.com/EvgeniyZ) in [#&#8203;3280](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3280) - Bump swagger-ui-dist from 5.19.0 to 5.20.0 by [@&#8203;dependabot](https://github.com/dependabot) in [#&#8203;3279](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3279) **Full Changelog**: <https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v7.3.0...v7.3.1> ### [`v7.3.0`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v7.3.0) #### What's Changed - Add `CreateFromJson` options overload by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3218](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3218) - Stop testing with .NET 6 by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3219](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3219) - Replace IdentityServer4 with Duende.IdentityServer ([#&#8203;3008](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/issues/3008)) by [@&#8203;pseudometalhead](https://github.com/pseudometalhead) in [#&#8203;3184](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3184) - Fix JWT version for .NET 9 by [@&#8203;Saibamen](https://github.com/Saibamen) in [#&#8203;3227](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3227) - Adjust readme for issue [#&#8203;1014](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/issues/1014) by [@&#8203;EvgeniyZ](https://github.com/EvgeniyZ) in [#&#8203;3233](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3233) - Humanize multiline para tag by [@&#8203;EvgeniyZ](https://github.com/EvgeniyZ) in [#&#8203;3234](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3234) - Humanize multi line code tag by [@&#8203;EvgeniyZ](https://github.com/EvgeniyZ) in [#&#8203;3239](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3239) - Fix `JsonSerializerDataContractResolver` so that it handles jagged arrays correctly by [@&#8203;ozziepeeps](https://github.com/ozziepeeps) in [#&#8203;3245](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3245) - Use `DeepObject` parameter style for dictionary by [@&#8203;EvgeniyZ](https://github.com/EvgeniyZ) in [#&#8203;3241](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3241) - Remove `MvcOptions` from `SchemaGenerator` by [@&#8203;EvgeniyZ](https://github.com/EvgeniyZ) in [#&#8203;3242](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3242) - Optional EOL for XML comments ([#&#8203;2947](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/issues/2947)) by [@&#8203;RainDance74](https://github.com/RainDance74) in [#&#8203;3255](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3255) - Add support for listing available OpenAPI documents by [@&#8203;rassilon](https://github.com/rassilon) in [#&#8203;3263](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3263) - Bump swagger-ui-dist from 5.18.3 to 5.19.0 by [@&#8203;dependabot](https://github.com/dependabot) in [#&#8203;3266](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3266) #### New Contributors - [@&#8203;pseudometalhead](https://github.com/pseudometalhead) made their first contribution in [#&#8203;3184](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3184) - [@&#8203;RainDance74](https://github.com/RainDance74) made their first contribution in [#&#8203;3255](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3255) - [@&#8203;rassilon](https://github.com/rassilon) made their first contribution in [#&#8203;3263](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3263) **Full Changelog**: <https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v7.2.0...v7.3.0> ### [`v7.2.0`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v7.2.0) #### What's Changed - Path grouping strategy by [@&#8203;Saibamen](https://github.com/Saibamen) in [#&#8203;3152](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3152) - Add package README by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3178](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3178) - Allow no match to be found to avoid throwing an exception by [@&#8203;moni-dips](https://github.com/moni-dips) in [#&#8203;3188](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3188) #### New Contributors - [@&#8203;moni-dips](https://github.com/moni-dips) made their first contribution in [#&#8203;3188](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3188) **Full Changelog**: <https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v7.1.0...v7.2.0> ### [`v7.1.0`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v7.1.0) #### What's Changed - Update some nugets by [@&#8203;Saibamen](https://github.com/Saibamen) in [#&#8203;3143](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3143) - Recreate package lock files by [@&#8203;Saibamen](https://github.com/Saibamen) in [#&#8203;3146](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3146) - More asserts for `SwaggerGeneratorTests` by [@&#8203;Saibamen](https://github.com/Saibamen) in [#&#8203;3147](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3147) - Add more HTTP codes to `ResponseDescriptionMap` by [@&#8203;Saibamen](https://github.com/Saibamen) in [#&#8203;3148](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3148) - Test more WebAPI examples by [@&#8203;Saibamen](https://github.com/Saibamen) in [#&#8203;3149](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3149) - Fix issue with `[FromForm]` and enums for Controllers by [@&#8203;jgarciadelanoceda](https://github.com/jgarciadelanoceda) in [#&#8203;3164](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3164) - Support `[Description]` and `[ReadOnly]` by [@&#8203;jgarciadelanoceda](https://github.com/jgarciadelanoceda) in [#&#8203;3162](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3162) - Second level inheritance for `UseOneOfForPolymorphism` by [@&#8203;k0ka](https://github.com/k0ka) in [#&#8203;3155](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3155) - Avoid exception checking nullability by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3119](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3119) - Fix `NotSupportedException` in AoT test project by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3171](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3171) - Create `snupkg` files by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3168](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3168) - Support of `[JsonPolymorphic]` and `[JsonDerivedType]` attributes by [@&#8203;k0ka](https://github.com/k0ka) in [#&#8203;3170](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3170) #### New Contributors - [@&#8203;k0ka](https://github.com/k0ka) made their first contribution in [#&#8203;3155](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3155) **Full Changelog**: <https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v7.0.0...v7.1.0> ### [`v7.0.0`](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases/tag/v7.0.0) #### What's Changed - Refactor filter descriptor type checks in SwaggerGen by [@&#8203;iskandersierra](https://github.com/iskandersierra) in [#&#8203;3125](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3125) - Apply SwaggerIgnore on Newtonsoft by [@&#8203;jgarciadelanoceda](https://github.com/jgarciadelanoceda) in [#&#8203;3134](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3134) - Support .NET 9 by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3007](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3007) - Drop support for .NET (Core) versions prior to 8 (except 6) by [@&#8203;martincostello](https://github.com/martincostello) in [#&#8203;3007](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3007) - Fix FromForm without WithOpenApi schemas by [@&#8203;jgarciadelanoceda](https://github.com/jgarciadelanoceda) in [#&#8203;3133](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3133) #### New Contributors - [@&#8203;iskandersierra](https://github.com/iskandersierra) made their first contribution in [#&#8203;3125](https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3125) **Full Changelog**: <https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v6.9.0...v7.0.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4zLjUiLCJ1cGRhdGVkSW5WZXIiOiI0My4zLjUiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=-->
renovateBot added 1 commit 2026-02-06 22:16:12 +00:00
Update dependency Swashbuckle.AspNetCore to v10
All checks were successful
Main Build Process / Build & Test (pull_request) Successful in 1m11s
ae26a8882c

Code Coverage

Package Line Rate Branch Rate Complexity Health
LittleTown.Core 91% 93% 88
LittleTown.StaticDataAccess 100% 100% 9
Summary 92% (145 / 157) 93% (56 / 60) 97

📊 Rapport HTML complet

![Code Coverage](https://img.shields.io/badge/Code%20Coverage-92%25-success?style=flat) Package | Line Rate | Branch Rate | Complexity | Health -------- | --------- | ----------- | ---------- | ------ LittleTown.Core | 91% | 93% | 88 | ✔ LittleTown.StaticDataAccess | 100% | 100% | 9 | ✔ **Summary** | **92%** (145 / 157) | **93%** (56 / 60) | **97** | ✔ 📊 [Rapport HTML complet](https://docs.borealian.ovh/workspace/mcmuzzle/LittleTown/coverage-report/index.html)
mcmuzzle force-pushed renovate/major-swashbuckle-aspnetcore-monorepo from ae26a8882c to bf85247b41 2026-02-06 22:38:21 +00:00 Compare

Code Coverage

Package Line Rate Branch Rate Complexity Health
LittleTown.Core 91% 93% 88
LittleTown.StaticDataAccess 100% 100% 9
Summary 92% (145 / 157) 93% (56 / 60) 97

📊 Rapport HTML complet

![Code Coverage](https://img.shields.io/badge/Code%20Coverage-92%25-success?style=flat) Package | Line Rate | Branch Rate | Complexity | Health -------- | --------- | ----------- | ---------- | ------ LittleTown.Core | 91% | 93% | 88 | ✔ LittleTown.StaticDataAccess | 100% | 100% | 9 | ✔ **Summary** | **92%** (145 / 157) | **93%** (56 / 60) | **97** | ✔ 📊 [Rapport HTML complet](https://docs.borealian.ovh/workspace/mcmuzzle/LittleTown/coverage-report/index.html)
mcmuzzle merged commit bf85247b41 into main 2026-02-06 22:47:26 +00:00
mcmuzzle deleted branch renovate/major-swashbuckle-aspnetcore-monorepo 2026-02-06 22:47:26 +00:00
Sign in to join this conversation.