Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ require (
github.com/cloudflare/cbpfc v0.0.0-20260219140841-0661ad29132c
github.com/cloudfoundry-community/go-cfclient/v2 v2.0.1-0.20230503155151-3d15366c5820
github.com/containerd/cgroups/v3 v3.1.3
github.com/containerd/containerd v1.7.32
github.com/containerd/containerd/api v1.9.0
github.com/containerd/containerd/v2 v2.3.1
github.com/containerd/errdefs v1.0.0
github.com/containerd/typeurl/v2 v2.2.3
github.com/containernetworking/cni v1.2.3
Expand Down Expand Up @@ -533,7 +533,7 @@ require (
github.com/containerd/log v0.1.0 // indirect
github.com/containerd/platforms v1.0.0-rc.1 // indirect
github.com/containerd/ttrpc v1.2.7 // indirect
github.com/containernetworking/plugins v1.4.1 // indirect
github.com/containernetworking/plugins v1.5.1 // indirect
github.com/dennwc/varint v1.0.0 // indirect
github.com/dgryski/go-jump v0.0.0-20211018200510-ba001c3ffce0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
Expand Down Expand Up @@ -956,6 +956,7 @@ require (
github.com/aws/aws-sdk-go-v2/service/ssm v1.68.5
github.com/aymerick/raymond v2.0.2+incompatible
github.com/bazelbuild/rules_go v0.60.0
github.com/containerd/containerd v1.7.30
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Avoid downgrading the v1 containerd module

The repo still has production imports of the old module path, e.g. comp/core/workloadmeta/collectors/internal/containerd and pkg/util/containerd import github.com/containerd/containerd/..., not /v2, so this added direct requirement makes those users resolve to v1.7.30 after the previous v1.7.32 requirement was removed. That silently drops the last two v1.7.x patch releases for existing containerd integrations instead of upgrading them; keep the v1 requirement at least at v1.7.32 unless all old-path imports are migrated.

Useful? React with 👍 / 👎.

github.com/creack/pty v1.1.24
github.com/go-jose/go-jose/v4 v4.1.4
github.com/hashicorp/vault v1.21.4
Expand Down
4 changes: 4 additions & 0 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading