Skip to content

Update dependency Swashbuckle.AspNetCore to v9 #60

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Mar 7, 2022

This PR contains the following updates:

Package Change Age Confidence
Swashbuckle.AspNetCore 5.5.1 -> 9.0.3 age confidence

Release Notes

domaindrivendev/Swashbuckle.AspNetCore (Swashbuckle.AspNetCore)

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

New Contributors

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

v6.6.1

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 134d2a6 to dfac8a7 Compare March 26, 2022 12:46
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from dfac8a7 to f5b00ff Compare April 24, 2022 21:19
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from f5b00ff to d5b0837 Compare September 25, 2022 18:01
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from d5b0837 to da515ee Compare March 18, 2023 19:55
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from da515ee to d3c41e4 Compare May 14, 2024 10:25
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from d3c41e4 to 3b41bd9 Compare May 21, 2024 17:00
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 3b41bd9 to 825a2c2 Compare August 1, 2024 10:44
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch 2 times, most recently from 89dc0da to 2e8e8a5 Compare August 24, 2024 12:42
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 2e8e8a5 to 4000635 Compare August 26, 2024 11:12
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch 2 times, most recently from f404bf7 to a07481e Compare September 30, 2024 10:42
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from a07481e to 9c8f365 Compare October 15, 2024 14:35
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 9c8f365 to 77f4931 Compare November 12, 2024 21:45
@renovate renovate bot changed the title Update dependency Swashbuckle.AspNetCore to v6 Update dependency Swashbuckle.AspNetCore to v7 Nov 12, 2024
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 77f4931 to 89d22db Compare November 25, 2024 14:04
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 89d22db to edceb68 Compare December 10, 2024 19:49
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch 2 times, most recently from d9887ca to ded568a Compare February 27, 2025 21:51
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch 2 times, most recently from 8e094b5 to dd7a120 Compare March 18, 2025 23:31
@renovate renovate bot changed the title Update dependency Swashbuckle.AspNetCore to v7 Update dependency Swashbuckle.AspNetCore to v8 Mar 18, 2025
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from dd7a120 to efbcd3d Compare March 31, 2025 12:40
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from efbcd3d to 8bd54a7 Compare April 10, 2025 16:23
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 8bd54a7 to ed52e69 Compare May 23, 2025 11:26
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch 2 times, most recently from 7e42460 to 0002ed4 Compare June 4, 2025 10:11
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 0002ed4 to 84bed50 Compare June 13, 2025 19:40
@renovate renovate bot changed the title Update dependency Swashbuckle.AspNetCore to v8 Update dependency Swashbuckle.AspNetCore to v9 Jun 13, 2025
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 84bed50 to 204453d Compare July 8, 2025 12:49
@renovate renovate bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 204453d to b7bf3ba Compare July 8, 2025 19:36
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