-
Notifications
You must be signed in to change notification settings - Fork 2
Update Rust crate windows-sys to 0.61.0 #292
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Reviewer's GuideThis PR upgrades the windows-sys crate from version 0.59.0 to 0.60.0 across all Rust project manifests, ensuring consistency in the dependency version and updating the lockfile accordingly. Updated Class Diagram for GUID in windows-sys v0.60.0classDiagram
class GUID {
<<windows-sys type>>
-- Replaced Trait Method --
- from(value: &str) GUID /* From<&str> trait (removed) */
+ try_from(value: &str) Result~GUID, Error~ /* TryFrom<&str> trait (added) */
}
class Result~GUID, Error~ {
<<Generic Result>>
}
Updated Class Diagram for Registry Value in windows-registry v0.60.0classDiagram
class Value {
<<windows-registry type>>
-- Added Conversions --
+ to_HSTRING() HSTRING
+ from_HSTRING(hs: HSTRING) Value
}
class HSTRING {
<<windows-strings type>>
}
Value ..> HSTRING : uses for conversion
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
26dab1a
to
4610eb7
Compare
4610eb7
to
417b1b4
Compare
417b1b4
to
084e240
Compare
|
Note
Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to
mend[bot]
.This notice will be removed on 2025-10-07.
This PR contains the following updates:
0.59.0
->0.61.0
Release Notes
microsoft/windows-rs (windows-sys)
v0.61.0
: 61Major crate updates:
windows
0.59.0windows-core
0.59.0windows-implement
0.59.0windows-interface
0.59.0windows-targets
0.53.0windows_i686_msvc
0.53.0windows_x86_64_msvc
0.53.0windows_aarch64_msvc
0.53.0windows_i686_gnu
0.53.0windows_x86_64_gnu
0.53.0windows_i686_gnullvm
0.53.0windows_x86_64_gnullvm
0.53.0windows_aarch64_gnullvm
0.53.0windows-bindgen
0.59.0windows-registry
0.4.0windows-result
0.3.0windows-strings
0.3.0cppwinrt
0.2.0Minor crate updates:
windows-version
0.1.2Excluded:
windows-sys
0.59.0Things to keep in mind:
The tag/release names no longer map directly to the crate versions, so to find samples for a particular release requires looking at the releases page and finding the release that most recently updated a particular crate.
The
windows-bindgen
crate includes the major code generation overhaul that brings many improvements - be sure to check out the PR description for more information. The resulting code gen depends on the new version ofwindows-core
and its dependencies, unless you include the--sys
option. #3359The
cppwinrt
crate constitutes a major update due to streamlining the error handling. #3415The
windows-registry
,windows-strings,
andwindows-result
crates are also major version updates since they include small breaking changes.The
windows-targets
crate finally receives a major version update, the first in over a year. This is due to #3359 and #3342 potentially introducing breaking changes. Although unlikely, these updates introduced sufficient changes that make it hard to ensure that thewindows-targets
libs don't break existing code. As we're updatingwindows-targets
anyway, I took the liberty to bump the MSRV to 1.60 - to match the latest version ofwindows-sys
- and remove the old but unused doc macro feature. Both remained for compatibility with very old dependents of thewindows-targets
crate.The
windows-version
crate receives a minor update to update its dependency on thewindows-targets
crate.Beyond these specifics, this update is the culmination of around 6 months worth of work on the
windows-rs
project. The biggest improvements comes from the new code generation engine, but many other improvements are now also available for production. This includes support for many new lints, warnings, and suggestions provided by the Rust toolchain; much smaller code gen thanks to deriving many more traits; more efficient code gen; major improvements to WinRT type system and implementation support; more robust and consistent error handling; stock collection and async support; improved support for class hierarchies; and much more!In addition to "what's changed" below, check out what's changed for notes for 0.60.0 and 0.59.0 for additional changes that roll up to the crates published as part of this release.
What's Changed
std
references inwindows
andwindows-core
crates forno_std
builds by @kennykerr in #3317unwrap
helper forNTSTATUS
by @kennykerr in #3324windows-bindgen
update by @kennykerr in #3359windows-bindgen
should generateno_std
bindings by default by @kennykerr in #3366BOOLEAN
tobool
by @kennykerr in #3376transmute
for input value type parameter bindings by @kennykerr in #3377windows-bindgen
by @kennykerr in #3379track_caller
to make debuggingbindgen
build script errors easier by @kennykerr in #3383windows-bindgen
now usesRef
andOutRef
for COM interface traits by @kennykerr in #3386windows-bindgen
to supportunsafe_op_in_unsafe_fn
by @kennykerr in #3393Ref
work with more than just interface types by @kennykerr in #3394cppwinrt
should consistently panic on failure by @kennykerr in #3415track_caller
to make debuggingcppwinrt
build script errors easier by @kennykerr in #3417transmute
where possible by @kennykerr in #3421New Contributors
Full Changelog: microsoft/windows-rs@0.60.0...0.61.0
v0.60.0
Compare Source
This release includes an update to the windows-registry and windows-strings crates, mainly to provide various improvements to registry support for rustup.
What's Changed
Value
to/fromHSTRING
conversion by @kennykerr in #3190From<&str>
forGUID
withTryFrom<&str>
by @kennykerr in #3193windows-registry
by @kennykerr in #3215windows-registry
crate by @kennykerr in #3214ready
support by @kennykerr in #3221spawn
support by @kennykerr in #3235Eq
for structs containing floating point type parameters by @kennykerr in #3255noexcept
methods in a composable hierarchy by @kennykerr in #3262windows-metadata
by @kennykerr in #3268Eq
andPartialEq
for structs containing callbacks by @kennykerr in #3270windows-bindgen
crate by @kennykerr in #3272web
on most workflows by @kennykerr in #3279VARIANT
support to thewindows
crate by @kennykerr in #3282jsonschema
dependency by @kennykerr in #3286raw-dylib
testing by @kennykerr in #3287cppwinrt
concurrency issue by @kennykerr in #3289Deref
implementation forHSTRING
by @kennykerr in #3291New Contributors
Full Changelog: microsoft/windows-rs@0.59.0...0.60.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.