Skip to content

Commit 0207c30

Browse files
Version Packages
1 parent 94647f1 commit 0207c30

60 files changed

Lines changed: 320 additions & 63 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-sidecar-auth-token-dash.md

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

apps/cli/CHANGELOG.md

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

3+
## 1.5.23
4+
5+
### Patch Changes
6+
7+
- [#1169](https://github.com/RhysSullivan/executor/pull/1169) [`94647f1`](https://github.com/RhysSullivan/executor/commit/94647f1fc33e57d2eb159f929f95d9e9f6ad60cd) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - Fix the desktop app failing to start its local server when the generated auth token begins with a dash. The token is `randomBytes(32).toString("base64url")`, which can start with "-", and the packaged app passed it to the bundled CLI as a separate argument (`--auth-token`, then the token). The CLI then read the leading-dash token as an unknown flag, printed its help, and exited, so the desktop showed a fatal "local Executor server crashed during startup" dialog. This was persistent (the token is saved) and cross-platform, affecting roughly 1 in 64 fresh installs. The token is now passed in the combined `--auth-token=<value>` form so a leading dash is treated as the value.
8+
9+
- Updated dependencies []:
10+
- @executor-js/sdk@1.5.23
11+
- @executor-js/runtime-quickjs@1.5.23
12+
- @executor-js/local@1.4.4
13+
- @executor-js/api@1.4.43
14+
315
## 1.5.22
416

517
### 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.22",
3+
"version": "1.5.23",
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.41
4+
5+
### Patch Changes
6+
7+
- Updated dependencies []:
8+
- @executor-js/sdk@1.5.23
9+
- @executor-js/runtime-quickjs@1.5.23
10+
- @executor-js/execution@1.5.23
11+
- @executor-js/plugin-graphql@1.5.23
12+
- @executor-js/plugin-mcp@1.5.23
13+
- @executor-js/plugin-openapi@1.5.23
14+
- @executor-js/api@1.4.43
15+
- @executor-js/vite-plugin@0.0.40
16+
- @executor-js/cloudflare@0.0.22
17+
- @executor-js/host-mcp@1.4.4
18+
- @executor-js/runtime-dynamic-worker@1.4.4
19+
- @executor-js/plugin-google@1.5.22
20+
- @executor-js/plugin-microsoft@1.5.22
21+
- @executor-js/plugin-toolkits@1.5.15
22+
- @executor-js/plugin-workos-vault@0.0.2
23+
- @executor-js/react@1.4.43
24+
325
## 1.4.40
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.40",
3+
"version": "1.4.41",
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.23
4+
35
## 1.5.22
46

57
## 1.5.21

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.22",
3+
"version": "1.5.23",
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.22
4+
5+
### Patch Changes
6+
7+
- Updated dependencies []:
8+
- @executor-js/sdk@1.5.23
9+
- @executor-js/runtime-quickjs@1.5.23
10+
- @executor-js/execution@1.5.23
11+
- @executor-js/plugin-graphql@1.5.23
12+
- @executor-js/plugin-mcp@1.5.23
13+
- @executor-js/plugin-openapi@1.5.23
14+
- @executor-js/app@1.4.4
15+
- @executor-js/api@1.4.43
16+
- @executor-js/host-mcp@1.4.4
17+
- @executor-js/plugin-encrypted-secrets@0.0.22
18+
- @executor-js/plugin-google@1.5.22
19+
- @executor-js/plugin-microsoft@1.5.22
20+
- @executor-js/plugin-toolkits@1.5.15
21+
- @executor-js/react@1.4.43
22+
323
## 0.0.21
424

525
### Patch Changes

apps/host-selfhost/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/host-selfhost",
3-
"version": "0.0.21",
3+
"version": "0.0.22",
44
"private": true,
55
"type": "module",
66
"exports": {

bun.lock

Lines changed: 29 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)