Skip to content

Bump github.com/fsnotify/fsnotify from 1.7.0 to 1.8.0#1187

Merged
sawka merged 1 commit into
mainfrom
dependabot/go_modules/github.com/fsnotify/fsnotify-1.8.0
Nov 4, 2024
Merged

Bump github.com/fsnotify/fsnotify from 1.7.0 to 1.8.0#1187
sawka merged 1 commit into
mainfrom
dependabot/go_modules/github.com/fsnotify/fsnotify-1.8.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Nov 1, 2024

Bumps github.com/fsnotify/fsnotify from 1.7.0 to 1.8.0.

Release notes

Sourced from github.com/fsnotify/fsnotify's releases.

v1.8.0

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)

Changelog

Sourced from github.com/fsnotify/fsnotify's changelog.

1.8.0 2023-10-31

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)

#590: fsnotify/fsnotify#590 #610: fsnotify/fsnotify#610 #617: fsnotify/fsnotify#617 #619: fsnotify/fsnotify#619 #620: fsnotify/fsnotify#620 #621: fsnotify/fsnotify#621 #625: fsnotify/fsnotify#625 #650: fsnotify/fsnotify#650

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go labels Nov 1, 2024
@dependabot dependabot Bot force-pushed the dependabot/go_modules/github.com/fsnotify/fsnotify-1.8.0 branch from 87453af to 49a3ceb Compare November 2, 2024 18:01
Bumps [github.com/fsnotify/fsnotify](https://github.com/fsnotify/fsnotify) from 1.7.0 to 1.8.0.
- [Release notes](https://github.com/fsnotify/fsnotify/releases)
- [Changelog](https://github.com/fsnotify/fsnotify/blob/main/CHANGELOG.md)
- [Commits](fsnotify/fsnotify@v1.7.0...v1.8.0)

---
updated-dependencies:
- dependency-name: github.com/fsnotify/fsnotify
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/go_modules/github.com/fsnotify/fsnotify-1.8.0 branch from 49a3ceb to 4cfa10f Compare November 2, 2024 18:02
@sawka sawka merged commit 3f5bb6d into main Nov 4, 2024
@sawka sawka deleted the dependabot/go_modules/github.com/fsnotify/fsnotify-1.8.0 branch November 4, 2024 18:09
xxyy2024 pushed a commit to xxyy2024/waveterm_aipy that referenced this pull request Jun 24, 2025
Bumps
[github.com/fsnotify/fsnotify](https://github.com/fsnotify/fsnotify)
from 1.7.0 to 1.8.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/fsnotify/fsnotify/releases">github.com/fsnotify/fsnotify's
releases</a>.</em></p>
<blockquote>
<h2>v1.8.0</h2>
<h2>Additions</h2>
<ul>
<li>all: add <code>FSNOTIFY_DEBUG</code> to print debug logs to stderr
(<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/619">#619</a>)</li>
</ul>
<h3>Changes and fixes</h3>
<ul>
<li>
<p>windows: fix behaviour of <code>WatchList()</code> to be consistent
with other platforms (<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/610">#610</a>)</p>
</li>
<li>
<p>kqueue: ignore events with Ident=0 (<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/590">#590</a>)</p>
</li>
<li>
<p>kqueue: set O_CLOEXEC to prevent passing file descriptors to children
(<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/617">#617</a>)</p>
</li>
<li>
<p>kqueue: emit events as &quot;/path/dir/file&quot; instead of
&quot;path/link/file&quot; when watching a symlink (<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/625">#625</a>)</p>
</li>
<li>
<p>inotify: don't send event for IN_DELETE_SELF when also watching the
parent (<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/620">#620</a>)</p>
</li>
<li>
<p>inotify: fix panic when calling Remove() in a goroutine (<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/650">#650</a>)</p>
</li>
<li>
<p>fen: allow watching subdirectories of watched directories (<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/621">#621</a>)</p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/fsnotify/fsnotify/blob/main/CHANGELOG.md">github.com/fsnotify/fsnotify's
changelog</a>.</em></p>
<blockquote>
<h2>1.8.0 2023-10-31</h2>
<h3>Additions</h3>
<ul>
<li>all: add <code>FSNOTIFY_DEBUG</code> to print debug logs to stderr
(<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/619">#619</a>)</li>
</ul>
<h3>Changes and fixes</h3>
<ul>
<li>
<p>windows: fix behaviour of <code>WatchList()</code> to be consistent
with other platforms (<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/610">#610</a>)</p>
</li>
<li>
<p>kqueue: ignore events with Ident=0 (<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/590">#590</a>)</p>
</li>
<li>
<p>kqueue: set O_CLOEXEC to prevent passing file descriptors to children
(<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/617">#617</a>)</p>
</li>
<li>
<p>kqueue: emit events as &quot;/path/dir/file&quot; instead of
&quot;path/link/file&quot; when watching a symlink (<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/625">#625</a>)</p>
</li>
<li>
<p>inotify: don't send event for IN_DELETE_SELF when also watching the
parent (<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/620">#620</a>)</p>
</li>
<li>
<p>inotify: fix panic when calling Remove() in a goroutine (<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/650">#650</a>)</p>
</li>
<li>
<p>fen: allow watching subdirectories of watched directories (<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/621">#621</a>)</p>
</li>
</ul>
<p><a
href="https://redirect.github.com/fsnotify/fsnotify/issues/590">#590</a>:
<a
href="https://redirect.github.com/fsnotify/fsnotify/pull/590">fsnotify/fsnotify#590</a>
<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/610">#610</a>:
<a
href="https://redirect.github.com/fsnotify/fsnotify/pull/610">fsnotify/fsnotify#610</a>
<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/617">#617</a>:
<a
href="https://redirect.github.com/fsnotify/fsnotify/pull/617">fsnotify/fsnotify#617</a>
<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/619">#619</a>:
<a
href="https://redirect.github.com/fsnotify/fsnotify/pull/619">fsnotify/fsnotify#619</a>
<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/620">#620</a>:
<a
href="https://redirect.github.com/fsnotify/fsnotify/pull/620">fsnotify/fsnotify#620</a>
<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/621">#621</a>:
<a
href="https://redirect.github.com/fsnotify/fsnotify/pull/621">fsnotify/fsnotify#621</a>
<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/625">#625</a>:
<a
href="https://redirect.github.com/fsnotify/fsnotify/pull/625">fsnotify/fsnotify#625</a>
<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/650">#650</a>:
<a
href="https://redirect.github.com/fsnotify/fsnotify/pull/650">fsnotify/fsnotify#650</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/fsnotify/fsnotify/commit/a9bc2e01792f868516acf80817f7d7d7b3315409"><code>a9bc2e0</code></a>
Prepare 1.8.0 release</li>
<li><a
href="https://github.com/fsnotify/fsnotify/commit/2d133b81be1e26628491698a699ef9ce9fb71ed9"><code>2d133b8</code></a>
inotify: fix panic on Remove()</li>
<li><a
href="https://github.com/fsnotify/fsnotify/commit/16269627c5b0104cd78948b6b6d1efc3cdb60d9a"><code>1626962</code></a>
Update CI</li>
<li><a
href="https://github.com/fsnotify/fsnotify/commit/c1467c02fba575afdb5f4201072ab8403bbf00f4"><code>c1467c0</code></a>
test/kqueue: watch symlinks</li>
<li><a
href="https://github.com/fsnotify/fsnotify/commit/800ed8332bfeddcb97dce7733ce2674c17170eb4"><code>800ed83</code></a>
kqueue: don't change internal state when Add() returns error (<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/638">#638</a>)</li>
<li><a
href="https://github.com/fsnotify/fsnotify/commit/ad7424447bfedb6409dddced3d418e093fe7e9f4"><code>ad74244</code></a>
remove extra &quot;to&quot; from doc comment (<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/634">#634</a>)</li>
<li><a
href="https://github.com/fsnotify/fsnotify/commit/bec89034c5c5a875b2077b6b876cb085b527e7ee"><code>bec8903</code></a>
Split out Watcher and backends (<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/632">#632</a>)</li>
<li><a
href="https://github.com/fsnotify/fsnotify/commit/a618f076c8cfc422e6d1f6f1f881af9152aa7c82"><code>a618f07</code></a>
inotify: add recursive watcher (<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/472">#472</a>)</li>
<li><a
href="https://github.com/fsnotify/fsnotify/commit/17d905351249492aab4599fb177a947b119d2094"><code>17d9053</code></a>
Print diffs for test failures</li>
<li><a
href="https://github.com/fsnotify/fsnotify/commit/53b06a884d7164e2d93c1dcdda52b1e966b76aba"><code>53b06a8</code></a>
inotify: implement WithNoFollow() (<a
href="https://redirect.github.com/fsnotify/fsnotify/issues/631">#631</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/fsnotify/fsnotify/compare/v1.7.0...v1.8.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/fsnotify/fsnotify&package-manager=go_modules&previous-version=1.7.0&new-version=1.8.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant