@checkstack/cache-backend 0.2.3 → 0.3.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 CHANGED
@@ -1,5 +1,238 @@
1
1
  # @checkstack/cache-backend
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - aa89bc5: Replace the bespoke `registerInfrastructureTab()` registry with a standard
8
+ slot-extension contract (`InfrastructureTabsSlot` from
9
+ `@checkstack/infrastructure-common`). Plugins now contribute infrastructure
10
+ tabs via `createSlotExtension`, depending only on the slot owner.
11
+
12
+ The slot system in `@checkstack/frontend-api` gains a second type parameter
13
+ on `createSlot<TContext, TMetadata>` so extensions can declare typed static
14
+ metadata at registration time (label, icon, access rules, ordering for the
15
+ infrastructure tab bar). A new `useSlotExtensions(slot)` hook returns typed
16
+ extensions and subscribes to plugin lifecycle changes.
17
+
18
+ Each tab body now stacks a **Runtime** sub-section (live state, read-only)
19
+ on top of a **Configuration** sub-section (settings, gated by `canUpdate`).
20
+
21
+ **Queue runtime panel.** Surfaces aggregated counts (pending / processing /
22
+ completed / failed) plus three sub-tabs of recent jobs: **Active**, **Recent
23
+ failed** (with the failure message), and **Recent completed** (with
24
+ duration). Job payloads are deliberately not surfaced — they may carry
25
+ secrets and need a separate manage-access gate to be shown.
26
+
27
+ To support this, `Queue<T>` gains a required `listJobs(opts)` method
28
+ returning `JobSummary[]` (no payloads), and `QueueStats` gains a
29
+ `scope: "instance" | "cluster"` field. The in-memory queue keeps rolling
30
+ ring buffers (200 entries) for completed/failed history and tracks active
31
+ jobs by id; BullMQ uses native `getJobs`. `QueueManager.listJobs` aggregates
32
+ across queues and sorts (most-recent-first for terminal states, FIFO for
33
+ active/waiting/delayed).
34
+
35
+ **Cache runtime panel.** Lists the top N entries by size (or by recency) so
36
+ operators can debug a cache filling up. Values are deliberately omitted —
37
+ PII / secret risk. Backends opt in via an optional `listEntries?` method on
38
+ `CacheProvider`; non-supporting backends return `{ supported: false }` and
39
+ the UI renders a "not supported by this backend" hint. The in-memory cache
40
+ implements it using its existing per-entry byte tracking.
41
+
42
+ `CacheStats` also gains `scope: "instance" | "cluster"`.
43
+
44
+ **Multi-instance scope warning.** A new `<InstanceScopeBanner>` component in
45
+ `@checkstack/ui` renders a yellow banner above any runtime panel whose
46
+ backend reports `scope: "instance"` — i.e. in-memory queue or cache running
47
+ in a horizontally scaled deployment. The banner explains the metrics are
48
+ local to the responding replica and recommends switching to a clustered
49
+ backend (Redis-backed queue / cache) for cluster-wide visibility.
50
+
51
+ **Bug fix — stable cache provider proxy.** `CacheManagerImpl.getProvider()`
52
+ now returns a single stable proxy that delegates to whatever provider is
53
+ currently active. Previously, consumers of `createCachedScope` (and any
54
+ direct `cacheManager.getProvider()` caller) captured the active provider
55
+ reference at plugin-init time. After any `setActiveBackend` call — including
56
+ saving the same memory config in the new Cache tab, which reconstructs the
57
+ in-memory cache — those scopes wrote to an orphaned old provider while the
58
+ runtime panel read stats from the new (empty) one, making the runtime panel
59
+ appear to report 0 keys. With the proxy, all consumers share a single stable
60
+ identity and writes always land in the active provider.
61
+
62
+ **Bytes tracking on the in-memory cache.** `InMemoryCache.getStats().sizeBytes`
63
+ now returns a running approximation (UTF-8 bytes of the key plus
64
+ `v8.serialize(value).byteLength`, with a JSON fallback) that's kept in sync
65
+ across all eviction paths. Treat the number as a sanity gauge; it doesn't
66
+ include `Map` per-entry overhead.
67
+
68
+ **Pagination.** Both `Queue<T>.listJobs` and `CacheProvider.listEntries?`
69
+ are offset-paginated. Inputs gain an `offset: number`; outputs change to
70
+ `{ items, total: number | null, hasMore: boolean }`. `total` is nullable
71
+ so backends that can't compute it cheaply still paginate via `hasMore`.
72
+ The UI uses the existing `<Pagination>` component with a 25-row default
73
+ page size. `QueueManager.listJobs` aggregates by over-fetching
74
+ `[0, offset+limit)` per queue, merge-sorting, then slicing the window —
75
+ optimal for the single-queue case, acceptable for the multi-queue case
76
+ within the UI's reasonable page-depth bounds. BullMQ uses native offset
77
+ ranges via `getJobs(types, start, end)` plus `getJobCounts` for `total`.
78
+
79
+ **Pending tab.** The Queue runtime panel exposes a virtual `"pending"`
80
+ state (waiting ∪ delayed, FIFO). It's now the default sub-tab, since
81
+ "what's queued up?" is the most common question. Per-row state is shown
82
+ when viewing the combined list.
83
+
84
+ **Recurring schedules visible under Pending.** Cron- and interval-based
85
+ recurring jobs (e.g. healthchecks) are surfaced under Pending/Delayed
86
+ between fires, with a `nextRunAt` countdown column and a "(recurring)"
87
+ label. `JobSummary` gains optional `nextRunAt: Date` and `recurring:
88
+ boolean` fields. The in-memory queue synthesises these rows from its
89
+ `recurringJobs` registry; BullMQ already materialises the next fire of
90
+ each scheduler as a delayed job and we now surface its trigger time and
91
+ the `repeatJobKey`-derived `recurring` flag.
92
+
93
+ **Bug fix — drop hook emits with no listeners.** `EventBus.emit` no
94
+ longer enqueues a job when zero listeners (distributed or instance-local)
95
+ are registered for the hook. Previously, hooks like
96
+ `core.plugin.initialized` — emitted on every plugin init but subscribed
97
+ to by nothing in the core repo — accumulated one waiting job per emit
98
+ forever. The in-memory queue's `processNext` short-circuits when there
99
+ are zero consumer groups, so its post-loop cleanup never ran for these
100
+ orphaned jobs. The fix drops the emit at the source and logs a debug
101
+ line. Note: in distributed deployments using a Redis-backed queue, this
102
+ means a subscriber on another replica won't receive an event if no
103
+ replica that emits it has a local listener. Plugins needing cross-process
104
+ delivery must register their listener on every replica that should
105
+ receive the hook.
106
+
107
+ **Breaking notes (treated as minor under beta semantics)**:
108
+
109
+ - `@checkstack/infrastructure-common` removes `registerInfrastructureTab`
110
+ and `getInfrastructureTabs`; former callers must register an extension
111
+ into `InfrastructureTabsSlot`.
112
+ - `@checkstack/queue-api`'s `Queue<T>` interface requires the new
113
+ `listJobs(opts)` method returning `ListJobsResult` (paginated). Both
114
+ bundled queue backends (memory, BullMQ) are updated; out-of-tree
115
+ implementations will need to add it.
116
+ - `QueueStats` and `CacheStats` add a required `scope` field.
117
+ - `CacheProvider.listEntries?` (when implemented) now returns
118
+ `ListEntriesResult` instead of `CacheEntrySummary[]`.
119
+ - `JobState` adds a `"pending"` variant.
120
+
121
+ ### Patch Changes
122
+
123
+ - Updated dependencies [42abfff]
124
+ - Updated dependencies [aa89bc5]
125
+ - @checkstack/common@0.9.0
126
+ - @checkstack/cache-common@0.3.0
127
+ - @checkstack/cache-api@0.3.0
128
+ - @checkstack/backend-api@0.15.1
129
+
130
+ ## 0.2.4
131
+
132
+ ### Patch Changes
133
+
134
+ - 50e5f5f: Runtime plugin system: install + uninstall plugins from npm, GitHub releases
135
+ (including private GitHub Enterprise instances), or tarball uploads at
136
+ runtime, with multi-package bundles, dependency-derived compatibility checks,
137
+ multi-instance coordination via a Postgres artifact store, and
138
+ single-coordinator destructive cleanup.
139
+
140
+ Highlights:
141
+
142
+ - New `PluginSource` discriminated union and `PluginInstaller` /
143
+ `PluginInstallerRegistry` interfaces in `@checkstack/backend-api`. The
144
+ GitHub variant accepts an optional `apiBaseUrl` so deployments backed by
145
+ GitHub Enterprise can install from `https://ghe.example.com/api/v3`
146
+ instead of `api.github.com`.
147
+ - New `installPackageMetadataSchema` (Zod) in `@checkstack/common` validates
148
+ every plugin's `package.json` at install time. Required fields: `name`,
149
+ `version`, `description`, `author`, `license`, `checkstack.type`,
150
+ `checkstack.pluginId`. Optional: `checkstack.bundle`,
151
+ `checkstack.usageInstructions`, `checkstack.allowInstallScripts`.
152
+ - New `pluginManagerContract` in `@checkstack/pluginmanager-common` with
153
+ `list`, `previewInstall`, `install`, `previewUninstall`, `uninstall`, and
154
+ `events` procedures.
155
+ - New `@checkstack/pluginmanager-frontend` admin UI: installed-plugins list
156
+ with per-row uninstall (typed-confirmation modal, schema/configs/cascade
157
+ toggles), install page with NPM / Tarball Upload / GitHub Release tabs
158
+ (Catalog tab disabled — coming soon), and an events page surfacing the
159
+ install/uninstall audit log.
160
+ - New `bunx @checkstack/scripts plugin-pack` CLI for plugin authors —
161
+ per-package mode produces an npm-shaped tarball; `--bundle` mode produces
162
+ an outer tarball containing every sibling declared in
163
+ `package.json#checkstack.bundle`. Published to npm so external authors
164
+ can `bunx` it directly without a workspace checkout.
165
+ - Compatibility derived from `package.json#dependencies` ranges
166
+ (`semver.satisfies` against the platform's loaded `@checkstack/*`
167
+ versions) — no separate `compatibility` field.
168
+ - Multi-instance: originator persists artifacts + `plugins` rows + broadcasts
169
+ install/uninstall; receiving instances do in-process register/unregister
170
+ only. Destructive ops (drop schema, delete plugin_configs, delete
171
+ artifacts, delete `plugins` rows) run exactly once on the originator.
172
+ - Fresh-instance bootstrap: `loadPlugins()` hydrates any
173
+ `is_uninstallable=true` plugin missing from `node_modules` from the
174
+ artifact store before normal Phase 1 register.
175
+ - New schema: `plugin_artifacts` (tarball storage), `plugin_install_events`
176
+ (audit/error log). `plugins` extended with `version`, `metadata`,
177
+ `source`, `bundle_id`, `is_primary`. Local plugin sync now writes
178
+ `version` from each plugin's `package.json` so the admin UI shows real
179
+ versions instead of `—`.
180
+ - Tarball-upload endpoint (`POST /api/pluginmanager/upload-tarball`) for
181
+ the install UI; access-gated by `pluginmanager.plugin.manage`.
182
+ - Plugin Manager menu link added to the user menu (main grid, alongside
183
+ Profile / Notification Settings / etc.).
184
+
185
+ Cross-cutting changes:
186
+
187
+ - Backend request/response logging now flows through `rootLogger` (winston)
188
+ instead of `hono/logger`. 5xx responses include the response body inline
189
+ so swallowed early-return errors are visible in the log.
190
+ - The `/api/:pluginId/*` dispatcher now logs which core service is missing
191
+ or which `pluginId` had no metadata when it 500s.
192
+ - New `registerCorePluginMetadata` on `PluginManager` for core routers
193
+ (like the plugin manager itself) that need their metadata visible to the
194
+ RPC dispatcher without going through the full plugin lifecycle.
195
+ - ESLint: `unicorn/no-null` is now disabled globally. Drizzle distinguishes
196
+ between `null` (writes a real SQL NULL) and `undefined` (skip the column
197
+ on insert), so treating them as interchangeable produced latent bugs at
198
+ the persistence boundary. The bulk of the patch-bumped packages above
199
+ reflect lint-fix touches that landed when this rule was relaxed.
200
+ - Workspace-wide license normalization to `Elastic-2.0` (matches
201
+ `LICENSE.md`). Every `package.json` in the workspace now declares the
202
+ same SPDX identifier; the patch bumps capture this.
203
+
204
+ Plugin packages (every `plugins/*`): added a `pack` npm script
205
+ (`bunx @checkstack/scripts plugin-pack`), mirrored each plugin's
206
+ `pluginId` from `plugin-metadata.ts` into `package.json#checkstack.pluginId`
207
+ so install-time validation passes, stubbed any missing required metadata
208
+ fields (`description`, `author`, `license`), and added
209
+ `checkstack.bundle` to multi-package plugin primaries (telegram, rcon, ssh,
210
+ jira, queue-bullmq, queue-memory, cache-memory).
211
+
212
+ Breaking changes:
213
+
214
+ - The legacy single-method `PluginInstaller` interface (`install(packageName)`)
215
+ is removed. Callers must use `coreServices.pluginInstallerRegistry`.
216
+ - The old `pluginAdminContract` and `createPluginAdminRouter` are removed.
217
+ Replaced by `pluginManagerContract` in `@checkstack/pluginmanager-common`
218
+ and `createPluginManagerRouter` in `core/backend`.
219
+ - `@checkstack/test-utils-backend` no longer exports
220
+ `createMockPluginInstaller` / `MockPluginInstaller` (the legacy interface
221
+ it shimmed is gone).
222
+
223
+ Note: bumps are limited to `minor` (for packages with new public API
224
+ surface) and `patch` (for downstream consumers, license normalization,
225
+ and lint fixes). No `major` bumps despite the `PluginInstaller` removal —
226
+ the legacy interface had no third-party consumers in the wild before this
227
+ runtime plugin system landed, and the contract surface is the same shape
228
+ modulo the rename.
229
+
230
+ - Updated dependencies [50e5f5f]
231
+ - @checkstack/backend-api@0.15.0
232
+ - @checkstack/common@0.8.0
233
+ - @checkstack/cache-api@0.2.4
234
+ - @checkstack/cache-common@0.2.1
235
+
3
236
  ## 0.2.3
4
237
 
5
238
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@checkstack/cache-backend",
3
- "version": "0.2.3",
3
+ "version": "0.3.0",
4
+ "license": "Elastic-2.0",
4
5
  "type": "module",
5
6
  "main": "src/index.ts",
6
7
  "checkstack": {
@@ -12,16 +13,16 @@
12
13
  "lint:code": "eslint . --max-warnings 0"
13
14
  },
14
15
  "dependencies": {
15
- "@checkstack/backend-api": "0.14.0",
16
- "@checkstack/cache-api": "0.2.2",
17
- "@checkstack/cache-common": "0.2.0",
18
- "@checkstack/common": "0.7.0",
16
+ "@checkstack/backend-api": "0.15.0",
17
+ "@checkstack/cache-api": "0.2.4",
18
+ "@checkstack/cache-common": "0.2.1",
19
+ "@checkstack/common": "0.8.0",
19
20
  "@orpc/server": "^1.13.2",
20
21
  "zod": "^4.0.0"
21
22
  },
22
23
  "devDependencies": {
23
- "@checkstack/scripts": "0.1.2",
24
- "@checkstack/tsconfig": "0.0.5",
24
+ "@checkstack/scripts": "0.3.0",
25
+ "@checkstack/tsconfig": "0.0.7",
25
26
  "typescript": "^5.7.2"
26
27
  }
27
28
  }
package/src/router.ts CHANGED
@@ -65,5 +65,34 @@ export const createCacheRouter = (configService: ConfigService) => {
65
65
  };
66
66
  },
67
67
  ),
68
+
69
+ getRuntimeStats: os.getRuntimeStats.handler(async ({ context }) => {
70
+ const pluginId = context.cacheManager.getActivePlugin();
71
+ const provider = context.cacheManager.getProvider();
72
+ const stats = provider.getStats
73
+ ? await provider.getStats()
74
+ : {
75
+ keyCount: null,
76
+ sizeBytes: null,
77
+ hits: null,
78
+ misses: null,
79
+ scope: "instance" as const,
80
+ };
81
+ return { pluginId, ...stats };
82
+ }),
83
+
84
+ listEntries: os.listEntries.handler(async ({ input, context }) => {
85
+ const provider = context.cacheManager.getProvider();
86
+ if (!provider.listEntries) {
87
+ return { supported: false, items: [], total: 0, hasMore: false };
88
+ }
89
+ const result = await provider.listEntries(input);
90
+ return {
91
+ supported: true,
92
+ items: result.items,
93
+ total: result.total,
94
+ hasMore: result.hasMore,
95
+ };
96
+ }),
68
97
  });
69
98
  };