@skaile/workspaces 0.11.2 → 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/package.json +14 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.12.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#21](https://github.com/skaile-ai/workspaces/pull/21) [`e06401f`](https://github.com/skaile-ai/workspaces/commit/e06401f771ac58b484ccbf7e465d3048e7e7a70d) Thanks [@peteralbert](https://github.com/peteralbert)! - Dependency upgrades.
|
|
8
|
+
|
|
9
|
+
- **Optional peer ranges raised** (consumers using these drivers should move to the new ranges): `@anthropic-ai/claude-agent-sdk` `^0.2.89` → `^0.3.150`, `@openai/codex-sdk` `^0.118.0` → `^0.133.0`. No driver code changes were required — the used API surface is unchanged.
|
|
10
|
+
- **Runtime dependencies bumped:** `commander` 13 → 14, `@clack/prompts` 0.9 → 1.4, `ulid` 2 → 3, `@octokit/rest` → 22.0.1, `semver` → 7.8.1, `ws` → 8.21.0. No source changes needed.
|
|
11
|
+
|
|
12
|
+
`marked` is intentionally held at 15.x — it is capped by `marked-terminal`'s peer range (`>=1 <16`) until an upstream release lifts it.
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- [#20](https://github.com/skaile-ai/workspaces/pull/20) [`843b611`](https://github.com/skaile-ai/workspaces/commit/843b6113075e6ecfd041d66ff161357f5eca1fb6) Thanks [@peteralbert](https://github.com/peteralbert)! - Remove the unused `glob` direct dependency. It was declared in `dependencies` but never imported anywhere in the source, and it resolved to the now-deprecated `glob@11.1.0`, which printed a deprecation warning on `npm i -g @skaile/workspaces`. Dropping it removes the warning and shrinks the install footprint.
|
|
17
|
+
|
|
3
18
|
## 0.11.2
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
|
@@ -9,6 +24,7 @@
|
|
|
9
24
|
The claude-sdk driver's credential self-heal (`onAuthError`) failed to fire in two
|
|
10
25
|
cases, leaving sessions stuck on a misleading `Not logged in · Please run /login`
|
|
11
26
|
error after the OAuth access token expired:
|
|
27
|
+
|
|
12
28
|
- **Classification**: the bare `Not logged in · Please run /login` string the
|
|
13
29
|
Claude Code CLI emits (no JSON body) fell through to `category: "unknown"`, so it
|
|
14
30
|
was never promoted to `AuthError` and the self-heal never triggered. It is now
|
|
@@ -146,6 +162,7 @@ authenticate. API Error: 401` even on every successful self-heal.
|
|
|
146
162
|
`scrubPoisonedTranscript()` to repair the on-disk SDK JSONL transcript, then
|
|
147
163
|
retries the resume once, keeping the same session so conversation context is
|
|
148
164
|
preserved. Four poison classes are repaired in a single pass:
|
|
165
|
+
|
|
149
166
|
- **Image `media_type` mismatch** — corrected by sniffing the base64 magic
|
|
150
167
|
bytes (Claude Code `Read`-tool bug, anthropics/claude-code#55338 / #30124).
|
|
151
168
|
- **Missing image `media_type`** — filled in from the sniffed bytes (#33179).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skaile/workspaces",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"description": "Skaile workspaces runtime — types, core, bridge, runner, store, connectors, and supporting layers as one publishable package",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"packageManager": "bun@1.3.9",
|
|
@@ -604,31 +604,30 @@
|
|
|
604
604
|
"gen:manifest": "bun run _scripts/gen-workspaces-manifest.ts > _scripts/workspaces-exports.json"
|
|
605
605
|
},
|
|
606
606
|
"dependencies": {
|
|
607
|
-
"@clack/prompts": "^
|
|
607
|
+
"@clack/prompts": "^1.4.0",
|
|
608
608
|
"@libsql/client": "^0.17.3",
|
|
609
609
|
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
610
|
-
"@octokit/rest": "22.0.
|
|
610
|
+
"@octokit/rest": "22.0.1",
|
|
611
611
|
"@trpc/client": "^11.10.0",
|
|
612
612
|
"chokidar": "^5.0.0",
|
|
613
|
-
"commander": "^
|
|
613
|
+
"commander": "^14.0.0",
|
|
614
614
|
"drizzle-orm": "^0.45.2",
|
|
615
|
-
"glob": "^11.0.0",
|
|
616
615
|
"js-yaml": "^4.1.0",
|
|
617
616
|
"marked": "15",
|
|
618
617
|
"marked-terminal": "^7.3.0",
|
|
619
618
|
"mime": "^4.0.0",
|
|
620
619
|
"picocolors": "^1.1.1",
|
|
621
620
|
"picomatch": "^4.0.0",
|
|
622
|
-
"semver": "^7.
|
|
621
|
+
"semver": "^7.8.1",
|
|
623
622
|
"smol-toml": "^1.3.4",
|
|
624
|
-
"ulid": "^
|
|
625
|
-
"ws": "^8.
|
|
623
|
+
"ulid": "^3.0.2",
|
|
624
|
+
"ws": "^8.21.0",
|
|
626
625
|
"yaml": "^2.7.0",
|
|
627
626
|
"zod": "^4.4.0"
|
|
628
627
|
},
|
|
629
628
|
"peerDependencies": {
|
|
630
|
-
"@anthropic-ai/claude-agent-sdk": "^0.
|
|
631
|
-
"@openai/codex-sdk": "^0.
|
|
629
|
+
"@anthropic-ai/claude-agent-sdk": "^0.3.150",
|
|
630
|
+
"@openai/codex-sdk": "^0.133.0",
|
|
632
631
|
"@opentelemetry/api": "^1.9.0",
|
|
633
632
|
"@opentelemetry/exporter-trace-otlp-http": "^0.218.0",
|
|
634
633
|
"@opentelemetry/resources": "^2.7.0",
|
|
@@ -719,15 +718,15 @@
|
|
|
719
718
|
}
|
|
720
719
|
},
|
|
721
720
|
"devDependencies": {
|
|
722
|
-
"@anthropic-ai/claude-agent-sdk": "^0.
|
|
721
|
+
"@anthropic-ai/claude-agent-sdk": "^0.3.150",
|
|
723
722
|
"@biomejs/biome": "^2.4.9",
|
|
724
|
-
"@openai/codex-sdk": "^0.
|
|
723
|
+
"@openai/codex-sdk": "^0.133.0",
|
|
725
724
|
"@opentelemetry/api": "^1.9.0",
|
|
726
725
|
"@opentelemetry/exporter-trace-otlp-http": "^0.218.0",
|
|
727
726
|
"@opentelemetry/resources": "^2.7.0",
|
|
728
727
|
"@opentelemetry/sdk-trace-node": "^2.7.0",
|
|
729
728
|
"@types/js-yaml": "^4.0.9",
|
|
730
|
-
"@types/react": "^19.2.
|
|
729
|
+
"@types/react": "^19.2.15",
|
|
731
730
|
"@types/semver": "^7.7.1",
|
|
732
731
|
"@types/ws": "^8.5.12",
|
|
733
732
|
"@xstate/store": "^3.0.0",
|
|
@@ -735,8 +734,8 @@
|
|
|
735
734
|
"react": "^19.0.0",
|
|
736
735
|
"sql.js": "^1.0.0",
|
|
737
736
|
"tsup": "^8.0.0",
|
|
738
|
-
"typescript": "^
|
|
739
|
-
"vitest": "^
|
|
737
|
+
"typescript": "^6.0.0",
|
|
738
|
+
"vitest": "^4.0.0",
|
|
740
739
|
"vue": "^3.5.0",
|
|
741
740
|
"xstate": "^5.0.0",
|
|
742
741
|
"yjs": "^13.0.0"
|