fix(deps): update go minor dependencies #243
Open
+240
−247
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v3.11.0->v3.13.0v4.5.0+incompatible->v4.13.0+incompatiblev1.7.0->v1.9.0v2.7.0->v2.9.0v0.19.6->v0.22.4v0.20.2->v0.21.4v0.22.4->v0.25.4v0.20.1->v0.26.1v0.6.8->v0.7.1v2.20.0->v2.27.3v0.7.7->v0.9.1v2.26.0->v2.27.3v1.19.1->v1.23.2v0.55.0->v0.67.4v0.15.1->v0.19.2v1.8.1->v1.10.2v1.2.0->v1.3.11.24.6->1.25.5v1.1.0->v1.2.1v0.53.0->v0.64.0v1.34.0->v1.39.0v1.28.0->v1.39.0v1.27.0->v1.39.0v1.34.0->v1.39.0v1.34.0->v1.39.0v1.34.0->v1.39.0v1.3.1->v1.9.0v0.27.0->v0.31.0v0.43.0->v0.48.0v0.25.0->v0.34.0v0.16.0->v0.19.0v0.35.0->v0.39.0v0.34.0->v0.38.0v0.28.0->v0.32.0v0.3.0->v0.14.0v0.36.0->v0.40.0v2.4.0->v2.5.0v1.71.0->v1.78.0v0.31.0->v0.35.0v0.31.0->v0.35.0v0.31.0->v0.35.0v0.31.0->v0.35.0v0.31.0->v0.35.0v0.31.0->v0.35.0v0.30.3->v0.34.0v0.19.0->v0.22.4v4.4.1->v4.7.0v1.4.0->v1.6.0Warning
Some dependencies could not be looked up. Check the warning logs for more information.
Release 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
evanphx/json-patch (github.com/evanphx/json-patch)
v4.13.0+incompatibleCompare Source
v4.12.0+incompatibleCompare Source
v4.11.0+incompatibleCompare Source
v4.9.0+incompatibleCompare Source
fsnotify/fsnotify (github.com/fsnotify/fsnotify)
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)
fxamacker/cbor (github.com/fxamacker/cbor/v2)
v2.9.0Compare Source
v2.9.0 adds new features, refactors tests, and improves docs. New features improve interoperability/transcoding between CBOR & JSON.
v2.9.0 passed fuzz tests and is production quality. However, the new
TextUnmarshalerfeature will continue being fuzz tested a bit longer due to recent changes. The recent changes are limited and don't affect other parts of the codec that passed ~2 billion execs fuzzing.What's Changed
Docs
CI
🔎 Details
Special Thanks
Many thanks to @benluddy for adding these new features! 🎉
New Contributors
Full Changelog: fxamacker/cbor@v2.8.0...v2.9.0
v2.8.0Compare Source
v2.8.0 adds
omitzerostruct tag option, fixes and deprecates 3 functions, and bumps requirements to go 1.20+.Many thanks to @liggitt for contributing the
omitzerosupport!This release fixes 3 functions (when called directly by user apps) to use same error handling on bad input as
cbor.Unmarshal():RawTag.UnmarshalCBOR()(thanks @thomas-fossati for reporting this!)ByteString.UnmarshalCBOR()SimpleValue.UnmarshalCBOR()This release also deprecates those 3 functions because they were initially created for internal use. Please use
Unmarshal()orUnmarshalFirst()instead.To preserve backward compatibility, the deprecated functions were added to fuzz tests and will not be removed in v2.x.
What's Changed
interface{}withanyby @fxamacker in #627reflect.Ptrwithreflect.Pointerby @fxamacker in #628reflect.PtrTowithreflect.PointerToby @fxamacker in #629RawTag.UnmarshalCBOR(), etc. to matchcbor.Unmarshal()by @fxamacker in #645UnmarshalCBOR()forByteString,RawTag,SimpleValueby @fxamacker in #647Other Changes
🔍 Details
New Contributors
Full Changelog: fxamacker/cbor@v2.7.0...v2.8.0
v2.7.1Compare Source
v2.7.1 fixes 3 functions (when called directly by user apps) to use same error handling on bad inputs as
cbor.Unmarshal():ByteString.UnmarshalCBOR()RawTag.UnmarshalCBOR()SimpleValue.UnmarshalCBOR()The above 3 fixed functions are deprecated because they were initially created for internal use. Please use
Unmarshal()orUnmarshalFirst()instead.To preserve backward compatibility, the deprecated functions were added to fuzz tests and will not be removed in v2.x.
Before Upgrading to v2.7.1
v2.8.0 is being fuzz tested and will be released later today. It adds support for
omitzerostruct tag option.v2.7.1 is the last version to support go 1.17-1.19. v2.8.0 and newer releases will require go 1.20+.
What's Changed
Special Thanks
Thanks @thomas-fossati for reporting the bug in
RawTag.UnmarshalCBOR()when it is called directly by user apps providing bad input data!Full Changelog: fxamacker/cbor@v2.7.0...v2.7.1
go-openapi/jsonpointer (github.com/go-openapi/jsonpointer)
v0.22.4Compare Source
0.22.4 - 2025-12-06
Full Changelog: go-openapi/jsonpointer@v0.22.3...v0.22.4
1 commits in this release.
Miscellaneous tasks
People who contributed to this release
jsonpointer license terms
v0.22.3Compare Source
0.22.3 - 2025-11-17
Full Changelog: go-openapi/jsonpointer@v0.22.2...v0.22.3
8 commits in this release.
Documentation
Code quality
Miscellaneous tasks
People who contributed to this release
New Contributors
in #76
jsonpointer license terms
v0.22.2Compare Source
0.22.2 - 2025-11-14
Full Changelog: go-openapi/jsonpointer@v0.22.1...v0.22.2
12 commits in this release.
Documentation
Code quality
Testing
Miscellaneous tasks
Security
Updates
People who contributed to this release
jsonpointer license terms
v0.22.1Compare Source
v0.22.0Compare Source
v0.21.2Compare Source
v0.21.1Compare Source
v0.21.0Compare Source
v0.20.3Compare Source
v0.20.2Compare Source
[
v0.20.1](https://redireConfiguration
📅 Schedule: Branch creation - At any time (no schedule defined), 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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
To execute skipped test pipelines write comment
/ok-to-test.Documentation
Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.