Skip to content

Commit ed7dbaf

Browse files
Version Packages
1 parent 7cee242 commit ed7dbaf

58 files changed

Lines changed: 315 additions & 80 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-crash-reporting.md

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

.changeset/integrations-spec-blob.md

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

.changeset/republish-from-source.md

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

apps/cli/CHANGELOG.md

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

3+
## 1.5.7
4+
5+
### Patch Changes
6+
7+
- [#964](https://github.com/RhysSullivan/executor/pull/964) [`7cee242`](https://github.com/RhysSullivan/executor/commit/7cee242f07687b0d8711201c620d8c61594adc15) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - **Desktop crash reporting and diagnostics**
8+
- The desktop app now reports crashes from all of its processes (window, main, and the local server sidecar), so launch failures and silent exits become fixable bugs instead of mysteries. Reporting is disabled in local/dev builds and honors `DO_NOT_TRACK=1` as an opt-out.
9+
- If the local server crashes, the app shows a crash screen with restart and update actions instead of closing silently, and the server's output is persisted to the log file.
10+
- New **Export Diagnostics** (menu and Settings) zips logs, crash dumps, and a redacted system manifest to Downloads — never secrets or executor data — and **Report a Problem…** prefills a GitHub issue with the diagnostics attached.
11+
12+
- [#964](https://github.com/RhysSullivan/executor/pull/964) [`7cee242`](https://github.com/RhysSullivan/executor/commit/7cee242f07687b0d8711201c620d8c61594adc15) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - **Faster integrations with large API specs**
13+
14+
Resolved OpenAPI spec text and GraphQL introspection snapshots are now stored content-addressed in the plugin blob store instead of inline in each integration's stored config. Listing integrations no longer loads multi-megabyte spec blobs it immediately discards, which makes the integrations surface dramatically faster for workspaces with large specs. Existing integrations keep working: rows that still inline a spec resolve unchanged and are rewritten in place the next time they are imported or refreshed.
15+
16+
- Updated dependencies [[`7cee242`](https://github.com/RhysSullivan/executor/commit/7cee242f07687b0d8711201c620d8c61594adc15), [`7cee242`](https://github.com/RhysSullivan/executor/commit/7cee242f07687b0d8711201c620d8c61594adc15)]:
17+
- @executor-js/sdk@1.5.7
18+
- @executor-js/local@1.4.4
19+
- @executor-js/api@1.4.27
20+
- @executor-js/runtime-quickjs@1.5.7
21+
322
## 1.5.4
423

524
### 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.4",
3+
"version": "1.5.7",
44
"private": true,
55
"bin": {
66
"executor": "./bin/executor.ts"

apps/cloud/CHANGELOG.md

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

3+
## 1.4.25
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`7cee242`](https://github.com/RhysSullivan/executor/commit/7cee242f07687b0d8711201c620d8c61594adc15), [`7cee242`](https://github.com/RhysSullivan/executor/commit/7cee242f07687b0d8711201c620d8c61594adc15)]:
8+
- @executor-js/sdk@1.5.7
9+
- @executor-js/plugin-openapi@1.5.7
10+
- @executor-js/plugin-graphql@1.5.7
11+
- @executor-js/fumadb@1.5.7
12+
- @executor-js/api@1.4.27
13+
- @executor-js/execution@1.5.7
14+
- @executor-js/vite-plugin@0.0.24
15+
- @executor-js/cloudflare@0.0.6
16+
- @executor-js/host-mcp@1.4.4
17+
- @executor-js/runtime-dynamic-worker@1.4.4
18+
- @executor-js/plugin-mcp@1.5.7
19+
- @executor-js/plugin-workos-vault@0.0.2
20+
- @executor-js/react@1.4.27
21+
- @executor-js/runtime-quickjs@1.5.7
22+
323
## 1.4.24
424

525
### 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.24",
3+
"version": "1.4.25",
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.7
4+
35
## 1.5.4
46

57
## 1.5.3

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.4",
3+
"version": "1.5.7",
44
"private": true,
55
"homepage": "https://github.com/RhysSullivan/executor",
66
"license": "MIT",

apps/host-selfhost/CHANGELOG.md

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

3+
## 0.0.6
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`7cee242`](https://github.com/RhysSullivan/executor/commit/7cee242f07687b0d8711201c620d8c61594adc15), [`7cee242`](https://github.com/RhysSullivan/executor/commit/7cee242f07687b0d8711201c620d8c61594adc15)]:
8+
- @executor-js/sdk@1.5.7
9+
- @executor-js/plugin-openapi@1.5.7
10+
- @executor-js/plugin-graphql@1.5.7
11+
- @executor-js/fumadb@1.5.7
12+
- @executor-js/app@1.4.4
13+
- @executor-js/api@1.4.27
14+
- @executor-js/execution@1.5.7
15+
- @executor-js/host-mcp@1.4.4
16+
- @executor-js/plugin-encrypted-secrets@0.0.6
17+
- @executor-js/plugin-mcp@1.5.7
18+
- @executor-js/react@1.4.27
19+
- @executor-js/runtime-quickjs@1.5.7
20+
321
## 0.0.5
422

523
### Patch Changes

0 commit comments

Comments
 (0)