Skip to content

Commit 7cee242

Browse files
authored
Align package versions with npm and add v1.5.7 release changesets (#964)
Versions 1.5.5/1.5.6 of the library packages (and @executor-js/cli 0.2.11/0.2.12, @executor-js/fumadb through 1.5.6) were published directly to npm on June 10 to fix the fumadb dependency resolution; the repo still recorded the pre-publish versions. Set each manifest to the version npm has so the next 'changeset version' computes 1.5.7 instead of colliding with already-published versions. Changesets cover the desktop crash reporting + diagnostics export, the integrations spec-blob performance work, and the republish alignment note.
1 parent ecd4322 commit 7cee242

16 files changed

Lines changed: 50 additions & 24 deletions

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
"executor": patch
3+
---
4+
5+
**Desktop crash reporting and diagnostics**
6+
7+
- 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.
8+
- 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.
9+
- 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.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
"executor": patch
3+
"@executor-js/sdk": patch
4+
"@executor-js/plugin-openapi": patch
5+
"@executor-js/plugin-graphql": patch
6+
---
7+
8+
**Faster integrations with large API specs**
9+
10+
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.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"@executor-js/sdk": patch
3+
"@executor-js/cli": patch
4+
"@executor-js/fumadb": patch
5+
---
6+
7+
Republish from committed source. Versions 1.5.5 and 1.5.6 of the library packages were published directly to npm to fix installs resolving the wrong `fumadb` dependency (the vendored database layer is now scoped as `@executor-js/fumadb`); that fix landed in the repo separately, and this release brings the recorded package versions back in line with npm.

bun.lock

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

packages/core/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-js/cli",
3-
"version": "0.2.10",
3+
"version": "0.2.12",
44
"description": "CLI for the executor SDK — schema generation, migrations",
55
"homepage": "https://github.com/RhysSullivan/executor/tree/main/packages/core/cli",
66
"bugs": {

packages/core/config/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/config",
3-
"version": "1.5.4",
3+
"version": "1.5.6",
44
"homepage": "https://github.com/RhysSullivan/executor/tree/main/packages/core/config",
55
"bugs": {
66
"url": "https://github.com/RhysSullivan/executor/issues"

packages/core/execution/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/execution",
3-
"version": "1.5.4",
3+
"version": "1.5.6",
44
"homepage": "https://github.com/RhysSullivan/executor/tree/main/packages/core/execution",
55
"bugs": {
66
"url": "https://github.com/RhysSullivan/executor/issues"

packages/core/fumadb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@executor-js/fumadb",
33
"description": "A library for interacting with different databases for your package.",
4-
"version": "0.3.0",
4+
"version": "1.5.6",
55
"repository": {
66
"type": "git",
77
"url": "git+https://github.com/RhysSullivan/executor.git",

packages/core/sdk/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/sdk",
3-
"version": "1.5.4",
3+
"version": "1.5.6",
44
"homepage": "https://github.com/RhysSullivan/executor/tree/main/packages/core/sdk",
55
"bugs": {
66
"url": "https://github.com/RhysSullivan/executor/issues"

packages/plugins/example/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/plugin-example",
3-
"version": "1.5.4",
3+
"version": "1.5.6",
44
"homepage": "https://github.com/RhysSullivan/executor/tree/main/packages/plugins/example",
55
"bugs": {
66
"url": "https://github.com/RhysSullivan/executor/issues"

0 commit comments

Comments
 (0)