Skip to content

Commit 616c30d

Browse files
Version Packages (#25)
1 parent 02330b6 commit 616c30d

9 files changed

Lines changed: 52 additions & 17 deletions

File tree

.changeset/runtime-boundaries.md

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

packages/core/CHANGELOG.md

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

3+
## 0.5.0
4+
5+
### Minor Changes
6+
7+
- 02330b6: Simplify pre-1.0 runtime boundaries. `@execbox/core/runtime` replaces the unsupported `@execbox/core/_internal` subpath and now owns executor-author helpers such as runtime option resolution, manifest dispatch, code normalization, timeout helpers, log formatting, and error normalization. The main `@execbox/core` entrypoint is now focused on app-facing provider, executor, result, error, and typegen APIs.
8+
9+
Move the QuickJS remote runner endpoint to `@execbox/quickjs/remote-endpoint` and remove the hidden `@execbox/quickjs` dependency from `@execbox/remote`. Remote transports now expose only `RemoteExecutor`, `RemoteRunnerPort`, and transport contracts from `@execbox/remote`.
10+
311
## 0.4.1
412

513
### Patch Changes

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": "@execbox/core",
3-
"version": "0.4.1",
3+
"version": "0.5.0",
44
"description": "Core execution contract, provider resolution, and MCP adapters.",
55
"license": "MIT",
66
"type": "module",

packages/isolated-vm/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# @execbox/isolated-vm
22

3+
## 0.1.5
4+
5+
### Patch Changes
6+
7+
- 02330b6: Simplify pre-1.0 runtime boundaries. `@execbox/core/runtime` replaces the unsupported `@execbox/core/_internal` subpath and now owns executor-author helpers such as runtime option resolution, manifest dispatch, code normalization, timeout helpers, log formatting, and error normalization. The main `@execbox/core` entrypoint is now focused on app-facing provider, executor, result, error, and typegen APIs.
8+
9+
Move the QuickJS remote runner endpoint to `@execbox/quickjs/remote-endpoint` and remove the hidden `@execbox/quickjs` dependency from `@execbox/remote`. Remote transports now expose only `RemoteExecutor`, `RemoteRunnerPort`, and transport contracts from `@execbox/remote`.
10+
11+
- Updated dependencies [02330b6]
12+
- @execbox/core@0.5.0
13+
314
## 0.1.4
415

516
### Patch Changes

packages/isolated-vm/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@execbox/isolated-vm",
3-
"version": "0.1.4",
3+
"version": "0.1.5",
44
"description": "isolated-vm executor for the execbox core package.",
55
"license": "MIT",
66
"type": "module",
@@ -52,7 +52,7 @@
5252
"homepage": "https://github.com/aallam/execbox/tree/main/packages/isolated-vm#readme",
5353
"bugs": "https://github.com/aallam/execbox/issues",
5454
"dependencies": {
55-
"@execbox/core": "^0.4.0"
55+
"@execbox/core": "^0.5.0"
5656
},
5757
"optionalDependencies": {
5858
"isolated-vm": "^6.0.1"

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.5.0
4+
5+
### Minor Changes
6+
7+
- 02330b6: Simplify pre-1.0 runtime boundaries. `@execbox/core/runtime` replaces the unsupported `@execbox/core/_internal` subpath and now owns executor-author helpers such as runtime option resolution, manifest dispatch, code normalization, timeout helpers, log formatting, and error normalization. The main `@execbox/core` entrypoint is now focused on app-facing provider, executor, result, error, and typegen APIs.
8+
9+
Move the QuickJS remote runner endpoint to `@execbox/quickjs/remote-endpoint` and remove the hidden `@execbox/quickjs` dependency from `@execbox/remote`. Remote transports now expose only `RemoteExecutor`, `RemoteRunnerPort`, and transport contracts from `@execbox/remote`.
10+
11+
### Patch Changes
12+
13+
- Updated dependencies [02330b6]
14+
- @execbox/core@0.5.0
15+
316
## 0.4.0
417

518
### Minor 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.4.0",
3+
"version": "0.5.0",
44
"description": "QuickJS executor for the execbox core package across inline, worker, and process hosts.",
55
"license": "MIT",
66
"type": "module",
@@ -72,7 +72,7 @@
7272
"homepage": "https://github.com/aallam/execbox/tree/main/packages/quickjs#readme",
7373
"bugs": "https://github.com/aallam/execbox/issues",
7474
"dependencies": {
75-
"@execbox/core": "^0.4.0",
75+
"@execbox/core": "^0.5.0",
7676
"quickjs-emscripten": "^0.31.0"
7777
}
7878
}

packages/remote/CHANGELOG.md

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

3+
## 0.3.0
4+
5+
### Minor Changes
6+
7+
- 02330b6: Simplify pre-1.0 runtime boundaries. `@execbox/core/runtime` replaces the unsupported `@execbox/core/_internal` subpath and now owns executor-author helpers such as runtime option resolution, manifest dispatch, code normalization, timeout helpers, log formatting, and error normalization. The main `@execbox/core` entrypoint is now focused on app-facing provider, executor, result, error, and typegen APIs.
8+
9+
Move the QuickJS remote runner endpoint to `@execbox/quickjs/remote-endpoint` and remove the hidden `@execbox/quickjs` dependency from `@execbox/remote`. Remote transports now expose only `RemoteExecutor`, `RemoteRunnerPort`, and transport contracts from `@execbox/remote`.
10+
11+
### Patch Changes
12+
13+
- Updated dependencies [02330b6]
14+
- @execbox/core@0.5.0
15+
316
## 0.2.0
417

518
### Minor Changes

packages/remote/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@execbox/remote",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "Transport-backed remote executor for the execbox core package.",
55
"license": "MIT",
66
"type": "module",
@@ -44,6 +44,6 @@
4444
"homepage": "https://github.com/aallam/execbox/tree/main/packages/remote#readme",
4545
"bugs": "https://github.com/aallam/execbox/issues",
4646
"dependencies": {
47-
"@execbox/core": "^0.4.0"
47+
"@execbox/core": "^0.5.0"
4848
}
4949
}

0 commit comments

Comments
 (0)