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
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# Unreleased


# 0.2.0 (2026-06-22)

## Features
- Config: interpolate host environment variables (`$VAR` / `${VAR}`, `$$` for a
- Config: Interpolate host environment variables (`$VAR` / `${VAR}`, `$$` for a
literal `$`) into any config string value. Enables e.g. mounting `$PWD`.
- Config: simplified the `env` schema. Removed `fromHost`; an env var is now a
- Config: Simplified the `env` schema. Removed `fromHost`; an env var is now a
literal string (`$VAR`-interpolated) or an object
`{ value?, secret?, injectForHosts? }`, where an omitted `value` reads the
host var named like the key. Secrets use `injectForHosts` (was `hosts`).
- Config: Expose QEMU settings as config options.
- Add `/docs` folder with preliminary documentation.


## Bug fixes
Expand All @@ -17,6 +22,12 @@
(`.tuor/.state`), which holds internal overlay data rather than user content.
Persisted overlays can contain dangling symlinks there, so this is also what
triggered the crash above on subsequent starts. The state dir is now skipped.
- Bump undici version to fix upstream CVE.


## Internal
- Release automation: Add `prepare-release.ts` and set up GitHub Actions
workflow to release & publish.


# 0.1.0 (2026-06-15)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tuor-sandbox",
"version": "0.1.0",
"version": "0.2.0",
"author": "codethief <git@codethief.eu>",
"license": "Apache-2.0",
"type": "module",
Expand Down