Skip to content

Comments

Update dependency Swashbuckle.AspNetCore.SwaggerGen to v10#4

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/major-swashbuckle-aspnetcore-monorepo
Open

Update dependency Swashbuckle.AspNetCore.SwaggerGen to v10#4
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/major-swashbuckle-aspnetcore-monorepo

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 13, 2024

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
Swashbuckle.AspNetCore.SwaggerGen 6.5.010.1.4 age confidence

Release Notes

domaindrivendev/Swashbuckle.AspNetCore (Swashbuckle.AspNetCore.SwaggerGen)

v10.1.4

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v10.1.3...v10.1.4

v10.1.3

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v10.1.2...v10.1.3

v10.1.2

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@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: domaindrivendev/Swashbuckle.AspNetCore@v10.0.1...v10.1.0

v10.0.1

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@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: domaindrivendev/Swashbuckle.AspNetCore@v9.0.6...v10.0.0

v9.0.6

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v9.0.5...v9.0.6

v9.0.5

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v9.0.4...v9.0.5

v9.0.4

What's Changed
New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v9.0.3...v9.0.4

v9.0.3

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v9.0.2...v9.0.3

v9.0.2

What's Changed
New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v9.0.1...v9.0.2

v9.0.1

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@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: domaindrivendev/Swashbuckle.AspNetCore@v8.1.4...v9.0.0

v8.1.4

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v8.1.3...v8.1.4

v8.1.3

What's Changed
New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v8.1.2...v8.1.3

v8.1.2

What's Changed
New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v8.1.1...v8.1.2

v8.1.1

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v8.1.0...v8.1.1

v8.1.0

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@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: domaindrivendev/Swashbuckle.AspNetCore@v7.3.2...v8.0.0

v7.3.2

What's Changed
New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v7.3.1...v7.3.2

v7.3.1

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v7.3.0...v7.3.1

v7.3.0

What's Changed
New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v7.2.0...v7.3.0

v7.2.0

What's Changed
New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v7.1.0...v7.2.0

v7.1.0

What's Changed
New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v7.0.0...v7.1.0

v7.0.0

What's Changed
New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v6.9.0...v7.0.0

v6.9.0

What's Changed
New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v6.8.1...v6.9.0

v6.8.1

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v6.8.0...v6.8.1

v6.8.0

What's Changed
New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v6.7.3...v6.8.0

v6.7.3

What's Changed
New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v6.7.2...v6.7.3

v6.7.2

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v6.7.1...v6.7.2

v6.7.1

What's Changed
New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v6.7.0...v6.7.1

v6.7.0

What's Changed
New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v6.6.2...v6.7.0

v6.6.2

What's Changed

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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 68e22cb to 0460c29 Compare November 27, 2024 02:16
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 0460c29 to d775cdb Compare December 11, 2024 05:55
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from d775cdb to 3ba3d56 Compare March 1, 2025 04:02
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 3ba3d56 to 136d3ad Compare March 20, 2025 00:01
@renovate renovate bot changed the title Update dependency Swashbuckle.AspNetCore.SwaggerGen to v7 Update dependency Swashbuckle.AspNetCore.SwaggerGen to v8 Mar 20, 2025
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 136d3ad to 56e08c5 Compare April 1, 2025 23:33
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 56e08c5 to f24d25f Compare April 12, 2025 19:46
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from f24d25f to f9a32f4 Compare May 24, 2025 08:06
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from f9a32f4 to d45f651 Compare June 6, 2025 17:11
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from d45f651 to f091fc4 Compare June 14, 2025 23:35
@renovate renovate bot changed the title Update dependency Swashbuckle.AspNetCore.SwaggerGen to v8 Update dependency Swashbuckle.AspNetCore.SwaggerGen to v9 Jun 14, 2025
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from f091fc4 to 2f60a50 Compare July 12, 2025 07:58
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 2f60a50 to 4722127 Compare September 1, 2025 09:31
@socket-security
Copy link

socket-security bot commented Sep 1, 2025

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updatedswashbuckle.aspnetcore.swaggergen@​6.5.0 ⏵ 10.1.410010090100100

View full report

@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch 2 times, most recently from 342e3a9 to 696c0b4 Compare October 3, 2025 10:53
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 696c0b4 to 70584e1 Compare November 16, 2025 16:09
@renovate renovate bot changed the title Update dependency Swashbuckle.AspNetCore.SwaggerGen to v9 Update dependency Swashbuckle.AspNetCore.SwaggerGen to v10 Nov 16, 2025
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 70584e1 to b13e84a Compare December 20, 2025 12:10
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch 2 times, most recently from 581e367 to e132d3b Compare February 5, 2026 20:08
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from e132d3b to 1205ee9 Compare February 15, 2026 07:04
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 1205ee9 to f92d6b2 Compare February 19, 2026 08:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants