Skip to content

Commit 883d136

Browse files
committed
Release 0.3.6
1 parent 6da9948 commit 883d136

12 files changed

Lines changed: 35 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.3.6] - 2026-04-12
11+
12+
Web UI workflow experience improvements, CWD environment leak protection, and bug fixes.
13+
14+
### Added
15+
16+
- Workflow result card now shows status, duration, node count, and artifact links in chat (#1015)
17+
- Loop iteration progress display in the workflow execution view (#1014)
18+
- Artifact file paths in chat messages are now clickable (#1023)
19+
20+
### Changed
21+
22+
- CWD `.env` variables are now stripped from AI subprocess environments at the `@archon/paths` layer, replacing the old `SUBPROCESS_ENV_ALLOWLIST` approach. Prevents accidental credential leaks from target repo `.env` files (#1067, #1030, #1098, #1070)
23+
- Update check cache TTL reduced from 24 hours to 1 hour
24+
25+
### Fixed
26+
27+
- Duplicate text and tool calls appearing in workflow execution view
28+
- `workflow_step` SSE events not handled correctly, causing missing progress updates
29+
- Nested interactive elements in workflow UI causing React warnings
30+
- Workflow status messages not splitting correctly in WorkflowLogs
31+
- Incorrect `remainingMessage` suppression in stream mode causing lost output
32+
- Binary builds now use `BUNDLED_VERSION` for the app version instead of reading `package.json`
33+
1034
## [0.3.5] - 2026-04-10
1135

1236
Fixes for `archon serve` process lifecycle and static file serving.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "archon",
3-
"version": "0.3.5",
3+
"version": "0.3.6",
44
"private": true,
55
"workspaces": [
66
"packages/*"

packages/adapters/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@archon/adapters",
3-
"version": "0.3.5",
3+
"version": "0.3.6",
44
"type": "module",
55
"main": "./src/index.ts",
66
"types": "./src/index.ts",

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@archon/cli",
3-
"version": "0.3.5",
3+
"version": "0.3.6",
44
"type": "module",
55
"main": "./src/cli.ts",
66
"bin": {

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@archon/core",
3-
"version": "0.3.5",
3+
"version": "0.3.6",
44
"type": "module",
55
"main": "./src/index.ts",
66
"types": "./src/index.ts",

packages/docs-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@archon/docs-web",
3-
"version": "0.3.5",
3+
"version": "0.3.6",
44
"private": true,
55
"scripts": {
66
"dev": "astro dev",

packages/git/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@archon/git",
3-
"version": "0.3.5",
3+
"version": "0.3.6",
44
"type": "module",
55
"main": "./src/index.ts",
66
"types": "./src/index.ts",

packages/isolation/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@archon/isolation",
3-
"version": "0.3.5",
3+
"version": "0.3.6",
44
"type": "module",
55
"main": "./src/index.ts",
66
"types": "./src/index.ts",

packages/paths/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@archon/paths",
3-
"version": "0.3.5",
3+
"version": "0.3.6",
44
"type": "module",
55
"main": "./src/index.ts",
66
"types": "./src/index.ts",

packages/server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@archon/server",
3-
"version": "0.3.5",
3+
"version": "0.3.6",
44
"type": "module",
55
"main": "./src/index.ts",
66
"scripts": {

0 commit comments

Comments
 (0)