@valescoagency/runway 0.14.2 → 0.14.3
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 +1 -1
- package/dist/dashboard/storage.js +8 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -541,7 +541,7 @@ These are tractable, just not v1.
|
|
|
541
541
|
|
|
542
542
|
## Status
|
|
543
543
|
|
|
544
|
-
0.14.
|
|
544
|
+
0.14.3 — production-shaped and dogfooded against live Linear queues.
|
|
545
545
|
The end-to-end pipeline (init → run → review → PR) is stable; surface
|
|
546
546
|
may still shift as the orchestrator's policy and iteration mechanics
|
|
547
547
|
mature. See [CHANGELOG.md](./CHANGELOG.md) for per-release detail.
|
|
@@ -378,6 +378,14 @@ export function createStorage(path, opts = {}) {
|
|
|
378
378
|
// dashboard boot ran the same migration.
|
|
379
379
|
}
|
|
380
380
|
}
|
|
381
|
+
// VA-469: drop `evaluator_aggregates_v1` before the VA-455 rebuild.
|
|
382
|
+
// SQLite 3.45+ (bundled with Node 26) validates view dependencies
|
|
383
|
+
// during DDL, so `DROP TABLE drains` inside relaxDrainsEndTimeNotNull
|
|
384
|
+
// is rejected with `error in view evaluator_aggregates_v1: no such
|
|
385
|
+
// table: main.drains` when a legacy boot had already installed the
|
|
386
|
+
// view. The view is unconditionally recreated by `aggregatesViewDdl`
|
|
387
|
+
// below, so dropping it here is free on the fresh-install path too.
|
|
388
|
+
db.exec(`DROP VIEW IF EXISTS evaluator_aggregates_v1`);
|
|
381
389
|
// VA-455: SQLite has no `ALTER COLUMN`, so relaxing the original
|
|
382
390
|
// `end_time_unix_nano TEXT NOT NULL` constraint on legacy DBs
|
|
383
391
|
// requires a table-rebuild. Only fire when PRAGMA reports the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@valescoagency/runway",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.3",
|
|
4
4
|
"description": "Linear-driven orchestrator + scaffolder for coding agents on Sandcastle. `runway init` scaffolds a target repo (sandcastle + varlock + 1Password); `runway run` drains a Linear queue against it; `runway doctor`, `runway upgrade`, `runway upgrade-repo` round out the lifecycle.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|