From: Martin Tournoij Date: Fri, 14 Oct 2022 16:59:50 +0000 (+0200) Subject: Update changelog, add funding X-Git-Tag: v1.7.2~45 X-Git-Url: https://go.fuhry.dev/?a=commitdiff_plain;h=18a6ab85893e51c7af194e90e49a8df9874102e8;p=fsnotify.git Update changelog, add funding --- diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..bb69c2a --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +github: arp242 diff --git a/CHANGELOG.md b/CHANGELOG.md index f9bf9ec..52533c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,11 +21,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 On Windows this does work, and remains working. +- windows: don't listen for file attribute changes ([#520]) + + File attribute changes are sent as FILE_ACTION_MODIFIED by the Windows API, + with no way to see if they're a file write or attribute change, so would show + up as a fsnotify.Write event. This is never useful, and could result in many + spurious Write events. + - all: return ErrClosed on Add() when the watcher is closed ([#516]) + [#371]: https://github.com/fsnotify/fsnotify/pull/371 [#516]: https://github.com/fsnotify/fsnotify/pull/516 [#518]: https://github.com/fsnotify/fsnotify/pull/518 +[#520]: https://github.com/fsnotify/fsnotify/pull/520 ## [1.6.0] - 2022-10-13