|
Revision tags: dev, v36.0.9, v44.0.1, v43.0.2, v36.0.8, v24.0.8, v44.0.0, v43.0.1, v42.0.2, v36.0.7, v24.0.7 |
|
| #
ab78bd82 |
| 22-Mar-2026 |
Ho Kim <[email protected]> |
fix: correct various typos (#12807)
Signed-off-by: Ho Kim <[email protected]>
|
|
Revision tags: v43.0.0 |
|
| #
183891f0 |
| 05-Mar-2026 |
Nick Fitzgerald <[email protected]> |
Rename our OOM-handling `Vec` to `TryVec` (#12721)
* Rename our OOM-handling `Vec` to `TryVec`
* fix tests that got mangled by the LSP server
* fix more tests mangled by LSP
|
|
Revision tags: v42.0.1, v41.0.4, v42.0.0, v40.0.4, v36.0.6, v24.0.6 |
|
| #
0c673b70 |
| 06-Feb-2026 |
Nick Fitzgerald <[email protected]> |
Add a reusable `StringPool` for interning strings (#12536)
* Add a reusable `StringPool` for interning strings
And make sure it handles allocation failure.
* fix string pool tests
* Address revie
Add a reusable `StringPool` for interning strings (#12536)
* Add a reusable `StringPool` for interning strings
And make sure it handles allocation failure.
* fix string pool tests
* Address review feedback
* One more piece of review feedback that got missed
show more ...
|
|
Revision tags: v41.0.3 |
|
| #
b8e97b5b |
| 04-Feb-2026 |
Nick Fitzgerald <[email protected]> |
Define a `TryClone` trait for cloning with fallible allocation (#12519)
* Define a `TryClone` trait for cloning with fallible allocation
Part of https://github.com/bytecodealliance/wasmtime/issues/
Define a `TryClone` trait for cloning with fallible allocation (#12519)
* Define a `TryClone` trait for cloning with fallible allocation
Part of https://github.com/bytecodealliance/wasmtime/issues/12069
* add reason to `allow` annotation
show more ...
|
|
Revision tags: v41.0.2 |
|
| #
c0e42072 |
| 28-Jan-2026 |
Nick Fitzgerald <[email protected]> |
Add `wasmtime_core::alloc` functions to allocate uninitialized boxed slices and write iterators into them to initialize them (#12460)
* Add `wasmtime_core::alloc` functions to allocate uninitialized
Add `wasmtime_core::alloc` functions to allocate uninitialized boxed slices and write iterators into them to initialize them (#12460)
* Add `wasmtime_core::alloc` functions to allocate uninitialized boxed slices and write iterators into them to initialize them
* Fix doc link
show more ...
|
| #
35483cc4 |
| 28-Jan-2026 |
Nick Fitzgerald <[email protected]> |
Add some more OOM-handling `Box<[T]>` constructor variants (#12441)
* Add some more OOM-handling `Box<[T]>` constructor variants
Part of https://github.com/bytecodealliance/wasmtime/issues/12069
*
Add some more OOM-handling `Box<[T]>` constructor variants (#12441)
* Add some more OOM-handling `Box<[T]>` constructor variants
Part of https://github.com/bytecodealliance/wasmtime/issues/12069
* Reimplement boxed slice helpers on top of `Vec`
* Rename `DropGuard` to `BoxedSliceBuilder`
* Fix `Vec::into_raw_parts` polyfill
Need to forget `self` or else we will double-free the buffer.
show more ...
|
|
Revision tags: v41.0.1, v36.0.5, v40.0.3 |
|
| #
8325e1ec |
| 23-Jan-2026 |
Alex Crichton <[email protected]> |
Fold the `wasmtime-error` crate into `wasmtime-core` (#12418)
Similar to #12398 and #12407 the idea is that all our dependency-free (mostly) data structures and foundational data-types are in one lo
Fold the `wasmtime-error` crate into `wasmtime-core` (#12418)
Similar to #12398 and #12407 the idea is that all our dependency-free (mostly) data structures and foundational data-types are in one location to centralize testing, ergonomics, documentation, idioms, etc.
show more ...
|
| #
9acefdfe |
| 23-Jan-2026 |
Alex Crichton <[email protected]> |
Merge `wasmtime-math` into `wasmtime-core` (#12398)
* Merge `wasmtime-math` into `wasmtime-core`
No real need to have two "core" crates, let's just have one.
* Fix warnings
|
| #
233f1875 |
| 22-Jan-2026 |
Nick Fitzgerald <[email protected]> |
Add fallible allocation methods to `cranelift_bitset::CompoundBitSet` (#12381)
* Add fallible allocation methods to `cranelift_bitset::CompoundBitSet`
Part of https://github.com/bytecodealliance/wa
Add fallible allocation methods to `cranelift_bitset::CompoundBitSet` (#12381)
* Add fallible allocation methods to `cranelift_bitset::CompoundBitSet`
Part of https://github.com/bytecodealliance/wasmtime/issues/12069
* Add OOM tests for `CompoundBitSet` fallible allocation methods
* Create the `wasmtime-internal-core` crate
And move allocation helpers from `wasmtime_environ::collections` to `wasmtime_core::alloc`, with a re-export through the old location for higher-level helpers.
* Split `wasmtime_core::alloc` up into modules
* Add the `wasmtime_core::alloc::new_boxed_slice_from_iter` helper
* Use `new_boxed_slice_from_iter` in `cranelift_bitset::CompoundBitSet`
* Use `Box::assume_init`
show more ...
|