From 0f7209f9fc3e1ab7b69c32004412fff89c847219 Mon Sep 17 00:00:00 2001 From: Jarrett Tierney Date: Thu, 11 Jul 2024 15:28:29 -0700 Subject: [PATCH 1/2] adjust github action to prevent failure on install --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index a3c9b92c5..5f482185a 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -22,6 +22,6 @@ jobs: labels: bottlerocket_ubuntu-latest_16-core steps: - uses: actions/checkout@v3 - - run: cargo install cargo-deny - - run: cargo install cargo-make + - run: cargo install --locked cargo-deny + - run: cargo install --locked cargo-make@0.37.12 - run: make build From 9d2782a72257316114409754827bbc163aea4e9e Mon Sep 17 00:00:00 2001 From: Jarrett Tierney Date: Thu, 11 Jul 2024 15:39:43 -0700 Subject: [PATCH 2/2] release v0.4.2 --- CHANGELOG.md | 26 +++++++++++++++++++++++++- Cargo.lock | 2 +- twoliter/Cargo.toml | 2 +- 3 files changed, 27 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index adcbac21c..14a1291c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -[unreleased]: https://github.com/bottlerocket-os/twoliter/compare/v0.4.1...HEAD +[unreleased]: https://github.com/bottlerocket-os/twoliter/compare/v0.4.2...HEAD + +## [0.4.2] - 2024-07-11 + +### Added + +- Add support for crane family of tools for publishing and fetching kits ([#305], [#317]) +- Add additional image feature flags ([#318]) + +### Changed + +- Update application inventory generation to accommodate kits ([#310]) +- Share file descriptors to the build container to speed up directory I/O ([#302]) +- Combine build and repack dockerfiles ([#302]) +- Move updater wave default schedules into pubsys ([#321]) +- Drop support for cgroup feature flags ([#318]) + +[#302]: https://github.com/bottlerocket-os/twoliter/pull/302 +[#305]: https://github.com/bottlerocket-os/twoliter/pull/305 +[#310]: https://github.com/bottlerocket-os/twoliter/pull/310 +[#317]: https://github.com/bottlerocket-os/twoliter/pull/317 +[#318]: https://github.com/bottlerocket-os/twoliter/pull/318 +[#321]: https://github.com/bottlerocket-os/twoliter/pull/321 + +[0.4.2]: https://github.com/bottlerocket-os/twoliter/compare/v0.4.1...v0.4.2 ## [0.4.1] - 2024-06-19 diff --git a/Cargo.lock b/Cargo.lock index d13aaa95d..ea776a50a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3832,7 +3832,7 @@ dependencies = [ [[package]] name = "twoliter" -version = "0.4.1" +version = "0.4.2" dependencies = [ "anyhow", "async-recursion", diff --git a/twoliter/Cargo.toml b/twoliter/Cargo.toml index 3c40fec44..766fdaac5 100644 --- a/twoliter/Cargo.toml +++ b/twoliter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "twoliter" -version = "0.4.1" +version = "0.4.2" edition = "2021" description = "A command line tool for creating custom builds of Bottlerocket" authors = ["Matthew James Briggs "]