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
Change many integer-based public API parameters to strongly-typed newtypes and bitflags.
This breaking changes affects many of the methods on Filesystem
Change Filesystem trait methods to use &self, and require mounted filesystems to be Send + Sync + 'static
Improve typed error handling across request/reply APIs
Replace Vec<MountOption> mount APIs with a structured Config API, including ACL option handling
Feature flags abi-7-xx are now ignored and will be removed in 0.18, with compatibility checks moved to runtime behavior
Remove the old ABI-specific feature-flag surface (abi-7-9 through abi-7-19, plus tooling/docs/examples references)
Add support for multiple event loops per session, which can be enabled via Config::n_threads
Add experimental async API (AsyncFilesystem)
Minor changes:
Rename BackgroundSession::join to umount_and_join, returning io::Result<()> instead of panicking
Add FUSE_DEV_IOC_CLONE support and improve passthrough descriptor handling (ReplyCreate, ReplyOpen, BackingId)