chore(deps): update dependency swashbuckle.aspnetcore to v9 #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 -> 9.0.1

⚠️ Warning

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


Release Notes

domaindrivendev/Swashbuckle.AspNetCore (Swashbuckle.AspNetCore)

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` -> `9.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> ### [`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
This pull request can be merged automatically.
You are not authorized to merge this pull request.

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.