Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
4.5.23
->4.5.26
2.1.4
->2.1.6
0.2.27
->0.2.29
1.0.92
->1.0.93
1.83.0
->1.84.0
1.0.135
->1.0.137
2.6.0
->2.7.0
2.0.95
->2.0.96
2.0.9
->2.0.11
0.2.99
->0.2.100
0.3.49
->0.3.50
Release Notes
clap-rs/clap (clap)
v4.5.26
Compare Source
Fixes
suggestions
featurev4.5.25
Compare Source
Fixes
v4.5.24
Compare Source
Fixes
ignore_errors(true)
and when a suggestion is provided for an unknown argumentdenoland/deno (deno)
v2.1.6
Compare Source
augment
ImportMeta
(#27690)than code (#27654)
writev
method toFileHandle
(#27563)@npmcli/agent
workaround tonpm-check-updates
(#27639)
ext/node/polyfills/_fs_common.ts
(#27589).js
extension(#27631)
environment (#27343) (#27340)
latest
tag even when it's the same as the current version(#27699)
v2.1.5
Compare Source
directories (#27395)
(#27429)
unavailable (#27463)
Deno.resolveDns
on some laptops with Ryzen CPU (#27572)
fs.access
/fs.promises.access
withX_OK
mode parameteron Windows (#27407)
os.cpus()
on Linux (#27592)truncate
method to theFileHandle
class (#27389)(#27476)
(#27378)
process
global available in Node context (#27562)[[ErrorData]]
slot toDOMException
(#27342)(#27337)
inspector/promises
(#27491)(#27345)
(#27390)
--allow-import
when using--cached-only
(#27530)
(#27437)
dtolnay/prettyplease (prettyplease)
v0.2.29
Compare Source
v0.2.28
Compare Source
dtolnay/proc-macro2 (proc-macro2)
v1.0.93
Compare Source
rust-lang/rust (rust)
v1.84.0
Compare Source
==========================
Language
#[deny]
inside#[forbid]
as a no-op-Ctarget-feature
is used to toggle features that can lead to unsoundness due to ABI mismatches/
as the path separator forinclude!()
in all cases on Windowsraw (const|mut)
) of a deref of a pointer (*ptr
) is now safeextern "C"
functionCompiler
--print host-tuple
flag to print the host target tuple and affirm the "target tuple" terminology over "target triple"loongarch64-unknown-linux-{musl,ohos}
unexpected_cfgs
lint to also warn in external macrosmultivalue
,reference-types
, andtail-call
target featureswasm32v1-none
targetLibraries
From<&mut {slice}>
forBox/Rc/Arc<{slice}>
<float>::copysign
,<float>::abs
,<float>::signum
tocore
LowerExp
andUpperExp
implementations toNonZero
FromStr
forCString
andTryFrom<CString>
forString
std::os::darwin
has been made publicStabilized APIs
Ipv6Addr::is_unique_local
Ipv6Addr::is_unicast_link_local
core::ptr::with_exposed_provenance
core::ptr::with_exposed_provenance_mut
<ptr>::addr
<ptr>::expose_provenance
<ptr>::with_addr
<ptr>::map_addr
<int>::isqrt
<int>::checked_isqrt
<uint>::isqrt
NonZero::isqrt
core::ptr::without_provenance
core::ptr::without_provenance_mut
core::ptr::dangling
core::ptr::dangling_mut
Pin::as_deref_mut
These APIs are now stable in const contexts
AtomicBool::from_ptr
AtomicPtr::from_ptr
AtomicU8::from_ptr
AtomicU16::from_ptr
AtomicU32::from_ptr
AtomicU64::from_ptr
AtomicUsize::from_ptr
AtomicI8::from_ptr
AtomicI16::from_ptr
AtomicI32::from_ptr
AtomicI64::from_ptr
AtomicIsize::from_ptr
<ptr>::is_null
<ptr>::as_ref
<ptr>::as_mut
Pin::new
Pin::new_unchecked
Pin::get_ref
Pin::into_ref
Pin::get_mut
Pin::get_unchecked_mut
Pin::static_ref
Pin::static_mut
Cargo
Rustdoc
Compatibility Notes
LSX
target feature for LoongArch Linux targets-Zprofile
flag (“gcov-style” coverage instrumentation) has been removed. This does not affect the stable flags for coverage instrumentation (-Cinstrument-coverage
) and profile-guided optimization (-Cprofile-generate
,-Cprofile-use
), which are unrelated and remain available.wasm32-wasi
has been removed as the target is now namedwasm32-wasip1
. This completes the transition plan for this target following the introduction ofwasm32-wasip1
in Rust 1.78. Compiler warnings on use ofwasm32-wasi
introduced in Rust 1.81 are now gone as well as the target is removed.&pin (mut|const) T
is now parsed as a type which in theory could affect macro expansion results in some edge casesstd::arch
functions is no longer permitted to declare items or bodies (such as closures, inline consts, or async blocks).serde-rs/json (serde_json)
v1.0.137
Compare Source
v1.0.136
Compare Source
mitsuhiko/similar (similar)
v2.7.0
Compare Source
web-time
to support web WASM targets. #73deadlines are silently ignored. To enforce deadlines enable the
wasm32_web_time
feature. #74dtolnay/syn (syn)
v2.0.96
Compare Source
dtolnay/thiserror (thiserror)
v2.0.11
Compare Source
v2.0.10
Compare Source
rustwasm/wasm-bindgen (wasm-bindgen)
v0.2.100
Compare Source
Released 2025-01-12
Added
Add attributes to overwrite return (``unchecked_return_type
) and parameter types (
unchecked_param_type), descriptions (
return_descriptionand
param_description) as well as parameter names (
js_name`) for exported functions and methods. See the guide for more details.#4394
Add a
copy_to_uninit()
method to allTypedArray
s. It takes&mut [MaybeUninit<T>]
and returns&mut [T]
.#4340
Add test coverage support for Node.js.
#4348
Support importing memory and using
wasm_bindgen::module()
in Node.js.#4349
Add
--list
,--ignored
,--exact
and--nocapture
towasm-bindgen-test-runner
, analogous tocargo test
.#4356
Add bindings to
Date.to_locale_time_string_with_options
.#4384
#[wasm_bindgen]
now correctly applies#[cfg(...)]
s instruct
s.#4351
Changed
Optional parameters are now typed as
T | undefined | null
to reflect the actual JS behavior.#4188
Adding
getter
,setter
, andconstructor
methods to enums now results in a compiler error. This was previously erroneously allowed and resulted in invalid JS code gen.#4278
Handle stuck and failed WebDriver processes when re-trying to start them.
#4340
Align test output closer to native
cargo test
.#4358
Error if URL in
<WEBDRIVER>_REMOTE
can't be parsed instead of just ignoring it.#4362
Remove
WASM_BINDGEN_THREADS_MAX_MEMORY
andWASM_BINDGEN_THREADS_STACK_SIZE
. The maximum memory size can be set via-Clink-arg=--max-memory=<size>
. The stack size of a thread can be set when initializing the thread via thedefault
function.#4363
console.*()
calls in tests are now always intercepted by default. To show them use--nocapture
. When shown they are always printed in-place instead of after test results, analogous tocargo test
.#4356
Fixed
Fixed using JavaScript keyword as identifiers not being handled correctly.
#4329
struct
andenum
names will now error at compile time, instead of causing invalid JS code gen.js_namespace
on imports.js_namespace
ormodule
attribute.js_namespace
ormodule
attribute._{keyword}
.Fixed passing large arrays into Rust failing because of internal memory allocations invalidating the memory buffer.
#4353
Pass along an
ignore
attribute tounsupported
tests.#4360
Use OS provided temporary directory for tests instead of Cargo's
target
directory.#4361
Error if URL in
<WEBDRIVER>_REMOTE
can't be parsed.#4362
Internal functions are now removed instead of invalidly imported if they are unused.
#4366
Fixed
no_std
support for all APIs inweb-sys
.#4378
Prevent generating duplicate exports for closure conversions.
#4380
Configuration
📅 Schedule: Branch creation - "before 9am on monday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.