[PR #5837] [MERGED] chore(deps): bump aiohttp from 3.10.5 to 3.10.8 in /backend #92801

Closed
opened 2026-05-15 18:27:22 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/5837
Author: @dependabot[bot]
Created: 10/1/2024
Status: Merged
Merged: 10/1/2024
Merged by: @tjbck

Base: devHead: dependabot/pip/backend/dev/aiohttp-3.10.8


📝 Commits (1)

  • d78a7d4 chore(deps): bump aiohttp from 3.10.5 to 3.10.8 in /backend

📊 Changes

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

View changed files

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

📄 Description

Bumps aiohttp from 3.10.5 to 3.10.8.

Release notes

Sourced from aiohttp's releases.

3.10.8

Bug fixes

  • Fixed cancellation leaking upwards on timeout -- by :user:bdraco.

    Related issues and pull requests on GitHub: #9326.


3.10.7

Bug fixes

  • Fixed assembling the :class:~yarl.URL for web requests when the host contains a non-default port or IPv6 address -- by :user:bdraco.

    Related issues and pull requests on GitHub: #9309.

Miscellaneous internal changes

  • Improved performance of determining if a URL is absolute -- by :user:bdraco.

    The property :attr:~yarl.URL.absolute is more performant than the method URL.is_absolute() and preferred when newer versions of yarl are used.

    Related issues and pull requests on GitHub: #9171.

  • Replaced code that can now be handled by yarl -- by :user:bdraco.

    Related issues and pull requests on GitHub: #9301.

... (truncated)

Changelog

Sourced from aiohttp's changelog.

3.10.8 (2024-09-28)

Bug fixes

  • Fixed cancellation leaking upwards on timeout -- by :user:bdraco.

    Related issues and pull requests on GitHub: :issue:9326.


3.10.7 (2024-09-27)

Bug fixes

  • Fixed assembling the :class:~yarl.URL for web requests when the host contains a non-default port or IPv6 address -- by :user:bdraco.

    Related issues and pull requests on GitHub: :issue:9309.

Miscellaneous internal changes

  • Improved performance of determining if a URL is absolute -- by :user:bdraco.

    The property :attr:~yarl.URL.absolute is more performant than the method URL.is_absolute() and preferred when newer versions of yarl are used.

    Related issues and pull requests on GitHub: :issue:9171.

  • Replaced code that can now be handled by yarl -- by :user:bdraco.

    Related issues and pull requests on GitHub:

... (truncated)

Commits

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 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/5837 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 10/1/2024 **Status:** ✅ Merged **Merged:** 10/1/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `dev` ← **Head:** `dependabot/pip/backend/dev/aiohttp-3.10.8` --- ### 📝 Commits (1) - [`d78a7d4`](https://github.com/open-webui/open-webui/commit/d78a7d431d9a569ba6ebb55bb4c17bbea8a66d2a) chore(deps): bump aiohttp from 3.10.5 to 3.10.8 in /backend ### 📊 Changes **1 file changed** (+1 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `backend/requirements.txt` (+1 -1) </details> ### 📄 Description Bumps [aiohttp](https://github.com/aio-libs/aiohttp) from 3.10.5 to 3.10.8. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/aio-libs/aiohttp/releases">aiohttp's releases</a>.</em></p> <blockquote> <h2>3.10.8</h2> <h2>Bug fixes</h2> <ul> <li> <p>Fixed cancellation leaking upwards on timeout -- by :user:<code>bdraco</code>.</p> <p><em>Related issues and pull requests on GitHub:</em> <a href="https://redirect.github.com/aio-libs/aiohttp/issues/9326">#9326</a>.</p> </li> </ul> <hr /> <h2>3.10.7</h2> <h2>Bug fixes</h2> <ul> <li> <p>Fixed assembling the :class:<code>~yarl.URL</code> for web requests when the host contains a non-default port or IPv6 address -- by :user:<code>bdraco</code>.</p> <p><em>Related issues and pull requests on GitHub:</em> <a href="https://redirect.github.com/aio-libs/aiohttp/issues/9309">#9309</a>.</p> </li> </ul> <h2>Miscellaneous internal changes</h2> <ul> <li> <p>Improved performance of determining if a URL is absolute -- by :user:<code>bdraco</code>.</p> <p>The property :attr:<code>~yarl.URL.absolute</code> is more performant than the method <code>URL.is_absolute()</code> and preferred when newer versions of yarl are used.</p> <p><em>Related issues and pull requests on GitHub:</em> <a href="https://redirect.github.com/aio-libs/aiohttp/issues/9171">#9171</a>.</p> </li> <li> <p>Replaced code that can now be handled by <code>yarl</code> -- by :user:<code>bdraco</code>.</p> <p><em>Related issues and pull requests on GitHub:</em> <a href="https://redirect.github.com/aio-libs/aiohttp/issues/9301">#9301</a>.</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/aio-libs/aiohttp/blob/master/CHANGES.rst">aiohttp's changelog</a>.</em></p> <blockquote> <h1>3.10.8 (2024-09-28)</h1> <h2>Bug fixes</h2> <ul> <li> <p>Fixed cancellation leaking upwards on timeout -- by :user:<code>bdraco</code>.</p> <p><em>Related issues and pull requests on GitHub:</em> :issue:<code>9326</code>.</p> </li> </ul> <hr /> <h1>3.10.7 (2024-09-27)</h1> <h2>Bug fixes</h2> <ul> <li> <p>Fixed assembling the :class:<code>~yarl.URL</code> for web requests when the host contains a non-default port or IPv6 address -- by :user:<code>bdraco</code>.</p> <p><em>Related issues and pull requests on GitHub:</em> :issue:<code>9309</code>.</p> </li> </ul> <h2>Miscellaneous internal changes</h2> <ul> <li> <p>Improved performance of determining if a URL is absolute -- by :user:<code>bdraco</code>.</p> <p>The property :attr:<code>~yarl.URL.absolute</code> is more performant than the method <code>URL.is_absolute()</code> and preferred when newer versions of yarl are used.</p> <p><em>Related issues and pull requests on GitHub:</em> :issue:<code>9171</code>.</p> </li> <li> <p>Replaced code that can now be handled by <code>yarl</code> -- by :user:<code>bdraco</code>.</p> <p><em>Related issues and pull requests on GitHub:</em></p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aio-libs/aiohttp/commit/8a7ce946650a24198c10da61059f4d38bd30708e"><code>8a7ce94</code></a> Release 3.10.8 (<a href="https://redirect.github.com/aio-libs/aiohttp/issues/9330">#9330</a>)</li> <li><a href="https://github.com/aio-libs/aiohttp/commit/a308f748de85708735a0a07f30551ebee77c75e5"><code>a308f74</code></a> [PR <a href="https://redirect.github.com/aio-libs/aiohttp/issues/9326">#9326</a>/fe26ae2 backport][3.10] Fix TimerContext not uncancelling the curre...</li> <li><a href="https://github.com/aio-libs/aiohttp/commit/52e0b917ddbba93cececb32587928583d66f5f61"><code>52e0b91</code></a> Fix custom cookies example (<a href="https://redirect.github.com/aio-libs/aiohttp/issues/9321">#9321</a>) (<a href="https://redirect.github.com/aio-libs/aiohttp/issues/9324">#9324</a>)</li> <li><a href="https://github.com/aio-libs/aiohttp/commit/609c6e331d2d262514b7fc4ca821264d37faa0e1"><code>609c6e3</code></a> Increment version to 3.10.8.dev0</li> <li><a href="https://github.com/aio-libs/aiohttp/commit/f9a9e853802a26a9bdef4cfe4ac2328b6ab21190"><code>f9a9e85</code></a> Release 3.10.7 (<a href="https://redirect.github.com/aio-libs/aiohttp/issues/9320">#9320</a>)</li> <li><a href="https://github.com/aio-libs/aiohttp/commit/8220ced9f7515901cbf0976fb48ed867ff541241"><code>8220ced</code></a> [PR <a href="https://redirect.github.com/aio-libs/aiohttp/issues/9309">#9309</a>/e4028333 backport][3.10] Fix building the URL in BaseRequest when t...</li> <li><a href="https://github.com/aio-libs/aiohttp/commit/d32d5805e39fa8b75f7a688788de5b73b6ce0077"><code>d32d580</code></a> [PR <a href="https://redirect.github.com/aio-libs/aiohttp/issues/9301">#9301</a>/c240b52 backport][3.10] Replace code that can now be handled by yar...</li> <li><a href="https://github.com/aio-libs/aiohttp/commit/fd5ece6dfd5f68d02144280813aa44005431e271"><code>fd5ece6</code></a> Bump yarl to 1.13.0 (<a href="https://redirect.github.com/aio-libs/aiohttp/issues/9302">#9302</a>) (<a href="https://redirect.github.com/aio-libs/aiohttp/issues/9304">#9304</a>)</li> <li><a href="https://github.com/aio-libs/aiohttp/commit/d6d2bcc2ba6dc2d8933b89365dfbbfc22f259ca9"><code>d6d2bcc</code></a> [PR <a href="https://redirect.github.com/aio-libs/aiohttp/issues/9294">#9294</a>/552dea53 backport][3.10] Backport type fix from <a href="https://redirect.github.com/aio-libs/aiohttp/issues/9226">#9226</a> (<a href="https://redirect.github.com/aio-libs/aiohttp/issues/9299">#9299</a>)</li> <li><a href="https://github.com/aio-libs/aiohttp/commit/e6bcfbe302806558d3d6d08e411a1f9f3187dcac"><code>e6bcfbe</code></a> [PR <a href="https://redirect.github.com/aio-libs/aiohttp/issues/9171">#9171</a>/0462ae6b backport][3.10] Switch to using <code>yarl.URL.absolute</code> over `...</li> <li>Additional commits viewable in <a href="https://github.com/aio-libs/aiohttp/compare/v3.10.5...v3.10.8">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=aiohttp&package-manager=pip&previous-version=3.10.5&new-version=3.10.8)](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 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-05-15 18:27:22 -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#92801