Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
10 changes: 10 additions & 0 deletions notify-debouncer-full/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion notify-debouncer-full/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <hessijames@gmail.com>"]
Expand Down
10 changes: 10 additions & 0 deletions notify-debouncer-mini/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion notify-debouncer-mini/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <Ox0p54r36@t-online.de>"]
Expand Down
22 changes: 22 additions & 0 deletions notify/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
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 = "rolldown-notify"
version = "9.0.0"
version = "9.1.0"
description = "Cross-platform filesystem notification library"
documentation = "https://docs.rs/notify"
readme = "../README.md"
Expand Down