@graphile/lru 5.0.0-alpha.2 → 5.0.0-beta.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +23 -7
  2. package/package.json +6 -6
package/CHANGELOG.md CHANGED
@@ -1,14 +1,30 @@
1
1
  # @graphile/lru
2
2
 
3
+ ## 5.0.0-beta.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#496](https://github.com/benjie/crystal/pull/496)
8
+ [`c9bfd9892`](https://github.com/benjie/crystal/commit/c9bfd989247f9433fb5b18c5175c9d8d64cd21a1)
9
+ Thanks [@benjie](https://github.com/benjie)! - Update dependencies (sometimes
10
+ through major versions).
11
+
12
+ ## 5.0.0-beta.1
13
+
14
+ ### Patch Changes
15
+
16
+ - [`cbd987385`](https://github.com/benjie/crystal/commit/cbd987385f99bd1248bc093ac507cc2f641ba3e8)
17
+ Thanks [@benjie](https://github.com/benjie)! - Bump all packages to beta
18
+
3
19
  ## 5.0.0-alpha.2
4
20
 
5
21
  ### Patch Changes
6
22
 
7
- - [`98ae00f59`](https://github.com/benjie/postgraphile-private/commit/98ae00f59a8ab3edc5718ad8437a0dab734a7d69)
23
+ - [`98ae00f59`](https://github.com/benjie/crystal/commit/98ae00f59a8ab3edc5718ad8437a0dab734a7d69)
8
24
  Thanks [@benjie](https://github.com/benjie)! - Performance overhaul and faster
9
25
  access for unsaturated LRUs.
10
26
 
11
- - [`7f857950a`](https://github.com/benjie/postgraphile-private/commit/7f857950a7e4ec763c936eb6bd1fb77824041d71)
27
+ - [`7f857950a`](https://github.com/benjie/crystal/commit/7f857950a7e4ec763c936eb6bd1fb77824041d71)
12
28
  Thanks [@benjie](https://github.com/benjie)! - Upgrade to the latest
13
29
  TypeScript/tslib
14
30
 
@@ -16,7 +32,7 @@
16
32
 
17
33
  ### Patch Changes
18
34
 
19
- - [`759ad403d`](https://github.com/benjie/postgraphile-private/commit/759ad403d71363312c5225c165873ae84b8a098c)
35
+ - [`759ad403d`](https://github.com/benjie/crystal/commit/759ad403d71363312c5225c165873ae84b8a098c)
20
36
  Thanks [@benjie](https://github.com/benjie)! - Alpha release - see
21
37
  https://postgraphile.org/news/2023-04-26-version-5-alpha
22
38
 
@@ -24,14 +40,14 @@
24
40
 
25
41
  ### Patch Changes
26
42
 
27
- - [#260](https://github.com/benjie/postgraphile-private/pull/260)
28
- [`d5312e6b9`](https://github.com/benjie/postgraphile-private/commit/d5312e6b968fbeb46d074b82a41b4bdbc166598c)
43
+ - [#260](https://github.com/benjie/crystal/pull/260)
44
+ [`d5312e6b9`](https://github.com/benjie/crystal/commit/d5312e6b968fbeb46d074b82a41b4bdbc166598c)
29
45
  Thanks [@benjie](https://github.com/benjie)! - TypeScript v5 is now required
30
46
 
31
47
  ## 5.0.0-0.1
32
48
 
33
49
  ### Patch Changes
34
50
 
35
- - [#125](https://github.com/benjie/postgraphile-private/pull/125)
36
- [`91f2256b3`](https://github.com/benjie/postgraphile-private/commit/91f2256b3fd699bec19fc86f1ca79df057e58639)
51
+ - [#125](https://github.com/benjie/crystal/pull/125)
52
+ [`91f2256b3`](https://github.com/benjie/crystal/commit/91f2256b3fd699bec19fc86f1ca79df057e58639)
37
53
  Thanks [@benjie](https://github.com/benjie)! - Initial changesets release
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphile/lru",
3
- "version": "5.0.0-alpha.2",
3
+ "version": "5.0.0-beta.2",
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",
@@ -30,13 +30,13 @@
30
30
  "dist"
31
31
  ],
32
32
  "dependencies": {
33
- "tslib": "^2.5.0"
33
+ "tslib": "^2.6.2"
34
34
  },
35
35
  "devDependencies": {
36
- "@types/jest": "^27.5.1",
37
- "@types/node": "^18.15.5",
38
- "jest": "^28.1.3",
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.0.4"
40
+ "typescript": "^5.2.2"
41
41
  }
42
42
  }