Skip to content

Commit fcf7de8

Browse files
authored
Merge branch 'main' into hb
2 parents 64b0d0c + 9e39280 commit fcf7de8

File tree

10 files changed

+391
-360
lines changed

10 files changed

+391
-360
lines changed

docs/reference-tables/ea-settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
| CACHE_LOCK_DURATION | number | 10000 | Time (in ms) used as a baseline for the acquisition and extension of cache locks | | |
1414
| CACHE_LOCK_RETRIES | number | 10 | Number of retries to acquire a cache lock | | |
1515
| CACHE_MAX_AGE | number | 90000 | Maximum amount of time (in ms) that a response will stay cached | - Value must be an integer<br> - Value must be above the minimum<br> - Value must be below the maximum | 1000 | 1200000 |
16-
| CACHE_MAX_ITEMS | number | 10000 | The maximum number of items that remain in the cache | - Value must be an integer<br> - Value must be above the minimum<br> - Value must be below the maximum | 1000 | 10000 |
16+
| CACHE_MAX_ITEMS | number | 10000 | The maximum number of items that remain in the cache | - Value must be an integer<br> - Value must be above the minimum<br> - Value must be below the maximum | 1000 | 50000 |
1717
| CACHE_POLLING_MAX_RETRIES | number | 10 | Max amount of times to attempt to find EA response in the cache after the Transport has been set up | - Value must be an integer<br> - Value must be above the minimum<br> - Value must be below the maximum | 0 | 20 |
1818
| CACHE_POLLING_SLEEP_MS | number | 200 | The number of ms to sleep between each retry to fetch the EA response in the cache | - Value must be an integer<br> - Value must be above the minimum<br> - Value must be below the maximum | 10 | 1000 |
1919
| CACHE_PREFIX | string | | Specifies a prefix to use for cache keys | | |

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chainlink/external-adapter-framework",
3-
"version": "2.11.0",
3+
"version": "2.11.1",
44
"main": "dist/index.js",
55
"license": "MIT",
66
"repository": "git://github.com/smartcontractkit/ea-framework-js.git",
@@ -12,7 +12,7 @@
1212
"ioredis": "5.8.2",
1313
"mock-socket": "9.3.1",
1414
"pino": "10.1.0",
15-
"pino-pretty": "13.1.2",
15+
"pino-pretty": "13.1.3",
1616
"prom-client": "15.1.3",
1717
"redlock": "5.0.0-beta.2",
1818
"ws": "8.18.3",
@@ -41,19 +41,19 @@
4141
"@types/node": "24.10.1",
4242
"@types/sinonjs__fake-timers": "15.0.1",
4343
"@types/ws": "8.18.1",
44-
"@typescript-eslint/eslint-plugin": "8.47.0",
45-
"@typescript-eslint/parser": "8.47.0",
44+
"@typescript-eslint/eslint-plugin": "8.48.1",
45+
"@typescript-eslint/parser": "8.48.1",
4646
"ava": "6.4.1",
4747
"axios-mock-adapter": "2.1.0",
4848
"c8": "10.1.3",
4949
"eslint": "9.39.1",
5050
"eslint-config-prettier": "10.1.8",
5151
"eslint-plugin-tsdoc": "0.5.0",
5252
"mocksse": "1.0.4",
53-
"prettier": "3.6.2",
53+
"prettier": "3.7.4",
5454
"ts-node": "10.9.2",
5555
"ts-node-dev": "2.0.0",
56-
"typedoc": "0.28.14",
56+
"typedoc": "0.28.15",
5757
"typescript": "5.9.3"
5858
},
5959
"prettier": {

scripts/generator-adapter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"yeoman-generator": "7.5.1",
1515
"@yeoman/types": "1.9.1",
1616
"mem-fs": "4.1.2",
17-
"@yeoman/adapter": "3.1.1",
17+
"@yeoman/adapter": "4.0.1",
1818
"@types/node": "24.10.1"
1919
}
2020
}

scripts/generator-adapter/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"target": "es2022",
66
"downlevelIteration": true,
77
"esModuleInterop": true,
8-
"moduleResolution": "node",
9-
"module": "es2020",
8+
"moduleResolution": "nodenext",
9+
"module": "nodenext",
1010
"resolveJsonModule": true
1111
},
1212
"files": [

0 commit comments

Comments
 (0)