Skip to content

Commit fd151cf

Browse files
committed
Version Packages
1 parent 9fd342e commit fd151cf

62 files changed

Lines changed: 324 additions & 78 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/desktop-titlebar-polish.md

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

.changeset/selfhost-update-card-version.md

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

.changeset/windows-migration-handle-release.md

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

apps/cli/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# executor
22

3+
## 1.5.24
4+
5+
### Patch Changes
6+
7+
- [#1207](https://github.com/RhysSullivan/executor/pull/1207) [`c8d9b9d`](https://github.com/RhysSullivan/executor/commit/c8d9b9df2a463da800233a8735b309db2e333d50) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - Polish the app's title bar. The release tag beside the `executor` wordmark is now quiet muted-mono metadata instead of a filled pill, matching the registry-minimal design language, and the wordmark is shared across the desktop and dashboard shells so the brand reads identically everywhere. The macOS traffic-light offset is also applied to the mobile sidebar overlay and the collapsed top bar, so the native window controls never sit on top of the wordmark when the window is narrow.
8+
9+
- [#1204](https://github.com/RhysSullivan/executor/pull/1204) [`9394217`](https://github.com/RhysSullivan/executor/commit/939421733830c78c0be8e7a4c65ea9a7c143abfb) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - Fix the self-host and Cloudflare web dashboards showing "update available" even on the latest version. The builds baked a placeholder version (`0.0.0-selfhost` / `0.0.0-cloudflare`) into the shell, so the update check always compared as behind. They now bake the real release version, and the sidebar footer shows the running version so you can see what you are on.
10+
11+
- [#1209](https://github.com/RhysSullivan/executor/pull/1209) [`ffa4f70`](https://github.com/RhysSullivan/executor/commit/ffa4f700fdba4e3c525f58bbfb0e8355946e29cb) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - Fix the desktop and CLI daemon crashing on first launch on Windows when a v1 local database is present. The v1 to v2 data migration performed file operations (fsync, rename, remove) on libSQL SQLite files whose native OS handles linger after close() on Windows, surfacing as a fatal "Unknown error" (EPERM on fsync of a read-only handle, EBUSY on rename/remove of just-closed files). POSIX is unaffected, so this only reproduced on Windows. The migration now opens files read-write for fsync (treating it as best-effort), retries removes the same way renames were already retried, and forces a GC pass on each retry so libSQL's native finalizer releases the handle before the next attempt. Fixes the v1.5.23 Windows startup regression.
12+
13+
- Updated dependencies []:
14+
- @executor-js/sdk@1.5.24
15+
- @executor-js/runtime-quickjs@1.5.24
16+
- @executor-js/local@1.4.4
17+
- @executor-js/api@1.4.44
18+
319
## 1.5.23
420

521
### Patch Changes

apps/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "executor",
3-
"version": "1.5.23",
3+
"version": "1.5.24",
44
"private": true,
55
"bin": {
66
"executor": "./bin/executor.ts"

apps/cloud/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# @executor-js/cloud
22

3+
## 1.4.42
4+
5+
### Patch Changes
6+
7+
- Updated dependencies []:
8+
- @executor-js/sdk@1.5.24
9+
- @executor-js/runtime-quickjs@1.5.24
10+
- @executor-js/execution@1.5.24
11+
- @executor-js/plugin-graphql@1.5.24
12+
- @executor-js/plugin-mcp@1.5.24
13+
- @executor-js/plugin-openapi@1.5.24
14+
- @executor-js/api@1.4.44
15+
- @executor-js/vite-plugin@0.0.41
16+
- @executor-js/cloudflare@0.0.23
17+
- @executor-js/host-mcp@1.4.4
18+
- @executor-js/runtime-dynamic-worker@1.4.4
19+
- @executor-js/plugin-google@1.5.23
20+
- @executor-js/plugin-microsoft@1.5.23
21+
- @executor-js/plugin-toolkits@1.5.16
22+
- @executor-js/plugin-workos-vault@0.0.2
23+
- @executor-js/react@1.4.44
24+
325
## 1.4.41
426

527
### Patch Changes

apps/cloud/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@executor-js/cloud",
3-
"version": "1.4.41",
3+
"version": "1.4.42",
44
"private": true,
55
"type": "module",
66
"scripts": {

apps/desktop/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @executor-js/desktop
22

3+
## 1.5.24
4+
35
## 1.5.23
46

57
### Patch Changes

apps/desktop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@executor-js/desktop",
3-
"version": "1.5.23",
3+
"version": "1.5.24",
44
"private": true,
55
"homepage": "https://github.com/RhysSullivan/executor",
66
"license": "MIT",

apps/host-selfhost/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# @executor-js/host-selfhost
22

3+
## 0.0.23
4+
5+
### Patch Changes
6+
7+
- Updated dependencies []:
8+
- @executor-js/sdk@1.5.24
9+
- @executor-js/runtime-quickjs@1.5.24
10+
- @executor-js/execution@1.5.24
11+
- @executor-js/plugin-graphql@1.5.24
12+
- @executor-js/plugin-mcp@1.5.24
13+
- @executor-js/plugin-openapi@1.5.24
14+
- @executor-js/app@1.4.4
15+
- @executor-js/api@1.4.44
16+
- @executor-js/host-mcp@1.4.4
17+
- @executor-js/plugin-encrypted-secrets@0.0.23
18+
- @executor-js/plugin-google@1.5.23
19+
- @executor-js/plugin-microsoft@1.5.23
20+
- @executor-js/plugin-toolkits@1.5.16
21+
- @executor-js/react@1.4.44
22+
323
## 0.0.22
424

525
### Patch Changes

0 commit comments

Comments
 (0)