Skip to content

⬆️ Update swashbuckle-aspnetcore monorepo to v10 - autoclosed - #112

Closed
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-swashbuckle-aspnetcore-monorepo
Closed

⬆️ Update swashbuckle-aspnetcore monorepo to v10 - autoclosed#112
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-swashbuckle-aspnetcore-monorepo

Conversation

@renovate

@renovate renovate Bot commented Nov 12, 2024

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
Swashbuckle.AspNetCore 6.9.010.2.1 age confidence
Swashbuckle.AspNetCore.Annotations 6.9.010.2.1 age confidence

Release Notes

domaindrivendev/Swashbuckle.AspNetCore (Swashbuckle.AspNetCore)

v10.2.1

What's Changed

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v10.2.0...v10.2.1

v10.2.0

What's Changed
New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v10.1.7...v10.2.0

v10.1.7

What's Changed

New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v10.1.6...v10.1.7

v10.1.6

What's Changed

New Contributors

Full Changelog: domaindrivendev/Swashbuckle.AspNetCore@v10.1.5...v10.1.6

v10.1.5

What's Changed

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

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


Configuration

📅 Schedule: (UTC)

  • 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 these updates 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 2 times, most recently from 1becd39 to 288f096 Compare November 25, 2024 12:53
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 288f096 to c8dcaa4 Compare December 10, 2024 18:08
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from c8dcaa4 to d1ce4fc Compare January 8, 2025 21:54
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from d1ce4fc to 84cc1e3 Compare February 11, 2025 16:02
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch 2 times, most recently from 1149d0e to a9bc0a0 Compare February 27, 2025 21:59
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch 2 times, most recently from a444062 to 068fef5 Compare March 18, 2025 19:56
@renovate renovate Bot changed the title ⬆️ Update swashbuckle-aspnetcore monorepo to v7 (major) ⬆️ Update swashbuckle-aspnetcore monorepo to v8 (major) Mar 18, 2025
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 068fef5 to 8c22cba Compare March 31, 2025 15:44
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 8c22cba to 7c3294f Compare April 10, 2025 16:58
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 7c3294f to bb28eb2 Compare May 23, 2025 11:51
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch 2 times, most recently from 8406343 to 244376a Compare June 4, 2025 12:52
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 244376a to 1fb7560 Compare June 13, 2025 16:38
@renovate renovate Bot changed the title ⬆️ Update swashbuckle-aspnetcore monorepo to v8 (major) ⬆️ Update swashbuckle-aspnetcore monorepo to v9 (major) Jun 13, 2025
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 1fb7560 to ea8647e Compare June 13, 2025 21:29
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch 2 times, most recently from 0b267b6 to e24b9dd Compare July 8, 2025 20:08
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from e24b9dd to 23f1ed2 Compare August 27, 2025 18:11
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch 2 times, most recently from dae4808 to 6597b3e Compare October 2, 2025 10:39
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 6597b3e to 58133ef Compare October 9, 2025 16:57
@renovate renovate Bot changed the title ⬆️ Update swashbuckle-aspnetcore monorepo to v9 (major) ⬆️ Update dependency Swashbuckle.AspNetCore.Annotations to v9 Oct 9, 2025
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 58133ef to 3456d9c Compare October 9, 2025 23:05
@renovate renovate Bot changed the title ⬆️ Update dependency Swashbuckle.AspNetCore.Annotations to v9 ⬆️ Update swashbuckle-aspnetcore monorepo to v9 (major) Oct 9, 2025
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 3456d9c to d468f1e Compare November 11, 2025 20:03
@renovate renovate Bot changed the title ⬆️ Update swashbuckle-aspnetcore monorepo to v9 (major) ⬆️ Update swashbuckle-aspnetcore monorepo to v10 (major) Nov 11, 2025
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from d468f1e to 3b6b4e4 Compare November 13, 2025 00:12
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 3b6b4e4 to 99872ef Compare December 19, 2025 15:39
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch 2 times, most recently from bd5c782 to bf69763 Compare February 5, 2026 17:26
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch 2 times, most recently from 643de19 to 89582bd Compare February 18, 2026 14:10
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 89582bd to 0c7fb93 Compare March 10, 2026 14:56
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch 2 times, most recently from 7bc8798 to 00bf00c Compare March 26, 2026 01:29
@renovate renovate Bot changed the title ⬆️ Update swashbuckle-aspnetcore monorepo to v10 (major) ⬆️ Update swashbuckle-aspnetcore monorepo to v10 May 12, 2026
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 00bf00c to 4358cf8 Compare May 30, 2026 13:47
@renovate
renovate Bot force-pushed the renovate/major-swashbuckle-aspnetcore-monorepo branch from 4358cf8 to a1e0531 Compare June 1, 2026 18:11
@renovate renovate Bot changed the title ⬆️ Update swashbuckle-aspnetcore monorepo to v10 ⬆️ Update swashbuckle-aspnetcore monorepo to v10 - autoclosed Jun 2, 2026
@renovate renovate Bot closed this Jun 2, 2026
@renovate
renovate Bot deleted the renovate/major-swashbuckle-aspnetcore-monorepo branch June 2, 2026 16:46
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