Skip to content

Commit c518d55

Browse files
authoredNov 13, 2024··
build(deps): bump github.com/fsnotify/fsnotify from 1.7.0 to 1.8.0 (#3440)
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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent c0fb544 commit c518d55

33 files changed

+1882
-1616
lines changed
 

Diff for: ‎go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/coreos/go-semver v0.3.1
99
github.com/distribution/reference v0.6.0
1010
github.com/evanphx/json-patch v5.9.0+incompatible
11-
github.com/fsnotify/fsnotify v1.7.0
11+
github.com/fsnotify/fsnotify v1.8.0
1212
github.com/ghodss/yaml v1.0.0
1313
github.com/go-air/gini v1.0.4
1414
github.com/go-logr/logr v1.4.2

Diff for: ‎go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1474,8 +1474,8 @@ github.com/felixge/httpsnoop v1.0.4 h1:NFTV2Zj1bL4mc9sqWACXbQFVBBg2W3GPvqp8/ESS2
14741474
github.com/felixge/httpsnoop v1.0.4/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U=
14751475
github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k=
14761476
github.com/fogleman/gg v1.3.0/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k=
1477-
github.com/fsnotify/fsnotify v1.7.0 h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nosvA=
1478-
github.com/fsnotify/fsnotify v1.7.0/go.mod h1:40Bi/Hjc2AVfZrqy+aj+yEI+/bRxZnMJyTJwOpGvigM=
1477+
github.com/fsnotify/fsnotify v1.8.0 h1:dAwr6QBTBZIkG8roQaJjGof0pp0EeF+tNV7YBP3F/8M=
1478+
github.com/fsnotify/fsnotify v1.8.0/go.mod h1:8jBTzvmWwFyi3Pb8djgCCO5IBqzKJ/Jwo8TRcHyHii0=
14791479
github.com/fxamacker/cbor/v2 v2.7.0 h1:iM5WgngdRBanHcxugY4JySA0nk1wZorNOpTgCMedv5E=
14801480
github.com/fxamacker/cbor/v2 v2.7.0/go.mod h1:pxXPTn3joSm21Gbwsv0w9OSA2y1HFR9qXEeXQVeNoDQ=
14811481
github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=

Diff for: ‎vendor/github.com/fsnotify/fsnotify/.cirrus.yml

+4-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/.editorconfig

-12
This file was deleted.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/.gitattributes

-1
This file was deleted.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/.gitignore

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/CHANGELOG.md

+31-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/CONTRIBUTING.md

+119-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/backend_fen.go

+84-240
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/backend_inotify.go

+329-265
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/backend_kqueue.go

+349-398
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/backend_other.go

+11-193
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/backend_windows.go

+80-225
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/fsnotify.go

+358-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/internal/darwin.go

+39
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/internal/debug_darwin.go

+57
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/internal/debug_dragonfly.go

+33
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/internal/debug_freebsd.go

+42
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/internal/debug_kqueue.go

+32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/internal/debug_linux.go

+56
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/internal/debug_netbsd.go

+25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/internal/debug_openbsd.go

+28
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/internal/debug_solaris.go

+45
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/internal/debug_windows.go

+40
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/internal/freebsd.go

+31
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/internal/internal.go

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/internal/unix.go

+31
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/internal/unix2.go

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/internal/windows.go

+41
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/mkdoc.zsh

-259
This file was deleted.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/system_bsd.go

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/github.com/fsnotify/fsnotify/system_darwin.go

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: ‎vendor/modules.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -244,9 +244,10 @@ github.com/fatih/color
244244
# github.com/felixge/httpsnoop v1.0.4
245245
## explicit; go 1.13
246246
github.com/felixge/httpsnoop
247-
# github.com/fsnotify/fsnotify v1.7.0
247+
# github.com/fsnotify/fsnotify v1.8.0
248248
## explicit; go 1.17
249249
github.com/fsnotify/fsnotify
250+
github.com/fsnotify/fsnotify/internal
250251
# github.com/fxamacker/cbor/v2 v2.7.0
251252
## explicit; go 1.17
252253
github.com/fxamacker/cbor/v2

0 commit comments

Comments
 (0)
Please sign in to comment.