Skip to content

Commit

Permalink
inotify: Emit rename from events immediately
Browse files Browse the repository at this point in the history
  • Loading branch information
dfaust authored and 0xpr03 committed May 15, 2023
1 parent fe18bbd commit 65d6d91
Show file tree
Hide file tree
Showing 3 changed files with 129 additions and 194 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

v4 commits split out to branch `v4_maintenance` starting with `4.0.16`

## notify 6.0.0

- CHANGE: files and directories moved into a watch folder on Linux will now be reported as `rename to` events instead of `create` events
- CHANGE: on Linux `rename from` events will be emitted immediately without starting a new thread

## debouncer-refined 0.1.0

- FEATURE: only emit a single `rename` event if the rename `From` and `To` events can be matched
- FEATURE: merge multiple `rename` events
- FEATURE: keep track of the file system IDs all files and stiches rename events together (FSevents, Windows)
- FEATURE: emit only one `remove` event when deleting a directory (inotify)
- FEATURE: don't emit duplicate create events
- FEATURE: don't emit `Modify` events after a `Create` event

## notify 5.2.0

- CHANGE: implement `Copy` for `EventKind` and `ModifyKind` [#458]
Expand Down
2 changes: 1 addition & 1 deletion notify/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notify"
version = "5.1.0"
version = "6.0.0"
rust-version = "1.56"
description = "Cross-platform filesystem notification library"
documentation = "https://docs.rs/notify"
Expand Down
Loading

0 comments on commit 65d6d91

Please sign in to comment.