about summary refs log tree commit diff
path: root/nixos/doc
diff options
context:
space:
mode:
authorGuillaume Girol <symphorien@users.noreply.github.com>2023-10-22 23:55:30 +0200
committerGitHub <noreply@github.com>2023-10-22 23:55:30 +0200
commitbf86bfb6d6de7c74667edb552e508cfa3e1146b8 (patch)
tree83f042240dd38a643e07586a5a2c32e873c10094 /nixos/doc
parent3d9ca9d8e3e1590e5b5813a67285bbd1f50b0266 (diff)
parent57909959384ea7b6d7f2d5732ddfdcce92f146b7 (diff)
downloadnixlib-bf86bfb6d6de7c74667edb552e508cfa3e1146b8.tar
nixlib-bf86bfb6d6de7c74667edb552e508cfa3e1146b8.tar.gz
nixlib-bf86bfb6d6de7c74667edb552e508cfa3e1146b8.tar.bz2
nixlib-bf86bfb6d6de7c74667edb552e508cfa3e1146b8.tar.lz
nixlib-bf86bfb6d6de7c74667edb552e508cfa3e1146b8.tar.xz
nixlib-bf86bfb6d6de7c74667edb552e508cfa3e1146b8.tar.zst
nixlib-bf86bfb6d6de7c74667edb552e508cfa3e1146b8.zip
Merge pull request #256312 from 6t8k/fuse3_3.11.0-3.16.1
fuse3: 3.11.0 -> 3.16.2
Diffstat (limited to 'nixos/doc')
-rw-r--r--nixos/doc/manual/release-notes/rl-2311.section.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/nixos/doc/manual/release-notes/rl-2311.section.md b/nixos/doc/manual/release-notes/rl-2311.section.md
index 29b32ce18650..0a75182ed9b3 100644
--- a/nixos/doc/manual/release-notes/rl-2311.section.md
+++ b/nixos/doc/manual/release-notes/rl-2311.section.md
@@ -240,6 +240,18 @@
 
 - `fileSystems.<name>.autoResize` now uses `systemd-growfs` to resize the file system online in stage 2. This means that `f2fs` and `ext2` can no longer be auto resized, while `xfs` and `btrfs` now can be.
 
+- `fuse3` has been updated from 3.11.0 to 3.16.2; see [ChangeLog.rst](https://github.com/libfuse/libfuse/blob/fuse-3.16.2/ChangeLog.rst#libfuse-3162-2023-10-10) for an overview of the changes.
+
+  Unsupported mount options are no longer silently accepted [(since 3.15.0)](https://github.com/libfuse/libfuse/blob/fuse-3.16.2/ChangeLog.rst#libfuse-3150-2023-06-09). The [affected mount options](https://github.com/libfuse/libfuse/commit/dba6b3983af34f30de01cf532dff0b66f0ed6045) are: `atime`, `diratime`, `lazytime`, `nolazytime`, `relatime`, `norelatime`, `strictatime`.
+
+  For example,
+
+  ```bash
+  $ sshfs 127.0.0.1:/home/test/testdir /home/test/sshfs_mnt -o atime`
+  ```
+
+  would previously terminate successfully with the mount point established, now it outputs the error message ``fuse: unknown option(s): `-o atime'`` and terminates with exit status 1.
+
 - `nixos-rebuild {switch,boot,test,dry-activate}` now runs the system activation inside `systemd-run`, creating an ephemeral systemd service and protecting the system switch against issues like network disconnections during remote (e.g. SSH) sessions. This has the side effect of running the switch in an isolated environment, that could possible break post-switch scripts that depends on things like environment variables being set. If you want to opt-out from this behavior for now, you may set the `NIXOS_SWITCH_USE_DIRTY_ENV` environment variable before running `nixos-rebuild`. However, keep in mind that this option will be removed in the future.
 
 - The `services.vaultwarden.config` option default value was changed to make Vaultwarden only listen on localhost, following the [secure defaults for most NixOS services](https://github.com/NixOS/nixpkgs/issues/100192).