[PR #5240] [CLOSED] Bump Swashbuckle.AspNetCore from 5.6.3 to 6.0.5 #10446

Closed
opened 2026-02-07 06:20:30 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/jellyfin/jellyfin/pull/5240
Author: @dependabot[bot]
Created: 2/15/2021
Status: Closed

Base: masterHead: dependabot/nuget/Swashbuckle.AspNetCore-6.0.5


📝 Commits (1)

  • 9489501 Bump Swashbuckle.AspNetCore from 5.6.3 to 6.0.5

📊 Changes

1 file changed (+1 additions, -1 deletions)

View changed files

📝 Jellyfin.Api/Jellyfin.Api.csproj (+1 -1)

📄 Description

Bumps Swashbuckle.AspNetCore from 5.6.3 to 6.0.5.

Release notes

Sourced from Swashbuckle.AspNetCore's releases.

v6.0.0

This release includes a number of small enhancements and bug fixes. See the following for a full list of issues addressed: https://github.com/domaindrivendev/Swashbuckle.AspNetCore/milestone/16?closed=1

Of note, these include:

  • include discriminator metadata in base schema if either UseOneOfForPolymorphism OR UseAllOfForInheritance are enabled
  • remove fragile logic around X-Forwarded-* headers in favor of MS's Forwarded Headers Middleware (*see breaking changes)
  • beta (opt-in) support for non-nullable reference types
  • enhancements to SwaggerSchemaAttribute incl. use on Enum types & ability to set Nullable flag explicitly
  • wrap generator exceptions to surface contextual info for troubleshooting
  • support JSON object/array syntax in XML tags
  • improved handling for enum default values to reflect serializer behavior more accurately
  • upgrade swagger-ui to 3.40.0

Breaking Changes

  • the obsolete settings DescribeAllEnumsAsStrings and DescribeStringEnumsInCamelCase are now fully removed
  • X-Forwarded-* headers are no longer honored within SB code - use MS's Forwarded Headers Middleware instead
Commits
  • 2e80937 Fix invalid compiler conditionals that were introduced with explicit net5.0 t...
  • 683314c Merge pull request #2002 from domaindrivendev/explicit-net5-targeting
  • 102f08c Target net5.0 explicitly for all projects
  • 224a084 Defer sorting of schemas via SortedDictionary until after doc filters
  • 60b018c Handle value types correctly in nullable contexts
  • cb77098 Update readme to reflect 6.0.2 release
  • 4331154 Revert breaking change to SchemaRepository.Schemas signature
  • 0b9b82b Update README.md
  • 52436b0 Update readme to reflect 6.0.1 release
  • cb61834 Upgrade swagger-ui to 3.42.0
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/jellyfin/jellyfin/pull/5240 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 2/15/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/nuget/Swashbuckle.AspNetCore-6.0.5` --- ### 📝 Commits (1) - [`9489501`](https://github.com/jellyfin/jellyfin/commit/9489501bff1d182c39211ab3400167a412d8b5f8) Bump Swashbuckle.AspNetCore from 5.6.3 to 6.0.5 ### 📊 Changes **1 file changed** (+1 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `Jellyfin.Api/Jellyfin.Api.csproj` (+1 -1) </details> ### 📄 Description Bumps [Swashbuckle.AspNetCore](https://github.com/domaindrivendev/Swashbuckle.AspNetCore) from 5.6.3 to 6.0.5. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/domaindrivendev/Swashbuckle.AspNetCore/releases">Swashbuckle.AspNetCore's releases</a>.</em></p> <blockquote> <h2>v6.0.0</h2> <p>This release includes a number of small enhancements and bug fixes. See the following for a full list of issues addressed: <a href="https://github.com/domaindrivendev/Swashbuckle.AspNetCore/milestone/16?closed=1">https://github.com/domaindrivendev/Swashbuckle.AspNetCore/milestone/16?closed=1</a></p> <p><strong>Of note, these include:</strong></p> <ul> <li>include discriminator metadata in base schema if <em>either</em> UseOneOfForPolymorphism OR UseAllOfForInheritance are enabled</li> <li>remove fragile logic around X-Forwarded-* headers in favor of MS's Forwarded Headers Middleware (*see breaking changes)</li> <li>beta (opt-in) support for non-nullable reference types</li> <li>enhancements to SwaggerSchemaAttribute incl. use on Enum types &amp; ability to set Nullable flag explicitly</li> <li>wrap generator exceptions to surface contextual info for troubleshooting</li> <li>support JSON object/array syntax in XML <!-- raw HTML omitted --> tags</li> <li>improved handling for enum default values to reflect serializer behavior more accurately</li> <li>upgrade swagger-ui to 3.40.0</li> </ul> <p><strong>Breaking Changes</strong></p> <ul> <li>the <em>obsolete</em> settings <code>DescribeAllEnumsAsStrings</code> and <code>DescribeStringEnumsInCamelCase</code> are now fully removed</li> <li>X-Forwarded-* headers are no longer honored within SB code - use <a href="https://github.com/domaindrivendev/Swashbuckle.AspNetCore#working-with-reverse-proxies-and-load-balancers">MS's Forwarded Headers Middleware</a> instead</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/domaindrivendev/Swashbuckle.AspNetCore/commit/2e80937bb936af3f59b43424707966024ba5e110"><code>2e80937</code></a> Fix invalid compiler conditionals that were introduced with explicit net5.0 t...</li> <li><a href="https://github.com/domaindrivendev/Swashbuckle.AspNetCore/commit/683314cf0833df9afea433219736fb0cae744e31"><code>683314c</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/domaindrivendev/Swashbuckle.AspNetCore/issues/2002">#2002</a> from domaindrivendev/explicit-net5-targeting</li> <li><a href="https://github.com/domaindrivendev/Swashbuckle.AspNetCore/commit/102f08c29060b411fa5a2e7a4e0a700ada7bfec1"><code>102f08c</code></a> Target net5.0 explicitly for all projects</li> <li><a href="https://github.com/domaindrivendev/Swashbuckle.AspNetCore/commit/224a0843bf5faa180ebd9a93d05e35f53c76a5ee"><code>224a084</code></a> Defer sorting of schemas via SortedDictionary until after doc filters</li> <li><a href="https://github.com/domaindrivendev/Swashbuckle.AspNetCore/commit/60b018c7b83e6acc57b44ee905155524d0fbca3a"><code>60b018c</code></a> Handle value types correctly in nullable contexts</li> <li><a href="https://github.com/domaindrivendev/Swashbuckle.AspNetCore/commit/cb77098b24d0f65909072a9e03fca7c2416b2b5e"><code>cb77098</code></a> Update readme to reflect 6.0.2 release</li> <li><a href="https://github.com/domaindrivendev/Swashbuckle.AspNetCore/commit/4331154ab9c4ff58da8cf7ff5f666d59fcd8c855"><code>4331154</code></a> Revert breaking change to SchemaRepository.Schemas signature</li> <li><a href="https://github.com/domaindrivendev/Swashbuckle.AspNetCore/commit/0b9b82b90c8cba3b84c00f7a4724cc90db159676"><code>0b9b82b</code></a> Update README.md</li> <li><a href="https://github.com/domaindrivendev/Swashbuckle.AspNetCore/commit/52436b0968d632041ee3e7c5d1ddf723148af67e"><code>52436b0</code></a> Update readme to reflect 6.0.1 release</li> <li><a href="https://github.com/domaindrivendev/Swashbuckle.AspNetCore/commit/cb618345937bdb819bf999810876dcdd0f5e28da"><code>cb61834</code></a> Upgrade swagger-ui to 3.42.0</li> <li>Additional commits viewable in <a href="https://github.com/domaindrivendev/Swashbuckle.AspNetCore/compare/v5.6.3...v6.0.5">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=Swashbuckle.AspNetCore&package-manager=nuget&previous-version=5.6.3&new-version=6.0.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-07 06:20:30 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/jellyfin#10446