Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 27, 2020

Mend Renovate

This PR contains the following updates:

Package Type Update Change
com_github_fsnotify_fsnotify go_repository minor v1.4.7 -> v1.6.0

Release Notes

fsnotify/fsnotify (com_github_fsnotify_fsnotify)

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

v1.5.1: Revert Add AddRaw to not follow symlinks

Compare Source

#​394

v1.5.0: Add AddRaw which does not dereference symlinks

Compare Source

  • Go: Increase minimum required version to Go 1.12 #​381
  • Feature: Add AddRaw method which does not follow symlinks when adding a watch #​289
  • Windows: Follow symlinks by default like on all other systems #​289
  • CI: Use GitHub Actions for CI and cover go 1.12-1.17 #​378 #​381 #​385
  • Go 1.14+: Fix unsafe pointer conversion #​325

v1.4.9: Move example usage to the readme

Compare Source

v1.4.8: Use close-on-exec

Compare Source


Configuration

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/com_github_fsnotify_fsnotify-1.x branch from 40d44fb to 4362abf Compare October 18, 2021 16:50
@renovate renovate bot changed the title chore(deps): update dependency com_github_fsnotify_fsnotify to v1.4.9 chore(deps): update dependency com_github_fsnotify_fsnotify to v1.5.1 Oct 18, 2021
@renovate renovate bot force-pushed the renovate/com_github_fsnotify_fsnotify-1.x branch from 4362abf to a5d15ae Compare April 24, 2022 21:44
@renovate renovate bot changed the title chore(deps): update dependency com_github_fsnotify_fsnotify to v1.5.1 chore(deps): update dependency com_github_fsnotify_fsnotify to v1.5.3 Apr 24, 2022
@renovate renovate bot force-pushed the renovate/com_github_fsnotify_fsnotify-1.x branch from a5d15ae to 75f793f Compare May 16, 2022 03:15
@renovate renovate bot changed the title chore(deps): update dependency com_github_fsnotify_fsnotify to v1.5.3 chore(deps): update dependency com_github_fsnotify_fsnotify to v1.5.4 May 16, 2022
@renovate renovate bot force-pushed the renovate/com_github_fsnotify_fsnotify-1.x branch from 75f793f to a13f087 Compare November 20, 2022 17:14
@renovate renovate bot changed the title chore(deps): update dependency com_github_fsnotify_fsnotify to v1.5.4 chore(deps): update dependency com_github_fsnotify_fsnotify to v1.6.0 Nov 20, 2022
@renovate renovate bot changed the title chore(deps): update dependency com_github_fsnotify_fsnotify to v1.6.0 chore(deps): update module com_github_fsnotify_fsnotify to v1.6.0 Jul 9, 2023
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