@adonisjs/cache 1.1.1 → 1.1.3
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/README.md +2 -2
- package/package.json +11 -10
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
[![gh-workflow-image]][gh-workflow-url] [![npm-image]][npm-url] ![][typescript-image] [![license-image]][license-url]
|
|
6
6
|
|
|
7
7
|
## Introduction
|
|
8
|
-
Cache module for AdonisJS built on top of
|
|
8
|
+
Cache module for AdonisJS built on top of [Bentocache](https://github.com/Julien-R44/bentocache). Support multiples drivers, File, In-Memory, Redis, SQLs databases and more.
|
|
9
9
|
|
|
10
10
|
## Official Documentation
|
|
11
11
|
The documentation is available on the [AdonisJS website](https://docs.adonisjs.com/guides/digging-deeper/cache).
|
|
@@ -19,7 +19,7 @@ We encourage you to read the [contribution guide](https://github.com/adonisjs/.g
|
|
|
19
19
|
In order to ensure that the AdonisJS community is welcoming to all, please review and abide by the [Code of Conduct](https://github.com/adonisjs/.github/blob/main/docs/CODE_OF_CONDUCT.md).
|
|
20
20
|
|
|
21
21
|
## License
|
|
22
|
-
AdonisJS
|
|
22
|
+
AdonisJS Cache is open-sourced software licensed under the [MIT license](LICENSE.md).
|
|
23
23
|
|
|
24
24
|
[gh-workflow-image]: https://img.shields.io/github/actions/workflow/status/adonisjs/cache/checks.yml?branch=1.x&style=for-the-badge
|
|
25
25
|
[gh-workflow-url]: https://github.com/adonisjs/cache/actions/workflows/checks.yml "Github action"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adonisjs/cache",
|
|
3
3
|
"description": "Official caching module for AdonisJS framework",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.3",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=20.6.0"
|
|
7
7
|
},
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@adonisjs/assembler": "^7.8.2",
|
|
42
|
-
"@adonisjs/core": "^6.17.
|
|
43
|
-
"@adonisjs/eslint-config": "^2.0.0
|
|
42
|
+
"@adonisjs/core": "^6.17.2",
|
|
43
|
+
"@adonisjs/eslint-config": "^2.0.0",
|
|
44
44
|
"@adonisjs/lucid": "^21.6.0",
|
|
45
45
|
"@adonisjs/prettier-config": "^1.4.0",
|
|
46
46
|
"@adonisjs/redis": "^9.2.0",
|
|
@@ -51,28 +51,28 @@
|
|
|
51
51
|
"@japa/runner": "^4.2.0",
|
|
52
52
|
"@japa/snapshot": "^2.0.8",
|
|
53
53
|
"@release-it/conventional-changelog": "^10.0.0",
|
|
54
|
-
"@swc/core": "^1.10.
|
|
55
|
-
"@types/node": "~20.17.
|
|
54
|
+
"@swc/core": "^1.10.16",
|
|
55
|
+
"@types/node": "~20.17.19",
|
|
56
56
|
"better-sqlite3": "^11.8.1",
|
|
57
57
|
"c8": "^10.1.3",
|
|
58
58
|
"copyfiles": "^2.4.1",
|
|
59
59
|
"del-cli": "^6.0.0",
|
|
60
60
|
"edge.js": "^6.2.1",
|
|
61
|
-
"eslint": "^9.20.
|
|
61
|
+
"eslint": "^9.20.1",
|
|
62
62
|
"ioredis": "^5.5.0",
|
|
63
63
|
"knex": "^3.1.0",
|
|
64
64
|
"luxon": "^3.5.0",
|
|
65
65
|
"mysql2": "^3.12.0",
|
|
66
66
|
"p-event": "^6.0.1",
|
|
67
|
-
"pg": "^8.13.
|
|
68
|
-
"prettier": "^3.
|
|
67
|
+
"pg": "^8.13.3",
|
|
68
|
+
"prettier": "^3.5.1",
|
|
69
69
|
"release-it": "^18.1.2",
|
|
70
70
|
"ts-node-maintained": "^10.9.5",
|
|
71
71
|
"tsup": "^8.3.6",
|
|
72
72
|
"typescript": "~5.7.3"
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
|
-
"bentocache": "^1.
|
|
75
|
+
"bentocache": "^1.2.0"
|
|
76
76
|
},
|
|
77
77
|
"peerDependencies": {
|
|
78
78
|
"@adonisjs/assembler": "^7.0.0",
|
|
@@ -159,5 +159,6 @@
|
|
|
159
159
|
"dts": false,
|
|
160
160
|
"sourcemap": true,
|
|
161
161
|
"target": "esnext"
|
|
162
|
-
}
|
|
162
|
+
},
|
|
163
|
+
"packageManager": "pnpm@10.4.0"
|
|
163
164
|
}
|