@milaboratories/pl-middle-layer 1.14.4 → 1.14.6

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.14.4",
3
+ "version": "1.14.6",
4
4
  "description": "Pl Middle Layer",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",
@@ -19,7 +19,7 @@
19
19
  "keywords": [],
20
20
  "license": "UNLICENSED",
21
21
  "dependencies": {
22
- "@milaboratories/pframes-node": "^1.6.3",
22
+ "@milaboratories/pframes-node": "^1.6.4",
23
23
  "canonicalize": "^2.0.0",
24
24
  "denque": "^2.1.0",
25
25
  "lru-cache": "^11.0.1",
@@ -28,19 +28,19 @@
28
28
  "utility-types": "^3.11.0",
29
29
  "yaml": "^2.6.0",
30
30
  "zod": "^3.23.8",
31
- "@milaboratories/computable": "^2.2.0",
32
31
  "@milaboratories/resolve-helper": "^1.0.1",
33
32
  "@milaboratories/pl-client": "^2.5.5",
34
- "@milaboratories/pl-drivers": "^1.3.6",
35
- "@platforma-sdk/block-tools": "^2.3.18",
36
- "@milaboratories/pl-model-common": "^1.5.1",
37
- "@milaboratories/pl-model-middle-layer": "^1.5.4",
33
+ "@milaboratories/computable": "^2.2.0",
34
+ "@platforma-sdk/block-tools": "^2.3.19",
35
+ "@milaboratories/pl-drivers": "^1.3.7",
36
+ "@milaboratories/pl-model-common": "^1.5.2",
37
+ "@milaboratories/pl-model-middle-layer": "^1.5.5",
38
38
  "@milaboratories/pl-tree": "^1.4.6",
39
- "@platforma-sdk/model": "^1.7.16",
40
- "@platforma-sdk/workflow-tengo": "1.6.3",
41
- "@milaboratories/pl-local": "^1.4.3",
39
+ "@platforma-sdk/workflow-tengo": "1.6.4",
40
+ "@platforma-sdk/model": "^1.7.20",
41
+ "@milaboratories/pl-config": "^1.3.0",
42
42
  "@milaboratories/ts-helpers": "^1.1.0",
43
- "@milaboratories/pl-config": "^1.3.0"
43
+ "@milaboratories/pl-local": "^1.4.3"
44
44
  },
45
45
  "devDependencies": {
46
46
  "typescript": "~5.5.4",
@@ -127,7 +127,7 @@ export class PFrameDriver implements SdkPFrameDriver {
127
127
  fetchMethod: async (key) => await fsp.readFile(key),
128
128
  sizeCalculation: (v) => v.length
129
129
  });
130
- const concurrencyLimiter = new ConcurrencyLimitingExecutor(2);
130
+ const concurrencyLimiter = new ConcurrencyLimitingExecutor(1);
131
131
  this.blobContentCache = blobContentCache;
132
132
  this.concurrencyLimiter = concurrencyLimiter;
133
133
  this.pFrames = new (class extends RefCountResourcePool<InternalPFrameData, PFrameHolder> {