[PR #162] [MERGED] build(deps): bump zbus from 3.11.1 to 3.13.1 #3334

Closed
opened 2026-05-22 23:55:30 +01:00 by JakeStanger · 0 comments
Owner

📋 Pull Request Information

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

Base: masterHead: dependabot/cargo/zbus-3.13.1


📝 Commits (1)

  • 7f0fdf2 build(deps): bump zbus from 3.11.1 to 3.13.1

📊 Changes

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

View changed files

📝 Cargo.lock (+54 -14)
📝 Cargo.toml (+1 -1)

📄 Description

Bumps zbus from 3.11.1 to 3.13.1.

Release notes

Sourced from zbus's releases.

zbus 3.13.1

  • Don't use empty struct for body to start at 8-byte boundary.
  • Use latest zvariant_utils.

zbus_macros 3.13.1

  • Use latest zvariant_utils release.

zbus 3.13.0

  • Add Connection::peer_credentials method. Instead of adding multiple individual methods for each credential type, let's add a single method that returns all peer credentials.
  • API for creating ConnectionCredentials struct. This will mainly be useful for bus implementations to be able to create this struct for themselves (e.g on a DBus.GetConnectionCredentials D-Bus call for the bus itself).
  • Getters for fdo::ConnectionCredentials fields.
  • Add launchd address support for macOS. It follows D-Bus specification with the same rules.
  • Dependency changes:
    • New: async-process on MacOS target.
    • Enable process feature of tokio crate.
  • Deprecate Connection::peer_sid in favor of Connection::peer_credentials.
  • Deprecate fdo::ConnectionCredentials fields. If we ever need to add more fields to the struct, we can't do it without breaking the API. So let's deprecate the fields and have everyone use the new getters instead.
  • Disable code on MacOS that won't work on it.
  • Be specific in cfg for Windows.
  • Update all refs of gitlab to github.
  • Other internal fixes/improvements.

zbus_macros 3.13.0

  • Update all refs of gitlab to github.
  • Lock winnow version for now. winnow 0.4.2 bumped MSRV to 1.64. We want to bump our MSRV only after Tauri does.
  • Workaround a clippy false positive.

zbus_macros 3.12.0

To go with zbus 3.12.0

Commits
  • 8708e82 Merge pull request #347 from mercedes-benz/releases-prep
  • d3d268d zb,zm: Bump micro version
  • 81add3f zv,zd: Bump minor version
  • 740630f zu: Bump micro version
  • 2498740 Merge pull request #345 from sophie-h/wip/sophie-h/more-types
  • 29f08ac zv: Add Type and Basic impl for NonZero*
  • c13ee0e zv: Add Type impl for std::time::Duration
  • f47fe94 Merge pull request #346 from mercedes-benz/optional-tests
  • 1b2fe0c zv,internal: Drop now unneeded testcase for issue#343
  • 79017a3 zv,doc: Add a example for Optional
  • 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 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/162 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 5/26/2023 **Status:** ✅ Merged **Merged:** 5/26/2023 **Merged by:** [@JakeStanger](https://github.com/JakeStanger) **Base:** `master` ← **Head:** `dependabot/cargo/zbus-3.13.1` --- ### 📝 Commits (1) - [`7f0fdf2`](https://github.com/JakeStanger/ironbar/commit/7f0fdf2391b3614f48e81f1d3ce1a6254bfe173b) build(deps): bump zbus from 3.11.1 to 3.13.1 ### 📊 Changes **2 files changed** (+55 additions, -15 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+54 -14) 📝 `Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [zbus](https://github.com/dbus2/zbus) from 3.11.1 to 3.13.1. <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 3.13.1</h2> <ul> <li>Don't use empty struct for body to start at 8-byte boundary.</li> <li>Use latest zvariant_utils.</li> </ul> <h2>zbus_macros 3.13.1</h2> <ul> <li>Use latest zvariant_utils release.</li> </ul> <h2>zbus 3.13.0</h2> <ul> <li>Add <code>Connection::peer_credentials</code> method. Instead of adding multiple individual methods for each credential type, let's add a single method that returns all peer credentials.</li> <li>API for creating <code>ConnectionCredentials</code> struct. This will mainly be useful for bus implementations to be able to create this struct for themselves (e.g on a <code>DBus.GetConnectionCredentials</code> D-Bus call for the bus itself).</li> <li>Getters for fdo::ConnectionCredentials fields.</li> <li>Add launchd address support for macOS. It follows D-Bus specification with the same rules.</li> <li>Dependency changes: <ul> <li>New: <code>async-process</code> on MacOS target.</li> <li>Enable <code>process</code> feature of <code>tokio</code> crate.</li> </ul> </li> <li>Deprecate <code>Connection::peer_sid</code> in favor of <code>Connection::peer_credentials</code>.</li> <li>Deprecate <code>fdo::ConnectionCredentials</code> fields. If we ever need to add more fields to the struct, we can't do it without breaking the API. So let's deprecate the fields and have everyone use the new getters instead.</li> <li>Disable code on MacOS that won't work on it.</li> <li>Be specific in <code>cfg</code> for Windows.</li> <li>Update all refs of gitlab to github.</li> <li>Other internal fixes/improvements.</li> </ul> <h2>zbus_macros 3.13.0</h2> <ul> <li>Update all refs of gitlab to github.</li> <li>Lock winnow version for now. winnow 0.4.2 bumped MSRV to 1.64. We want to bump our MSRV only after Tauri does.</li> <li>Workaround a <a href="https://redirect.github.com/rust-lang/rust-clippy/issues/10577">clippy false positive</a>.</li> </ul> <h2>zbus_macros 3.12.0</h2> <p>To go with zbus 3.12.0</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dbus2/zbus/commit/8708e8218319370e0bac1eb4c87c93faac67b0ce"><code>8708e82</code></a> Merge pull request <a href="https://redirect.github.com/dbus2/zbus/issues/347">#347</a> from mercedes-benz/releases-prep</li> <li><a href="https://github.com/dbus2/zbus/commit/d3d268de1afca8246e7972d80c0dd8a244674923"><code>d3d268d</code></a> zb,zm: Bump micro version</li> <li><a href="https://github.com/dbus2/zbus/commit/81add3f9c06d9498bd756a93d0aaa2d2ba6fda24"><code>81add3f</code></a> zv,zd: Bump minor version</li> <li><a href="https://github.com/dbus2/zbus/commit/740630fd3966bd83cdca1a110b091222c1028993"><code>740630f</code></a> zu: Bump micro version</li> <li><a href="https://github.com/dbus2/zbus/commit/2498740e06c15ee0cf078c607bd33139e4467de4"><code>2498740</code></a> Merge pull request <a href="https://redirect.github.com/dbus2/zbus/issues/345">#345</a> from sophie-h/wip/sophie-h/more-types</li> <li><a href="https://github.com/dbus2/zbus/commit/29f08ac02759cddae15fee2681d663cf2d231865"><code>29f08ac</code></a> zv: Add Type and Basic impl for NonZero*</li> <li><a href="https://github.com/dbus2/zbus/commit/c13ee0e07200cd67f7e3e0e937df5b93e96c4fbb"><code>c13ee0e</code></a> zv: Add Type impl for std::time::Duration</li> <li><a href="https://github.com/dbus2/zbus/commit/f47fe94ec30d2da44419070e8ee1495ba561e40a"><code>f47fe94</code></a> Merge pull request <a href="https://redirect.github.com/dbus2/zbus/issues/346">#346</a> from mercedes-benz/optional-tests</li> <li><a href="https://github.com/dbus2/zbus/commit/1b2fe0cc6d70df26931870aebb7188c79368ad7f"><code>1b2fe0c</code></a> zv,internal: Drop now unneeded testcase for issue#343</li> <li><a href="https://github.com/dbus2/zbus/commit/79017a3788a117186ccd20567cc8f0e9739be4eb"><code>79017a3</code></a> zv,doc: Add a example for <code>Optional</code></li> <li>Additional commits viewable in <a href="https://github.com/dbus2/zbus/compare/zbus-3.11.1...zbus-3.13.1">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=3.11.1&new-version=3.13.1)](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 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-22 23:55:30 +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#3334
No description provided.