[PR #22009] [CLOSED] chore(deps): bump fastapi from 0.128.5 to 0.134.0 in /backend #26402

Closed
opened 2026-04-20 06:28:31 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/22009
Author: @dependabot[bot]
Created: 3/1/2026
Status: Closed

Base: devHead: dependabot/pip/backend/dev/fastapi-0.134.0


📝 Commits (1)

  • 60a103d chore(deps): bump fastapi from 0.128.5 to 0.134.0 in /backend

📊 Changes

2 files changed (+2 additions, -2 deletions)

View changed files

📝 backend/requirements-min.txt (+1 -1)
📝 backend/requirements.txt (+1 -1)

📄 Description

Bumps fastapi from 0.128.5 to 0.134.0.

Release notes

Sourced from fastapi's releases.

0.134.0

Features

  • Add support for streaming JSON Lines and binary data with yield. PR #15022 by @​tiangolo.
    • This also upgrades Starlette from >=0.40.0 to >=0.46.0, as it's needed to properly unrwap and re-raise exceptions from exception groups.
    • New docs: Stream JSON Lines.
    • And new docs: Stream Data.

Docs

  • 📝 Update Library Agent Skill with streaming responses. PR #15024 by @​tiangolo.
  • 📝 Update docs for responses and new stream with yield. PR #15023 by @​tiangolo.
  • 📝 Add await in StreamingResponse code example to allow cancellation. PR #14681 by @​casperdcl.
  • 📝 Rename docs_src/websockets to docs_src/websockets_ to avoid import errors. PR #14979 by @​YuriiMotov.

Internal

0.133.1

Features

Internal

0.133.0

Upgrades

0.132.1

Refactors

  • ♻️ Refactor logic to handle OpenAPI and Swagger UI escaping data. PR #14986 by @​tiangolo.

Internal

0.132.0

Breaking Changes

  • 🔒️ Add strict_content_type checking for JSON requests. PR #14978 by @​tiangolo.
    • Now FastAPI checks, by default, that JSON requests have a Content-Type header with a valid JSON value, like application/json, and rejects requests that don't.
    • If the clients for your app don't send a valid Content-Type header you can disable this with strict_content_type=False.

... (truncated)

Commits
  • 48d58ae 📝 Update release notes
  • d3b1d6c 📝 Update release notes
  • d98eb74 🔖 Release version 0.134.0
  • d33ad3f 📝 Update release notes
  • b7fefb1 📝 Update release notes
  • c01dc8b 📝 Update Library Agent Skill with streaming responses (#15024)
  • 8344d07 📝 Update release notes
  • 1377052 📝 Update docs for responses and new stream with yield (#15023)
  • c0836dc 📝 Update release notes
  • c3f54a0 📝 Add await in StreamingResponse code example to allow cancellation (#14681)
  • 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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/open-webui/open-webui/pull/22009 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 3/1/2026 **Status:** ❌ Closed **Base:** `dev` ← **Head:** `dependabot/pip/backend/dev/fastapi-0.134.0` --- ### 📝 Commits (1) - [`60a103d`](https://github.com/open-webui/open-webui/commit/60a103d44415f77ff4b30aa8e2999a50b3664882) chore(deps): bump fastapi from 0.128.5 to 0.134.0 in /backend ### 📊 Changes **2 files changed** (+2 additions, -2 deletions) <details> <summary>View changed files</summary> 📝 `backend/requirements-min.txt` (+1 -1) 📝 `backend/requirements.txt` (+1 -1) </details> ### 📄 Description Bumps [fastapi](https://github.com/fastapi/fastapi) from 0.128.5 to 0.134.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/fastapi/fastapi/releases">fastapi's releases</a>.</em></p> <blockquote> <h2>0.134.0</h2> <h3>Features</h3> <ul> <li>✨ Add support for streaming JSON Lines and binary data with <code>yield</code>. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/15022">#15022</a> by <a href="https://github.com/tiangolo"><code>@​tiangolo</code></a>. <ul> <li>This also upgrades Starlette from <code>&gt;=0.40.0</code> to <code>&gt;=0.46.0</code>, as it's needed to properly unrwap and re-raise exceptions from exception groups.</li> <li>New docs: <a href="https://fastapi.tiangolo.com/tutorial/stream-json-lines/">Stream JSON Lines</a>.</li> <li>And new docs: <a href="https://fastapi.tiangolo.com/advanced/stream-data/">Stream Data</a>.</li> </ul> </li> </ul> <h3>Docs</h3> <ul> <li>📝 Update Library Agent Skill with streaming responses. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/15024">#15024</a> by <a href="https://github.com/tiangolo"><code>@​tiangolo</code></a>.</li> <li>📝 Update docs for responses and new stream with <code>yield</code>. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/15023">#15023</a> by <a href="https://github.com/tiangolo"><code>@​tiangolo</code></a>.</li> <li>📝 Add <code>await</code> in <code>StreamingResponse</code> code example to allow cancellation. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/14681">#14681</a> by <a href="https://github.com/casperdcl"><code>@​casperdcl</code></a>.</li> <li>📝 Rename <code>docs_src/websockets</code> to <code>docs_src/websockets_</code> to avoid import errors. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/14979">#14979</a> by <a href="https://github.com/YuriiMotov"><code>@​YuriiMotov</code></a>.</li> </ul> <h3>Internal</h3> <ul> <li>🔨 Run tests with <code>pytest-xdist</code> and <code>pytest-cov</code>. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/14992">#14992</a> by <a href="https://github.com/YuriiMotov"><code>@​YuriiMotov</code></a>.</li> </ul> <h2>0.133.1</h2> <h3>Features</h3> <ul> <li>🔧 Add FastAPI Agent Skill. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/14982">#14982</a> by <a href="https://github.com/tiangolo"><code>@​tiangolo</code></a>. <ul> <li>Read more about it in <a href="https://tiangolo.com/ideas/library-agent-skills/">Library Agent Skills</a>.</li> </ul> </li> </ul> <h3>Internal</h3> <ul> <li>✅ Fix all tests are skipped on Windows. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/14994">#14994</a> by <a href="https://github.com/YuriiMotov"><code>@​YuriiMotov</code></a>.</li> </ul> <h2>0.133.0</h2> <h3>Upgrades</h3> <ul> <li>⬆️ Add support for Starlette 1.0.0+. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/14987">#14987</a> by <a href="https://github.com/tiangolo"><code>@​tiangolo</code></a>.</li> </ul> <h2>0.132.1</h2> <h3>Refactors</h3> <ul> <li>♻️ Refactor logic to handle OpenAPI and Swagger UI escaping data. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/14986">#14986</a> by <a href="https://github.com/tiangolo"><code>@​tiangolo</code></a>.</li> </ul> <h3>Internal</h3> <ul> <li>👥 Update FastAPI People - Experts. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/14972">#14972</a> by <a href="https://github.com/tiangolo"><code>@​tiangolo</code></a>.</li> <li>👷 Allow skipping <code>benchmark</code> job in <code>test</code> workflow. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/14974">#14974</a> by <a href="https://github.com/YuriiMotov"><code>@​YuriiMotov</code></a>.</li> </ul> <h2>0.132.0</h2> <h3>Breaking Changes</h3> <ul> <li>🔒️ Add <code>strict_content_type</code> checking for JSON requests. PR <a href="https://redirect.github.com/fastapi/fastapi/pull/14978">#14978</a> by <a href="https://github.com/tiangolo"><code>@​tiangolo</code></a>. <ul> <li>Now FastAPI checks, by default, that JSON requests have a <code>Content-Type</code> header with a valid JSON value, like <code>application/json</code>, and rejects requests that don't.</li> <li>If the clients for your app don't send a valid <code>Content-Type</code> header you can disable this with <code>strict_content_type=False</code>.</li> </ul> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/fastapi/fastapi/commit/48d58ae3b6ef4ded5a4794618c00345667256d98"><code>48d58ae</code></a> 📝 Update release notes</li> <li><a href="https://github.com/fastapi/fastapi/commit/d3b1d6cbd4d2429334bc07b735851d02c8a25631"><code>d3b1d6c</code></a> 📝 Update release notes</li> <li><a href="https://github.com/fastapi/fastapi/commit/d98eb74da906e39e8fc9573b33fe5eefb1ea07e4"><code>d98eb74</code></a> 🔖 Release version 0.134.0</li> <li><a href="https://github.com/fastapi/fastapi/commit/d33ad3f90fe193688d054782c056cab8cee2e003"><code>d33ad3f</code></a> 📝 Update release notes</li> <li><a href="https://github.com/fastapi/fastapi/commit/b7fefb147e42004a0a2ecfa1b44c581cd7b4edd8"><code>b7fefb1</code></a> 📝 Update release notes</li> <li><a href="https://github.com/fastapi/fastapi/commit/c01dc8b03c069650aaae702ef96eb648cd05dc38"><code>c01dc8b</code></a> 📝 Update Library Agent Skill with streaming responses (<a href="https://redirect.github.com/fastapi/fastapi/issues/15024">#15024</a>)</li> <li><a href="https://github.com/fastapi/fastapi/commit/8344d078e2fa39365ec71d6d9ad4ddd9c583c8f1"><code>8344d07</code></a> 📝 Update release notes</li> <li><a href="https://github.com/fastapi/fastapi/commit/1377052c6cc5eff92a6bcbb54c0fcb66e14e06d7"><code>1377052</code></a> 📝 Update docs for responses and new stream with <code>yield</code> (<a href="https://redirect.github.com/fastapi/fastapi/issues/15023">#15023</a>)</li> <li><a href="https://github.com/fastapi/fastapi/commit/c0836dc1b7f4ba91e9563c8c4ccd0ebe655bc914"><code>c0836dc</code></a> 📝 Update release notes</li> <li><a href="https://github.com/fastapi/fastapi/commit/c3f54a0794d8acadb0059c55edbb314678253921"><code>c3f54a0</code></a> 📝 Add <code>await</code> in <code>StreamingResponse</code> code example to allow cancellation (<a href="https://redirect.github.com/fastapi/fastapi/issues/14681">#14681</a>)</li> <li>Additional commits viewable in <a href="https://github.com/fastapi/fastapi/compare/0.128.5...0.134.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=fastapi&package-manager=pip&previous-version=0.128.5&new-version=0.134.0)](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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@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>
GiteaMirror added the pull-request label 2026-04-20 06:28:31 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#26402