Skip to content

Commit 94f1dd0

Browse files
committed
Release 0.2.0
1 parent fe9a390 commit 94f1dd0

3 files changed

Lines changed: 19 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.2.0] - 2026-03-18
9+
10+
### Added
11+
12+
- **Filesystem capabilities**: grant WASM components filesystem access via `--allow-dir guest:host` (directory mode) or `--allow-fs` (full access). Components declare `wasi:filesystem` capability; host warns if not granted.
13+
- **Config file support**: load settings from `~/.config/act/config.toml` with named profiles (`--profile`), filesystem policies, and metadata injection. Override config path with `--config`.
14+
- **`std:fs:mount-root` support**: components declare their preferred guest mount point; host adjusts directory mappings accordingly.
15+
- **Profile metadata merging**: profile metadata merges with per-request metadata (CLI > profile > defaults).
16+
17+
### Changed
18+
19+
- `create_store()` now accepts filesystem configuration for WASI preopened directories.
20+
- HTTP handlers merge base metadata (from profile/CLI) with per-request metadata.
21+
- Switched `act-types` to path dependency for development.
22+
23+
[0.2.0]: https://github.com/actcore/act-cli/compare/0.1.0..0.2.0
24+
825
## [0.1.0] - 2026-03-15
926

1027
Initial release of the ACT CLI host — loads WebAssembly components and exposes them via HTTP, MCP, and CLI.

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "act-cli"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2024"
55
description = "CLI host for ACT (Agent Component Tools) WebAssembly components"
66
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)