WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
File tree Expand file tree Collapse file tree 8 files changed +39
-9
lines changed
Expand file tree Collapse file tree 8 files changed +39
-9
lines changed Original file line number Diff line number Diff line change @@ -35,9 +35,9 @@ libc = "0.2.4"
3535log = " 0.4.17"
3636mio = { version = " 1.0" , features = [" os-ext" ] }
3737web-time = " 1.1.0"
38- rolldown-notify = { version = " 8.2.4 " , path = " notify" }
39- rolldown-notify-debouncer-full = { version = " 0.6.4 " , path = " notify-debouncer-full" }
40- rolldown-notify-debouncer-mini = { version = " 0.7.4 " , path = " notify-debouncer-mini" }
38+ rolldown-notify = { version = " 9.0.0 " , path = " notify" }
39+ rolldown-notify-debouncer-full = { version = " 0.7.0 " , path = " notify-debouncer-full" }
40+ rolldown-notify-debouncer-mini = { version = " 0.8.0 " , path = " notify-debouncer-mini" }
4141rolldown-notify-types = { version = " 2.0.1" , path = " notify-types" }
4242pretty_assertions = " 1.3.0"
4343rstest = " 0.26.0"
Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 0.7.0] ( https://github.com/rolldown/notify/compare/rolldown-notify-debouncer-full-v0.6.4...rolldown-notify-debouncer-full-v0.7.0 ) - 2025-11-23
11+
12+ ### Added
13+
14+ - [ ** breaking** ] change ` Watcher::watch ` to take ` WatchMode ` instead of ` RecursiveMode ` ([ #21 ] ( https://github.com/rolldown/notify/pull/21 ) )
15+
1016## [ 0.6.4] ( https://github.com/rolldown/notify/compare/rolldown-notify-debouncer-full-v0.6.3...rolldown-notify-debouncer-full-v0.6.4 ) - 2025-11-23
1117
1218### Other
Original file line number Diff line number Diff line change 11[package ]
22name = " rolldown-notify-debouncer-full"
3- version = " 0.6.4 "
3+ version = " 0.7.0 "
44description = " notify event debouncer optimized for ease of use"
55documentation = " https://docs.rs/notify-debouncer-full"
66authors = [
" Daniel Faust <[email protected] >" ]
Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 0.8.0] ( https://github.com/rolldown/notify/compare/rolldown-notify-debouncer-mini-v0.7.4...rolldown-notify-debouncer-mini-v0.8.0 ) - 2025-11-23
11+
12+ ### Added
13+
14+ - [ ** breaking** ] change ` Watcher::watch ` to take ` WatchMode ` instead of ` RecursiveMode ` ([ #21 ] ( https://github.com/rolldown/notify/pull/21 ) )
15+
1016## [ 0.7.4] ( https://github.com/rolldown/notify/compare/rolldown-notify-debouncer-mini-v0.7.3...rolldown-notify-debouncer-mini-v0.7.4 ) - 2025-11-23
1117
1218### Other
Original file line number Diff line number Diff line change 11[package ]
22name = " rolldown-notify-debouncer-mini"
3- version = " 0.7.4 "
3+ version = " 0.8.0 "
44description = " notify mini debouncer for events"
55documentation = " https://docs.rs/notify-debouncer-mini"
66authors = [
" Aron Heinecke <[email protected] >" ]
Original file line number Diff line number Diff line change @@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 9.0.0] ( https://github.com/rolldown/notify/compare/rolldown-notify-v8.2.4...rolldown-notify-v9.0.0 ) - 2025-11-23
11+
12+ ### Added
13+
14+ - implement ` TargetMode::TrackPath ` for kqueue ([ #25 ] ( https://github.com/rolldown/notify/pull/25 ) )
15+ - implement ` TargetMode::TrackPath ` for fsevent ([ #27 ] ( https://github.com/rolldown/notify/pull/27 ) )
16+ - implement ` TargetMode::TrackPath ` for Windows ([ #23 ] ( https://github.com/rolldown/notify/pull/23 ) )
17+ - implement ` TargetMode::TrackPath ` for inotify ([ #22 ] ( https://github.com/rolldown/notify/pull/22 ) )
18+ - [ ** breaking** ] change ` Watcher::watch ` to take ` WatchMode ` instead of ` RecursiveMode ` ([ #21 ] ( https://github.com/rolldown/notify/pull/21 ) )
19+
20+ ### Other
21+
22+ - update TargetMode comment ([ #36 ] ( https://github.com/rolldown/notify/pull/36 ) )
23+ - add optional expected events to reduce flakiness ([ #31 ] ( https://github.com/rolldown/notify/pull/31 ) )
24+ - add ` TargetMode ` related tests for polling watcher ([ #30 ] ( https://github.com/rolldown/notify/pull/30 ) )
25+ - wait a short period before checking whether no events were received ([ #29 ] ( https://github.com/rolldown/notify/pull/29 ) )
26+ - add optional expected events to reduce flakiness ([ #28 ] ( https://github.com/rolldown/notify/pull/28 ) )
27+
1028## [ 8.2.4] ( https://github.com/rolldown/notify/compare/rolldown-notify-v8.2.3...rolldown-notify-v8.2.4 ) - 2025-11-23
1129
1230### Fixed
Original file line number Diff line number Diff line change 11[package ]
22name = " rolldown-notify"
3- version = " 8.2.4 "
3+ version = " 9.0.0 "
44description = " Cross-platform filesystem notification library"
55documentation = " https://docs.rs/notify"
66readme = " ../README.md"
You can’t perform that action at this time.
0 commit comments