From 0c20a19b888ae89f9db6cbe46d3b835fe4503d60 Mon Sep 17 00:00:00 2001 From: "edera-cultivation[bot]" <165992271+edera-cultivation[bot]@users.noreply.github.com> Date: Fri, 17 Jul 2026 22:19:14 +0000 Subject: [PATCH] chore: release v0.4.1 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 380277a..5b6c95e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.1](https://github.com/edera-dev/styrolite/compare/v0.4.0...v0.4.1) - 2026-07-17 + +### Added + +- *(apparmor)* add support for optionally specifying a loaded apparmor profile to use for a process + +### Fixed + +- *(build)* enable tokio process feature for the async feature +- *(styrojail)* clarify the unreachable post-exec error +- *(styrolite)* replace entrypoint panics with actionable errors +- *(mount)* return an error on invalid mount data instead of panicking +- *(mount)* include errno in pivot_root and umount failures +- *(runner)* surface how the styrolite runner failed +- *(caps)* include errno in capget and capset failures +- *(wrap)* return an error when no executable is configured +- *(wrap)* report errno and reject invalid hostnames +- *(wrap)* include errno when setting resource limits fails +- *(exec)* report errno and hints when execvpe fails + +### Other + +- run cargo fmt + ## [0.4.0](https://github.com/edera-dev/styrolite/compare/v0.3.3...v0.4.0) - 2026-07-07 ### Added diff --git a/Cargo.lock b/Cargo.lock index e41f7e2..53c79bd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -483,7 +483,7 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" [[package]] name = "styrolite" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 382a31a..c339211 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "styrolite" description = "Lightweight, programmatic sandboxing tool" license = "Apache-2.0" -version = "0.4.0" +version = "0.4.1" homepage = "https://github.com/edera-dev/styrolite" repository = "https://github.com/edera-dev/styrolite" edition = "2024"