Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump github.com/opencontainers/runc from 1.0.0-rc95 to 1.0.0 #2

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jul 2, 2021

Bumps github.com/opencontainers/runc from 1.0.0-rc95 to 1.0.0.

Release notes

Sourced from github.com/opencontainers/runc's releases.

runc 1.0 -- "A wizard is never late, nor is he early, he arrives precisely when he means to."

This release has quite a few last-minute bug-fixes and various correctness and performance improvements (almost all of which are related to cgroup handling), and is the first non-rc release of runc in 5 years (v1.0.0-rc1 was released in 2016). It's been a very long road, and we thank the many contributors and maintainers that helped us get to this point (approximately 422 people in total).

As runc follows Semantic Versioning, we will endeavor to not make any breaking changes without bumping the major version number of runc.

However, it should be noted that Go API usage of runc's internal implementation (libcontainer) is not covered by this policy -- for historical reasons, this code was not moved into an "internal" package (this feature did not exist in Go at the time) and because certain projects currently depend on this, we have not yet moved this code into an internal package. Despite this, we reserve the right to make breaking changes in our Go APIs (though we will note such changes in our changelog, and will try to avoid needless disruption if possible).

Breaking changes:

  • Removed libcontainer/configs.Device* identifiers (deprecated since rc94, use libcontainer/devices) (#2999)
  • Removed libcontainer/system.RunningInUserNS function (deprecated since rc94, use libcontainer/userns) (#2999)

Deprecations:

  • The usage of relative paths for mountpoints will now produce a warning (such configurations are outside of the spec, and in future runc will produce an error when given such configurations). (#2917, #3004)

Bugfixes:

  • cgroupv2: devices: rework the filter generation to produce consistent results with cgroupv1, and always clobber any existing eBPF program(s) to fix runc update and avoid leaking eBPF programs (resulting in errors when managing containers). (#2951)
  • cgroupv2: correctly convert "number of IOs" statistics in a cgroupv1-compatible way. (#2965, #2967, #2968, #2964)
  • cgroupv2: support larger than 32-bit IO statistics on 32-bit architectures.
  • cgroupv2: wait for freeze to finish before returning from the freezing code, optimize the method for checking whether a cgroup is frozen. (#2955)
  • cgroups/systemd: fixed "retry on dbus disconnect" logic introduced in rc94
  • cgroups/systemd: fixed returning "unit already exists" error from a systemd cgroup manager (regression in rc94) (#2997, #2996)

Improvements:

... (truncated)

Commits
  • 84113ee VERSION: release runc 1.0.0
  • 47d37b3 merge branch 'pr-3022'
  • 2916817 tests/int/cgroups: add test for bfq per-device weight
  • 1036f3f libct/cg/fs2: set per-device io weight if available
  • 30d83d4 libct/cg/fs/blkio: do not set weight == 0
  • f093cca Merge pull request #3024 from kolyshkin/fscommon-mv
  • 8726c70 Merge pull request #3017 from wzshiming/fix/setenv
  • c4359f8 Merge pull request #3005 from adrianreber/2021-06-07-lsm-profile
  • d7fc302 libct/cg/fs*: mark {Open,Read,Write}File as deprecated
  • 8f1b4d4 libct/cg: mv fscommon.{Open,Read,Write}File to cgroups
  • 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [github.com/opencontainers/runc](https://github.com/opencontainers/runc) from 1.0.0-rc95 to 1.0.0.
- [Release notes](https://github.com/opencontainers/runc/releases)
- [Commits](opencontainers/runc@v1.0.0-rc95...v1.0.0)

---
updated-dependencies:
- dependency-name: github.com/opencontainers/runc
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 2, 2021
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Jul 16, 2021

Superseded by #10.

@dependabot dependabot bot closed this Jul 16, 2021
@dependabot dependabot bot deleted the dependabot/go_modules/github.com/opencontainers/runc-1.0.0 branch July 16, 2021 15:28
Luap99 added a commit that referenced this pull request Nov 8, 2022
The PR containers#1226 was merged to soon, it breaks podman tests and backwards
compat. `{{json}}` is not a valid template but it worked before the same
as `json` so we should keep that.

Fixes up commit 152c840

Signed-off-by: Paul Holzinger <[email protected]>
Luap99 added a commit that referenced this pull request Nov 8, 2022
The PR containers#1226 was merged to soon, it breaks podman tests and backwards
compat. `{{json}}` and `{{json.}}` are not valid templates but it worked
before the same as `json` so we should keep that for compat reasons.

Fixes up commit 152c840

Signed-off-by: Paul Holzinger <[email protected]>
Luap99 pushed a commit that referenced this pull request Dec 5, 2022
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants