You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A wishlist of breaking changes for the next major version:
Change return types so that we can fix the cargo clippy pedantic warnings, like casting `i64` to `usize` may lose the sign of the value or casting `usize` to `u32` may truncate the value on targets with 64-bit wide pointers
Introduce intermediary types so that we could write M::up(…).hook(…).down(…).hook(…)
A wishlist of breaking changes for the next major version:
casting `i64` to `usize` may lose the sign of the value
orcasting `usize` to `u32` may truncate the value on targets with 64-bit wide pointers
M::up(…).hook(…).down(…).hook(…)
Other things to decide on:
Eq
implementation onM
Comparison on migrations with hooks causes a stack overflow #45PartialEq
from ourError
type?I don’t know if a breaking version will ever be released though, there are costs to forcing users to migrate.
The text was updated successfully, but these errors were encountered: