Skip to content

Commit 2f52427

Browse files
authored
Fix in-memory cache bug (#288)
1 parent 66431e8 commit 2f52427

2 files changed

Lines changed: 13 additions & 12 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
node-version: [16.x, 18.x, 20.x]
15+
node-version: [16.x, 18.x, 20.x, 21.x]
1616

1717
steps:
1818
- name: Checkout Repository

package.json

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "layered-loader",
3-
"version": "12.4.0",
3+
"version": "12.4.1",
44
"description": "Data loader with support for caching and fallback data sources ",
55
"license": "MIT",
66
"maintainers": [
@@ -50,24 +50,25 @@
5050
],
5151
"homepage": "https://github.com/kibertoad/layered-loader",
5252
"dependencies": {
53-
"toad-cache": "^3.3.0"
53+
"toad-cache": "^3.3.1"
5454
},
5555
"devDependencies": {
56-
"@types/node": "^20.6.0",
57-
"@typescript-eslint/eslint-plugin": "^6.6.0",
58-
"@typescript-eslint/parser": "^6.6.0",
56+
"@types/node": "^20.10.1",
57+
"@typescript-eslint/eslint-plugin": "^6.13.1",
58+
"@typescript-eslint/parser": "^6.13.1",
5959
"@vitest/coverage-v8": "0.34.6",
6060
"del-cli": "^5.1.0",
61-
"eslint": "^8.49.0",
61+
"eslint": "^8.54.0",
6262
"eslint-config-prettier": "^9.0.0",
63-
"eslint-plugin-import": "^2.28.1",
64-
"eslint-plugin-prettier": "^5.0.0",
65-
"eslint-plugin-vitest": "^0.3.1",
63+
"eslint-plugin-import": "^2.29.0",
64+
"eslint-plugin-prettier": "^5.0.1",
65+
"eslint-plugin-vitest": "^0.3.10",
6666
"ioredis": "^5.3.2",
67-
"prettier": "^3.0.3",
67+
"prettier": "^3.1.0",
6868
"rfdc": "^1.3.0",
6969
"vitest": "0.34.6",
70-
"typescript": "5.2.2"
70+
"vite": "4.5.0",
71+
"typescript": "5.3.2"
7172
},
7273
"files": [
7374
"README.md",

0 commit comments

Comments
 (0)