chore(deps): update dependency swashbuckle.aspnetcore to v10 #462

Open
kjuulh wants to merge 1 commits from renovate/swashbuckle-aspnetcore-monorepo into main
Owner

This PR contains the following updates:

Package Type Update Change
Swashbuckle.AspNetCore nuget major 7.3.1 -> 10.0.1

⚠️ Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

domaindrivendev/Swashbuckle.AspNetCore (Swashbuckle.AspNetCore)

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


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 | Type | Update | Change | |---|---|---|---| | [Swashbuckle.AspNetCore](https://github.com/domaindrivendev/Swashbuckle.AspNetCore) | nuget | major | `7.3.1` -> `10.0.1` | --- > ⚠️ **Warning** > > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>domaindrivendev/Swashbuckle.AspNetCore (Swashbuckle.AspNetCore)</summary> ### [`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 https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3647 - Fix exception sorting operation tags by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3652 - Improve version table by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3653 - Update migration guide by [@&#8203;martincostello](https://github.com/martincostello) in 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 https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3597 - Extend NuGet package validation by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3602 - Support .NET 10 by [@&#8203;martincostello](https://github.com/martincostello) in 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 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 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 https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3565 - Update NuGet packages by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3573 - Fix anchors by [@&#8203;martincostello](https://github.com/martincostello) in 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 https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3490 - Fix `Accept-Encoding` parsing by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3492 - Check `Accept-Encoding` quality by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3493 - Update xunit packages by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3500 - Add release notes configuration by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3502 - Simplify release workflow by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3503 - Bump xunit dependencies by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3508 - Update NuGet dependencies by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3513 - Remove `WebHost` usage from tests by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3517 - Fix typos by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3520 - Sign-off commits by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3526 - Add zizmor by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3528 - Fix permissions by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3529 - Bump zizmor by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3535 - Add default `$type` discriminator for `[JsonPolymorphic]` by [@&#8203;lilinus](https://github.com/lilinus) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3496 - Update NuGet dependencies by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3545 #### New Contributors - [@&#8203;lilinus](https://github.com/lilinus) made their first contribution in 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 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 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 https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3399 - Refactor GZip compression by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3480 #### New Contributors - [@&#8203;stratosblue](https://github.com/stratosblue) made their first contribution in 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 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 https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3448 - Fix `[Range]` behaviour by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3449 - Refactor sample websites by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3450 - Drop netstandard support by [@&#8203;martincostello](https://github.com/martincostello) in 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 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 https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3421 - Improve test reliability by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3423 - Fix conflicting Git/EditorConfig settings by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3430 - Add integration test logging by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3431 - Disable Static Web Assets by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3432 - Typo fixes by [@&#8203;martincostello](https://github.com/martincostello) in 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 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 https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3436 #### New Contributors - [@&#8203;Focus1337](https://github.com/Focus1337) made their first contribution in 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 https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3364 - Add build timeout by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3370 - Bump redoc to 2.5.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3374 - Add test analytics by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3376 - Fix schema for nullable enums by [@&#8203;ItsVeryWindy](https://github.com/ItsVeryWindy) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3377 - \[Docs] Split readme md by [@&#8203;peter-csala](https://github.com/peter-csala) in 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 https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3409 - Spruce-up the READMEs by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3410 - Migrate to slnx by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3411 - Documentation refresh by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3412 - Bump swagger-ui to 5.22.0 by [@&#8203;dependabot](https://github.com/dependabot) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3417 #### New Contributors - [@&#8203;Scarecrow7250](https://github.com/Scarecrow7250) made their first contribution in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3364 - [@&#8203;ItsVeryWindy](https://github.com/ItsVeryWindy) made their first contribution in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3377 - [@&#8203;peter-csala](https://github.com/peter-csala) made their first contribution in 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 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 https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3331 - Apply analyzer suggestions by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3334 - Add cache headers for ReDoc and SwaggerUI by [@&#8203;martincostello](https://github.com/martincostello) in 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 https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3294 - Apply IDE refactoring suggestions by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3254 - .NET 10 preparation by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3285 - Move snapshots by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3314 - Snapshot OpenApiDocument as JSON by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3315 - Enable implicit usings by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3316 - Drop .NET 6 by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3183 - Deprecate `SerializeAsV2` by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3286 - Improve release automation by [@&#8203;martincostello](https://github.com/martincostello) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3317 - Bump NuGet packages by [@&#8203;martincostello](https://github.com/martincostello) in 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 https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3295 - Fix `DescribeAllParametersInCamelCase` usage for parameters by [@&#8203;maksim-sovkov](https://github.com/maksim-sovkov) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3309 #### New Contributors - [@&#8203;maksim-sovkov](https://github.com/maksim-sovkov) made their first contribution in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3309 **Full Changelog**: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v7.3.1...v7.3.2 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, 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:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMTYuMSIsInVwZGF0ZWRJblZlciI6IjM5LjI2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2025-03-26 02:00:38 +01:00
kjuulh force-pushed renovate/swashbuckle-aspnetcore-monorepo from 9fec6609d0 to 58d2e18596 2025-04-01 02:47:25 +02:00 Compare
kjuulh force-pushed renovate/swashbuckle-aspnetcore-monorepo from 58d2e18596 to 13aa4727b5 2025-04-11 02:49:11 +02:00 Compare
kjuulh force-pushed renovate/swashbuckle-aspnetcore-monorepo from 13aa4727b5 to c7e4dc7b3c 2025-05-24 02:50:14 +02:00 Compare
kjuulh force-pushed renovate/swashbuckle-aspnetcore-monorepo from c7e4dc7b3c to 6dfd9908d8 2025-06-04 02:50:49 +02:00 Compare
kjuulh force-pushed renovate/swashbuckle-aspnetcore-monorepo from 6dfd9908d8 to 1a3f945fee 2025-06-05 02:53:53 +02:00 Compare
kjuulh changed title from chore(deps): update dependency swashbuckle.aspnetcore to v8 to chore(deps): update dependency swashbuckle.aspnetcore to v9 2025-06-18 02:51:06 +02:00
kjuulh force-pushed renovate/swashbuckle-aspnetcore-monorepo from 1a3f945fee to 110be8e394 2025-06-18 02:51:08 +02:00 Compare
kjuulh force-pushed renovate/swashbuckle-aspnetcore-monorepo from 110be8e394 to f65b3a9e28 2025-07-09 02:55:14 +02:00 Compare
kjuulh changed title from chore(deps): update dependency swashbuckle.aspnetcore to v9 to chore(deps): update dependency swashbuckle.aspnetcore to v10 2025-11-13 03:46:00 +01:00
kjuulh force-pushed renovate/swashbuckle-aspnetcore-monorepo from f65b3a9e28 to 7b214f6ee7 2025-11-13 03:46:00 +01:00 Compare
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/swashbuckle-aspnetcore-monorepo:renovate/swashbuckle-aspnetcore-monorepo
git checkout renovate/swashbuckle-aspnetcore-monorepo
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: kjuulh/todo#462
No description provided.