Skip to content
Open
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
8 changes: 4 additions & 4 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ criterion = "0.8.0"
flume = "0.12.0"
deser-hjson = "2.2.4"
tracing-subscriber = "0.3.20"
rolldown-file-id = { version = "0.2.7", path = "file-id" }
rolldown-file-id = { version = "0.2.8", path = "file-id" }
objc2-core-foundation = { version = "0.3.2", default-features = false }
objc2-core-services = { version = "0.3.2", default-features = false }
futures = "0.3.30"
Expand All @@ -94,9 +94,9 @@ libc = "0.2.4"
tracing = "0.1.41"
mio = { version = "1.0", features = ["os-ext"] }
web-time = "1.1.0"
rolldown-notify = { version = "10.3.0", path = "notify" }
rolldown-notify-debouncer-full = { version = "0.7.6", path = "notify-debouncer-full" }
rolldown-notify-debouncer-mini = { version = "0.8.6", path = "notify-debouncer-mini" }
rolldown-notify = { version = "10.3.1", path = "notify" }
rolldown-notify-debouncer-full = { version = "0.7.7", path = "notify-debouncer-full" }
rolldown-notify-debouncer-mini = { version = "0.8.7", path = "notify-debouncer-mini" }
rolldown-notify-types = { version = "2.0.2", path = "notify-types" }
rustc-hash = "2.1.2"
pretty_assertions = "1.3.0"
Expand Down
6 changes: 6 additions & 0 deletions file-id/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.8](https://github.com/rolldown/notify/compare/rolldown-file-id-v0.2.7...rolldown-file-id-v0.2.8) - 2026-05-18

### Other

- update Cargo.lock dependencies

## [0.2.7](https://github.com/rolldown/notify/compare/rolldown-file-id-v0.2.6...rolldown-file-id-v0.2.7) - 2026-03-13

### Other
Expand Down
2 changes: 1 addition & 1 deletion file-id/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rolldown-file-id"
version = "0.2.7"
version = "0.2.8"
description = "Utility for reading inode numbers (Linux, MacOS) and file IDs (Windows)"
documentation = "https://docs.rs/notify"
readme = "README.md"
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.7](https://github.com/rolldown/notify/compare/rolldown-notify-debouncer-full-v0.7.6...rolldown-notify-debouncer-full-v0.7.7) - 2026-05-18

### Other

- Optimize debouncer.watch() lookup time ([#913](https://github.com/rolldown/notify/pull/913))
- Emit `remove` events even if a file was created and then removed ([#902](https://github.com/rolldown/notify/pull/902))
- *(debouncer-full)* speed up hashing by rustc-hash ([#896](https://github.com/rolldown/notify/pull/896))
- *(notify-debouncer-full)* avoid rebuilding queues during flush ([#883](https://github.com/rolldown/notify/pull/883))
- *(deps)* update dependency rust to v1.95.0 ([#83](https://github.com/rolldown/notify/pull/83))

## [0.7.6](https://github.com/rolldown/notify/compare/rolldown-notify-debouncer-full-v0.7.5...rolldown-notify-debouncer-full-v0.7.6) - 2026-03-13

### Other
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.6"
version = "0.7.7"
description = "notify event debouncer optimized for ease of use"
documentation = "https://docs.rs/notify-debouncer-full"
authors = ["Daniel Faust <hessijames@gmail.com>"]
Expand Down
6 changes: 6 additions & 0 deletions notify-debouncer-mini/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.7](https://github.com/rolldown/notify/compare/rolldown-notify-debouncer-mini-v0.8.6...rolldown-notify-debouncer-mini-v0.8.7) - 2026-05-18

### Other

- *(debouncer-full)* speed up hashing by rustc-hash ([#896](https://github.com/rolldown/notify/pull/896))

## [0.8.6](https://github.com/rolldown/notify/compare/rolldown-notify-debouncer-mini-v0.8.5...rolldown-notify-debouncer-mini-v0.8.6) - 2026-03-13

### Other
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.6"
version = "0.8.7"
description = "notify mini debouncer for events"
documentation = "https://docs.rs/notify-debouncer-mini"
authors = ["Aron Heinecke <Ox0p54r36@t-online.de>"]
Expand Down
9 changes: 9 additions & 0 deletions notify/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [10.3.1](https://github.com/rolldown/notify/compare/rolldown-notify-v10.3.0...rolldown-notify-v10.3.1) - 2026-05-18

### Other

- *(fsevent)* speed up flag convension ([#920](https://github.com/rolldown/notify/pull/920))
- *(notify)* speed up recursive inotify watch setup ([#918](https://github.com/rolldown/notify/pull/918))
- skip construction for unchanged stuff ([#905](https://github.com/rolldown/notify/pull/905))
- *(debouncer-full)* speed up hashing by rustc-hash ([#896](https://github.com/rolldown/notify/pull/896))

## [10.3.0](https://github.com/rolldown/notify/compare/rolldown-notify-v10.2.0...rolldown-notify-v10.3.0) - 2026-03-13

### 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 = "10.3.0"
version = "10.3.1"
description = "Cross-platform filesystem notification library"
documentation = "https://docs.rs/notify"
readme = "../README.md"
Expand Down
Loading