Skip to content

Releases: domaindrivendev/Swashbuckle.AspNetCore

v10.1.7

25 Mar 21:47
71bd58a

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v10.1.6...v10.1.7

v10.1.6

24 Mar 20:55
de52d8c

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v10.1.5...v10.1.6

v10.1.5

10 Mar 11:20
0447776

Choose a tag to compare

What's Changed

Full Changelog: v10.1.4...v10.1.5

v10.1.4

18 Feb 11:28
6163392

Choose a tag to compare

What's Changed

  • Bump swagger-ui-dist from 5.31.0 to 5.31.1 in /src/Swashbuckle.AspNetCore.SwaggerUI by @dependabot in #3792
  • Return null on example, as it was with OpenApiNull before by @jgarciadelanoceda in #3793

Full Changelog: v10.1.3...v10.1.4

v10.1.3

14 Feb 12:13
ea2cbee

Choose a tag to compare

What's Changed

Full Changelog: v10.1.2...v10.1.3

v10.1.2

05 Feb 14:04
ee80ed2

Choose a tag to compare

What's Changed

Full Changelog: v10.1.1...v10.1.2

v10.1.1

01 Feb 11:40
43fd294

Choose a tag to compare

What's Changed

New Contributors

  • @Copilot made their first contribution in #3766

Full Changelog:

v10.1.0...v10.1.1

v10.1.0

12 Dec 14:13
99cea7b

Choose a tag to compare

What's Changed

New Features

  • Add public method SchemaRepository.ReplaceSchemaId by @bkoelman in #3708

Bug Fixes

  • Exclude inherited properties only when base added to AllOf by @John-Paul-R in #3692

Miscellaneous

New Contributors

Full Changelog: v10.0.1...v10.1.0

v10.0.1

12 Nov 22:05

Choose a tag to compare

What's Changed

Full Changelog: v10.0.0...v10.0.1

v10.0.0

11 Nov 14:47
64a36eb

Choose a tag to compare

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: v9.0.6...v10.0.0