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

Release 1.2.0-rc.2 #4317

Merged
merged 2 commits into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
56 changes: 54 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,61 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed
## [1.2.0-rc.2] - 2024-06-26

> TRUE or FALSE, it's a problem!
### Important Notes

* libcontainer/cgroups users who want to manage cgroup devices need to explicitly
kolyshkin marked this conversation as resolved.
Show resolved Hide resolved
import libcontainer/cgroups/devices. (#3452, #4248)
* If building with Go 1.22.x, make sure to use 1.22.4 or a later version.
(see #4233 for more details)

### Added

* CI: add actuated-arm64. (#4142)

### Fixed

* cgroup v2: do not set swap to 0 or unlimited when it's not available. (#4188)
* Set the default value of CpuBurst to nil instead of 0. (#4210, #4211)
* runc exec: fix setting rlimit_nofile. (#4195, #4265, #4282, #4290)
Copy link
Contributor

Choose a reason for hiding this comment

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

This should not be here since it's also in v1.1.13 but it's too late to fix this. I will remove this line in the github release notes.

* libct/cg/fs: fix setting rt_period vs rt_runtime. (#4094, #4258)
Copy link
Contributor

Choose a reason for hiding this comment

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

Same here. Sorry I overlooked this.

* script/*: fix gpg usage wrt keyboxd. (#4189)
Copy link
Contributor

Choose a reason for hiding this comment

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

same here

* Fix a debug log message for user namespaces in nsexec. (#4311)
Copy link
Contributor

Choose a reason for hiding this comment

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

same here

* libct/cg: write unified resources line by line. (#4186)
* libct.Start: fix locking, do not allow a second container init. (#4271)
* Fix tests in debian testing (mount_sshfs.bats). (#4245)
* Fix checkpoint/restore tests on actuated-arm64. (#4276)
* Fix codespell warnings. (#4291)
* libct/cg/dev: fix TestSetV1Allow panic. (#4295)
* tests/int/scheduler: require smp. (#4298)

### Changed

* libcontainer: allow containers to make apps think fips is enabled/disabled for testing. (#4246)
Copy link
Contributor

Choose a reason for hiding this comment

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

same here, it's in 1.1.13.

* libct/cg/fs: don't write cpu_burst twice on ENOENT. (#4259)
* Allow overriding VERSION value in Makefile. (#4269)
* Make trimpath optional. (#3908)
* Remove unused system.Execv. (#4268)
* Stop blacklisting Go 1.22+, drop Go < 1.21 support, use Go 1.22 in CI. (#4292)
* Improve some error messages for runc exec. (#4320)
* ci/actuated: re-enable CRIU tests. (#4252)
* Vagrantfile.fedora: bump Fedora to 39. (#4256)
* ci/gha: bump golangci-lint[-action]. (#4255)
* tests/int/tty: increase the timeout. (#4260)
* [ci] use go mod instead of go get in spec.bats. (#4264)
* tests/int/checkpoint: rm double logging. (#4251)
* ci/gha: bump golangci-lint-action from 5 to 6. (#4275)
* .cirrus.yml: rm FIXME from rootless fs on CentOS 7. (#4279)
* vendor: golang.org/x/[email protected]. (#4280)
* Dockerfile: bump Debian to 12, Go to 1.21. (#4296)
* ci: pin codespell. (#4301)
* ci: workaround for centos stream 8 being EOLed. (#4304)
* ci/cirrus: rm centos stream 8. (#4307)
* ci/gha: switch to ubuntu 24.04. (#4286)
* Vagrantfile.fedora: bump to F40. (#4285)

## [1.2.0-rc.1] - 2024-04-03

Expand Down Expand Up @@ -708,7 +759,7 @@ implementation (libcontainer) is *not* covered by this policy.
cgroups at all during `runc update`). (#2994)

<!-- minor releases -->
[Unreleased]: https://github.com/opencontainers/runc/compare/v1.2.0-rc.1...HEAD
[Unreleased]: https://github.com/opencontainers/runc/compare/v1.2.0-rc.2...HEAD
[1.1.0]: https://github.com/opencontainers/runc/compare/v1.1.0-rc.1...v1.1.0
[1.0.0]: https://github.com/opencontainers/runc/releases/tag/v1.0.0

Expand Down Expand Up @@ -736,4 +787,5 @@ implementation (libcontainer) is *not* covered by this policy.
[1.1.0-rc.1]: https://github.com/opencontainers/runc/compare/v1.0.0...v1.1.0-rc.1

<!-- 1.2.z patch releases -->
[1.2.0-rc.2]: https://github.com/opencontainers/runc/compare/v1.2.0-rc.1...v1.2.0-rc.2
[1.2.0-rc.1]: https://github.com/opencontainers/runc/compare/v1.1.0...v1.2.0-rc.1
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.0-rc.1+dev
1.2.0-rc.2
Loading