Skip to content

Commit

Permalink
Fix in-memory cache bug (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
kibertoad authored Nov 29, 2023
1 parent 66431e8 commit 2f52427
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [16.x, 18.x, 20.x, 21.x]

steps:
- name: Checkout Repository
Expand Down
23 changes: 12 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "layered-loader",
"version": "12.4.0",
"version": "12.4.1",
"description": "Data loader with support for caching and fallback data sources ",
"license": "MIT",
"maintainers": [
Expand Down Expand Up @@ -50,24 +50,25 @@
],
"homepage": "https://github.com/kibertoad/layered-loader",
"dependencies": {
"toad-cache": "^3.3.0"
"toad-cache": "^3.3.1"
},
"devDependencies": {
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"@types/node": "^20.10.1",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@vitest/coverage-v8": "0.34.6",
"del-cli": "^5.1.0",
"eslint": "^8.49.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vitest": "^0.3.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vitest": "^0.3.10",
"ioredis": "^5.3.2",
"prettier": "^3.0.3",
"prettier": "^3.1.0",
"rfdc": "^1.3.0",
"vitest": "0.34.6",
"typescript": "5.2.2"
"vite": "4.5.0",
"typescript": "5.3.2"
},
"files": [
"README.md",
Expand Down

0 comments on commit 2f52427

Please sign in to comment.