|
1 | 1 |
|
| 2 | +# Version 3.1.0 built on 2025-12-23 |
| 3 | + |
| 4 | +Most of the fixes and test/CI improvements were contributed by Thomas Waldmann. Many thanks! |
| 5 | +NetBSD is still work-in-progress. |
| 6 | + |
| 7 | +## API |
| 8 | + |
| 9 | + - Add many more missing type hints. |
| 10 | + |
| 11 | +## Features |
| 12 | + |
| 13 | + - Add `mfusepy.ENOATTR` to be used as the correct value for `getxattr` and `removexattr`. |
| 14 | + - Make path decode/encode error policy configurable and switch from `strict` to `surrogateescape`. |
| 15 | + - Add `readdir_with_offset` implementable interface method, which takes an additional `offset` argument. |
| 16 | + Does not work correctly on OpenBSD. Help would be welcome. |
| 17 | + - Translate some of the libfuse2-only options (`use_ino`, `direct_io`, `nopath`, ...) to the libfuse3 config struct. |
| 18 | + - Allow to set fuse library name via `FUSE_LIBRARY_NAME` environment variable. |
| 19 | + - Automatically test and therefore support Ubuntu 22.04/24.04 aarch64/x86_64, macOS 14/15 Intel/ARM, |
| 20 | + FreeBSD 14.3, OpenBSD 7.7, NetBSD 10.1. |
| 21 | + |
| 22 | +## Fixes |
| 23 | + |
| 24 | + - Fix type definitions and examples on OpenBSD, FreeBSD, NetBSD, macOS, and others. |
| 25 | + - `readdir`: Also forward `st_ino` in case `use_ino` is set to True. |
| 26 | + - Avoid `readdir` infinite loop by ignoring the offset and returning offset 0, to trigger non-offset mode. |
| 27 | + Overwrite `readdir_with_offset` to actually make use of offsets. |
| 28 | + - `getattr_fuse_3`: pass argument `fip` to `fgetattr`. |
| 29 | + - Avoid null pointer dereferences for `fip` in `ftruncate`, `fgetattr`, and `lock`. |
| 30 | + |
| 31 | + |
2 | 32 | # Version 3.0.0 built on 2025-08-01 |
3 | 33 |
|
4 | 34 | Version 2 was skipped because the git tags would have clashed with the original fusepy tags. |
|
0 commit comments