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
8 changes: 0 additions & 8 deletions .changeset/desktop-titlebar-polish.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/selfhost-update-card-version.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/windows-migration-handle-release.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.24

### Patch Changes

- [#1207](https://github.com/RhysSullivan/executor/pull/1207) [`c8d9b9d`](https://github.com/RhysSullivan/executor/commit/c8d9b9df2a463da800233a8735b309db2e333d50) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - Polish the app's title bar. The release tag beside the `executor` wordmark is now quiet muted-mono metadata instead of a filled pill, matching the registry-minimal design language, and the wordmark is shared across the desktop and dashboard shells so the brand reads identically everywhere. The macOS traffic-light offset is also applied to the mobile sidebar overlay and the collapsed top bar, so the native window controls never sit on top of the wordmark when the window is narrow.

- [#1204](https://github.com/RhysSullivan/executor/pull/1204) [`9394217`](https://github.com/RhysSullivan/executor/commit/939421733830c78c0be8e7a4c65ea9a7c143abfb) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - Fix the self-host and Cloudflare web dashboards showing "update available" even on the latest version. The builds baked a placeholder version (`0.0.0-selfhost` / `0.0.0-cloudflare`) into the shell, so the update check always compared as behind. They now bake the real release version, and the sidebar footer shows the running version so you can see what you are on.

- [#1209](https://github.com/RhysSullivan/executor/pull/1209) [`ffa4f70`](https://github.com/RhysSullivan/executor/commit/ffa4f700fdba4e3c525f58bbfb0e8355946e29cb) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - Fix the desktop and CLI daemon crashing on first launch on Windows when a v1 local database is present. The v1 to v2 data migration performed file operations (fsync, rename, remove) on libSQL SQLite files whose native OS handles linger after close() on Windows, surfacing as a fatal "Unknown error" (EPERM on fsync of a read-only handle, EBUSY on rename/remove of just-closed files). POSIX is unaffected, so this only reproduced on Windows. The migration now opens files read-write for fsync (treating it as best-effort), retries removes the same way renames were already retried, and forces a GC pass on each retry so libSQL's native finalizer releases the handle before the next attempt. Fixes the v1.5.23 Windows startup regression.

- Updated dependencies []:
- @executor-js/sdk@1.5.24
- @executor-js/runtime-quickjs@1.5.24
- @executor-js/local@1.4.4
- @executor-js/api@1.4.44

## 1.5.23

### 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.23",
"version": "1.5.24",
"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.42

### Patch Changes

- Updated dependencies []:
- @executor-js/sdk@1.5.24
- @executor-js/runtime-quickjs@1.5.24
- @executor-js/execution@1.5.24
- @executor-js/plugin-graphql@1.5.24
- @executor-js/plugin-mcp@1.5.24
- @executor-js/plugin-openapi@1.5.24
- @executor-js/api@1.4.44
- @executor-js/vite-plugin@0.0.41
- @executor-js/cloudflare@0.0.23
- @executor-js/host-mcp@1.4.4
- @executor-js/runtime-dynamic-worker@1.4.4
- @executor-js/plugin-google@1.5.23
- @executor-js/plugin-microsoft@1.5.23
- @executor-js/plugin-toolkits@1.5.16
- @executor-js/plugin-workos-vault@0.0.2
- @executor-js/react@1.4.44

## 1.4.41

### 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.41",
"version": "1.4.42",
"private": true,
"type": "module",
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions apps/cloud/src/api/protected-api-key-auth.node.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ describe("protected API key auth", () => {
accountId: "user_123",
organizationId: "org_123",
organizationName: "Org org_123",
organizationSlug: "org-slug-org_123",
email: "",
name: null,
avatarUrl: null,
Expand Down
1 change: 1 addition & 0 deletions apps/cloud/src/api/protected-jwt-auth.node.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ describe("protected JWT (device-login) auth", () => {
accountId: "user_123",
organizationId: "org_123",
organizationName: "Org org_123",
organizationSlug: "org-slug-org_123",
email: "",
name: null,
avatarUrl: null,
Expand Down
2 changes: 2 additions & 0 deletions apps/desktop/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @executor-js/desktop

## 1.5.24

Comment on lines +3 to +4

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Missing changelog entries for directly-targeted changesets

desktop-titlebar-polish.md explicitly listed "@executor-js/desktop": patch, so this package was a direct (not transitive) target of that changeset. The generated 1.5.24 section is empty — no "Patch Changes" heading, no entry — while the equivalent slot in apps/cli/CHANGELOG.md received all three changeset descriptions. The same gap exists in packages/react/CHANGELOG.md 1.4.44 (targeted by both desktop-titlebar-polish and selfhost-update-card-version) and apps/host-selfhost/CHANGELOG.md 0.0.23 (targeted by both). Anyone looking at the desktop or react changelogs for this release will find no record of what changed.

Note: If this suggestion doesn't match your team's coding style, reply to this and let me know. I'll remember it for next time!

## 1.5.23

### Patch Changes
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.23",
"version": "1.5.24",
"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.23

### Patch Changes

- Updated dependencies []:
- @executor-js/sdk@1.5.24
- @executor-js/runtime-quickjs@1.5.24
- @executor-js/execution@1.5.24
- @executor-js/plugin-graphql@1.5.24
- @executor-js/plugin-mcp@1.5.24
- @executor-js/plugin-openapi@1.5.24
- @executor-js/app@1.4.4
- @executor-js/api@1.4.44
- @executor-js/host-mcp@1.4.4
- @executor-js/plugin-encrypted-secrets@0.0.23
- @executor-js/plugin-google@1.5.23
- @executor-js/plugin-microsoft@1.5.23
- @executor-js/plugin-toolkits@1.5.16
- @executor-js/react@1.4.44

## 0.0.22

### 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.22",
"version": "0.0.23",
"private": true,
"type": "module",
"exports": {
Expand Down
Loading
Loading