graphile 5.0.0-beta.44 → 5.0.0-beta.45

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 +30 -0
  2. package/package.json +5 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # graphile
2
2
 
3
+ ## 5.0.0-beta.45
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2678](https://github.com/graphile/crystal/pull/2678)
8
+ [`6dafac1`](https://github.com/graphile/crystal/commit/6dafac162955291e5147c21e57734b44e30acb98)
9
+ Thanks [@benjie](https://github.com/benjie)! - Remove peer dependency
10
+ optionality in an attempt to satisfy pnpm's installation algorithms
11
+ - Updated dependencies
12
+ [[`b09719f`](https://github.com/graphile/crystal/commit/b09719f5107eada15104c2bbfa4f1290af0a4465),
13
+ [`5dbb9e8`](https://github.com/graphile/crystal/commit/5dbb9e87850ce8de29ab4fec18c9d06333b642de),
14
+ [`cfd4c3c`](https://github.com/graphile/crystal/commit/cfd4c3cff0ef40ed87a2c700b7719c1ca0e73588),
15
+ [`3d5c464`](https://github.com/graphile/crystal/commit/3d5c4641df66b431066efd6c74b67ca0d38ba7f4),
16
+ [`208364f`](https://github.com/graphile/crystal/commit/208364f9423abd240a0772b661986aae6e185c47),
17
+ [`6762c70`](https://github.com/graphile/crystal/commit/6762c7005c56d17c06cebb6857e8d295d86399eb),
18
+ [`13513dd`](https://github.com/graphile/crystal/commit/13513ddaea15ad9498a77de7c4e92679498f99ca),
19
+ [`bc2b188`](https://github.com/graphile/crystal/commit/bc2b188a50e00f153dc68df6955399c5917130bd),
20
+ [`87a4c92`](https://github.com/graphile/crystal/commit/87a4c92dc89093a8bd601dcd692910eadf0c4cd3),
21
+ [`703d162`](https://github.com/graphile/crystal/commit/703d162df2cc148ac343c1339b8e7df750aa781d),
22
+ [`4a9072b`](https://github.com/graphile/crystal/commit/4a9072bfa3d3e86c6013caf2b89a31e87f2bb421),
23
+ [`7766c19`](https://github.com/graphile/crystal/commit/7766c19ecefd3aebc965306db90ba29b3b05200c),
24
+ [`6dafac1`](https://github.com/graphile/crystal/commit/6dafac162955291e5147c21e57734b44e30acb98),
25
+ [`aa8fb3d`](https://github.com/graphile/crystal/commit/aa8fb3dbd23b0c3b6b8039922cb4ab7293b51844),
26
+ [`e15f886`](https://github.com/graphile/crystal/commit/e15f886cae1041416b44b74b75426f8d43000dcf),
27
+ [`185d449`](https://github.com/graphile/crystal/commit/185d449ed30d29c9134cc898b50a1473ab2910a2),
28
+ [`f83b191`](https://github.com/graphile/crystal/commit/f83b191f39c9d521fd12563cca6aa20d1a6f0494)]:
29
+ - postgraphile@5.0.0-beta.47
30
+ - graphile-config@0.0.1-beta.18
31
+ - graphile-build@5.0.0-beta.38
32
+
3
33
  ## 5.0.0-beta.44
4
34
 
5
35
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphile",
3
- "version": "5.0.0-beta.44",
3
+ "version": "5.0.0-beta.45",
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",
@@ -34,22 +34,19 @@
34
34
  "dependencies": {
35
35
  "@typescript/vfs": "^1.6.1",
36
36
  "chalk": "^4.1.2",
37
- "graphile-config": "^0.0.1-beta.17",
37
+ "graphile-config": "^0.0.1-beta.18",
38
38
  "tslib": "^2.8.1",
39
39
  "typescript": "^5.8.3"
40
40
  },
41
41
  "peerDependencies": {
42
- "graphile-build": "^5.0.0-beta.36",
43
- "graphile-config": "^0.0.1-beta.17",
44
- "postgraphile": "^5.0.0-beta.44"
42
+ "graphile-build": "^5.0.0-beta.38",
43
+ "graphile-config": "^0.0.1-beta.18",
44
+ "postgraphile": "^5.0.0-beta.47"
45
45
  },
46
46
  "peerDependenciesMeta": {
47
47
  "graphile-build": {
48
48
  "optional": true
49
49
  },
50
- "graphile-config": {
51
- "optional": true
52
- },
53
50
  "postgraphile": {
54
51
  "optional": true
55
52
  }