Skip to content

Commit e7bbf16

Browse files
renovate[bot]opentelemetrybotsongy23
authored
Update module github.com/fsnotify/fsnotify to v1.9.0 (#12807)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/fsnotify/fsnotify](https://redirect.github.com/fsnotify/fsnotify) | `v1.8.0` -> `v1.9.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2ffsnotify%2ffsnotify/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2ffsnotify%2ffsnotify/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2ffsnotify%2ffsnotify/v1.8.0/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2ffsnotify%2ffsnotify/v1.8.0/v1.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>fsnotify/fsnotify (github.com/fsnotify/fsnotify)</summary> ### [`v1.9.0`](https://redirect.github.com/fsnotify/fsnotify/releases/tag/v1.9.0) [Compare Source](https://redirect.github.com/fsnotify/fsnotify/compare/v1.8.0...v1.9.0) ##### Changes and fixes - all: make BufferedWatcher buffered again ([#&#8203;657]) - inotify: fix race when adding/removing watches while a watched path is being deleted ([#&#8203;678], [#&#8203;686]) - inotify: don't send empty event if a watched path is unmounted ([#&#8203;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 ([#&#8203;679]) - kqueue: fix watching relative symlinks ([#&#8203;681]) - kqueue: correctly mark pre-existing entries when watching a link to a dir on kqueue ([#&#8203;682]) - illumos: don't send error if changed file is deleted while processing the event ([#&#8203;678]) [#&#8203;657]: https://redirect.github.com/fsnotify/fsnotify/pull/657 [#&#8203;678]: https://redirect.github.com/fsnotify/fsnotify/pull/678 [#&#8203;686]: https://redirect.github.com/fsnotify/fsnotify/pull/686 [#&#8203;655]: https://redirect.github.com/fsnotify/fsnotify/pull/655 [#&#8203;681]: https://redirect.github.com/fsnotify/fsnotify/pull/681 [#&#8203;679]: https://redirect.github.com/fsnotify/fsnotify/pull/679 [#&#8203;682]: https://redirect.github.com/fsnotify/fsnotify/pull/682 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/open-telemetry/opentelemetry-collector). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMjcuMyIsInVwZGF0ZWRJblZlciI6IjM5LjIyNy4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZWJvdCJdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <[email protected]> Co-authored-by: Yang Song <[email protected]>
1 parent c43ecad commit e7bbf16

File tree

24 files changed

+37
-37
lines changed

24 files changed

+37
-37
lines changed

cmd/otelcorecol/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ require (
4242
github.com/davecgh/go-spew v1.1.1 // indirect
4343
github.com/ebitengine/purego v0.8.2 // indirect
4444
github.com/felixge/httpsnoop v1.0.4 // indirect
45-
github.com/fsnotify/fsnotify v1.8.0 // indirect
45+
github.com/fsnotify/fsnotify v1.9.0 // indirect
4646
github.com/go-logr/logr v1.4.2 // indirect
4747
github.com/go-logr/stdr v1.2.2 // indirect
4848
github.com/go-ole/go-ole v1.2.6 // indirect

cmd/otelcorecol/go.sum

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

config/configgrpc/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ require (
2626

2727
require (
2828
github.com/davecgh/go-spew v1.1.1 // indirect
29-
github.com/fsnotify/fsnotify v1.8.0 // indirect
29+
github.com/fsnotify/fsnotify v1.9.0 // indirect
3030
github.com/go-logr/logr v1.4.2 // indirect
3131
github.com/go-logr/stdr v1.2.2 // indirect
3232
github.com/gogo/protobuf v1.3.2 // indirect

config/configgrpc/go.sum

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

config/confighttp/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ require (
2828
require (
2929
github.com/davecgh/go-spew v1.1.1 // indirect
3030
github.com/felixge/httpsnoop v1.0.4 // indirect
31-
github.com/fsnotify/fsnotify v1.8.0 // indirect
31+
github.com/fsnotify/fsnotify v1.9.0 // indirect
3232
github.com/go-logr/logr v1.4.2 // indirect
3333
github.com/go-logr/stdr v1.2.2 // indirect
3434
github.com/gogo/protobuf v1.3.2 // indirect

config/confighttp/go.sum

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

config/confighttp/xconfighttp/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ require (
1414
require (
1515
github.com/davecgh/go-spew v1.1.1 // indirect
1616
github.com/felixge/httpsnoop v1.0.4 // indirect
17-
github.com/fsnotify/fsnotify v1.8.0 // indirect
17+
github.com/fsnotify/fsnotify v1.9.0 // indirect
1818
github.com/go-logr/logr v1.4.2 // indirect
1919
github.com/go-logr/stdr v1.2.2 // indirect
2020
github.com/gogo/protobuf v1.3.2 // indirect

config/confighttp/xconfighttp/go.sum

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

config/configtls/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module go.opentelemetry.io/collector/config/configtls
33
go 1.23.0
44

55
require (
6-
github.com/fsnotify/fsnotify v1.8.0
6+
github.com/fsnotify/fsnotify v1.9.0
77
github.com/stretchr/testify v1.10.0
88
go.opentelemetry.io/collector/config/configopaque v1.29.0
99
)

config/configtls/go.sum

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

exporter/otlpexporter/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ require (
3434
require (
3535
github.com/cenkalti/backoff/v5 v5.0.2 // indirect
3636
github.com/davecgh/go-spew v1.1.1 // indirect
37-
github.com/fsnotify/fsnotify v1.8.0 // indirect
37+
github.com/fsnotify/fsnotify v1.9.0 // indirect
3838
github.com/go-logr/logr v1.4.2 // indirect
3939
github.com/go-logr/stdr v1.2.2 // indirect
4040
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect

exporter/otlpexporter/go.sum

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

exporter/otlphttpexporter/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ require (
3333
github.com/cenkalti/backoff/v5 v5.0.2 // indirect
3434
github.com/davecgh/go-spew v1.1.1 // indirect
3535
github.com/felixge/httpsnoop v1.0.4 // indirect
36-
github.com/fsnotify/fsnotify v1.8.0 // indirect
36+
github.com/fsnotify/fsnotify v1.9.0 // indirect
3737
github.com/go-logr/logr v1.4.2 // indirect
3838
github.com/go-logr/stdr v1.2.2 // indirect
3939
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect

exporter/otlphttpexporter/go.sum

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

extension/zpagesextension/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ require (
2323
require (
2424
github.com/davecgh/go-spew v1.1.1 // indirect
2525
github.com/felixge/httpsnoop v1.0.4 // indirect
26-
github.com/fsnotify/fsnotify v1.8.0 // indirect
26+
github.com/fsnotify/fsnotify v1.9.0 // indirect
2727
github.com/go-logr/logr v1.4.2 // indirect
2828
github.com/go-logr/stdr v1.2.2 // indirect
2929
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect

extension/zpagesextension/go.sum

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

internal/e2e/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ require (
4646
github.com/davecgh/go-spew v1.1.1 // indirect
4747
github.com/ebitengine/purego v0.8.2 // indirect
4848
github.com/felixge/httpsnoop v1.0.4 // indirect
49-
github.com/fsnotify/fsnotify v1.8.0 // indirect
49+
github.com/fsnotify/fsnotify v1.9.0 // indirect
5050
github.com/go-logr/logr v1.4.2 // indirect
5151
github.com/go-logr/stdr v1.2.2 // indirect
5252
github.com/go-ole/go-ole v1.2.6 // indirect

internal/e2e/go.sum

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

otelcol/go.sum

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

otelcol/otelcoltest/go.sum

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

receiver/otlpreceiver/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ require (
4444
require (
4545
github.com/davecgh/go-spew v1.1.1 // indirect
4646
github.com/felixge/httpsnoop v1.0.4 // indirect
47-
github.com/fsnotify/fsnotify v1.8.0 // indirect
47+
github.com/fsnotify/fsnotify v1.9.0 // indirect
4848
github.com/go-logr/logr v1.4.2 // indirect
4949
github.com/go-logr/stdr v1.2.2 // indirect
5050
github.com/go-viper/mapstructure/v2 v2.2.1 // indirect

receiver/otlpreceiver/go.sum

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

service/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ require (
6868
github.com/davecgh/go-spew v1.1.1 // indirect
6969
github.com/ebitengine/purego v0.8.2 // indirect
7070
github.com/felixge/httpsnoop v1.0.4 // indirect
71-
github.com/fsnotify/fsnotify v1.8.0 // indirect
71+
github.com/fsnotify/fsnotify v1.9.0 // indirect
7272
github.com/go-logr/logr v1.4.2 // indirect
7373
github.com/go-logr/stdr v1.2.2 // indirect
7474
github.com/go-ole/go-ole v1.2.6 // indirect

service/go.sum

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

0 commit comments

Comments
 (0)