Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 0 additions & 12 deletions .changeset/cimd-org-redirect-uri.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/desktop-background-service-consent-seam.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/desktop-sidecar-auth-token-dash.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/graphql-valid-selections.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/update-available-notifications.md

This file was deleted.

16 changes: 16 additions & 0 deletions apps/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# executor

## 1.5.23

### Patch Changes

- [#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.

- [#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.

- [#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`.

- Updated dependencies [[`29936d5`](https://github.com/RhysSullivan/executor/commit/29936d5981256f8f953797d9ce8ce073ac6a0b6a), [`29936d5`](https://github.com/RhysSullivan/executor/commit/29936d5981256f8f953797d9ce8ce073ac6a0b6a)]:
- @executor-js/api@1.4.43
- @executor-js/local@1.4.4
- @executor-js/sdk@1.5.23
- @executor-js/runtime-quickjs@1.5.23

## 1.5.22

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "executor",
"version": "1.5.22",
"version": "1.5.23",
"private": true,
"bin": {
"executor": "./bin/executor.ts"
Expand Down
22 changes: 22 additions & 0 deletions apps/cloud/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# @executor-js/cloud

## 1.4.41

### Patch Changes

- 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)]:
- @executor-js/api@1.4.43
- @executor-js/plugin-graphql@1.5.23
- @executor-js/react@1.4.43
- @executor-js/cloudflare@0.0.22
- @executor-js/plugin-google@1.5.22
- @executor-js/plugin-mcp@1.5.23
- @executor-js/plugin-microsoft@1.5.22
- @executor-js/plugin-openapi@1.5.23
- @executor-js/plugin-toolkits@1.5.15
- @executor-js/plugin-workos-vault@0.0.2
- @executor-js/runtime-dynamic-worker@1.4.4
- @executor-js/sdk@1.5.23
- @executor-js/runtime-quickjs@1.5.23
- @executor-js/execution@1.5.23
- @executor-js/vite-plugin@0.0.40
- @executor-js/host-mcp@1.4.4

## 1.4.40

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/cloud/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@executor-js/cloud",
"version": "1.4.40",
"version": "1.4.41",
"private": true,
"type": "module",
"scripts": {
Expand Down
6 changes: 6 additions & 0 deletions apps/desktop/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @executor-js/desktop

## 1.5.23

### Patch Changes

- [#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`.

## 1.5.22

## 1.5.21
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@executor-js/desktop",
"version": "1.5.22",
"version": "1.5.23",
"private": true,
"homepage": "https://github.com/RhysSullivan/executor",
"license": "MIT",
Expand Down
20 changes: 20 additions & 0 deletions apps/host-selfhost/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @executor-js/host-selfhost

## 0.0.22

### Patch Changes

- 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)]:
- @executor-js/api@1.4.43
- @executor-js/plugin-graphql@1.5.23
- @executor-js/react@1.4.43
- @executor-js/plugin-google@1.5.22
- @executor-js/plugin-mcp@1.5.23
- @executor-js/plugin-microsoft@1.5.22
- @executor-js/plugin-openapi@1.5.23
- @executor-js/plugin-toolkits@1.5.15
- @executor-js/app@1.4.4
- @executor-js/sdk@1.5.23
- @executor-js/runtime-quickjs@1.5.23
- @executor-js/execution@1.5.23
- @executor-js/host-mcp@1.4.4
- @executor-js/plugin-encrypted-secrets@0.0.22

## 0.0.21

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/host-selfhost/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@executor-js/host-selfhost",
"version": "0.0.21",
"version": "0.0.22",
"private": true,
"type": "module",
"exports": {
Expand Down
Loading
Loading