Skip to content
Open
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
5 changes: 0 additions & 5 deletions .changeset/dev-ready-timeout.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/execution-sandbox.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/tool-approval-gating.md

This file was deleted.

12 changes: 12 additions & 0 deletions examples/chat/server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @dawn-example/chat-server

## 0.0.12

### Patch Changes

- Updated dependencies [9d115de]
- Updated dependencies [4ede7b8]
- Updated dependencies [1d51b75]
- @dawn-ai/cli@0.8.6
- @dawn-ai/core@0.8.6
- @dawn-ai/langchain@0.8.6
- @dawn-ai/sdk@0.8.6

## 0.0.11

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/chat/server/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@dawn-example/chat-server",
"private": true,
"version": "0.0.11",
"version": "0.0.12",
"type": "module",
"scripts": {
"dev": "node node_modules/@dawn-ai/cli/dist/index.js dev --port 3001",
Expand Down
24 changes: 24 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# @dawn-ai/cli

## 0.8.6

### Patch Changes

- 9d115de: `dawn dev` startup readiness timeout is now configurable via `DAWN_DEV_READY_TIMEOUT_MS` (default unchanged at 5s). Also de-flakes the dev-command disposal test that raced child startup against the readiness window in CI.
- 4ede7b8: Add an opt-in execution sandbox: a provider-agnostic `SandboxProvider` contract
with a Docker reference (`dockerSandbox`), giving each conversation thread a
hard-isolated workspace (filesystem + shell + network). Enable via
`dawn.config.ts` `sandbox: { provider: dockerSandbox({ image }) }`; without it,
behavior is unchanged. Adds a typed `config()` helper. When sandboxed, the
materialized agent cache is bypassed so tools bind per-thread. Honest scope:
Docker's boundary (not a microVM); `allow`-mode network denylist is best-effort
in the Docker reference. New package `@dawn-ai/sandbox` (+ `@dawn-ai/sandbox/testing`
`fakeSandbox` and a provider conformance kit).
- 1d51b75: Per-tool approval gating: `agent({ tools: { approve: ["deployProd"] } })` makes any named tool require a HITL permission prompt per call (`kind: "tool"` interrupt). Decisions persist name-level under the reserved `tool` key in `.dawn/permissions.json` (exact-name matching); pre-approve via `permissions.allow.tool`. `dawn check` validates `approve` names and warns on overlap with the internally-gated workspace tools, `deny`, and the unsupported `task` case.
- Updated dependencies [4ede7b8]
- Updated dependencies [1d51b75]
- @dawn-ai/core@0.8.6
- @dawn-ai/langchain@0.8.6
- @dawn-ai/permissions@0.8.6
- @dawn-ai/langgraph@0.8.6
- @dawn-ai/memory@0.8.6
- @dawn-ai/sqlite-storage@0.8.6

## 0.8.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dawn-ai/cli",
"version": "0.8.5",
"version": "0.8.6",
"private": false,
"type": "module",
"license": "MIT",
Expand Down
2 changes: 2 additions & 0 deletions packages/config-biome/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @dawn-ai/config-biome

## 0.8.6

## 0.8.5

## 0.8.4
Expand Down
2 changes: 1 addition & 1 deletion packages/config-biome/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dawn-ai/config-biome",
"version": "0.8.5",
"version": "0.8.6",
"private": false,
"type": "module",
"license": "MIT",
Expand Down
2 changes: 2 additions & 0 deletions packages/config-typescript/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @dawn-ai/config-typescript

## 0.8.6

## 0.8.5

## 0.8.4
Expand Down
2 changes: 1 addition & 1 deletion packages/config-typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dawn-ai/config-typescript",
"version": "0.8.5",
"version": "0.8.6",
"private": false,
"type": "module",
"license": "MIT",
Expand Down
21 changes: 21 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @dawn-ai/core

## 0.8.6

### Patch Changes

- 4ede7b8: Add an opt-in execution sandbox: a provider-agnostic `SandboxProvider` contract
with a Docker reference (`dockerSandbox`), giving each conversation thread a
hard-isolated workspace (filesystem + shell + network). Enable via
`dawn.config.ts` `sandbox: { provider: dockerSandbox({ image }) }`; without it,
behavior is unchanged. Adds a typed `config()` helper. When sandboxed, the
materialized agent cache is bypassed so tools bind per-thread. Honest scope:
Docker's boundary (not a microVM); `allow`-mode network denylist is best-effort
in the Docker reference. New package `@dawn-ai/sandbox` (+ `@dawn-ai/sandbox/testing`
`fakeSandbox` and a provider conformance kit).
- 1d51b75: Per-tool approval gating: `agent({ tools: { approve: ["deployProd"] } })` makes any named tool require a HITL permission prompt per call (`kind: "tool"` interrupt). Decisions persist name-level under the reserved `tool` key in `.dawn/permissions.json` (exact-name matching); pre-approve via `permissions.allow.tool`. `dawn check` validates `approve` names and warns on overlap with the internally-gated workspace tools, `deny`, and the unsupported `task` case.
- Updated dependencies [4ede7b8]
- Updated dependencies [1d51b75]
- @dawn-ai/workspace@0.8.6
- @dawn-ai/sdk@0.8.6
- @dawn-ai/permissions@0.8.6
- @dawn-ai/sqlite-storage@0.8.6

## 0.8.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dawn-ai/core",
"version": "0.8.5",
"version": "0.8.6",
"private": false,
"type": "module",
"license": "MIT",
Expand Down
6 changes: 6 additions & 0 deletions packages/create-dawn-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# create-dawn-ai-app

## 0.8.6

### Patch Changes

- @dawn-ai/devkit@0.8.6

## 0.8.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/create-dawn-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-dawn-ai-app",
"version": "0.8.5",
"version": "0.8.6",
"private": false,
"type": "module",
"license": "MIT",
Expand Down
2 changes: 2 additions & 0 deletions packages/devkit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @dawn-ai/devkit

## 0.8.6

## 0.8.5

## 0.8.4
Expand Down
2 changes: 1 addition & 1 deletion packages/devkit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dawn-ai/devkit",
"version": "0.8.5",
"version": "0.8.6",
"private": false,
"type": "module",
"license": "MIT",
Expand Down
6 changes: 6 additions & 0 deletions packages/evals/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @dawn-ai/evals

## 0.8.6

### Patch Changes

- @dawn-ai/testing@0.8.6

## 0.8.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/evals/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dawn-ai/evals",
"version": "0.8.5",
"version": "0.8.6",
"private": false,
"type": "module",
"license": "MIT",
Expand Down
19 changes: 19 additions & 0 deletions packages/langchain/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @dawn-ai/langchain

## 0.8.6

### Patch Changes

- 4ede7b8: Add an opt-in execution sandbox: a provider-agnostic `SandboxProvider` contract
with a Docker reference (`dockerSandbox`), giving each conversation thread a
hard-isolated workspace (filesystem + shell + network). Enable via
`dawn.config.ts` `sandbox: { provider: dockerSandbox({ image }) }`; without it,
behavior is unchanged. Adds a typed `config()` helper. When sandboxed, the
materialized agent cache is bypassed so tools bind per-thread. Honest scope:
Docker's boundary (not a microVM); `allow`-mode network denylist is best-effort
in the Docker reference. New package `@dawn-ai/sandbox` (+ `@dawn-ai/sandbox/testing`
`fakeSandbox` and a provider conformance kit).
- Updated dependencies [4ede7b8]
- Updated dependencies [1d51b75]
- @dawn-ai/workspace@0.8.6
- @dawn-ai/core@0.8.6
- @dawn-ai/sdk@0.8.6

## 0.8.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/langchain/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dawn-ai/langchain",
"version": "0.8.5",
"version": "0.8.6",
"private": false,
"type": "module",
"license": "MIT",
Expand Down
7 changes: 7 additions & 0 deletions packages/langgraph/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @dawn-ai/langgraph

## 0.8.6

### Patch Changes

- Updated dependencies [1d51b75]
- @dawn-ai/sdk@0.8.6

## 0.8.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/langgraph/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dawn-ai/langgraph",
"version": "0.8.5",
"version": "0.8.6",
"private": false,
"type": "module",
"license": "MIT",
Expand Down
6 changes: 6 additions & 0 deletions packages/memory/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @dawn-ai/memory

## 0.8.6

### Patch Changes

- @dawn-ai/sqlite-storage@0.8.6

## 0.8.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/memory/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dawn-ai/memory",
"version": "0.8.5",
"version": "0.8.6",
"private": false,
"type": "module",
"license": "MIT",
Expand Down
6 changes: 6 additions & 0 deletions packages/permissions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @dawn-ai/permissions

## 0.8.6

### Patch Changes

- 1d51b75: Per-tool approval gating: `agent({ tools: { approve: ["deployProd"] } })` makes any named tool require a HITL permission prompt per call (`kind: "tool"` interrupt). Decisions persist name-level under the reserved `tool` key in `.dawn/permissions.json` (exact-name matching); pre-approve via `permissions.allow.tool`. `dawn check` validates `approve` names and warns on overlap with the internally-gated workspace tools, `deny`, and the unsupported `task` case.

## 0.8.5

## 0.8.4
Expand Down
2 changes: 1 addition & 1 deletion packages/permissions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dawn-ai/permissions",
"version": "0.8.5",
"version": "0.8.6",
"private": false,
"type": "module",
"license": "MIT",
Expand Down
17 changes: 17 additions & 0 deletions packages/sandbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# @dawn-ai/sandbox

## 0.8.6

### Patch Changes

- 4ede7b8: Add an opt-in execution sandbox: a provider-agnostic `SandboxProvider` contract
with a Docker reference (`dockerSandbox`), giving each conversation thread a
hard-isolated workspace (filesystem + shell + network). Enable via
`dawn.config.ts` `sandbox: { provider: dockerSandbox({ image }) }`; without it,
behavior is unchanged. Adds a typed `config()` helper. When sandboxed, the
materialized agent cache is bypassed so tools bind per-thread. Honest scope:
Docker's boundary (not a microVM); `allow`-mode network denylist is best-effort
in the Docker reference. New package `@dawn-ai/sandbox` (+ `@dawn-ai/sandbox/testing`
`fakeSandbox` and a provider conformance kit).
- Updated dependencies [4ede7b8]
- @dawn-ai/workspace@0.8.6
2 changes: 1 addition & 1 deletion packages/sandbox/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dawn-ai/sandbox",
"version": "0.8.5",
"version": "0.8.6",
"private": false,
"type": "module",
"license": "MIT",
Expand Down
6 changes: 6 additions & 0 deletions packages/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @dawn-ai/sdk

## 0.8.6

### Patch Changes

- 1d51b75: Per-tool approval gating: `agent({ tools: { approve: ["deployProd"] } })` makes any named tool require a HITL permission prompt per call (`kind: "tool"` interrupt). Decisions persist name-level under the reserved `tool` key in `.dawn/permissions.json` (exact-name matching); pre-approve via `permissions.allow.tool`. `dawn check` validates `approve` names and warns on overlap with the internally-gated workspace tools, `deny`, and the unsupported `task` case.

## 0.8.5

## 0.8.4
Expand Down
2 changes: 1 addition & 1 deletion packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dawn-ai/sdk",
"version": "0.8.5",
"version": "0.8.6",
"private": false,
"type": "module",
"license": "MIT",
Expand Down
2 changes: 2 additions & 0 deletions packages/sqlite-storage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @dawn-ai/sqlite-storage

## 0.8.6

## 0.8.5

## 0.8.4
Expand Down
2 changes: 1 addition & 1 deletion packages/sqlite-storage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dawn-ai/sqlite-storage",
"version": "0.8.5",
"version": "0.8.6",
"private": false,
"type": "module",
"license": "MIT",
Expand Down
13 changes: 13 additions & 0 deletions packages/testing/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @dawn-ai/testing

## 0.8.6

### Patch Changes

- Updated dependencies [9d115de]
- Updated dependencies [4ede7b8]
- Updated dependencies [1d51b75]
- @dawn-ai/cli@0.8.6
- @dawn-ai/workspace@0.8.6
- @dawn-ai/core@0.8.6
- @dawn-ai/sdk@0.8.6
- @dawn-ai/memory@0.8.6

## 0.8.5

### Patch Changes
Expand Down
Loading