Skip to content

Conversation

@red-hat-konflux
Copy link

@red-hat-konflux red-hat-konflux bot commented Nov 11, 2025

This PR contains the following updates:

Package Change Age Confidence
github.com/fsnotify/fsnotify v1.6.0 -> v1.9.0 age confidence

Warning

Some dependencies could not be looked up. Check the warning logs for more information.


Release Notes

fsnotify/fsnotify (github.com/fsnotify/fsnotify)

v1.9.0

Compare Source

Changes and fixes
  • all: make BufferedWatcher buffered again (#​657)

  • inotify: fix race when adding/removing watches while a watched path is being deleted (#​678, #​686)

  • inotify: don't send empty event if a watched path is unmounted (#​655)

  • inotify: don't register duplicate watches when watching both a symlink and its target; previously that would get "half-added" and removing the second would panic (#​679)

  • kqueue: fix watching relative symlinks (#​681)

  • kqueue: correctly mark pre-existing entries when watching a link to a dir on kqueue (#​682)

  • illumos: don't send error if changed file is deleted while processing the event (#​678)

v1.8.0

Compare Source

Additions

  • all: add FSNOTIFY_DEBUG to print debug logs to stderr (#​619)
Changes and fixes
  • windows: fix behaviour of WatchList() to be consistent with other platforms (#​610)

  • kqueue: ignore events with Ident=0 (#​590)

  • kqueue: set O_CLOEXEC to prevent passing file descriptors to children (#​617)

  • kqueue: emit events as "/path/dir/file" instead of "path/link/file" when watching a symlink (#​625)

  • inotify: don't send event for IN_DELETE_SELF when also watching the parent (#​620)

  • inotify: fix panic when calling Remove() in a goroutine (#​650)

  • fen: allow watching subdirectories of watched directories (#​621)

v1.7.0

Compare Source

This version of fsnotify needs Go 1.17.

Additions
  • illumos: add FEN backend to support illumos and Solaris. (#​371)

  • all: add NewBufferedWatcher() to use a buffered channel, which can be useful in cases where you can't control the kernel buffer and receive a large number of events in bursts. (#​550, #​572)

  • all: add AddWith(), which is identical to Add() but allows passing options. (#​521)

  • windows: allow setting the ReadDirectoryChangesW() buffer size with fsnotify.WithBufferSize(); the default of 64K is the highest value that works on all platforms and is enough for most purposes, but in some cases a highest buffer is needed. (#​521)

Changes and fixes
  • inotify: remove watcher if a watched path is renamed (#​518)

    After a rename the reported name wasn't updated, or even an empty string. Inotify doesn't provide any good facilities to update it, so just remove the watcher. This is already how it worked on kqueue and FEN.

    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.

  • windows: return ErrEventOverflow if the buffer is full (#​525)

    Before it would merely return "short read", making it hard to detect this error.

  • kqueue: make sure events for all files are delivered properly when removing a watched directory (#​526)

    Previously they would get sent with "" (empty string) or "." as the path name.

  • kqueue: don't emit spurious Create events for symbolic links (#​524)

    The link would get resolved but kqueue would "forget" it already saw the link itself, resulting on a Create for every Write event for the directory.

  • all: return ErrClosed on Add() when the watcher is closed (#​516)

  • other: add Watcher.Errors and Watcher.Events to the no-op Watcher in backend_other.go, making it easier to use on unsupported platforms such as WASM, AIX, etc. (#​528)

  • other: use the backend_other.go no-op if the appengine build tag is set; Google AppEngine forbids usage of the unsafe package so the inotify backend won't compile there.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

To execute skipped test pipelines write comment /ok-to-test.


Documentation

Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.

Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
@red-hat-konflux red-hat-konflux bot changed the title Update module github.com/fsnotify/fsnotify to v1.9.0 Update module github.com/fsnotify/fsnotify to v1.9.0 - autoclosed Nov 13, 2025
@red-hat-konflux red-hat-konflux bot closed this Nov 13, 2025
@red-hat-konflux red-hat-konflux bot deleted the konflux/mintmaker/main/github.com-fsnotify-fsnotify-1.x branch November 13, 2025 21:34
@red-hat-konflux red-hat-konflux bot changed the title Update module github.com/fsnotify/fsnotify to v1.9.0 - autoclosed Update module github.com/fsnotify/fsnotify to v1.9.0 Nov 14, 2025
@red-hat-konflux red-hat-konflux bot reopened this Nov 14, 2025
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/github.com-fsnotify-fsnotify-1.x branch from 6ffd197 to 52e17da Compare November 14, 2025 01:30
@red-hat-konflux
Copy link
Author

ℹ Artifact update notice

File name: dashboard/go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
golang.org/x/sys v0.5.0 -> v0.13.0

@red-hat-konflux red-hat-konflux bot changed the title Update module github.com/fsnotify/fsnotify to v1.9.0 Update module github.com/fsnotify/fsnotify to v1.9.0 - autoclosed Nov 15, 2025
@red-hat-konflux red-hat-konflux bot closed this Nov 15, 2025
@red-hat-konflux red-hat-konflux bot changed the title Update module github.com/fsnotify/fsnotify to v1.9.0 - autoclosed Update module github.com/fsnotify/fsnotify to v1.9.0 Nov 15, 2025
@red-hat-konflux red-hat-konflux bot reopened this Nov 15, 2025
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/github.com-fsnotify-fsnotify-1.x branch from d845c7a to 52e17da Compare November 15, 2025 10:10
@red-hat-konflux red-hat-konflux bot changed the title Update module github.com/fsnotify/fsnotify to v1.9.0 Update module github.com/fsnotify/fsnotify to v1.9.0 - autoclosed Nov 15, 2025
@red-hat-konflux red-hat-konflux bot closed this Nov 15, 2025
@red-hat-konflux red-hat-konflux bot changed the title Update module github.com/fsnotify/fsnotify to v1.9.0 - autoclosed Update module github.com/fsnotify/fsnotify to v1.9.0 Nov 16, 2025
@red-hat-konflux red-hat-konflux bot reopened this Nov 16, 2025
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/github.com-fsnotify-fsnotify-1.x branch from 48bf20e to 52e17da Compare November 16, 2025 01:24
@red-hat-konflux red-hat-konflux bot changed the title Update module github.com/fsnotify/fsnotify to v1.9.0 Update module github.com/fsnotify/fsnotify to v1.9.0 - autoclosed Nov 16, 2025
@red-hat-konflux red-hat-konflux bot closed this Nov 16, 2025
@red-hat-konflux red-hat-konflux bot changed the title Update module github.com/fsnotify/fsnotify to v1.9.0 - autoclosed Update module github.com/fsnotify/fsnotify to v1.9.0 Nov 16, 2025
@red-hat-konflux red-hat-konflux bot reopened this Nov 16, 2025
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/github.com-fsnotify-fsnotify-1.x branch from d9cc7eb to 52e17da Compare November 16, 2025 17:45
@red-hat-konflux red-hat-konflux bot changed the title Update module github.com/fsnotify/fsnotify to v1.9.0 Update module github.com/fsnotify/fsnotify to v1.9.0 - autoclosed Nov 29, 2025
@red-hat-konflux red-hat-konflux bot closed this Nov 29, 2025
@red-hat-konflux red-hat-konflux bot changed the title Update module github.com/fsnotify/fsnotify to v1.9.0 - autoclosed Update module github.com/fsnotify/fsnotify to v1.9.0 Nov 29, 2025
@red-hat-konflux red-hat-konflux bot reopened this Nov 29, 2025
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/github.com-fsnotify-fsnotify-1.x branch from 363e3c5 to 52e17da Compare November 29, 2025 09:39
@red-hat-konflux red-hat-konflux bot changed the title Update module github.com/fsnotify/fsnotify to v1.9.0 Update module github.com/fsnotify/fsnotify to v1.9.0 - autoclosed Dec 4, 2025
@red-hat-konflux red-hat-konflux bot closed this Dec 4, 2025
@red-hat-konflux red-hat-konflux bot changed the title Update module github.com/fsnotify/fsnotify to v1.9.0 Update module github.com/fsnotify/fsnotify to v1.9.0 - autoclosed Dec 9, 2025
@red-hat-konflux red-hat-konflux bot closed this Dec 9, 2025
@red-hat-konflux red-hat-konflux bot changed the title Update module github.com/fsnotify/fsnotify to v1.9.0 - autoclosed Update module github.com/fsnotify/fsnotify to v1.9.0 Dec 9, 2025
@red-hat-konflux red-hat-konflux bot reopened this Dec 9, 2025
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/github.com-fsnotify-fsnotify-1.x branch from 4a27504 to 52e17da Compare December 9, 2025 17:32
@red-hat-konflux red-hat-konflux bot changed the title Update module github.com/fsnotify/fsnotify to v1.9.0 Update module github.com/fsnotify/fsnotify to v1.9.0 - autoclosed Dec 9, 2025
@red-hat-konflux red-hat-konflux bot closed this Dec 9, 2025
@red-hat-konflux red-hat-konflux bot changed the title Update module github.com/fsnotify/fsnotify to v1.9.0 - autoclosed Update module github.com/fsnotify/fsnotify to v1.9.0 Dec 10, 2025
@red-hat-konflux red-hat-konflux bot reopened this Dec 10, 2025
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/github.com-fsnotify-fsnotify-1.x branch from 71e82b8 to 52e17da Compare December 10, 2025 05:42
@red-hat-konflux red-hat-konflux bot changed the title Update module github.com/fsnotify/fsnotify to v1.9.0 Update module github.com/fsnotify/fsnotify to v1.9.0 - autoclosed Dec 10, 2025
@red-hat-konflux red-hat-konflux bot closed this Dec 10, 2025
@red-hat-konflux red-hat-konflux bot changed the title Update module github.com/fsnotify/fsnotify to v1.9.0 - autoclosed Update module github.com/fsnotify/fsnotify to v1.9.0 Dec 11, 2025
@red-hat-konflux red-hat-konflux bot reopened this Dec 11, 2025
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/github.com-fsnotify-fsnotify-1.x branch from 2427793 to 52e17da Compare December 11, 2025 01:19
@red-hat-konflux red-hat-konflux bot changed the title Update module github.com/fsnotify/fsnotify to v1.9.0 Update module github.com/fsnotify/fsnotify to v1.9.0 - autoclosed Dec 12, 2025
@red-hat-konflux red-hat-konflux bot closed this Dec 12, 2025
@red-hat-konflux red-hat-konflux bot changed the title Update module github.com/fsnotify/fsnotify to v1.9.0 - autoclosed Update module github.com/fsnotify/fsnotify to v1.9.0 Dec 12, 2025
@red-hat-konflux red-hat-konflux bot reopened this Dec 12, 2025
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/github.com-fsnotify-fsnotify-1.x branch from 6a387e7 to 52e17da Compare December 12, 2025 13:28
@red-hat-konflux red-hat-konflux bot changed the title Update module github.com/fsnotify/fsnotify to v1.9.0 Update module github.com/fsnotify/fsnotify to v1.9.0 - autoclosed Dec 13, 2025
@red-hat-konflux red-hat-konflux bot closed this Dec 13, 2025
@red-hat-konflux red-hat-konflux bot changed the title Update module github.com/fsnotify/fsnotify to v1.9.0 - autoclosed Update module github.com/fsnotify/fsnotify to v1.9.0 Dec 13, 2025
@red-hat-konflux red-hat-konflux bot reopened this Dec 13, 2025
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/github.com-fsnotify-fsnotify-1.x branch from dc84535 to 52e17da Compare December 13, 2025 10:43
@red-hat-konflux red-hat-konflux bot changed the title Update module github.com/fsnotify/fsnotify to v1.9.0 Update module github.com/fsnotify/fsnotify to v1.9.0 - autoclosed Dec 13, 2025
@red-hat-konflux red-hat-konflux bot closed this Dec 13, 2025
@red-hat-konflux red-hat-konflux bot changed the title Update module github.com/fsnotify/fsnotify to v1.9.0 - autoclosed Update module github.com/fsnotify/fsnotify to v1.9.0 Dec 14, 2025
@red-hat-konflux red-hat-konflux bot reopened this Dec 14, 2025
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/github.com-fsnotify-fsnotify-1.x branch from a70c9fe to 52e17da Compare December 14, 2025 01:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants