@milaboratories/pl-middle-layer 1.13.8 → 1.14.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@milaboratories/pl-middle-layer",
3
- "version": "1.13.8",
3
+ "version": "1.14.0",
4
4
  "description": "Pl Middle Layer",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",
@@ -24,27 +24,27 @@
24
24
  "denque": "^2.1.0",
25
25
  "lru-cache": "^11.0.1",
26
26
  "quickjs-emscripten": "^0.31.0",
27
- "undici": "^6.19.8",
27
+ "undici": "^6.20.1",
28
28
  "utility-types": "^3.11.0",
29
- "yaml": "^2.5.1",
29
+ "yaml": "^2.6.0",
30
30
  "zod": "^3.23.8",
31
31
  "@milaboratories/computable": "^2.2.0",
32
- "@platforma-sdk/block-tools": "^2.3.17",
33
32
  "@milaboratories/resolve-helper": "^1.0.1",
34
- "@milaboratories/pl-client": "^2.5.4",
33
+ "@platforma-sdk/block-tools": "^2.3.17",
34
+ "@milaboratories/pl-client": "^2.5.5",
35
+ "@milaboratories/pl-drivers": "^1.3.5",
35
36
  "@milaboratories/pl-model-common": "^1.5.0",
36
- "@milaboratories/pl-drivers": "^1.3.4",
37
37
  "@milaboratories/pl-model-middle-layer": "^1.5.3",
38
- "@milaboratories/pl-tree": "^1.4.5",
38
+ "@milaboratories/pl-tree": "^1.4.6",
39
39
  "@platforma-sdk/model": "^1.7.9",
40
40
  "@milaboratories/ts-helpers": "^1.1.0",
41
+ "@platforma-sdk/workflow-tengo": "1.6.1",
41
42
  "@milaboratories/pl-config": "^1.3.0",
42
- "@milaboratories/pl-local": "^1.4.3",
43
- "@platforma-sdk/workflow-tengo": "1.6.1"
43
+ "@milaboratories/pl-local": "^1.4.3"
44
44
  },
45
45
  "devDependencies": {
46
46
  "typescript": "~5.5.4",
47
- "vite": "^5.4.8",
47
+ "vite": "^5.4.10",
48
48
  "@types/jest": "^29.5.13",
49
49
  "@types/node": "~20.16.10",
50
50
  "jest": "^29.7.0",
@@ -207,7 +207,7 @@ export function projectOverview(
207
207
  if (b.stale) staleBlocks.add(b.id);
208
208
  const stale = b.stale || b.upstreams.findIndex((u) => staleBlocks.has(u)) !== -1;
209
209
  const canRun =
210
- stale &&
210
+ (stale || b.outputErrors) &&
211
211
  Boolean(b.inputsValid) &&
212
212
  !b.missingReference &&
213
213
  b.upstreams.findIndex((u) => cantRun.has(u)) === -1;