chore(deps): update dependency swashbuckle.aspnetcore to v8 #26

Merged
cswimr merged 1 commit from renovate/major-swashbuckle-aspnetcore-monorepo into main 2025-03-28 10:28:13 -05:00
Collaborator

This PR contains the following updates:

Package Type Update Change
Swashbuckle.AspNetCore nuget major 7.2.0 -> 8.0.0

Release Notes

domaindrivendev/Swashbuckle.AspNetCore (Swashbuckle.AspNetCore)

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


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 | Type | Update | Change | |---|---|---|---| | [Swashbuckle.AspNetCore](https://github.com/domaindrivendev/Swashbuckle.AspNetCore) | nuget | major | `7.2.0` -> `8.0.0` | --- ### Release Notes <details> <summary>domaindrivendev/Swashbuckle.AspNetCore (Swashbuckle.AspNetCore)</summary> ### [`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 ### [`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 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 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 https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3218 - Stop testing with .NET 6 by [@&#8203;martincostello](https://github.com/martincostello) in 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 https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3184 - Fix JWT version for .NET 9 by [@&#8203;Saibamen](https://github.com/Saibamen) in 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 https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3233 - Humanize multiline para tag by [@&#8203;EvgeniyZ](https://github.com/EvgeniyZ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3234 - Humanize multi line code tag by [@&#8203;EvgeniyZ](https://github.com/EvgeniyZ) in 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 https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3245 - Use `DeepObject` parameter style for dictionary by [@&#8203;EvgeniyZ](https://github.com/EvgeniyZ) in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3241 - Remove `MvcOptions` from `SchemaGenerator` by [@&#8203;EvgeniyZ](https://github.com/EvgeniyZ) in 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 https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3255 - Add support for listing available OpenAPI documents by [@&#8203;rassilon](https://github.com/rassilon) in 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 https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3266 #### New Contributors - [@&#8203;pseudometalhead](https://github.com/pseudometalhead) made their first contribution in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3184 - [@&#8203;RainDance74](https://github.com/RainDance74) made their first contribution in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3255 - [@&#8203;rassilon](https://github.com/rassilon) made their first contribution in https://github.com/domaindrivendev/Swashbuckle.AspNetCore/pull/3263 **Full Changelog**: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v7.2.0...v7.3.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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjYuMCIsInVwZGF0ZWRJblZlciI6IjM5LjIwOC4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJLaW5kL1Jlbm92YXRlIl19-->
Renovate added the
Kind
Renovate
label 2025-03-18 13:21:16 -05:00
Renovate added 1 commit 2025-03-18 13:21:16 -05:00
cswimr merged commit 078fba5ead into main 2025-03-28 10:28:13 -05:00
cswimr deleted branch renovate/major-swashbuckle-aspnetcore-monorepo 2025-03-28 10:28:14 -05:00
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: cswimr/LookingGlass#26
No description provided.