graphile 5.0.0-beta.42 → 5.0.0-beta.44
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 +36 -1
- package/package.json +13 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# graphile
|
|
2
2
|
|
|
3
|
+
## 5.0.0-beta.44
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2600](https://github.com/graphile/crystal/pull/2600)
|
|
8
|
+
[`ad588ec`](https://github.com/graphile/crystal/commit/ad588ecde230359f56800e414b7c5fa1aed14957)
|
|
9
|
+
Thanks [@benjie](https://github.com/benjie)! - Mark all
|
|
10
|
+
peerDependencies=dependencies modules as optional peerDependencies to make
|
|
11
|
+
pnpm marginally happier hopefully.
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
[[`4c8f028`](https://github.com/graphile/crystal/commit/4c8f028a7e5c4388efbab53ea65e7b3018ab6d47),
|
|
14
|
+
[`5451c90`](https://github.com/graphile/crystal/commit/5451c9031e341bdae16dc1b7a3b6b19154056701),
|
|
15
|
+
[`1d76d2f`](https://github.com/graphile/crystal/commit/1d76d2f0d19b4d56895ee9988440a35d2c60f9f9),
|
|
16
|
+
[`7147cb0`](https://github.com/graphile/crystal/commit/7147cb07e4d7286bb3b9e949164a2a232d59e28c),
|
|
17
|
+
[`7847c0b`](https://github.com/graphile/crystal/commit/7847c0b09aa6be5526df8ccdb3f429e680a2da03),
|
|
18
|
+
[`0e6c4e0`](https://github.com/graphile/crystal/commit/0e6c4e062be3ecb79c0ae30c89fad1550a0b5e98),
|
|
19
|
+
[`ad588ec`](https://github.com/graphile/crystal/commit/ad588ecde230359f56800e414b7c5fa1aed14957),
|
|
20
|
+
[`e8bb5be`](https://github.com/graphile/crystal/commit/e8bb5be91df242d3c2b8ed4e7010d48feffdcfe2)]:
|
|
21
|
+
- postgraphile@5.0.0-beta.44
|
|
22
|
+
- graphile-build@5.0.0-beta.36
|
|
23
|
+
|
|
24
|
+
## 5.0.0-beta.43
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- [#2577](https://github.com/graphile/crystal/pull/2577)
|
|
29
|
+
[`0c6b1f1`](https://github.com/graphile/crystal/commit/0c6b1f1e188f6e2913832adfed9ca76dfdc25c47)
|
|
30
|
+
Thanks [@benjie](https://github.com/benjie)! - Update dependencies
|
|
31
|
+
|
|
32
|
+
- Updated dependencies
|
|
33
|
+
[[`0c6b1f1`](https://github.com/graphile/crystal/commit/0c6b1f1e188f6e2913832adfed9ca76dfdc25c47),
|
|
34
|
+
[`e0cdabe`](https://github.com/graphile/crystal/commit/e0cdabe25c8894da550546c93bc03b895585544c)]:
|
|
35
|
+
- graphile-build@5.0.0-beta.35
|
|
36
|
+
- postgraphile@5.0.0-beta.43
|
|
37
|
+
- graphile-config@0.0.1-beta.17
|
|
38
|
+
|
|
3
39
|
## 5.0.0-beta.42
|
|
4
40
|
|
|
5
41
|
### Patch Changes
|
|
@@ -704,7 +740,6 @@
|
|
|
704
740
|
resources, and more. So, we've renamed lots of things as part of the API
|
|
705
741
|
stabilization work. You're probably only affected by the first 2 bullet
|
|
706
742
|
points.
|
|
707
|
-
|
|
708
743
|
- `pgConfigs` -> `pgServices` (also applies to related `pgConfig` terms such
|
|
709
744
|
as `makePgConfig` -> `makePgService`, `MakePgConfigOptions` ->
|
|
710
745
|
`MakePgServiceOptions`, etc) - see your `graphile.config.ts` or equivalent
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile",
|
|
3
|
-
"version": "5.0.0-beta.
|
|
3
|
+
"version": "5.0.0-beta.44",
|
|
4
4
|
"description": "Swiss army knife for dealing with all things Graphile",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": "dist/cli-run.js",
|
|
@@ -32,29 +32,32 @@
|
|
|
32
32
|
"LICENSE.md"
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@typescript/vfs": "^1.
|
|
35
|
+
"@typescript/vfs": "^1.6.1",
|
|
36
36
|
"chalk": "^4.1.2",
|
|
37
|
-
"graphile-config": "^0.0.1-beta.
|
|
37
|
+
"graphile-config": "^0.0.1-beta.17",
|
|
38
38
|
"tslib": "^2.8.1",
|
|
39
39
|
"typescript": "^5.8.3"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"graphile-build": "^5.0.0-beta.
|
|
43
|
-
"graphile-config": "^0.0.1-beta.
|
|
44
|
-
"postgraphile": "^5.0.0-beta.
|
|
42
|
+
"graphile-build": "^5.0.0-beta.36",
|
|
43
|
+
"graphile-config": "^0.0.1-beta.17",
|
|
44
|
+
"postgraphile": "^5.0.0-beta.44"
|
|
45
45
|
},
|
|
46
46
|
"peerDependenciesMeta": {
|
|
47
47
|
"graphile-build": {
|
|
48
48
|
"optional": true
|
|
49
49
|
},
|
|
50
|
+
"graphile-config": {
|
|
51
|
+
"optional": true
|
|
52
|
+
},
|
|
50
53
|
"postgraphile": {
|
|
51
54
|
"optional": true
|
|
52
55
|
}
|
|
53
56
|
},
|
|
54
57
|
"devDependencies": {
|
|
55
|
-
"@types/jest": "^
|
|
56
|
-
"@types/node": "^
|
|
57
|
-
"jest": "^
|
|
58
|
-
"ts-node": "^10.9.
|
|
58
|
+
"@types/jest": "^30.0.0",
|
|
59
|
+
"@types/node": "^22.16.3",
|
|
60
|
+
"jest": "^30.0.4",
|
|
61
|
+
"ts-node": "^10.9.2"
|
|
59
62
|
}
|
|
60
63
|
}
|