Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: mxmlnkn/mfusepy

Tags

v3.1.0

Toggle v3.1.0's commit message
Version 3.1.0 built on 2025-12-23

Most of the fixes and test/CI improvements were contributed by Thomas Waldmann. Many thanks!
NetBSD is still work-in-progress.

API

 - Add many more missing type hints.

Features

 - Add `mfusepy.ENOATTR` to be used as the correct value for `getxattr` and `removexattr`.
 - Make path decode/encode error policy configurable and switch from `strict` to `surrogateescape`.
 - Add `readdir_with_offset` implementable interface method, which takes an additional `offset` argument.
   Does not work correctly on OpenBSD. Help would be welcome.
 - Translate some of the libfuse2-only options (`use_ino`, `direct_io`, `nopath`, ...) to the libfuse3 config struct.
 - Allow to set fuse library name via `FUSE_LIBRARY_NAME` environment variable.
 - Automatically test and therefore support Ubuntu 22.04/24.04 aarch64/x86_64, macOS 14/15 Intel/ARM,
   FreeBSD 14.3, OpenBSD 7.7, NetBSD 10.1.

Fixes

 - Fix type definitions and examples on OpenBSD, FreeBSD, NetBSD, macOS, and others.
 - `readdir`: Also forward `st_ino` in case `use_ino` is set to True.
 - Avoid `readdir` infinite loop by ignoring the offset and returning offset 0, to trigger non-offset mode.
   Overwrite `readdir_with_offset` to actually make use of offsets.
 - `getattr_fuse_3`: pass argument `fip` to `fgetattr`.
 - Avoid null pointer dereferences for `fip` in `ftruncate`, `fgetattr`, and `lock`.

v3.0.0

Toggle v3.0.0's commit message
Version 3.0.0 built on 2025-08-01

Version 2 was skipped because the git tags would have clashed with the original fusepy tags.

API

 - `Operation.__call__` is not used anymore. Use decorators instead, or check `LoggingMixIn` as to how to overwrite
   `__getattribute__`. This is the biggest change requiring an API break and was motivated by the type support.
 - Add type-hints. Do not check types at runtime! They may change in a major version,
   .e.g., `List` -> `list` -> `Sequence` -> `Iterable`.
 - `readdir` may now also return only a triple of (name, mode, offset).
 - `init_with_config` arguments are now always structs. Prior, they were ctypes pointers to the struct.
 - As the old warning stated, `use_ns` will be removed in version 4 and all timestamps will use nanoseconds then.
   Set `FUSE.use_ns = True` and then return only times as integers representing nanoseconds and expect returned
   times as such.

Features

 - Add `overrides` decorator.
 - Add `log_callback` decorator.

v1.1.1

Toggle v1.1.1's commit message
Version 1.1.1 built on 2025-07-07

Fixes

 - Forward return code for `utimens` and `rename`.
 - Restore compatibility with old fusepy implementations that implement `create` with only 2 arguments.
 - If FUSE 2 flag_nullpath_ok and flag_nopath members exist, then enable fuse_config.nullpath_ok in FUSE 3.
 - Handle possible null path in all methods mentioned in nullpath_ok documentation.

v1.1.0

Toggle v1.1.0's commit message
mfusepy 1.1.0

 - Support libfuse 3.17+.

v1.0.0

Toggle v1.0.0's commit message
mfusepy 1.0.0

 - First version with libfuse3 support.

Verified

This tag was signed with the committer’s verified signature.
terencehonles Terence Honles

Verified

This tag was signed with the committer’s verified signature.
terencehonles Terence Honles

v2.0.2

Toggle v2.0.2's commit message

Verified

This tag was signed with the committer’s verified signature.
terencehonles Terence Honles
v2.0.2 clarifying link/symlink parameters + supporting st_birthtime a…

…ttribute

v2.0.1

Toggle v2.0.1's commit message

Verified

This tag was signed with the committer’s verified signature.
terencehonles Terence Honles
v2.0.1 fixing the number of bytes being returned on reads

v2.0

Toggle v2.0's commit message

Verified

This tag was signed with the committer’s verified signature.
terencehonles Terence Honles
v2.0

- single file for all supported versions of python using 2to3
- fusepy uses unicode internally and automatically encodes/decods as necessary