[PR #331] [CLOSED] build(deps): bump smithay-client-toolkit from 0.17.0 to 0.18.0 #6261

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

📋 Pull Request Information

Original PR: https://github.com/JakeStanger/ironbar/pull/331
Author: @dependabot[bot]
Created: 10/16/2023
Status: Closed

Base: masterHead: dependabot/cargo/smithay-client-toolkit-0.18.0


📝 Commits (1)

  • 0881777 build(deps): bump smithay-client-toolkit from 0.17.0 to 0.18.0

📊 Changes

2 files changed (+199 additions, -83 deletions)

View changed files

📝 Cargo.lock (+198 -82)
📝 Cargo.toml (+1 -1)

📄 Description

Bumps smithay-client-toolkit from 0.17.0 to 0.18.0.

Changelog

Sourced from smithay-client-toolkit's changelog.

0.18.0 - 2023-09-23

Breaking Changes

  • ThemedPointer::set_cursor now takes only Connection and &str.
  • SeatState:get_pointer_with_them* now takes Shm and WlSurface for the themed cursor.
  • ThemedPointer now automatically releases the associated WlPointer.
  • CursorIcon from cursor-icon crate is now used for set_cursor and Frame.
  • wayland-csd-frame is now used for CSD types like WindowState, DecorationsFrame, etc.
  • Added CompositorHandle::transform_changed to listen for transform changes.
  • xkeysym::Keysym is used as a keyboard key representation instead of u32
  • wayland-rs dependencies are updated to 0.31
  • calloop dependency updated to 0.12.1
  • Take OwnedFd instead of RawFd as argument to receive_to_fd functions.

Fixed

  • Crash when wl_output is below version 3.

Additions

  • Make DataDeviceManagerState's create_{copy_paste,drag_and_drop}_source accept IntoIterator<Item = T: ToString>.
  • Add support for zwp_primary_selection_v1.
  • CursorShapeManager providing handling for cursor-shape-v1 protocol.
  • SeatState::get_pointer_with_theme will now automatically use wp_cursor_shape_v1 when available.
  • Add support for xdg_shell version 6.
  • Add support for wl_surafce::preferred_buffer_scale and wl_surface::preferred_buffer_transform.
Commits
  • 80c8fd9 v0.18.0
  • 8c49516 chore: drop dlib dependency
  • 658fb4b Update memmap2 dependency
  • 76f6484 primary_selection: don't drop the offer automatically
  • 7951a66 data_device: return PostAction for the Read/Write pipe
  • 468d23a Merge pull request #415 from kchibisov/remove-dead-script
  • 7103ecb chore: remove update_keysyms.sh script
  • d851b66 Fix use of nix in dmabuf module
  • bf7d667 Add support for zwp_linux_dmabuf_v1
  • 665f63d Update dependencies
  • 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/331 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 10/16/2023 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/cargo/smithay-client-toolkit-0.18.0` --- ### 📝 Commits (1) - [`0881777`](https://github.com/JakeStanger/ironbar/commit/0881777130accb26541f3ee5ae344b8cbbc2550d) build(deps): bump smithay-client-toolkit from 0.17.0 to 0.18.0 ### 📊 Changes **2 files changed** (+199 additions, -83 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+198 -82) 📝 `Cargo.toml` (+1 -1) </details> ### 📄 Description Bumps [smithay-client-toolkit](https://github.com/smithay/client-toolkit) from 0.17.0 to 0.18.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/Smithay/client-toolkit/blob/master/CHANGELOG.md">smithay-client-toolkit's changelog</a>.</em></p> <blockquote> <h2>0.18.0 - 2023-09-23</h2> <h4>Breaking Changes</h4> <ul> <li><code>ThemedPointer::set_cursor</code> now takes only <code>Connection</code> and <code>&amp;str</code>.</li> <li><code>SeatState:get_pointer_with_them*</code> now takes <code>Shm</code> and <code>WlSurface</code> for the themed cursor.</li> <li><code>ThemedPointer</code> now automatically releases the associated <code>WlPointer</code>.</li> <li><code>CursorIcon</code> from <code>cursor-icon</code> crate is now used for <code>set_cursor</code> and <code>Frame</code>.</li> <li><code>wayland-csd-frame</code> is now used for CSD types like <code>WindowState</code>, <code>DecorationsFrame</code>, etc.</li> <li>Added <code>CompositorHandle::transform_changed</code> to listen for transform changes.</li> <li><code>xkeysym::Keysym</code> is used as a keyboard key representation instead of <code>u32</code></li> <li><code>wayland-rs</code> dependencies are updated to 0.31</li> <li><code>calloop</code> dependency updated to 0.12.1</li> <li>Take <code>OwnedFd</code> instead of <code>RawFd</code> as argument to <code>receive_to_fd</code> functions.</li> </ul> <h4>Fixed</h4> <ul> <li>Crash when <code>wl_output</code> is below version 3.</li> </ul> <h4>Additions</h4> <ul> <li>Make <code>DataDeviceManagerState</code>'s <code>create_{copy_paste,drag_and_drop}_source</code> accept <code>IntoIterator&lt;Item = T: ToString&gt;</code>.</li> <li>Add support for <code>zwp_primary_selection_v1</code>.</li> <li><code>CursorShapeManager</code> providing handling for <code>cursor-shape-v1</code> protocol.</li> <li><code>SeatState::get_pointer_with_theme</code> will now automatically use <code>wp_cursor_shape_v1</code> when available.</li> <li>Add support for <code>xdg_shell</code> version 6.</li> <li>Add support for <code>wl_surafce::preferred_buffer_scale</code> and <code>wl_surface::preferred_buffer_transform</code>.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/Smithay/client-toolkit/commit/80c8fd9b7e258b306a65944621a550072948e4c0"><code>80c8fd9</code></a> v0.18.0</li> <li><a href="https://github.com/Smithay/client-toolkit/commit/8c495163053c16420f1e8d17e01bf0563e23b66d"><code>8c49516</code></a> chore: drop dlib dependency</li> <li><a href="https://github.com/Smithay/client-toolkit/commit/658fb4bcb9b82d4e64c8756c78048067aec520ca"><code>658fb4b</code></a> Update <code>memmap2</code> dependency</li> <li><a href="https://github.com/Smithay/client-toolkit/commit/76f64848045a4fbac2dcec357367076da438d9c3"><code>76f6484</code></a> primary_selection: don't drop the offer automatically</li> <li><a href="https://github.com/Smithay/client-toolkit/commit/7951a663c17204d98b8582f286001f9d14a760c4"><code>7951a66</code></a> data_device: return <code>PostAction</code> for the Read/Write pipe</li> <li><a href="https://github.com/Smithay/client-toolkit/commit/468d23a90922abb721d30392c700db8174e8a6af"><code>468d23a</code></a> Merge pull request <a href="https://redirect.github.com/smithay/client-toolkit/issues/415">#415</a> from kchibisov/remove-dead-script</li> <li><a href="https://github.com/Smithay/client-toolkit/commit/7103ecb2b60831fa9cdaa34448bc924a90fd64dc"><code>7103ecb</code></a> chore: remove <code>update_keysyms.sh</code> script</li> <li><a href="https://github.com/Smithay/client-toolkit/commit/d851b6640d59d3a2021f43fbfa41188e592ac89d"><code>d851b66</code></a> Fix use of <code>nix</code> in dmabuf module</li> <li><a href="https://github.com/Smithay/client-toolkit/commit/bf7d6672272fdc9cbc41c76a363452f39d12c511"><code>bf7d667</code></a> Add support for <code>zwp_linux_dmabuf_v1</code></li> <li><a href="https://github.com/Smithay/client-toolkit/commit/665f63d90556d910071ec4e645982bf21b05dae1"><code>665f63d</code></a> Update dependencies</li> <li>Additional commits viewable in <a href="https://github.com/smithay/client-toolkit/compare/v0.17.0...v0.18.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=smithay-client-toolkit&package-manager=cargo&previous-version=0.17.0&new-version=0.18.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 01:55:38 +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#6261
No description provided.