2019-11-26 03:32:13 +00:00
|
|
|
# `bytemuck` changelog
|
|
|
|
|
2021-12-16 06:19:43 +00:00
|
|
|
## 1.7.3
|
|
|
|
|
|
|
|
* Experimental support for the `portable_simd` language extension under the
|
|
|
|
`nightly_portable_simd` cargo feature. As the name implies, this is an
|
|
|
|
experimental crate feature and it's **not** part of the semver contract. All
|
|
|
|
it does is add the appropriate `Zeroable` and `Pod` impls.
|
|
|
|
|
2021-07-23 05:29:45 +00:00
|
|
|
## 1.7.2
|
|
|
|
|
|
|
|
* Why does this repo keep being hit with publishing problems? What did I do to
|
|
|
|
deserve this curse, Ferris? This doesn't ever happen with tinyvec or fermium,
|
|
|
|
only bytemuck.
|
|
|
|
|
2021-07-23 05:26:16 +00:00
|
|
|
## 1.7.1
|
|
|
|
|
|
|
|
* **Soundness Fix:** The wrap/peel methods for owned value conversion, added to
|
|
|
|
`TransparentWrapper` in 1.6, can cause a double-drop if used with types that
|
|
|
|
impl `Drop`. The fix was simply to add a `ManuallyDrop` layer around the value
|
|
|
|
before doing the `transmute_copy` that is used to wrap/peel. While this fix
|
|
|
|
could technically be backported to the 1.6 series, since 1.7 is semver
|
|
|
|
compatible anyway the 1.6 series has simply been yanked.
|
|
|
|
|
2021-06-13 14:40:58 +00:00
|
|
|
## 1.7
|
|
|
|
|
|
|
|
* In response to [Unsafe Code Guidelines Issue
|
|
|
|
#286](https://github.com/rust-lang/unsafe-code-guidelines/issues/286), this
|
|
|
|
version of Bytemuck has a ***Soundness-Required Breaking Change***. This is
|
|
|
|
"allowed" under Rust's backwards-compatibility guidelines, but it's still
|
|
|
|
annoying of course so we're trying to keep the damage minimal.
|
|
|
|
* **The Reason:** It turns out that pointer values should not have been `Pod`. More
|
|
|
|
specifically, `ptr as usize` is *not* the same operation as calling
|
|
|
|
`transmute::<_, usize>(ptr)`.
|
|
|
|
* LLVM has yet to fully sort out their story, but until they do, transmuting
|
|
|
|
pointers can cause miscompilations. They may fix things up in the future,
|
|
|
|
but we're not gonna just wait and have broken code in the mean time.
|
|
|
|
* **The Fix:** The breaking change is that the `Pod` impls for `*const T`,
|
|
|
|
`*mut T`, and `Option<NonNull<T>` are now gated behind the
|
|
|
|
`unsound_ptr_pod_impl` feature, which is off by default.
|
|
|
|
* You are *strongly discouraged* from using this feature, but if a dependency
|
|
|
|
of yours doesn't work when you upgrade to 1.7 because it relied on pointer
|
|
|
|
casting, then you might wish to temporarily enable the feature just to get
|
|
|
|
that dependency to build. Enabled features are global across all users of a
|
|
|
|
given semver compatible version, so if you enable the feature in your own
|
|
|
|
crate, your dependency will also end up getting the feature too, and then
|
|
|
|
it'll be able to compile.
|
|
|
|
* Please move away from using this feature as soon as you can. Consider it to
|
|
|
|
*already* be deprecated.
|
|
|
|
* [PR 65](https://github.com/Lokathor/bytemuck/pull/65)
|
|
|
|
|
2021-06-13 14:17:00 +00:00
|
|
|
## 1.6.3
|
2021-06-13 14:14:04 +00:00
|
|
|
|
|
|
|
* Small goof with an errant `;`, so [PR 69](https://github.com/Lokathor/bytemuck/pull/69)
|
|
|
|
*actually* got things working on SPIR-V.
|
|
|
|
|
2021-06-13 14:17:00 +00:00
|
|
|
## 1.6.2
|
|
|
|
|
|
|
|
cargo upload goof! ignore this one.
|
|
|
|
|
2021-06-12 01:15:59 +00:00
|
|
|
## 1.6.1
|
|
|
|
|
2021-06-13 14:14:04 +00:00
|
|
|
* [DJMcNab](https://github.com/DJMcNab) did a fix so that the crate can build for SPIR-V
|
2021-06-12 01:15:59 +00:00
|
|
|
[PR 67](https://github.com/Lokathor/bytemuck/pull/67)
|
|
|
|
|
2021-06-10 20:09:58 +00:00
|
|
|
## 1.6
|
|
|
|
|
|
|
|
* The `TransparentWrapper` trait now has more methods. More ways to wrap, and
|
|
|
|
now you can "peel" too! Note that we don't call it "unwrap" because that name
|
|
|
|
is too strongly associated with the Option/Result methods.
|
|
|
|
Thanks to [LU15W1R7H](https://github.com/LU15W1R7H) for doing
|
|
|
|
[PR 58](https://github.com/Lokathor/bytemuck/pull/58)
|
|
|
|
* Min Const Generics! Now there's Pod and Zeroable for arrays of any size when
|
|
|
|
you turn on the `min_const_generics` crate feature.
|
|
|
|
[zakarumych](https://github.com/zakarumych) got the work started in
|
|
|
|
[PR 59](https://github.com/Lokathor/bytemuck/pull/59),
|
|
|
|
and [chorman0773](https://github.com/chorman0773) finished off the task in
|
|
|
|
[PR 63](https://github.com/Lokathor/bytemuck/pull/63)
|
|
|
|
|
2021-02-18 04:46:31 +00:00
|
|
|
## 1.5.1
|
|
|
|
|
|
|
|
* Fix `bytes_of` failing on zero sized types.
|
|
|
|
[PR 53](https://github.com/Lokathor/bytemuck/pull/53)
|
|
|
|
|
2021-01-13 23:52:23 +00:00
|
|
|
## 1.5
|
|
|
|
|
|
|
|
* Added `pod_collect_to_vec`, which will gather a slice into a vec,
|
|
|
|
allowing you to change the pod type while also safely ignoring alignment.
|
|
|
|
[PR 50](https://github.com/Lokathor/bytemuck/pull/50)
|
|
|
|
|
2020-10-21 20:17:20 +00:00
|
|
|
## 1.4.2
|
|
|
|
|
2021-01-13 23:52:23 +00:00
|
|
|
* [Kimundi](https://github.com/Kimundi) fixed an issue that could make `try_zeroed_box`
|
|
|
|
stack overflow for large values at low optimization levels.
|
2020-10-21 20:17:20 +00:00
|
|
|
[PR 43](https://github.com/Lokathor/bytemuck/pull/43)
|
|
|
|
|
|
|
|
## 1.4.1
|
|
|
|
|
|
|
|
* [thomcc](https://github.com/thomcc) fixed up the CI and patched over a soundness hole in `offset_of!`.
|
|
|
|
[PR 38](https://github.com/Lokathor/bytemuck/pull/38)
|
|
|
|
|
2020-08-20 03:45:09 +00:00
|
|
|
## 1.4
|
|
|
|
|
2020-08-21 01:40:38 +00:00
|
|
|
* [icewind1991](https://github.com/icewind1991) has contributed the proc-macros
|
|
|
|
for deriving impls of `Pod`, `TransparentWrapper`, `Zeroable`!! Everyone has
|
|
|
|
been waiting for this one folks! It's a big deal. Just enable the `derive`
|
|
|
|
cargo feature and then you'll be able to derive the traits on your types. It
|
|
|
|
generates all the appropriate tests for you.
|
2020-08-20 03:45:09 +00:00
|
|
|
* The `zeroable_maybe_uninit` feature now adds a `Zeroable` impl to the
|
2020-08-21 01:40:38 +00:00
|
|
|
`MaybeUninit` type. This is only behind a feature flag because `MaybeUninit`
|
|
|
|
didn't exist back in `1.34.0` (the minimum rust version of `bytemuck`).
|
2020-08-20 03:45:09 +00:00
|
|
|
|
2020-07-25 21:43:31 +00:00
|
|
|
## 1.3.1
|
2020-07-24 01:30:33 +00:00
|
|
|
|
2020-07-25 02:36:38 +00:00
|
|
|
* The entire crate is now available under the `Apache-2.0 OR MIT` license as
|
|
|
|
well as the previous `Zlib` license
|
|
|
|
[#24](https://github.com/Lokathor/bytemuck/pull/24).
|
2020-07-24 02:22:43 +00:00
|
|
|
* [HeroicKatora](https://github.com/HeroicKatora) added the
|
|
|
|
`try_zeroed_slice_box` function
|
2020-07-25 02:34:51 +00:00
|
|
|
[#10](https://github.com/Lokathor/bytemuck/pull/17). `zeroed_slice_box` is
|
|
|
|
also available.
|
2020-07-24 02:22:43 +00:00
|
|
|
* The `offset_of!` macro now supports a 2-arg version. For types that impl
|
|
|
|
Default, it'll just make an instance using `default` and then call over to the
|
|
|
|
3-arg version.
|
2020-07-24 12:53:43 +00:00
|
|
|
* The `PodCastError` type now supports `Hash` and `Display`. Also if you enable
|
|
|
|
the `extern_crate_std` feature then it will support `std::error::Error`.
|
2020-07-24 12:58:37 +00:00
|
|
|
* We now provide a `TransparentWrapper<T>` impl for `core::num::Wrapper<T>`.
|
2020-07-25 02:43:32 +00:00
|
|
|
* The error type of `try_from_bytes` and `try_from_bytes_mut` when the input
|
|
|
|
isn't aligned has been corrected from being `AlignmentMismatch` (intended for
|
|
|
|
allocation casting only) to `TargetAlignmentGreaterAndInputNotAligned`.
|
2020-07-24 01:30:33 +00:00
|
|
|
|
2020-07-25 21:43:31 +00:00
|
|
|
## 1.3.0
|
|
|
|
|
|
|
|
* Had a bug because the CI was messed up! It wasn't soundness related, because
|
|
|
|
it prevented the crate from building entirely if the `extern_crate_alloc`
|
|
|
|
feature was used. Still, this is yanked, sorry.
|
|
|
|
|
2020-02-07 03:44:33 +00:00
|
|
|
## 1.2.0
|
|
|
|
|
|
|
|
* [thomcc](https://github.com/thomcc) added many things:
|
2020-07-24 02:22:43 +00:00
|
|
|
* A fully sound `offset_of!` macro
|
|
|
|
[#10](https://github.com/Lokathor/bytemuck/pull/10)
|
2020-02-07 03:44:33 +00:00
|
|
|
* A `Contiguous` trait for when you've got enums with declared values
|
|
|
|
all in a row [#12](https://github.com/Lokathor/bytemuck/pull/12)
|
|
|
|
* A `TransparentWrapper` marker trait for when you want to more clearly
|
|
|
|
enable adding and removing a wrapper struct to its inner value
|
|
|
|
[#15](https://github.com/Lokathor/bytemuck/pull/15)
|
2020-07-24 12:59:00 +00:00
|
|
|
* Now MIRI is run on CI in every single push!
|
2020-02-07 03:44:33 +00:00
|
|
|
[#16](https://github.com/Lokathor/bytemuck/pull/16)
|
|
|
|
|
2019-12-06 19:41:48 +00:00
|
|
|
## 1.1.0
|
|
|
|
|
|
|
|
* [SimonSapin](https://github.com/SimonSapin) added `from_bytes`,
|
|
|
|
`from_bytes_mut`, `try_from_bytes`, and `try_from_bytes_mut` ([PR
|
|
|
|
Link](https://github.com/Lokathor/bytemuck/pull/8))
|
|
|
|
|
2019-11-26 03:32:13 +00:00
|
|
|
## 1.0.1
|
|
|
|
|
|
|
|
* Changed to the [zlib](https://opensource.org/licenses/Zlib) license.
|
|
|
|
* Added much more proper documentation.
|
|
|
|
* Reduced the minimum Rust version to 1.34
|