@graphile/lru 5.0.0-beta.1 → 5.0.0-beta.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/CHANGELOG.md +18 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @graphile/lru
|
|
2
2
|
|
|
3
|
+
## 5.0.0-beta.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#514](https://github.com/graphile/crystal-pre-merge/pull/514)
|
|
8
|
+
[`c9848f693`](https://github.com/graphile/crystal-pre-merge/commit/c9848f6936a5abd7740c0638bfb458fb5551f03b)
|
|
9
|
+
Thanks [@benjie](https://github.com/benjie)! - Update package.json repository
|
|
10
|
+
information
|
|
11
|
+
|
|
12
|
+
## 5.0.0-beta.2
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- [#496](https://github.com/benjie/crystal/pull/496)
|
|
17
|
+
[`c9bfd9892`](https://github.com/benjie/crystal/commit/c9bfd989247f9433fb5b18c5175c9d8d64cd21a1)
|
|
18
|
+
Thanks [@benjie](https://github.com/benjie)! - Update dependencies (sometimes
|
|
19
|
+
through major versions).
|
|
20
|
+
|
|
3
21
|
## 5.0.0-beta.1
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphile/lru",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.3",
|
|
4
4
|
"description": "Extremely simple zero-dependencies ES6 LRU (you probably want lru-cache instead)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/graphile/
|
|
13
|
+
"url": "git+https://github.com/graphile/crystal.git"
|
|
14
14
|
},
|
|
15
15
|
"keywords": [
|
|
16
16
|
"lru",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"author": "Benjie Gillam <code@benjiegillam.com>",
|
|
21
21
|
"license": "MIT",
|
|
22
22
|
"bugs": {
|
|
23
|
-
"url": "https://github.com/graphile/
|
|
23
|
+
"url": "https://github.com/graphile/crystal/issues"
|
|
24
24
|
},
|
|
25
|
-
"homepage": "https://github.com/graphile/
|
|
25
|
+
"homepage": "https://github.com/graphile/crystal/tree/main/utils/lru",
|
|
26
26
|
"engines": {
|
|
27
27
|
"node": ">=14.17"
|
|
28
28
|
},
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"dist"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"tslib": "^2.
|
|
33
|
+
"tslib": "^2.6.2"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@types/jest": "^
|
|
37
|
-
"@types/node": "^
|
|
38
|
-
"jest": "^
|
|
36
|
+
"@types/jest": "^29.5.4",
|
|
37
|
+
"@types/node": "^20.5.7",
|
|
38
|
+
"jest": "^29.6.4",
|
|
39
39
|
"ts-node": "^10.9.1",
|
|
40
|
-
"typescript": "^5.
|
|
40
|
+
"typescript": "^5.2.2"
|
|
41
41
|
}
|
|
42
42
|
}
|