diff --git a/Cargo.lock b/Cargo.lock index 22a52034..2a800073 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -853,7 +853,7 @@ dependencies = [ [[package]] name = "rolldown-notify" -version = "9.0.0" +version = "9.1.0" dependencies = [ "bitflags 2.10.0", "criterion", @@ -875,7 +875,7 @@ dependencies = [ [[package]] name = "rolldown-notify-debouncer-full" -version = "0.7.0" +version = "0.7.1" dependencies = [ "crossbeam-channel", "deser-hjson", @@ -893,7 +893,7 @@ dependencies = [ [[package]] name = "rolldown-notify-debouncer-mini" -version = "0.8.0" +version = "0.8.1" dependencies = [ "crossbeam-channel", "flume", diff --git a/Cargo.toml b/Cargo.toml index d04ccd3b..5ac63a0c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -35,9 +35,9 @@ libc = "0.2.4" tracing = "0.1.41" mio = { version = "1.0", features = ["os-ext"] } web-time = "1.1.0" -rolldown-notify = { version = "9.0.0", path = "notify" } -rolldown-notify-debouncer-full = { version = "0.7.0", path = "notify-debouncer-full" } -rolldown-notify-debouncer-mini = { version = "0.8.0", path = "notify-debouncer-mini" } +rolldown-notify = { version = "9.1.0", path = "notify" } +rolldown-notify-debouncer-full = { version = "0.7.1", path = "notify-debouncer-full" } +rolldown-notify-debouncer-mini = { version = "0.8.1", path = "notify-debouncer-mini" } rolldown-notify-types = { version = "2.0.1", path = "notify-types" } pretty_assertions = "1.3.0" rstest = "0.26.0" diff --git a/notify-debouncer-full/CHANGELOG.md b/notify-debouncer-full/CHANGELOG.md index dccb2cc8..d486dafc 100644 --- a/notify-debouncer-full/CHANGELOG.md +++ b/notify-debouncer-full/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.1](https://github.com/rolldown/notify/compare/rolldown-notify-debouncer-full-v0.7.0...rolldown-notify-debouncer-full-v0.7.1) - 2025-11-25 + +### Added + +- add tracing logs to remaining files ([#48](https://github.com/rolldown/notify/pull/48)) + +### Other + +- use tracing instead of log ([#43](https://github.com/rolldown/notify/pull/43)) + ## [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 ### Added diff --git a/notify-debouncer-full/Cargo.toml b/notify-debouncer-full/Cargo.toml index 39502448..7cd50765 100644 --- a/notify-debouncer-full/Cargo.toml +++ b/notify-debouncer-full/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rolldown-notify-debouncer-full" -version = "0.7.0" +version = "0.7.1" description = "notify event debouncer optimized for ease of use" documentation = "https://docs.rs/notify-debouncer-full" authors = ["Daniel Faust "] diff --git a/notify-debouncer-mini/CHANGELOG.md b/notify-debouncer-mini/CHANGELOG.md index 28193749..8800ac9e 100644 --- a/notify-debouncer-mini/CHANGELOG.md +++ b/notify-debouncer-mini/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.1](https://github.com/rolldown/notify/compare/rolldown-notify-debouncer-mini-v0.8.0...rolldown-notify-debouncer-mini-v0.8.1) - 2025-11-25 + +### Added + +- add tracing logs to remaining files ([#48](https://github.com/rolldown/notify/pull/48)) + +### Other + +- use tracing instead of log ([#43](https://github.com/rolldown/notify/pull/43)) + ## [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 ### Added diff --git a/notify-debouncer-mini/Cargo.toml b/notify-debouncer-mini/Cargo.toml index a5ccf9a0..207e3838 100644 --- a/notify-debouncer-mini/Cargo.toml +++ b/notify-debouncer-mini/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rolldown-notify-debouncer-mini" -version = "0.8.0" +version = "0.8.1" description = "notify mini debouncer for events" documentation = "https://docs.rs/notify-debouncer-mini" authors = ["Aron Heinecke "] diff --git a/notify/CHANGELOG.md b/notify/CHANGELOG.md index 1fb25c1f..ab2174a9 100644 --- a/notify/CHANGELOG.md +++ b/notify/CHANGELOG.md @@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [9.1.0](https://github.com/rolldown/notify/compare/rolldown-notify-v9.0.0...rolldown-notify-v9.1.0) - 2025-11-25 + +### Added + +- add tracing logs to remaining files ([#48](https://github.com/rolldown/notify/pull/48)) +- add tracing logs for fsevent backend ([#47](https://github.com/rolldown/notify/pull/47)) +- add tracing logs for kqueue backend ([#46](https://github.com/rolldown/notify/pull/46)) +- add tracing logs for Windows backend ([#45](https://github.com/rolldown/notify/pull/45)) +- add tracing logs for inotify backend ([#44](https://github.com/rolldown/notify/pull/44)) + +### Fixed + +- filter out unrelated events for inotify & kqueue backend ([#38](https://github.com/rolldown/notify/pull/38)) + +### Other + +- add optional modify_data_size event expects for kqueue ([#49](https://github.com/rolldown/notify/pull/49)) +- use tracing instead of log ([#43](https://github.com/rolldown/notify/pull/43)) +- tweak `upgrade_to_recursive` kqueue test to reduce flakiness ([#42](https://github.com/rolldown/notify/pull/42)) +- tweak `upgrade_to_recursive` kqueue test to reduce flakiness ([#41](https://github.com/rolldown/notify/pull/41)) +- add `upgrade_to_recursive` tests ([#40](https://github.com/rolldown/notify/pull/40)) + ## [9.0.0](https://github.com/rolldown/notify/compare/rolldown-notify-v8.2.4...rolldown-notify-v9.0.0) - 2025-11-23 ### Added diff --git a/notify/Cargo.toml b/notify/Cargo.toml index 991535bb..298ef7e5 100644 --- a/notify/Cargo.toml +++ b/notify/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rolldown-notify" -version = "9.0.0" +version = "9.1.0" description = "Cross-platform filesystem notification library" documentation = "https://docs.rs/notify" readme = "../README.md"