Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update module github.com/fsnotify/fsnotify to v1.8.0 #103

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 25, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/fsnotify/fsnotify v1.5.1 -> v1.8.0 age adoption passing confidence

Release Notes

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

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.

v1.6.0

Compare Source

This version of fsnotify needs Go 1.16 (this was already the case since 1.5.1, but not documented). It also increases the minimum Linux version to 2.6.32.

Additions
  • all: add Event.Has() and Op.Has() (#​477)

    This makes checking events a lot easier; for example:

      if event.Op&Write == Write && !(event.Op&Remove == Remove) {
      }
    

    Becomes:

      if event.Has(Write) && !event.Has(Remove) {
      }
    
  • all: add cmd/fsnotify (#​463)

    A command-line utility for testing and some examples.

Changes and fixes
  • inotify: don't ignore events for files that don't exist (#​260, #​470)

    Previously the inotify watcher would call os.Lstat() to check if a file still exists before emitting events.

    This was inconsistent with other platforms and resulted in inconsistent event reporting (e.g. when a file is quickly removed and re-created), and generally a source of confusion. It was added in 2013 to fix a memory leak that no longer exists.

  • all: return ErrNonExistentWatch when Remove() is called on a path that's
    not watched (#​460)

  • inotify: replace epoll() with non-blocking inotify (#​434)

    Non-blocking inotify was not generally available at the time this library was written in 2014, but now it is. As a result, the minimum Linux version is bumped from 2.6.27 to 2.6.32. This hugely simplifies the code and is faster.

  • kqueue: don't check for events every 100ms (#​480)

    The watcher would wake up every 100ms, even when there was nothing to do. Now it waits until there is something to do.

  • macos: retry opening files on EINTR (#​475)

  • kqueue: skip unreadable files (#​479)

    kqueue requires a file descriptor for every file in a directory; this would fail if a file was unreadable by the current user. Now these files are simply skipped.

  • windows: fix renaming a watched directory if the parent is also watched (#​370)

  • windows: increase buffer size from 4K to 64K (#​485)

  • windows: close file handle on Remove() (#​288)

  • kqueue: put pathname in the error if watching a file fails (#​471)

  • inotify, windows: calling Close() more than once could race (#​465)

  • kqueue: improve Close() performance (#​233)

  • all: various documentation additions and clarifications.

v1.5.4

Compare Source

What's Changed

New Contributors

Full Changelog: fsnotify/fsnotify@v1.5.2...v1.5.4

v1.5.3

Compare Source

v1.5.2

Compare Source

What's Changed

New Contributors

Full Changelog: fsnotify/fsnotify@v1.5.1...v1.5.2


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

This PR was generated by Mend Renovate. View the repository job log.

@codecov-commenter
Copy link

codecov-commenter commented Apr 25, 2022

Codecov Report

Merging #103 (43cab8f) into master (6654125) will not change coverage.
The diff coverage is n/a.

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff            @@
##            master      #103   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files           13        13           
  Lines          200       200           
=========================================
  Hits           200       200           
Flag Coverage Δ
unittests 100.00% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

@renovate renovate bot changed the title Update module github.com/fsnotify/fsnotify to v1.5.3 Update module github.com/fsnotify/fsnotify to v1.5.4 May 16, 2022
@renovate renovate bot force-pushed the renovate/github.com-fsnotify-fsnotify-1.x branch from 303cf48 to f9c8ca3 Compare May 16, 2022 02:28
@renovate renovate bot force-pushed the renovate/github.com-fsnotify-fsnotify-1.x branch from f9c8ca3 to 43cab8f Compare November 20, 2022 13:20
@renovate renovate bot changed the title Update module github.com/fsnotify/fsnotify to v1.5.4 Update module github.com/fsnotify/fsnotify to v1.6.0 Nov 20, 2022
@renovate renovate bot changed the title Update module github.com/fsnotify/fsnotify to v1.6.0 Update module github.com/fsnotify/fsnotify to v1.7.0 Oct 22, 2023
@renovate renovate bot force-pushed the renovate/github.com-fsnotify-fsnotify-1.x branch from 43cab8f to ba328e8 Compare October 22, 2023 09:13
@renovate renovate bot changed the title Update module github.com/fsnotify/fsnotify to v1.7.0 Update module github.com/fsnotify/fsnotify to v1.7.0 - autoclosed Oct 23, 2023
@renovate renovate bot closed this Oct 23, 2023
@renovate renovate bot deleted the renovate/github.com-fsnotify-fsnotify-1.x branch October 23, 2023 10:36
@renovate renovate bot changed the title Update module github.com/fsnotify/fsnotify to v1.7.0 - autoclosed Update module github.com/fsnotify/fsnotify to v1.7.0 Oct 23, 2023
@renovate renovate bot reopened this Oct 23, 2023
@renovate renovate bot restored the renovate/github.com-fsnotify-fsnotify-1.x branch October 23, 2023 14:24
@renovate renovate bot force-pushed the renovate/github.com-fsnotify-fsnotify-1.x branch from ba328e8 to 8dbf148 Compare October 23, 2023 14:25
@renovate renovate bot changed the title Update module github.com/fsnotify/fsnotify to v1.7.0 Update module github.com/fsnotify/fsnotify to v1.7.0 - autoclosed Oct 27, 2024
@renovate renovate bot closed this Oct 27, 2024
@renovate renovate bot deleted the renovate/github.com-fsnotify-fsnotify-1.x branch October 27, 2024 06:46
@renovate renovate bot restored the renovate/github.com-fsnotify-fsnotify-1.x branch October 27, 2024 10:15
@renovate renovate bot changed the title Update module github.com/fsnotify/fsnotify to v1.7.0 - autoclosed Update module github.com/fsnotify/fsnotify to v1.7.0 Oct 27, 2024
@renovate renovate bot reopened this Oct 27, 2024
@renovate renovate bot force-pushed the renovate/github.com-fsnotify-fsnotify-1.x branch from 8dbf148 to 566b55a Compare October 27, 2024 10:16
Copy link
Contributor Author

renovate bot commented Oct 27, 2024

ℹ Artifact update notice

File name: 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.0.0-20210630005230-0f9fa26af87c -> v0.13.0

@renovate renovate bot changed the title Update module github.com/fsnotify/fsnotify to v1.7.0 Update module github.com/fsnotify/fsnotify to v1.7.0 - autoclosed Oct 31, 2024
@renovate renovate bot closed this Oct 31, 2024
@renovate renovate bot deleted the renovate/github.com-fsnotify-fsnotify-1.x branch October 31, 2024 09:42
@renovate renovate bot changed the title Update module github.com/fsnotify/fsnotify to v1.7.0 - autoclosed Update module github.com/fsnotify/fsnotify to v1.7.0 Oct 31, 2024
@renovate renovate bot reopened this Oct 31, 2024
@renovate renovate bot restored the renovate/github.com-fsnotify-fsnotify-1.x branch October 31, 2024 12:40
@renovate renovate bot force-pushed the renovate/github.com-fsnotify-fsnotify-1.x branch from 566b55a to 62e277b Compare October 31, 2024 12:40
@renovate renovate bot changed the title Update module github.com/fsnotify/fsnotify to v1.7.0 Update module github.com/fsnotify/fsnotify to v1.8.0 Oct 31, 2024
@renovate renovate bot changed the title Update module github.com/fsnotify/fsnotify to v1.8.0 Update module github.com/fsnotify/fsnotify to v1.8.0 - autoclosed Dec 12, 2024
@renovate renovate bot closed this Dec 12, 2024
@renovate renovate bot deleted the renovate/github.com-fsnotify-fsnotify-1.x branch December 12, 2024 13:18
@renovate renovate bot changed the title Update module github.com/fsnotify/fsnotify to v1.8.0 - autoclosed Update module github.com/fsnotify/fsnotify to v1.8.0 Dec 12, 2024
@renovate renovate bot reopened this Dec 12, 2024
@renovate renovate bot force-pushed the renovate/github.com-fsnotify-fsnotify-1.x branch from 6a0a4f1 to 62e277b Compare December 12, 2024 16:55
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.

1 participant