Skip to content

Commit 9586e68

Browse files
Version Packages (#1200)
* Version Packages * Skip @executor-js/cli 0.2.29 (republish-locked), release 0.2.30 0.2.29 was published then unpublished during the 2.0.0 rollback, so npm blocks republishing that exact version for 24h. Bump @executor-js/cli to 0.2.30 so the patch release publishes cleanly. --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 29936d5 commit 9586e68

66 files changed

Lines changed: 378 additions & 127 deletions

Some content is hidden

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

.changeset/cimd-org-redirect-uri.md

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

.changeset/desktop-background-service-consent-seam.md

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

.changeset/desktop-sidecar-auth-token-dash.md

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

.changeset/graphql-valid-selections.md

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

.changeset/update-available-notifications.md

Lines changed: 0 additions & 8 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.23
4+
5+
### Patch Changes
6+
7+
- [#1199](https://github.com/RhysSullivan/executor/pull/1199) [`29936d5`](https://github.com/RhysSullivan/executor/commit/29936d5981256f8f953797d9ce8ce073ac6a0b6a) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - Add a test seam to skip the first-run "keep Executor running in the background?" consent dialog under automation, matching the existing `confirmResetState` seam. Set `EXECUTOR_TEST_AUTO_CONFIRM_BACKGROUND_SERVICE=1` to keep the background service or any other value to decline. When the variable is unset the dialog is shown exactly as before. Native dialogs cannot be answered from CDP or Playwright, so a packaged first-run boot under automation previously blocked at this prompt with no way to proceed.
8+
9+
- [#1199](https://github.com/RhysSullivan/executor/pull/1199) [`29936d5`](https://github.com/RhysSullivan/executor/commit/29936d5981256f8f953797d9ce8ce073ac6a0b6a) 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.
10+
11+
- [#1199](https://github.com/RhysSullivan/executor/pull/1199) [`29936d5`](https://github.com/RhysSullivan/executor/commit/29936d5981256f8f953797d9ce8ce073ac6a0b6a) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - Notify when a newer Executor is published. The CLI now prints an "update available" line under its ready banner, and the web shell's sidebar update card works for real (a new `/v1/app/npm/dist-tags` endpoint backs it). In the desktop app the card shows a native "Restart to update" action wired to the in-app updater instead of the npm command. The check is best-effort and offline-safe, and can be disabled with `EXECUTOR_DISABLE_UPDATE_CHECK`.
12+
13+
- Updated dependencies [[`29936d5`](https://github.com/RhysSullivan/executor/commit/29936d5981256f8f953797d9ce8ce073ac6a0b6a), [`29936d5`](https://github.com/RhysSullivan/executor/commit/29936d5981256f8f953797d9ce8ce073ac6a0b6a)]:
14+
- @executor-js/api@1.4.43
15+
- @executor-js/local@1.4.4
16+
- @executor-js/sdk@1.5.23
17+
- @executor-js/runtime-quickjs@1.5.23
18+
319
## 1.5.22
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.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 [[`29936d5`](https://github.com/RhysSullivan/executor/commit/29936d5981256f8f953797d9ce8ce073ac6a0b6a), [`29936d5`](https://github.com/RhysSullivan/executor/commit/29936d5981256f8f953797d9ce8ce073ac6a0b6a), [`29936d5`](https://github.com/RhysSullivan/executor/commit/29936d5981256f8f953797d9ce8ce073ac6a0b6a)]:
8+
- @executor-js/api@1.4.43
9+
- @executor-js/plugin-graphql@1.5.23
10+
- @executor-js/react@1.4.43
11+
- @executor-js/cloudflare@0.0.22
12+
- @executor-js/plugin-google@1.5.22
13+
- @executor-js/plugin-mcp@1.5.23
14+
- @executor-js/plugin-microsoft@1.5.22
15+
- @executor-js/plugin-openapi@1.5.23
16+
- @executor-js/plugin-toolkits@1.5.15
17+
- @executor-js/plugin-workos-vault@0.0.2
18+
- @executor-js/runtime-dynamic-worker@1.4.4
19+
- @executor-js/sdk@1.5.23
20+
- @executor-js/runtime-quickjs@1.5.23
21+
- @executor-js/execution@1.5.23
22+
- @executor-js/vite-plugin@0.0.40
23+
- @executor-js/host-mcp@1.4.4
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: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @executor-js/desktop
22

3+
## 1.5.23
4+
5+
### Patch Changes
6+
7+
- [#1199](https://github.com/RhysSullivan/executor/pull/1199) [`29936d5`](https://github.com/RhysSullivan/executor/commit/29936d5981256f8f953797d9ce8ce073ac6a0b6a) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - Notify when a newer Executor is published. The CLI now prints an "update available" line under its ready banner, and the web shell's sidebar update card works for real (a new `/v1/app/npm/dist-tags` endpoint backs it). In the desktop app the card shows a native "Restart to update" action wired to the in-app updater instead of the npm command. The check is best-effort and offline-safe, and can be disabled with `EXECUTOR_DISABLE_UPDATE_CHECK`.
8+
39
## 1.5.22
410

511
## 1.5.21

0 commit comments

Comments
 (0)