Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading