Skip to content

Commit 029116c

Browse files
committed
Merge origin/main into homepage redesign
Resolve apps/marketing/src/pages/index.astro and global.css in favor of the redesigned landing page, carrying forward main's tightened setup prompt and the copy-button analytics event.
2 parents 80c47d0 + a00124c commit 029116c

274 files changed

Lines changed: 18380 additions & 1261 deletions

File tree

Some content is hidden

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

apps/cli/CHANGELOG.md

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

3+
## 1.5.17
4+
5+
### Patch Changes
6+
7+
- [#1076](https://github.com/RhysSullivan/executor/pull/1076) [`3e47752`](https://github.com/RhysSullivan/executor/commit/3e4775292d75e65fe3fa9ab4101360123b29e27c) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - Add `executor login` (plus `logout` and `whoami`) for signing the CLI into a
8+
hosted or self-hosted Executor server using the OAuth 2.0 Device Authorization
9+
Grant (RFC 8628), instead of manually creating and pasting an API key. `login`
10+
prints a code and verification URL, opens the browser, and polls; afterwards the
11+
CLI authenticates with a bearer token. Works against both cloud (WorkOS) and
12+
self-host (Better Auth) servers.
13+
14+
- [#1076](https://github.com/RhysSullivan/executor/pull/1076) [`3e47752`](https://github.com/RhysSullivan/executor/commit/3e4775292d75e65fe3fa9ab4101360123b29e27c) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - `connections.list` now returns a lean summary by default, replacing the full
15+
`oauthScope` grant string (which can run to thousands of characters per
16+
connection) with an `oauthScopeCount`. Pass `verbose: true` to get the full
17+
grant back.
18+
19+
- [#1076](https://github.com/RhysSullivan/executor/pull/1076) [`3e47752`](https://github.com/RhysSullivan/executor/commit/3e4775292d75e65fe3fa9ab4101360123b29e27c) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - The execute result envelope now reports how many items a script sent to the user
20+
via `emit()`. A script that only emits (with no return value) is no longer
21+
indistinguishable from one that did nothing: the envelope includes an emitted
22+
count and a `(no return value; N items emitted to the user)` text preview.
23+
24+
- [#1076](https://github.com/RhysSullivan/executor/pull/1076) [`3e47752`](https://github.com/RhysSullivan/executor/commit/3e4775292d75e65fe3fa9ab4101360123b29e27c) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - Fix OAuth connect for providers that issue authorization codes redeemable only
25+
at a region-specific token host. Executor now redeems the code at the region
26+
returned on the callback rather than the statically advertised token endpoint,
27+
so connecting these providers no longer fails at the token-exchange step.
28+
29+
- [#1076](https://github.com/RhysSullivan/executor/pull/1076) [`3e47752`](https://github.com/RhysSullivan/executor/commit/3e4775292d75e65fe3fa9ab4101360123b29e27c) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - Send a default `executor` User-Agent on OpenAPI tool calls. Upstreams such as
30+
GitHub that reject requests without a User-Agent (HTTP 403) now succeed instead
31+
of surfacing the rejection as a credential error. A spec- or connection-provided
32+
User-Agent still takes precedence.
33+
- Updated dependencies []:
34+
- @executor-js/sdk@1.5.17
35+
- @executor-js/runtime-quickjs@1.5.17
36+
- @executor-js/local@1.4.4
37+
- @executor-js/api@1.4.37
38+
39+
## 1.5.16
40+
41+
### Patch Changes
42+
43+
- [#1066](https://github.com/RhysSullivan/executor/pull/1066) [`0961773`](https://github.com/RhysSullivan/executor/commit/09617733310152bfa5ae9439b17bd6903cac611e) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - Replace the code-mode output helpers with a single `emit(value)` primitive.
44+
`emit(...)` accepts plain values, `ToolFile` attachments, and MCP content blocks,
45+
while `return` remains reserved for ordinary structured data.
46+
- Updated dependencies []:
47+
- @executor-js/sdk@1.5.16
48+
- @executor-js/runtime-quickjs@1.5.16
49+
- @executor-js/local@1.4.4
50+
- @executor-js/api@1.4.36
51+
52+
## 1.5.15
53+
54+
### Patch Changes
55+
56+
- Updated dependencies []:
57+
- @executor-js/sdk@1.5.15
58+
- @executor-js/local@1.4.4
59+
- @executor-js/api@1.4.35
60+
- @executor-js/runtime-quickjs@1.5.15
61+
362
## 1.5.14
463

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

0 commit comments

Comments
 (0)