graphile-utils 5.0.0-0.12 → 5.0.0-0.13

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 +15 -0
  2. package/package.json +7 -6
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # graphile-utils
2
2
 
3
+ ## 5.0.0-0.13
4
+
5
+ ### Patch Changes
6
+
7
+ - [#173](https://github.com/benjie/postgraphile-private/pull/173)
8
+ [`208166269`](https://github.com/benjie/postgraphile-private/commit/208166269177d6e278b056e1c77d26a2d8f59f49)
9
+ Thanks [@benjie](https://github.com/benjie)! - Fix bug in grafast causing
10
+ loadOne to error. Add missing JSON5 dependency.
11
+
12
+ - Updated dependencies
13
+ [[`208166269`](https://github.com/benjie/postgraphile-private/commit/208166269177d6e278b056e1c77d26a2d8f59f49)]:
14
+ - grafast@0.0.1-0.8
15
+ - graphile-build@5.0.0-0.10
16
+ - graphile-build-pg@5.0.0-0.13
17
+
3
18
  ## 5.0.0-0.12
4
19
 
5
20
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphile-utils",
3
- "version": "5.0.0-0.12",
3
+ "version": "5.0.0-0.13",
4
4
  "description": "Utilities to help with building graphile-build plugins",
5
5
  "type": "commonjs",
6
6
  "main": "dist/index.js",
@@ -40,21 +40,22 @@
40
40
  "dependencies": {
41
41
  "debug": "^4.1.1",
42
42
  "graphile-config": "^0.0.1-0.2",
43
+ "json5": "^2.2.3",
43
44
  "tslib": "^2.4.0"
44
45
  },
45
46
  "engines": {
46
47
  "node": ">=14.17"
47
48
  },
48
49
  "peerDependencies": {
49
- "grafast": "^0.0.1-0.7",
50
- "graphile-build": "^5.0.0-0.9",
51
- "graphile-build-pg": "^5.0.0-0.12",
50
+ "grafast": "^0.0.1-0.8",
51
+ "graphile-build": "^5.0.0-0.10",
52
+ "graphile-build-pg": "^5.0.0-0.13",
52
53
  "graphql": "^16.1.0-experimental-stream-defer.6",
53
54
  "pg-introspection": "^0.0.1-0.2"
54
55
  },
55
56
  "devDependencies": {
56
- "graphile-build": "^5.0.0-0.9",
57
- "graphile-build-pg": "^5.0.0-0.12",
57
+ "graphile-build": "^5.0.0-0.10",
58
+ "graphile-build-pg": "^5.0.0-0.13",
58
59
  "jest": "^28.1.0",
59
60
  "jest-serializer-graphql-schema": "^5.0.0-0.2",
60
61
  "nodemon": "^2.0.15",