[PR #956] [MERGED] build(deps): bump zbus from 5.5.0 to 5.6.0 #5280

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

📋 Pull Request Information

Original PR: https://github.com/JakeStanger/ironbar/pull/956
Author: @dependabot[bot]
Created: 5/5/2025
Status: Merged
Merged: 5/5/2025
Merged by: @JakeStanger

Base: masterHead: dependabot/cargo/zbus-5.6.0


📝 Commits (1)

  • 0543820 build(deps): bump zbus from 5.5.0 to 5.6.0

📊 Changes

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

View changed files

📝 Cargo.lock (+8 -21)
📝 Cargo.toml (+1 -1)

📄 Description

Bumps zbus from 5.5.0 to 5.6.0.

Release notes

Sourced from zbus's releases.

🔖 zbus 5.6.0

  • 🚑️ Fix fdo::StatsProxy method return values. The return value of the methods were wrong so we fix it now. #1341
  • 🚸 fdo::StatsProxy methods now return structs. Now that we can use serde derives directly, we can make use of the flatten attribute and have a very strongly-typed API for the statistics standardized by the D-Bus specification while still parsing and returning any bus broker specific statistics returned by these calls.
  • 📝 Document fdo::StatsProxy.
  • ⬆️a Require zvariant 5.5 and make use of its new API.
  • Make OwnerChangedStream ordered. NameOwnerChangedStream is already ordered, so switching out the .map implementation and implementing OrderedStream is all that's needed.
  • Expose low-level serial fields in builder.
  • 🛂 Add support for ProcessFD/pid_fd credentials.
  • ️ Don't clone signature when creating body.
  • Add body & signature getter to msg de benchmarks. This temporarily takes the benchmark go slower by 50%. This will be fixed in the next commit.
  • Drop uneeded deps xdg-home & async-fs.
  • Drop static_assertions dep.
  • ✏️ Fix a typo in README.
Commits
  • 384b9cb Merge pull request #1359 from zeenix/release-zbus-5.6.0
  • 80ba80f 🔖 zb,zm: Release 5.6.0
  • babdc32 Merge pull request #1360 from zeenix/release-zv-5.5.1
  • 9220cd2 🔖 zv,zd: Release 5.5.1
  • 47966d1 🚑️ zv: Use pub use instead of a type alias
  • e6fb054 🔥 zv: Drop as_value::{Serialize, Deserialize} re-export
  • b329e95 🔥 zb: Remove a forgotten unwrap call in a test
  • 4ba4963 📝 CONTRIBUTING: Explicitly state how to c&p emojis
  • 5874e7c Merge pull request #1358 from zeenix/fix-local-deps
  • 0c8cb02 🩹 all: Don't use workspace for local deps
  • 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/956 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 5/5/2025 **Status:** ✅ Merged **Merged:** 5/5/2025 **Merged by:** [@JakeStanger](https://github.com/JakeStanger) **Base:** `master` ← **Head:** `dependabot/cargo/zbus-5.6.0` --- ### 📝 Commits (1) - [`0543820`](https://github.com/JakeStanger/ironbar/commit/0543820078a6b8ee1fe8c529d3726efbc675059a) build(deps): bump zbus from 5.5.0 to 5.6.0 ### 📊 Changes **2 files changed** (+9 additions, -22 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+8 -21) 📝 `Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [zbus](https://github.com/dbus2/zbus) from 5.5.0 to 5.6.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dbus2/zbus/releases">zbus's releases</a>.</em></p> <blockquote> <h2>🔖 zbus 5.6.0</h2> <ul> <li>🚑️ Fix fdo::StatsProxy method return values. The return value of the methods were wrong so we fix it now. <a href="https://redirect.github.com/dbus2/zbus/issues/1341">#1341</a></li> <li>🚸 fdo::StatsProxy methods now return structs. Now that we can use serde derives directly, we can make use of the <code>flatten</code> attribute and have a very strongly-typed API for the statistics standardized by the D-Bus specification while still parsing and returning any bus broker specific statistics returned by these calls.</li> <li>📝 Document fdo::StatsProxy.</li> <li>⬆️a Require zvariant 5.5 and make use of its new API.</li> <li>✨ Make OwnerChangedStream ordered. NameOwnerChangedStream is already ordered, so switching out the .map implementation and implementing OrderedStream is all that's needed.</li> <li>✨ Expose low-level serial fields in builder.</li> <li>🛂 Add support for ProcessFD/pid_fd credentials.</li> <li>⚡️ Don't clone signature when creating body.</li> <li>✅ Add body &amp; signature getter to msg de benchmarks. This temporarily takes the benchmark go slower by 50%. This will be fixed in the next commit.</li> <li>➖ Drop uneeded deps xdg-home &amp; async-fs.</li> <li>➖ Drop <code>static_assertions</code> dep.</li> <li>✏️ Fix a typo in README.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dbus2/zbus/commit/384b9cb8fdebd76b0a5c33eac66793a962d2bb50"><code>384b9cb</code></a> Merge pull request <a href="https://redirect.github.com/dbus2/zbus/issues/1359">#1359</a> from zeenix/release-zbus-5.6.0</li> <li><a href="https://github.com/dbus2/zbus/commit/80ba80f51fb0abb2556fe08b2a23cfea4987a841"><code>80ba80f</code></a> 🔖 zb,zm: Release 5.6.0</li> <li><a href="https://github.com/dbus2/zbus/commit/babdc3289d34d4054e381fb69dfc0c8395ffaaf3"><code>babdc32</code></a> Merge pull request <a href="https://redirect.github.com/dbus2/zbus/issues/1360">#1360</a> from zeenix/release-zv-5.5.1</li> <li><a href="https://github.com/dbus2/zbus/commit/9220cd2a36b7afa884be90bd1b2217622f2a4fda"><code>9220cd2</code></a> 🔖 zv,zd: Release 5.5.1</li> <li><a href="https://github.com/dbus2/zbus/commit/47966d1f0ee2d6486bb6282e6babf9e33d16a6ff"><code>47966d1</code></a> 🚑️ zv: Use <code>pub use</code> instead of a type alias</li> <li><a href="https://github.com/dbus2/zbus/commit/e6fb054d1ebc279b9d6a6364e657a3ffb4081143"><code>e6fb054</code></a> 🔥 zv: Drop as_value::{Serialize, Deserialize} re-export</li> <li><a href="https://github.com/dbus2/zbus/commit/b329e95b83e05d9b25374d5ef6be4395d0b2d17a"><code>b329e95</code></a> 🔥 zb: Remove a forgotten <code>unwrap</code> call in a test</li> <li><a href="https://github.com/dbus2/zbus/commit/4ba49632f68e39eb3e15c7e580cf9e69c6daf9c2"><code>4ba4963</code></a> 📝 CONTRIBUTING: Explicitly state how to c&amp;p emojis</li> <li><a href="https://github.com/dbus2/zbus/commit/5874e7c134763a1a666f62299d15f9ed973ef811"><code>5874e7c</code></a> Merge pull request <a href="https://redirect.github.com/dbus2/zbus/issues/1358">#1358</a> from zeenix/fix-local-deps</li> <li><a href="https://github.com/dbus2/zbus/commit/0c8cb02ad8b185eb9f45a90a17928a967cb91250"><code>0c8cb02</code></a> 🩹 all: Don't use workspace for local deps</li> <li>Additional commits viewable in <a href="https://github.com/dbus2/zbus/compare/zbus-5.5.0...zbus-5.6.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=zbus&package-manager=cargo&previous-version=5.5.0&new-version=5.6.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 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 00:56:48 +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#5280
No description provided.