graphile 5.0.0-beta.43 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +21 -1
  2. package/package.json +8 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
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
+
3
24
  ## 5.0.0-beta.43
4
25
 
5
26
  ### Patch Changes
@@ -719,7 +740,6 @@
719
740
  resources, and more. So, we've renamed lots of things as part of the API
720
741
  stabilization work. You're probably only affected by the first 2 bullet
721
742
  points.
722
-
723
743
  - `pgConfigs` -> `pgServices` (also applies to related `pgConfig` terms such
724
744
  as `makePgConfig` -> `makePgService`, `MakePgConfigOptions` ->
725
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.43",
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",
@@ -39,22 +39,25 @@
39
39
  "typescript": "^5.8.3"
40
40
  },
41
41
  "peerDependencies": {
42
- "graphile-build": "^5.0.0-beta.35",
42
+ "graphile-build": "^5.0.0-beta.36",
43
43
  "graphile-config": "^0.0.1-beta.17",
44
- "postgraphile": "^5.0.0-beta.43"
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
58
  "@types/jest": "^30.0.0",
56
- "@types/node": "^22.15.32",
57
- "jest": "^30.0.0",
59
+ "@types/node": "^22.16.3",
60
+ "jest": "^30.0.4",
58
61
  "ts-node": "^10.9.2"
59
62
  }
60
63
  }