[PR #22047] [CLOSED] chore(deps): bump psutil from 6.1.1 to 7.2.2 #26440

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

📋 Pull Request Information

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

Base: devHead: dependabot/uv/dev/psutil-7.2.2


📝 Commits (1)

  • 6942472 chore(deps): bump psutil from 6.1.1 to 7.2.2

📊 Changes

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

View changed files

📝 uv.lock (+1372 -1016)

📄 Description

Bumps psutil from 6.1.1 to 7.2.2.

Changelog

Sourced from psutil's changelog.

7.2.2

2026-01-28

Enhancements

  • 2705_: [Linux]: Process.wait()_ now uses pidfd_open() + poll() for waiting, resulting in no busy loop and faster response times. Requires Linux >= 5.3 and Python >= 3.9. Falls back to traditional polling if unavailable.
  • 2705_: [macOS], [BSD]: Process.wait()_ now uses kqueue() for waiting, resulting in no busy loop and faster response times.

Bug fixes

  • 2701_, [macOS]: fix compilation error on macOS < 10.7. (patch by Sergey Fedorov)
  • 2707_, [macOS]: fix potential memory leaks in error paths of Process.memory_full_info() and Process.threads().
  • 2708_, [macOS]: Process.cmdline()_ and Process.environ()_ may fail with ``OSError: [Errno 0] Undefined error`` (from ``sysctl(KERN_PROCARGS2)``). They now raise AccessDenied`_ instead.

7.2.1

2025-12-29

Bug fixes

  • 2699_, [FreeBSD], [NetBSD]: heap_info()_ does not detect small allocations (<= 1K). In order to fix that, we now flush internal jemalloc cache before fetching the metrics.

7.2.0

2025-12-23

Enhancements

  • 1275_: new heap_info()_ and heap_trim()_ functions, providing direct access to the platform's native C heap allocator (glibc, mimalloc, libmalloc). Useful to create tools to detect memory leaks.
  • 2403_, [Linux]: publish wheels for Linux musl.
  • 2680_: unit tests are no longer installed / part of the distribution. They now live under tests/ instead of psutil/tests.

Bug fixes

... (truncated)

Commits
  • 9eea97d Pre-release
  • 938ac64 Rm sphinxcontrib.googleanalytics; override layout.html
  • 9dcbb7e Add sphinxcontrib-googleanalytics to requirements.txt
  • 76eaf9a Try to add google analytics to doc
  • de1cafa Update doc mentioning Process.wait() internal details
  • bb30943 Refact can_use_pidfd_open() and can_use_kqueue()
  • a571717 #2708, macos / cmdline / environ; raise AD instead of OSError(0) (#2709)
  • 8b98c3e Pre-release
  • 700b7e6 [macOS] fix potential leaks in error paths (#2707)
  • 7cc7923 Windows / cmdline(): be more defensive in free()ing in case of error
  • 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/22047 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 3/1/2026 **Status:** ❌ Closed **Base:** `dev` ← **Head:** `dependabot/uv/dev/psutil-7.2.2` --- ### 📝 Commits (1) - [`6942472`](https://github.com/open-webui/open-webui/commit/694247296776a15d57a9a519b12ffa60f81b5483) chore(deps): bump psutil from 6.1.1 to 7.2.2 ### 📊 Changes **1 file changed** (+1372 additions, -1016 deletions) <details> <summary>View changed files</summary> 📝 `uv.lock` (+1372 -1016) </details> ### 📄 Description Bumps [psutil](https://github.com/giampaolo/psutil) from 6.1.1 to 7.2.2. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/giampaolo/psutil/blob/master/HISTORY.rst">psutil's changelog</a>.</em></p> <blockquote> <h1>7.2.2</h1> <p>2026-01-28</p> <p><strong>Enhancements</strong></p> <ul> <li>2705_: [Linux]: <code>Process.wait()</code>_ now uses <code>pidfd_open()</code> + <code>poll()</code> for waiting, resulting in no busy loop and faster response times. Requires Linux &gt;= 5.3 and Python &gt;= 3.9. Falls back to traditional polling if unavailable.</li> <li>2705_: [macOS], [BSD]: <code>Process.wait()</code>_ now uses <code>kqueue()</code> for waiting, resulting in no busy loop and faster response times.</li> </ul> <p><strong>Bug fixes</strong></p> <ul> <li>2701_, [macOS]: fix compilation error on macOS &lt; 10.7. (patch by Sergey Fedorov)</li> <li>2707_, [macOS]: fix potential memory leaks in error paths of <code>Process.memory_full_info()</code> and <code>Process.threads()</code>.</li> <li>2708_, [macOS]: Process.cmdline()<code>_ and </code>Process.environ()<code>_ may fail with ``OSError: [Errno 0] Undefined error`` (from ``sysctl(KERN_PROCARGS2)``). They now raise </code>AccessDenied`_ instead.</li> </ul> <h1>7.2.1</h1> <p>2025-12-29</p> <p><strong>Bug fixes</strong></p> <ul> <li>2699_, [FreeBSD], [NetBSD]: <code>heap_info()</code>_ does not detect small allocations (&lt;= 1K). In order to fix that, we now flush internal jemalloc cache before fetching the metrics.</li> </ul> <h1>7.2.0</h1> <p>2025-12-23</p> <p><strong>Enhancements</strong></p> <ul> <li>1275_: new <code>heap_info()</code>_ and <code>heap_trim()</code>_ functions, providing direct access to the platform's native C heap allocator (glibc, mimalloc, libmalloc). Useful to create tools to detect memory leaks.</li> <li>2403_, [Linux]: publish wheels for Linux musl.</li> <li>2680_: unit tests are no longer installed / part of the distribution. They now live under <code>tests/</code> instead of <code>psutil/tests</code>.</li> </ul> <p><strong>Bug fixes</strong></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/giampaolo/psutil/commit/9eea97dd6f1d16ea33f5144c8925f1ce7a0688e1"><code>9eea97d</code></a> Pre-release</li> <li><a href="https://github.com/giampaolo/psutil/commit/938ac647418f09e4e610b2c755741316713c5592"><code>938ac64</code></a> Rm sphinxcontrib.googleanalytics; override layout.html</li> <li><a href="https://github.com/giampaolo/psutil/commit/9dcbb7e60e650f0ab0cb52154b0a12c70f6a1e4c"><code>9dcbb7e</code></a> Add sphinxcontrib-googleanalytics to requirements.txt</li> <li><a href="https://github.com/giampaolo/psutil/commit/76eaf9ae0f2868569c14b46f4165310885a40a15"><code>76eaf9a</code></a> Try to add google analytics to doc</li> <li><a href="https://github.com/giampaolo/psutil/commit/de1cafa56f54e97ca557993155e76dd98877e136"><code>de1cafa</code></a> Update doc mentioning Process.wait() internal details</li> <li><a href="https://github.com/giampaolo/psutil/commit/bb30943b0336a16f28437ec549c15a8ad2830cca"><code>bb30943</code></a> Refact can_use_pidfd_open() and can_use_kqueue()</li> <li><a href="https://github.com/giampaolo/psutil/commit/a571717d6520d436273c8cb34ca871db4bfa508a"><code>a571717</code></a> <a href="https://redirect.github.com/giampaolo/psutil/issues/2708">#2708</a>, macos / cmdline / environ; raise AD instead of OSError(0) (<a href="https://redirect.github.com/giampaolo/psutil/issues/2709">#2709</a>)</li> <li><a href="https://github.com/giampaolo/psutil/commit/8b98c3effc20dcc4ed08c8f3d33e11ec0f5445b1"><code>8b98c3e</code></a> Pre-release</li> <li><a href="https://github.com/giampaolo/psutil/commit/700b7e6a4171ae7c775679217205f1d97568ae00"><code>700b7e6</code></a> [macOS] fix potential leaks in error paths (<a href="https://redirect.github.com/giampaolo/psutil/issues/2707">#2707</a>)</li> <li><a href="https://github.com/giampaolo/psutil/commit/7cc7923a1479fb1d32bb25d3e78b465e2695fbf7"><code>7cc7923</code></a> Windows / cmdline(): be more defensive in free()ing in case of error</li> <li>Additional commits viewable in <a href="https://github.com/giampaolo/psutil/compare/release-6.1.1...release-7.2.2">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=psutil&package-manager=uv&previous-version=6.1.1&new-version=7.2.2)](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:29:45 -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#26440