[PR #611] [MERGED] chore(deps): bump uds_windows from 1.0.2 to 1.1.0 #1016

Closed
opened 2026-01-05 14:53:44 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/LGUG2Z/komorebi/pull/611
Author: @dependabot[bot]
Created: 12/18/2023
Status: Merged
Merged: 12/25/2023
Merged by: @LGUG2Z

Base: masterHead: dependabot/cargo/uds_windows-1.1.0


📝 Commits (2)

  • 159a2c2 refactor(windows-rs): use "wide" fns uniformly
  • fd37d21 chore(deps): bump uds_windows from 1.0.2 to 1.1.0

📊 Changes

6 files changed (+73 additions, -59 deletions)

View changed files

📝 Cargo.lock (+10 -2)
📝 komorebi/Cargo.toml (+1 -0)
📝 komorebi/src/border.rs (+13 -13)
📝 komorebi/src/hidden.rs (+13 -13)
📝 komorebi/src/windows_api.rs (+23 -24)
📝 komorebi/src/windows_callbacks.rs (+13 -7)

📄 Description

Bumps uds_windows from 1.0.2 to 1.1.0.

Release notes

Sourced from uds_windows's releases.

v1.1.0

Bug Fixes

  • Clippy warnings and removal of null pointer dereference

Other

  • Support I/O Safety types and traits: AsSocket, BorrowedSocket, OwnedSocket

This allows callers of uds_windows to potentially avoid having to use the Raw types and traits.

This also allows the use of uds_windows with upcoming changes to async-io to use AsFd.

  • Added safety comments above unsafe blocks within safe functions
Changelog

Sourced from uds_windows's changelog.

[1.1.0] - 2023-12-14

Bug Fixes

  • Clippy warnings

Miscellaneous Tasks

  • Add cliff.toml and release.toml
  • Update release.toml
  • Add release workflow
  • Release uds_windows version 1.1.0

Other

  • Do the easy fixups; leave nullptr and saftey comment lints for another time

  • Support I/O Safety types and traits: AsSocket, BorrowedSocket, OwnedSocket

This allows callers of uds_windows to potentially avoid having to use the Raw types and traits.

This also allows the use of uds_windows with upcoming changes to async-io to use AsFd.

Get compiling from old PR; add AsSocket for UnixStream

Cargo format

  • Added safety comments above unsafe blocks within safe functions
Commits
  • 363423e chore: add CHANGELOG.md
  • fb5e294 chore: release uds_windows version 1.1.0
  • 9dd3467 chore: add release workflow
  • 1c22796 chore: update release.toml
  • 61faef4 chore: add cliff.toml and release.toml
  • d0945bd ci: add conventional commit checker
  • f5ca3b1 fix: clippy warnings
  • 3cc1414 ci: move clippy to the main workflow
  • df87259 Added safety comments above unsafe blocks within safe functions
  • 14f3cbe Support I/O Safety types and traits: AsSocket, BorrowedSocket, OwnedSocket
  • 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/LGUG2Z/komorebi/pull/611 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 12/18/2023 **Status:** ✅ Merged **Merged:** 12/25/2023 **Merged by:** [@LGUG2Z](https://github.com/LGUG2Z) **Base:** `master` ← **Head:** `dependabot/cargo/uds_windows-1.1.0` --- ### 📝 Commits (2) - [`159a2c2`](https://github.com/LGUG2Z/komorebi/commit/159a2c2835a4298e1a0fe00d9ac050efbf1b4aa7) refactor(windows-rs): use "wide" fns uniformly - [`fd37d21`](https://github.com/LGUG2Z/komorebi/commit/fd37d2189ab8bd66e83f1689cada1020e3343c52) chore(deps): bump uds_windows from 1.0.2 to 1.1.0 ### 📊 Changes **6 files changed** (+73 additions, -59 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+10 -2) 📝 `komorebi/Cargo.toml` (+1 -0) 📝 `komorebi/src/border.rs` (+13 -13) 📝 `komorebi/src/hidden.rs` (+13 -13) 📝 `komorebi/src/windows_api.rs` (+23 -24) 📝 `komorebi/src/windows_callbacks.rs` (+13 -7) </details> ### 📄 Description Bumps [uds_windows](https://github.com/haraldh/rust_uds_windows) from 1.0.2 to 1.1.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/haraldh/rust_uds_windows/releases">uds_windows's releases</a>.</em></p> <blockquote> <h2>v1.1.0</h2> <h3>Bug Fixes</h3> <ul> <li>Clippy warnings and removal of null pointer dereference</li> </ul> <h3>Other</h3> <ul> <li>Support I/O Safety types and traits: AsSocket, BorrowedSocket, OwnedSocket</li> </ul> <p>This allows callers of uds_windows to potentially avoid having to use the Raw types and traits.</p> <p>This also allows the use of uds_windows with upcoming changes to async-io to use AsFd.</p> <ul> <li>Added safety comments above unsafe blocks within safe functions</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/haraldh/rust_uds_windows/blob/v1.1.0/CHANGELOG.md">uds_windows's changelog</a>.</em></p> <blockquote> <h2>[1.1.0] - 2023-12-14</h2> <h3>Bug Fixes</h3> <ul> <li>Clippy warnings</li> </ul> <h3>Miscellaneous Tasks</h3> <ul> <li>Add cliff.toml and release.toml</li> <li>Update release.toml</li> <li>Add release workflow</li> <li>Release uds_windows version 1.1.0</li> </ul> <h3>Other</h3> <ul> <li> <p>Do the easy fixups; leave nullptr and saftey comment lints for another time</p> </li> <li> <p>Support I/O Safety types and traits: AsSocket, BorrowedSocket, OwnedSocket</p> </li> </ul> <p>This allows callers of uds_windows to potentially avoid having to use the Raw types and traits.</p> <p>This also allows the use of uds_windows with upcoming changes to async-io to use AsFd.</p> <p>Get compiling from old PR; add AsSocket for UnixStream</p> <p>Cargo format</p> <ul> <li>Added safety comments above unsafe blocks within safe functions</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/haraldh/rust_uds_windows/commit/363423ec1ecea09a300edd781689c71760b67263"><code>363423e</code></a> chore: add CHANGELOG.md</li> <li><a href="https://github.com/haraldh/rust_uds_windows/commit/fb5e294a1c7430cfacc19e8fad6332a1abb33a95"><code>fb5e294</code></a> chore: release uds_windows version 1.1.0</li> <li><a href="https://github.com/haraldh/rust_uds_windows/commit/9dd34679f1ccb5fd598e8cb761901c4ebab06038"><code>9dd3467</code></a> chore: add release workflow</li> <li><a href="https://github.com/haraldh/rust_uds_windows/commit/1c22796e05f6c90dd6300d48fade6e7213c82af2"><code>1c22796</code></a> chore: update release.toml</li> <li><a href="https://github.com/haraldh/rust_uds_windows/commit/61faef48d5036dfdae07bd3448a43056285fc3a0"><code>61faef4</code></a> chore: add cliff.toml and release.toml</li> <li><a href="https://github.com/haraldh/rust_uds_windows/commit/d0945bd8983a46d78039bf9ff338c8faf19a6b7b"><code>d0945bd</code></a> ci: add conventional commit checker</li> <li><a href="https://github.com/haraldh/rust_uds_windows/commit/f5ca3b189313d0020af3f16da75562f1cca82ee0"><code>f5ca3b1</code></a> fix: clippy warnings</li> <li><a href="https://github.com/haraldh/rust_uds_windows/commit/3cc141440acf9b4c4a5b12f060a47a8f23cbff8b"><code>3cc1414</code></a> ci: move clippy to the main workflow</li> <li><a href="https://github.com/haraldh/rust_uds_windows/commit/df872595b9893d6029dee47ef5394a9f138771d4"><code>df87259</code></a> Added safety comments above unsafe blocks within safe functions</li> <li><a href="https://github.com/haraldh/rust_uds_windows/commit/14f3cbecc098f9e1ec70477ed1f190ad6135754a"><code>14f3cbe</code></a> Support I/O Safety types and traits: AsSocket, BorrowedSocket, OwnedSocket</li> <li>Additional commits viewable in <a href="https://github.com/haraldh/rust_uds_windows/compare/v1.0.2...v1.1.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=uds_windows&package-manager=cargo&previous-version=1.0.2&new-version=1.1.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>
adam added the pull-request label 2026-01-05 14:53:44 +01:00
adam closed this issue 2026-01-05 14:53:44 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/komorebi#1016