Skip to content

Commit e23449d

Browse files
chore: version packages
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 148303a commit e23449d

7 files changed

Lines changed: 35 additions & 14 deletions

File tree

.changeset/quickjs-surface-consolidation.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

packages/protocol/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @execbox/protocol
22

3+
## 0.3.0
4+
5+
### Minor Changes
6+
7+
- 148303a: `@execbox/quickjs` now covers inline, worker-hosted, and process-hosted QuickJS execution through `new QuickJsExecutor({ host })`. Migrate `@execbox/process` usage to `new QuickJsExecutor({ host: "process" })` and `@execbox/worker` usage to `new QuickJsExecutor({ host: "worker" })`.
8+
9+
`@execbox/protocol` no longer re-exports `createToolCallDispatcher` or `extractProviderManifests`. Import those helpers from `@execbox/core` instead.
10+
311
## 0.2.1
412

513
### Patch Changes

packages/protocol/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@execbox/protocol",
3-
"version": "0.2.1",
3+
"version": "0.3.0",
44
"description": "Transport-safe protocol and host-session helpers for execbox runtimes.",
55
"license": "MIT",
66
"type": "module",

packages/quickjs/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# @execbox/quickjs
22

3+
## 0.3.0
4+
5+
### Minor Changes
6+
7+
- 148303a: `@execbox/quickjs` now covers inline, worker-hosted, and process-hosted QuickJS execution through `new QuickJsExecutor({ host })`. Migrate `@execbox/process` usage to `new QuickJsExecutor({ host: "process" })` and `@execbox/worker` usage to `new QuickJsExecutor({ host: "worker" })`.
8+
9+
`@execbox/protocol` no longer re-exports `createToolCallDispatcher` or `extractProviderManifests`. Import those helpers from `@execbox/core` instead.
10+
11+
### Patch Changes
12+
13+
- Updated dependencies [148303a]
14+
- @execbox/protocol@0.3.0
15+
316
## 0.2.1
417

518
### Patch Changes

packages/quickjs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@execbox/quickjs",
3-
"version": "0.2.1",
3+
"version": "0.3.0",
44
"description": "QuickJS executor for the execbox core package across inline, worker, and process hosts.",
55
"license": "MIT",
66
"type": "module",
@@ -64,7 +64,7 @@
6464
"bugs": "https://github.com/aallam/execbox/issues",
6565
"dependencies": {
6666
"@execbox/core": "^0.3.1",
67-
"@execbox/protocol": "^0.2.1",
67+
"@execbox/protocol": "^0.3.0",
6868
"quickjs-emscripten": "^0.31.0"
6969
}
7070
}

packages/remote/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @execbox/remote
22

3+
## 0.1.5
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [148303a]
8+
- @execbox/quickjs@0.3.0
9+
- @execbox/protocol@0.3.0
10+
311
## 0.1.4
412

513
### Patch Changes

packages/remote/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@execbox/remote",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"description": "Transport-backed remote executor for the execbox core package.",
55
"license": "MIT",
66
"type": "module",
@@ -45,7 +45,7 @@
4545
"bugs": "https://github.com/aallam/execbox/issues",
4646
"dependencies": {
4747
"@execbox/core": "^0.3.1",
48-
"@execbox/protocol": "^0.2.1",
49-
"@execbox/quickjs": "^0.2.1"
48+
"@execbox/protocol": "^0.3.0",
49+
"@execbox/quickjs": "^0.3.0"
5050
}
5151
}

0 commit comments

Comments
 (0)