[PR #720] [CLOSED] build(deps): bump sysinfo from 0.29.11 to 0.31.4 #6519

Closed
opened 2026-05-23 01:56:20 +01:00 by JakeStanger · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/JakeStanger/ironbar/pull/720
Author: @dependabot[bot]
Created: 9/2/2024
Status: Closed

Base: masterHead: dependabot/cargo/sysinfo-0.31.4


📝 Commits (1)

  • fa7d906 build(deps): bump sysinfo from 0.29.11 to 0.31.4

📊 Changes

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

View changed files

📝 Cargo.lock (+66 -35)
📝 Cargo.toml (+1 -1)

📄 Description

Bumps sysinfo from 0.29.11 to 0.31.4.

Changelog

Sourced from sysinfo's changelog.

0.31.4

  • macOS: Force memory cleanup in disk list retrieval.

0.31.3

  • Raspberry Pi: Fix temperature retrieval.

0.31.2

  • Remove bstr dependency (needed for rustc development).

0.31.1

  • Downgrade version of memchr (needed for rustc development).

0.31.0

  • Split crate in features to only enable what you need.
  • Remove System::refresh_process, System::refresh_process_specifics and System::refresh_pids methods.
  • Add new argument of type ProcessesToUpdate to System::refresh_processes and System::refresh_processes_specifics methods.
  • Add new NetworkData::ip_networks method.
  • Add new System::refresh_cpu_list method.
  • Global CPU now only contains CPU usage.
  • Rename TermalSensorType to ThermalSensorType.
  • Process names is now an OsString.
  • Remove System::global_cpu_info.
  • Add System::global_cpu_usage.
  • macOS: Fix invalid CPU computation when single processes are refreshed one after the other.
  • Windows: Fix virtual memory computation.
  • Windows: Fix WoW64 parent process refresh.
  • Linux: Retrieve RSS (Resident Set Size) memory for cgroups.

0.30.13

  • macOS: Fix segfault when calling Components::refresh_list multiple times.
  • Windows: Fix CPU arch retrieval.

0.30.12

  • FreeBSD: Fix network interfaces retrieval (one was always missing).

0.30.11

  • macOS: Fix some invalid utf8 conversions.

0.30.10

  • Linux: Fix components not being listed anymore.

... (truncated)

Commits
  • 993f8e3 Merge pull request #1345 from GuillaumeGomez/update
  • 01df96d Update crate version to 0.31.4
  • 8205af5 Update CHANGELOG for 0.31.4
  • 97267b1 Merge pull request #1344 from complexspaces/pool-apple-disk-refreshing
  • 5f78295 Wrap Apple disk refreshing in autorelease pool to avoid system caching
  • d0122ae Merge pull request #1343 from GuillaumeGomez/update
  • e40096c Update crate version to 0.31.3
  • 431d5df Update CHANGELOG for 0.31.3
  • 3dff49e Merge pull request #1342 from rise0chen/master
  • 9acef9f feat: support Raspberry Pi
  • 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 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/JakeStanger/ironbar/pull/720 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 9/2/2024 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/cargo/sysinfo-0.31.4` --- ### 📝 Commits (1) - [`fa7d906`](https://github.com/JakeStanger/ironbar/commit/fa7d9065bfa300154ec2b503d7146b80eb9e0f29) build(deps): bump sysinfo from 0.29.11 to 0.31.4 ### 📊 Changes **2 files changed** (+67 additions, -36 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+66 -35) 📝 `Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [sysinfo](https://github.com/GuillaumeGomez/sysinfo) from 0.29.11 to 0.31.4. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/GuillaumeGomez/sysinfo/blob/master/CHANGELOG.md">sysinfo's changelog</a>.</em></p> <blockquote> <h1>0.31.4</h1> <ul> <li>macOS: Force memory cleanup in disk list retrieval.</li> </ul> <h1>0.31.3</h1> <ul> <li>Raspberry Pi: Fix temperature retrieval.</li> </ul> <h1>0.31.2</h1> <ul> <li>Remove <code>bstr</code> dependency (needed for rustc development).</li> </ul> <h1>0.31.1</h1> <ul> <li>Downgrade version of <code>memchr</code> (needed for rustc development).</li> </ul> <h1>0.31.0</h1> <ul> <li>Split crate in features to only enable what you need.</li> <li>Remove <code>System::refresh_process</code>, <code>System::refresh_process_specifics</code> and <code>System::refresh_pids</code> methods.</li> <li>Add new argument of type <code>ProcessesToUpdate</code> to <code>System::refresh_processes</code> and <code>System::refresh_processes_specifics</code> methods.</li> <li>Add new <code>NetworkData::ip_networks</code> method.</li> <li>Add new <code>System::refresh_cpu_list</code> method.</li> <li>Global CPU now only contains CPU usage.</li> <li>Rename <code>TermalSensorType</code> to <code>ThermalSensorType</code>.</li> <li>Process names is now an <code>OsString</code>.</li> <li>Remove <code>System::global_cpu_info</code>.</li> <li>Add <code>System::global_cpu_usage</code>.</li> <li>macOS: Fix invalid CPU computation when single processes are refreshed one after the other.</li> <li>Windows: Fix virtual memory computation.</li> <li>Windows: Fix WoW64 parent process refresh.</li> <li>Linux: Retrieve RSS (Resident Set Size) memory for cgroups.</li> </ul> <h1>0.30.13</h1> <ul> <li>macOS: Fix segfault when calling <code>Components::refresh_list</code> multiple times.</li> <li>Windows: Fix CPU arch retrieval.</li> </ul> <h1>0.30.12</h1> <ul> <li>FreeBSD: Fix network interfaces retrieval (one was always missing).</li> </ul> <h1>0.30.11</h1> <ul> <li>macOS: Fix some invalid utf8 conversions.</li> </ul> <h1>0.30.10</h1> <ul> <li>Linux: Fix components not being listed anymore.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/GuillaumeGomez/sysinfo/commit/993f8e32c98b47c9c34f708517b03b82e64343b7"><code>993f8e3</code></a> Merge pull request <a href="https://redirect.github.com/GuillaumeGomez/sysinfo/issues/1345">#1345</a> from GuillaumeGomez/update</li> <li><a href="https://github.com/GuillaumeGomez/sysinfo/commit/01df96d31ec9630e004a6fab458af291a246573d"><code>01df96d</code></a> Update crate version to 0.31.4</li> <li><a href="https://github.com/GuillaumeGomez/sysinfo/commit/8205af57f7e50a16a39697b2c9a19a71a87bfc0c"><code>8205af5</code></a> Update CHANGELOG for 0.31.4</li> <li><a href="https://github.com/GuillaumeGomez/sysinfo/commit/97267b1c8f563e8a731e8d555748c1017d851328"><code>97267b1</code></a> Merge pull request <a href="https://redirect.github.com/GuillaumeGomez/sysinfo/issues/1344">#1344</a> from complexspaces/pool-apple-disk-refreshing</li> <li><a href="https://github.com/GuillaumeGomez/sysinfo/commit/5f78295b50c3e604d71f18fb45b5013b7b0d9f5f"><code>5f78295</code></a> Wrap Apple disk refreshing in autorelease pool to avoid system caching</li> <li><a href="https://github.com/GuillaumeGomez/sysinfo/commit/d0122ae0412a981bb64be48a43b99357fcec751b"><code>d0122ae</code></a> Merge pull request <a href="https://redirect.github.com/GuillaumeGomez/sysinfo/issues/1343">#1343</a> from GuillaumeGomez/update</li> <li><a href="https://github.com/GuillaumeGomez/sysinfo/commit/e40096c7ada4055caae6f9e9e6c7b83978142ef3"><code>e40096c</code></a> Update crate version to 0.31.3</li> <li><a href="https://github.com/GuillaumeGomez/sysinfo/commit/431d5df1899729c619f668f89947fb690b3cc572"><code>431d5df</code></a> Update CHANGELOG for 0.31.3</li> <li><a href="https://github.com/GuillaumeGomez/sysinfo/commit/3dff49e089a939cf1f804b35008799cb19c453c5"><code>3dff49e</code></a> Merge pull request <a href="https://redirect.github.com/GuillaumeGomez/sysinfo/issues/1342">#1342</a> from rise0chen/master</li> <li><a href="https://github.com/GuillaumeGomez/sysinfo/commit/9acef9ff21ad958261165e12941135b5ac1982ed"><code>9acef9f</code></a> feat: support Raspberry Pi</li> <li>Additional commits viewable in <a href="https://github.com/GuillaumeGomez/sysinfo/compare/v0.29.11...v0.31.4">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=sysinfo&package-manager=cargo&previous-version=0.29.11&new-version=0.31.4)](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>
JakeStanger 2026-05-23 01:56:20 +01:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
JakeStanger/ironbar#6519
No description provided.