fix(deps): update all go dependencies main (main) (minor) #536
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:
v1.24.1->v1.27.0v1.26.3->v1.27.16v1.14.11->v1.16.3v1.143.0->v1.161.4v1.19.0->v1.20.2v0.12.4-0.20240108171828-839118d43a4c->v0.15.0aea5ed8->6ee0b54v1.1.2->v1.2.0v1.4.0->v1.5.0v5.7.0+incompatible->v5.9.0+incompatiblev0.21.0->v0.22.0v0.21.5->v0.22.0v0.26.2->v0.28.0v0.20.14->v0.21.0v0.22.0->v0.23.0v0.22.7->v0.23.0v0.22.6->v0.24.0v1.5.0->v1.6.0v1.26.1->v1.28.3v3.22.0->v3.26.0v1.18.0->v1.19.1v0.5.0->v0.6.1v0.12.0->v0.15.0v2.1.6->v2.2.0v1.8.7->v1.9.6v1.8.4->v1.9.0v1.21.0->v1.27.0v1.21.0->v1.27.0v1.26.0->v1.27.0v0.18.0->v0.23.0be819d1->4c93da0v0.14.0->v0.17.0v0.20.0->v0.25.0v0.6.0->v0.7.0v0.16.0->v0.20.0v0.16.0->v0.20.0v0.16.1->v0.21.035c7eff->d264139v1.60.1->v1.64.0v1.32.0->v1.34.1Release Notes
aws/aws-sdk-go-v2 (github.com/aws/aws-sdk-go-v2)
v1.27.0Compare Source
v1.26.2Compare Source
v1.26.1Compare Source
v1.26.0Compare Source
v1.25.3Compare Source
v1.25.2Compare Source
v1.25.1Compare Source
v1.25.0Compare Source
aws/smithy-go (github.com/aws/smithy-go)
v1.20.2Compare Source
v1.20.1Compare Source
v1.20.0Compare Source
cilium/ebpf (github.com/cilium/ebpf)
v0.15.0Compare Source
btf:
bpf_core_type_matchesis now supportedPrograms can now use
bpf_core_type_matches()for a stricter compatibility check. See https://github.com/cilium/ebpf/pull/1366.program, btf: improve debuggability when CO-RE or kfunc fixup fails
The library now tries to return a more informative error when loading a program fails due to a failed CO-RE relocation or a missing kfunc. See https://github.com/cilium/ebpf/pull/1402.
btf: synthesise instruction comments into line info
asm.Commentin an instruction'sSource()are now passed to the kernel in the form of BTF line info. See https://github.com/cilium/ebpf/pull/1417.perf: add WakeupEvents support to Reader
A perf Reader can now be configured to be woken up after a specific number of events / samples have been submitted. See https://github.com/cilium/ebpf/pull/1404.
Bugfixes
program: fix loading a program which targets a function in a kernel module whenCONFIG_DEBUG_INFO_BTF_MODULESis disabled, see #1440.Breaking changes
github.com/cilium/ebpf/btf
Copy: thetransformargument was removed. Use the newbtf.Asfunction instead.Transformer: removed. See above.What's Changed
bpf_core_type_matches()by @dylandreimerink in https://github.com/cilium/ebpf/pull/1366New Contributors
Full Changelog: cilium/ebpf@v0.14.0...v0.15.0
v0.14.0Compare Source
btf: support for CO-RE relocations against kernel modules
It's now possible to use CO-RE relocations against types defined in kernel modules. See https://github.com/cilium/ebpf/pull/1300 by @brycekahle.
link: netkit support
The
linkpackage now allows attaching to netkit interfaces. See https://github.com/cilium/ebpf/pull/1257 by @hemanthmallalink: support for iterating links
The new
link.Iteratortype allows enumerating all BPF links active. See https://github.com/cilium/ebpf/pull/1392 by @mpastyl.Bugfixes
ringbuf: fixed a bug which can lead to corrupt data on arm64, see https://github.com/cilium/ebpf/pull/1375Breaking changes
github.com/cilium/ebpf
ProgramOptionsis not comparable anymore due toKernelModuleTypes.github.com/cilium/ebpf/btf
CORERelocatehad its singature change once again.What's Changed
New Contributors
Full Changelog: cilium/ebpf@v0.13.2...v0.14.0
v0.13.2Compare Source
What's Changed
Full Changelog: cilium/ebpf@v0.13.1...v0.13.2
v0.13.1Compare Source
What's Changed
New Contributors
Full Changelog: cilium/ebpf@v0.13.0...v0.13.1
containernetworking/cni (github.com/containernetworking/cni)
v1.2.0: CNI spec v1.1 / libcni v1.2.0Compare Source
This is libcni v1.2.0, which releases the new CNI spec version v1.1.0.
Major changes:
GC verb
The GC verb allows runtimes to specify the set of known-good attachments, allowing plugins to clean up stale and leaked resources such as IPAM reservations. Libcni will also synthesize a CNI DEL for any stale cached attachments, so all users will have a form of GC, even if their plugins do not support CNI v1.1
STATUS verb
The STATUS verb allows a plugin to report its readiness to accept ADD requests. Runtimes such as containerd and cri-o will no longer have to rely merely on the presence of a CNI configuration file to determine network readiness.
Version negotiation
CNI configurations may now contain multiple versions, so that an administrator can opportunistically update the protocol version without breaking older runtimes:
{ "cniVersion": "1.0.0", "cniVersions": ["1.0.0", "1.1.0"] }New fields
A number of new fields have been added to the result type:
Other improvements
containernetworking/plugins (github.com/containernetworking/plugins)
v1.5.0: CNI Plugins v1.5.0Compare Source
What's Changed
New Features:
Fixes:
New Contributors
Full Changelog: containernetworking/plugins@v1.4.1...v1.5.0
v1.4.1Compare Source
evanphx/json-patch (github.com/evanphx/json-patch)
v5.9.0+incompatibleCompare Source
v5.8.1+incompatibleCompare Source
v5.8.0+incompatibleCompare Source
go-openapi/errors (github.com/go-openapi/errors)
v0.22.0Compare Source
v0.21.1Compare Source
go-openapi/loads (github.com/go-openapi/loads)
v0.22.0Compare Source
v0.21.6Compare Source
go-openapi/runtime (github.com/go-openapi/runtime)
v0.28.0Compare Source
v0.27.2Compare Source
v0.27.1Compare Source
v0.27.0Compare Source
go-openapi/spec (github.com/go-openapi/spec)
v0.21.0Compare Source
v0.20.15Compare Source
go-openapi/strfmt (github.com/go-openapi/strfmt)
v0.23.0Compare Source
v0.22.2Compare Source
v0.22.1Compare Source
go-openapi/swag (github.com/go-openapi/swag)
v0.23.0Compare Source
v0.22.10Compare Source
v0.22.9Compare Source
v0.22.8Compare Source
go-openapi/validate (github.com/go-openapi/validate)
v0.24.0Compare Source
v0.23.2Compare Source
v0.23.1Compare Source
Configuration
📅 Schedule: Branch creation - "on monday" (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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate. View repository job log here.