@dbx-tools/appkit 0.6.113 → 0.6.115
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/README.md +7 -5
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -24,9 +24,10 @@ without taking on a heavier feature package.
|
|
|
24
24
|
that hands add-ons the computed env, AppKit lifecycle hooks (`onLifecycle`, using
|
|
25
25
|
AppKit's own `setup:complete` / `server:ready` / `shutdown` vocabulary),
|
|
26
26
|
synchronous `onTeardown` cleanup, signal broadcast, and `bindProcess` for
|
|
27
|
-
concurrently-style child supervision.
|
|
28
|
-
process
|
|
29
|
-
|
|
27
|
+
concurrently-style child supervision. Interceptor contexts share a
|
|
28
|
+
process-wide child registry and teardown guard. Any bound child exit starts
|
|
29
|
+
sibling teardown, callbacks run before child termination, and bound children
|
|
30
|
+
receive a 10-second shutdown grace. `@dbx-tools/tunnel` consumes this surface.
|
|
30
31
|
|
|
31
32
|
## Why Use This Over Native AppKit
|
|
32
33
|
|
|
@@ -324,8 +325,9 @@ is shared. `@dbx-tools/appkit-mastra` exposes this as its `genieIdentity` option
|
|
|
324
325
|
| `appkit` | `createApp()` / `autoConfigure()`, plus execution context lookup and initialization. |
|
|
325
326
|
| `lakebaseResolver` | Lakebase connection discovery, default picking, optional auto-create, and env application (`applyLakebaseEnv()` for the full set a pool needs). |
|
|
326
327
|
| `pgaddress` | Permissive Lakebase/Postgres address parser. |
|
|
327
|
-
| `
|
|
328
|
-
| `databricks` |
|
|
328
|
+
| `bundle` | Bundle and Databricks App environment compatibility helpers. |
|
|
329
|
+
| `databricks` | Databricks SDK context cancellation adapters. |
|
|
330
|
+
| `interceptor` | Lifecycle bridging, teardown callbacks, and process-wide child supervision. |
|
|
329
331
|
| `plugin` | Typed AppKit plugin data, instance, and required-instance lookup. |
|
|
330
332
|
| `provision` | Cache schema provisioning helpers. |
|
|
331
333
|
| `identity` | OBO-vs-service-principal request identity: modes, resolution, and the forwarded headers. |
|
package/package.json
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@databricks/appkit": "^0.60.0",
|
|
22
|
-
"@dbx-tools/test-polyglot": "0.6.
|
|
22
|
+
"@dbx-tools/test-polyglot": "0.6.115",
|
|
23
23
|
"@types/bun": "^1.3.14",
|
|
24
24
|
"@types/node": "^24.6.0",
|
|
25
25
|
"typescript": "^5.9.3"
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@databricks/sdk-experimental": "^0.17.0",
|
|
32
|
-
"@dbx-tools/core": "0.6.
|
|
33
|
-
"@dbx-tools/shared-core": "0.6.
|
|
32
|
+
"@dbx-tools/core": "0.6.115",
|
|
33
|
+
"@dbx-tools/shared-core": "0.6.115",
|
|
34
34
|
"zod": "4.3.6"
|
|
35
35
|
},
|
|
36
36
|
"main": "./lib/index.js",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"./package.json": "./package.json"
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
|
-
"version": "0.6.
|
|
50
|
+
"version": "0.6.115",
|
|
51
51
|
"types": "./lib/index.d.ts",
|
|
52
52
|
"type": "module",
|
|
53
53
|
"exports": {
|