fix(deps): update gomod dependencies#328
fix(deps): update gomod dependencies#328red-hat-konflux-kflux-prd-rh03[bot] wants to merge 1 commit into
Conversation
ℹ️ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
|
[APPROVALNOTIFIER] This PR is APPROVED Approval requirements bypassed by manually added approval. This pull-request has been approved by: red-hat-konflux-kflux-prd-rh03[bot] The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
Hi @red-hat-konflux-kflux-prd-rh03[bot]. Thanks for your PR. I'm waiting for a openshift member to verify that this patch is reasonable to test. If it is, they should reply with Regular contributors should join the org to skip this step. Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
|
@red-hat-konflux-kflux-prd-rh03[bot]: The following tests failed, say
Full PR test history. Your PR dashboard. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
f54a089 to
6be7138
Compare
|
New changes are detected. LGTM label has been removed. |
6be7138 to
d0d067e
Compare
Signed-off-by: red-hat-konflux-kflux-prd-rh03 <206760901+red-hat-konflux-kflux-prd-rh03[bot]@users.noreply.github.com>
d0d067e to
45d94af
Compare
This PR contains the following updates:
v3.9.0→v3.13.0v1.6.0→v1.10.1v0.21.5→v0.21.6v0.26.0→v0.26.1v0.26.0→v0.26.1v0.26.0→v0.26.1v0.26.0→v0.26.1v0.26.0→v0.26.1v0.26.0→v0.26.1v0.26.0→v0.26.1v0.26.0→v0.26.1v0.26.0→v0.26.1v0.26.0→v0.26.1v0.26.0→v0.26.1v0.26.0→v0.26.141bb18b→2c02b82v0.5.7-v3refs→v0.7.1d170fcd→d22a47av0.11.0→v0.19.0v0.55.0→v0.91.0v0.92.0v1.18.0→v1.23.2v0.45.0→v0.68.1v0.69.0v0.12.0→v0.20.1v1.9.0→v1.11.1v1.10.0→v1.11.0v1.26.0→v1.28.0v0.33.0→v0.56.0v0.12.0→v0.36.0v0.28.0→v0.46.0v0.27.0→v0.44.0v0.21.0→v0.38.0v0.3.0→v0.15.0v2.2.0→v2.5.0v0.26.13→v0.36.2v0.26.13→v0.36.2v0.26.13→v0.36.2v0.26.13→v0.36.2v0.26.13→v0.36.2v2.120.1→v2.140.0v0.14.7→v0.24.1bc3834c→2d32026v4.4.1→v4.7.0v1.3.0→v1.6.0Release Notes
emicklei/go-restful (github.com/emicklei/go-restful/v3)
v3.13.0Compare Source
v3.12.2Compare Source
v3.12.1Compare Source
v3.12.0Compare Source
v3.11.3Compare Source
v3.11.2Compare Source
v3.11.1Compare Source
v3.11.0Compare Source
v3.10.2Compare Source
see comment in Readme how to customize this behaviour.
v3.10.1Compare Source
v3.10.0Compare Source
fsnotify/fsnotify (github.com/fsnotify/fsnotify)
v1.10.1Compare Source
Changes and fixes
inotify: don't remove sibling watches sharing a path prefix (#754)
inotify, windows: don't rename sibling watches sharing a path prefix
(#755)
v1.10.0Compare Source
This version of fsnotify needs Go 1.23.
Changes and fixes
inotify: improve initialization error message (#731)
inotify: send Rename event if recursive watch is renamed (#696)
inotify: avoid copying event buffers when reading names (#741)
kqueue: skip dangling symlinks (ENOENT) in watchDirectoryFiles, so a bad entry no longer aborts Watcher.Add for the whole directory (#748)
kqueue: drop watches directly in Close() to fix a file descriptor leak when recycling watchers (#740)
windows: fix nil pointer dereference in remWatch (#736)
windows: lock watch field updates against concurrent WatchList to fix a race introduced in v1.9.0 (#709, #749)
v1.9.0Compare Source
Changes and fixes
all: make BufferedWatcher buffered again (#657)
inotify: fix race when adding/removing watches while a watched path is being deleted (#678, #686)
inotify: don't send empty event if a watched path is unmounted (#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 (#679)
kqueue: fix watching relative symlinks (#681)
kqueue: correctly mark pre-existing entries when watching a link to a dir on kqueue (#682)
illumos: don't send error if changed file is deleted while processing the event (#678)
v1.8.0Compare Source
Additions
FSNOTIFY_DEBUGto 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.0Compare 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 toAdd()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_MODIFIEDby 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
ErrEventOverflowif 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
ErrClosedonAdd()when the watcher is closed (#516)other: add
Watcher.ErrorsandWatcher.Eventsto the no-opWatcherinbackend_other.go, making it easier to use on unsupported platforms such as WASM, AIX, etc. (#528)other: use the
backend_other.gono-op if theappenginebuild tag is set; Google AppEngine forbids usage of the unsafe package so the inotify backend won't compile there.go-openapi/jsonreference (github.com/go-openapi/jsonreference)
v0.21.6Compare Source
0.21.6 - 2026-05-31
Full Changelog: go-openapi/jsonreference@v0.21.5...v0.21.6
21 commits in this release.
Documentation
Code quality
Miscellaneous tasks
Updates
People who contributed to this release
jsonreference license terms
go-openapi/swag (github.com/go-openapi/swag)
v0.26.1Compare Source
0.26.1 - 2026-06-07
Full Changelog: go-openapi/swag@v0.26.0...v0.26.1
12 commits in this release.
Implemented enhancements
Documentation
Miscellaneous tasks
Security
Updates
People who contributed to this release
swag license terms
Per-module changes
conv (0.26.1)
Miscellaneous tasks
Updates
fileutils (0.26.1)
Updates
jsonname (0.26.1)
Updates
jsonutils/adapters/easyjson (0.26.1)
Miscellaneous tasks
Updates
jsonutils/adapters/testintegration/benchmarks (0.26.1)
Miscellaneous tasks
Updates
jsonutils/adapters/testintegration (0.26.1)
Miscellaneous tasks
Updates
jsonutils/fixtures_test (0.26.1)
Updates
jsonutils (0.26.1)
Miscellaneous tasks
Updates
loading (0.26.1)
Implemented enhancements
Miscellaneous tasks
Security
Updates
mangling (0.26.1)
Updates
netutils (0.26.1)
Updates
stringutils (0.26.1)
Updates
typeutils (0.26.1)
Updates
yamlutils (0.26.1)
Miscellaneous tasks
Updates
google/gnostic (github.com/google/gnostic)
v0.7.1Compare Source
v0.7.0Compare Source
v0.6.9Compare Source
v0.6.8: protoc-gen-openapi and export improvements.Compare Source
This contains several improvements to
protoc-gen-openapifrom @jeffsawatzky , including the ability to use proto annotations to add fragments to generated OpenAPI documents (#324). It also adds some missing OpenAPI compiler code that Jeff uncovered when testing the new fragment overlay feature - maps of strings were not properly exported inToRawInfo()methods in both OpenAPI packages (v2 and v3). Thanks, Jeff!v0.6.7Compare Source
v0.6.6: Module cleanupCompare Source
We had a series of problems related to a multi-module configuration and its reversion that all now appear to be fixed in this release. Individual components in the
cmddirectory are now (again) part of the main module and can be independently installed with the following: