@gobing-ai/ts-runtime 0.4.26 → 0.4.28

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.
Files changed (2) hide show
  1. package/README.md +2 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -21,7 +21,8 @@ and Cloudflare Workers through a factory pattern that auto-detects the runtime.
21
21
  | Context | `RuntimeContext` | service locator | service locator |
22
22
  | Path utilities | `SEP`, `basenamePath`, `dirnamePath`, `joinPath`, `resolvePath`, `relativePath`, … | runtime-portable (zero `node:*`) | runtime-portable (zero `node:*`) |
23
23
  | Schema validation | `loadStructuredConfig` | JSON-Schema + YAML | JSON-Schema + YAML |
24
- | Plugin core (`./plugin`) | `CapabilityRegistry`, `loadExtensionModules` | trust-gated module loading | — |
24
+ | Extension core (`./extension`) | `CapabilityRegistry`, `loadExtensionModules` | trust-gated module loading | — |
25
+ | Bun SQLite boundary (`./bun-sqlite`) | `Database` re-export | `bun:sqlite` | unavailable |
25
26
  | Tracing | `SpanContext` | `{ traceId, spanId }` | `{ traceId, spanId }` |
26
27
 
27
28
  ## Architecture
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gobing-ai/ts-runtime",
3
- "version": "0.4.26",
3
+ "version": "0.4.28",
4
4
  "description": "@gobing-ai/ts-runtime — Runtime abstractions for Bun, Node, and Cloudflare Workers.",
5
5
  "keywords": [
6
6
  "typescript",
@@ -58,17 +58,17 @@
58
58
  "release": "echo 'Manual publish is disabled. Releases go through GitHub Actions via Trusted Publishing — push a tag: git tag @gobing-ai/ts-runtime-v<version> && git push --tags' && exit 1"
59
59
  },
60
60
  "dependencies": {
61
- "@gobing-ai/ts-utils": "^0.4.26",
61
+ "@gobing-ai/ts-utils": "^0.4.28",
62
62
  "execa": "^9.5.0",
63
63
  "yaml": "^2.7.0",
64
64
  "zod": "^4.1.0"
65
65
  },
66
66
  "devDependencies": {
67
- "@gobing-ai/ts-db": "^0.4.26",
67
+ "@gobing-ai/ts-db": "^0.4.28",
68
68
  "@types/bun": "1.3.14"
69
69
  },
70
70
  "peerDependencies": {
71
- "@gobing-ai/ts-db": "^0.4.26"
71
+ "@gobing-ai/ts-db": "^0.4.28"
72
72
  },
73
73
  "peerDependenciesMeta": {
74
74
  "@gobing-ai/ts-db": {