- FEATURE: impl
EventHandlerforfutures::channel::mpsc::UnboundedSenderandtokio::sync::mpsc::UnboundedSenderbehind thefuturesandtokiofeature flags #767 - FEATURE: add support of a watcher's method
update_paths#705
Important
The MSRV policy has been changed since this release. Check out README for details.
- FEATURE: support wasm build #673
- FIX: events within the timeout were not deduplicated, causing
event_handlerto be called multiple times for events that should have been merged #711
- FEATURE: allow
FileIdCachetrait implementations to choose ownership of the returned file-ids #664 - FEATURE: added support for the
flumecrate #680 - FIX: skip all
Modifyevents right after aCreateevent, unless it's a rename event #701
- CHANGE: update notify to version 8.0.0
- CHANGE: pass
web-timefeature to notify-types
-
CHANGE: update notify to version 7.0.0
-
CHANGE: manage root folder paths for the file ID cache automatically #557 breaking
debouncer.watcher().watch(path, RecursiveMode::Recursive)?; debouncer.cache().add_root(path, RecursiveMode::Recursive);
becomes:
debouncer.watch(path, RecursiveMode::Recursive)?;
-
CHANGE: add
RecommendedCache, which automatically enables the file ID cache on Windows and MacOS and disables it on Linux, where it is not needed #557
- FIX: ordering of debounced events could lead to a panic with Rust 1.81.0 and above #636
- CHANGE: remove serde binary experiment opt-out after it got removed #530
- CHANGE: opt-out of the serde binary experiment by restricting it to < 1.0.172 #528
- CHANGE: license changed to dual-license of MIT OR Apache-2.0 #520
- CHANGE: upgrade to file-id 0.2.0 for high resolution file IDs #494
- FEATURE: derive debug for the debouncer struct #510
- CHANGE: emit events as
DebouncedEvents, each containing the original notify event and the time at which it occurred #488
Newly introduced alternative debouncer with more features. #480
- FEATURE: only emit a single
renameevent if the renameFromandToevents can be matched - FEATURE: merge multiple
renameevents - FEATURE: keep track of the file system IDs all files and stitches rename events together (FSevents, Windows)
- FEATURE: emit only one
removeevent when deleting a directory (inotify) - FEATURE: don't emit duplicate create events
- FEATURE: don't emit
Modifyevents after aCreateevent