Skip to content

build(deps): bump github.com/containerd/go-runc from 1.1.0 to 1.2.1 in the containerd group - #284

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/containerd-eb997aca92
Open

build(deps): bump github.com/containerd/go-runc from 1.1.0 to 1.2.1 in the containerd group#284
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/containerd-eb997aca92

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 31, 2026

Copy link
Copy Markdown
Contributor

Bumps the containerd group with 1 update: github.com/containerd/go-runc.

Updates github.com/containerd/go-runc from 1.1.0 to 1.2.1

Release notes

Sourced from github.com/containerd/go-runc's releases.

v1.2.1

What's Changed

Full Changelog: containerd/go-runc@v1.2.0...v1.2.1

v1.2.0

What's Changed

New Contributors

Full Changelog: containerd/go-runc@v1.1.0...v1.2.0

Commits
  • 6836456 Merge pull request #119 from thaJeztah/bump_console
  • d6ff02d chore(deps): update containerd/console to v1.0.5
  • 7c051b9 Merge pull request #117 from thaJeztah/fix_darwin
  • 1cc101f Merge pull request #122 from thaJeztah/update_readme
  • 2501485 Merge pull request #120 from thaJeztah/update_ci
  • c08ca30 README: cleanup and fix links
  • 2df5488 io: skip chowning pipes on non-Linux platforms
  • 834598e Merge pull request #118 from thaJeztah/deprecate_ErrParseRuncVersion
  • 87f213c ci: test against oldest (go.mod), oldstable, and stable Go versions
  • 1ef7086 ci: remove custom working-directories and GOPATH
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the containerd group with 1 update: [github.com/containerd/go-runc](https://github.com/containerd/go-runc).


Updates `github.com/containerd/go-runc` from 1.1.0 to 1.2.1
- [Release notes](https://github.com/containerd/go-runc/releases)
- [Commits](containerd/go-runc@v1.1.0...v1.2.1)

---
updated-dependencies:
- dependency-name: github.com/containerd/go-runc
  dependency-version: 1.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: containerd
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Aug 31, 2026
Copilot AI lite review requested due to automatic review settings August 31, 2026 15:45
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Aug 31, 2026

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Pull request overview

Updates the vendored github.com/containerd/go-runc dependency to v1.2.1, bringing in upstream changes to runc invocation options (pidfd socket support, per-invocation logging, extra env injection, and working-directory support) and aligning vendored sources/modules metadata with the new version.

Changes:

  • Bump github.com/containerd/go-runc from v1.1.0 to v1.2.1 (go.mod, go.sum, vendor/modules.txt).
  • Vendor new/updated go-runc implementation files (pidfd socket + unix socket refactor, per-invocation log file handling, extra env support).
  • Update go-runc stats/types to include network interface stats and other upstream adjustments.

Reviewed changes

Copilot reviewed 1 out of 17 changed files in this pull request and generated no comments.

Show a summary per file
File Description
go.mod Bumps github.com/containerd/go-runc to v1.2.1.
go.sum Updates sums for github.com/containerd/go-runc v1.2.1.
vendor/modules.txt Updates vendored module metadata for go-runc v1.2.1 (incl. go version note).
vendor/github.com/containerd/go-runc/runc.go Adds WorkDir, pidfd socket support, per-exec log file handling, and version parsing adjustments.
vendor/github.com/containerd/go-runc/command_linux.go Adds per-invocation log-file wiring, extra env support, and WorkDir propagation on linux.
vendor/github.com/containerd/go-runc/command_other.go Adds per-invocation log-file wiring, extra env support, and WorkDir propagation on non-linux.
vendor/github.com/containerd/go-runc/env.go Introduces WithExtraEnv context helper for runc invocations.
vendor/github.com/containerd/go-runc/socket.go New unix-socket helper used by console/pidfd sockets (non-windows).
vendor/github.com/containerd/go-runc/console.go Refactors console socket creation/receive to use shared socket implementation (non-windows).
vendor/github.com/containerd/go-runc/pidfd.go Adds pidfd socket helpers + ReceivePidfd (non-windows).
vendor/github.com/containerd/go-runc/io_unix.go Refactors pipe ownership changes to use chownPipe helper (non-windows).
vendor/github.com/containerd/go-runc/io_linux.go Adds linux implementation of chownPipe.
vendor/github.com/containerd/go-runc/io_nolinux.go Adds non-linux no-op implementation of chownPipe.
vendor/github.com/containerd/go-runc/events.go Updates Stats shape and adds NetworkInterface type.
vendor/github.com/containerd/go-runc/monitor.go Minor signature tweak to avoid unused parameter.
vendor/github.com/containerd/go-runc/README.md Upstream README cleanup and link updates.
vendor/github.com/containerd/go-runc/.golangci.yml Upstream linter configuration changes (vendored).

💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant