graphile-utils 5.0.0-beta.4 → 5.0.0-beta.40

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 (42) hide show
  1. package/CHANGELOG.md +919 -0
  2. package/README.md +55 -34
  3. package/dist/exportable.d.ts +1 -1
  4. package/dist/exportable.d.ts.map +1 -1
  5. package/dist/exportable.js +3 -3
  6. package/dist/exportable.js.map +1 -1
  7. package/dist/gql.js +1 -2
  8. package/dist/gql.js.map +1 -1
  9. package/dist/index.d.ts +7 -1
  10. package/dist/index.d.ts.map +1 -1
  11. package/dist/index.js +1 -0
  12. package/dist/index.js.map +1 -1
  13. package/dist/makeAddInflectorsPlugin.js +2 -3
  14. package/dist/makeAddInflectorsPlugin.js.map +1 -1
  15. package/dist/makeAddPgTableConditionPlugin.d.ts +4 -4
  16. package/dist/makeAddPgTableConditionPlugin.d.ts.map +1 -1
  17. package/dist/makeAddPgTableConditionPlugin.js +11 -10
  18. package/dist/makeAddPgTableConditionPlugin.js.map +1 -1
  19. package/dist/makeAddPgTableOrderByPlugin.d.ts +10 -9
  20. package/dist/makeAddPgTableOrderByPlugin.d.ts.map +1 -1
  21. package/dist/makeAddPgTableOrderByPlugin.js +38 -33
  22. package/dist/makeAddPgTableOrderByPlugin.js.map +1 -1
  23. package/dist/makeChangeNullabilityPlugin.d.ts.map +1 -1
  24. package/dist/makeChangeNullabilityPlugin.js +1 -2
  25. package/dist/makeChangeNullabilityPlugin.js.map +1 -1
  26. package/dist/makeExtendSchemaPlugin.d.ts +38 -25
  27. package/dist/makeExtendSchemaPlugin.d.ts.map +1 -1
  28. package/dist/makeExtendSchemaPlugin.js +317 -54
  29. package/dist/makeExtendSchemaPlugin.js.map +1 -1
  30. package/dist/makePgSmartTagsPlugin.d.ts +8 -1
  31. package/dist/makePgSmartTagsPlugin.d.ts.map +1 -1
  32. package/dist/makePgSmartTagsPlugin.js +6 -6
  33. package/dist/makePgSmartTagsPlugin.js.map +1 -1
  34. package/dist/makeProcessSchemaPlugin.js +1 -2
  35. package/dist/makeProcessSchemaPlugin.js.map +1 -1
  36. package/dist/makeWrapPlansPlugin.d.ts +1 -1
  37. package/dist/makeWrapPlansPlugin.d.ts.map +1 -1
  38. package/dist/makeWrapPlansPlugin.js +23 -10
  39. package/dist/makeWrapPlansPlugin.js.map +1 -1
  40. package/dist/parseIdentifierParts.js +1 -2
  41. package/dist/parseIdentifierParts.js.map +1 -1
  42. package/package.json +24 -21
package/CHANGELOG.md CHANGED
@@ -1,5 +1,924 @@
1
1
  # graphile-utils
2
2
 
3
+ ## 5.0.0-beta.40
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ [[`5c802ea6819361eed36b75f246ae0adb35b14669`](https://github.com/graphile/crystal/commit/5c802ea6819361eed36b75f246ae0adb35b14669)]:
9
+ - graphile-build-pg@5.0.0-beta.40
10
+ - @dataplan/pg@0.0.1-beta.33
11
+ - graphile-build@5.0.0-beta.34
12
+
13
+ ## 5.0.0-beta.39
14
+
15
+ ### Patch Changes
16
+
17
+ - [#2482](https://github.com/graphile/crystal/pull/2482)
18
+ [`459e1869a2ec58925b2bac5458af487c52a8ca37`](https://github.com/graphile/crystal/commit/459e1869a2ec58925b2bac5458af487c52a8ca37)
19
+ Thanks [@benjie](https://github.com/benjie)! - Minimum version of Node.js
20
+ bumped to Node 22 (the latest LTS).
21
+
22
+ - [#2527](https://github.com/graphile/crystal/pull/2527)
23
+ [`576fb8bad56cb940ab444574d752e914d462018a`](https://github.com/graphile/crystal/commit/576fb8bad56cb940ab444574d752e914d462018a)
24
+ Thanks [@{](https://github.com/{)! - In order to make the libraries more type
25
+ safe, `makeGrafastSchema` (from `grafast`) and `makeExtendSchemaPlugin` (from
26
+ `postgraphile/utils`) have deprecated the `typeDefs`/`plans` pattern since
27
+ `plans` (like `resolvers` in the traditional format) ended up being a
28
+ mish-mash of lots of different types and `__`-prefixed fields for special
29
+ cases.
30
+
31
+ Instead the configuration should be split into `typeDefs` with `objects`,
32
+ `interfaces`, `unions`, `inputObjects`, `scalars` and `enums`; and object and
33
+ input object fields should be specified via the `plans` entry within the type
34
+ to avoid conflicts with `resolveType`/`isTypeOf`/`planType`/`scope` and
35
+ similar type-level (rather than field-level) properties. Similarly, enum
36
+ values should be added under a `values` property. This also means these
37
+ type-level fields no longer have the `__` prefix.
38
+
39
+ Migration is quite straightforward:
40
+
41
+ 1. **Add new top-level properties**. Add `objects`, `interfaces`, `unions`,
42
+ `inputObjects`, `scalars`, and `enums` as top level properties alongside
43
+ `typeDefs` and `plans`. Each should be an empty object. You can skip any
44
+ where you're not defining types of that kind.
45
+ 1. **Split definitions based on type kind**. For each type defined in `plans`
46
+ move it into the appropriate new property based on the keyword used to
47
+ define the type in the `typeDefs` (`type` → `objects`, `interface`
48
+ → `interfaces`, `union` → `unions`, `input object` →
49
+ `inputObjects`, `scalar` → `scalars`, `enum` → `enums`).
50
+ 1. **Move field plans into nested `plans: {...}` object**. For each type
51
+ defined in the new `objects` and `inputObjects` maps: create a
52
+ `plans: { ... }` entry inside the type and move all fields (anything not
53
+ prefixed with `__`) inside this new (nested) property.
54
+ 1. **Move enum values into nested `values: {...}` object**. For each type
55
+ defined in the new `enums` map: create a `values: { ... }` entry inside the
56
+ type and move all values (anything not prefixed with `__`) inside this new
57
+ (nested) property.
58
+ 1. **Remove `__` prefixes**. For each type across
59
+ `objects`/`interfaces`/`unions`/`interfaceObjects`/`scalars` and `enums`:
60
+ remove the `__` prefix from any methods/properties.
61
+
62
+ Example:
63
+
64
+ ```diff
65
+ typeDefs: ...,
66
+ -plans: {
67
+ +objects: {
68
+
69
+ - __isTypeOf(v) {
70
+ + isTypeOf(v) {
71
+ return v.username != null;
72
+ },
73
+ + plans: {
74
+ fieldName($source, fieldArgs) {
75
+ // ...
76
+ },
77
+ + },
78
+ },
79
+ +},
80
+ +interfaces: {,
81
+ MyInterface: {
82
+ - __resolveType($specifier) {
83
+ + resolveType($specifier) {
84
+ // ...
85
+ }
86
+ }
87
+ +},
88
+ +enums: {
89
+ MyEnum: {
90
+ + values: {
91
+ ONE: {value: 1},
92
+ TWO: {value: 2},
93
+ THREE: {value: 3},
94
+ + }
95
+ }
96
+ },
97
+ ```
98
+
99
+ Other changes:
100
+
101
+ - `ObjectPlans`/`GrafastPlans`/`FieldPlans`/`InputObjectPlans`/`ScalarPlans`
102
+ all changed to signular
103
+ - `InterfaceOrUnionPlans` split to `InterfacePlan`/`UnionPlan` (identical
104
+ currently)
105
+ - Shape of `ObjectPlan`/`InterfacePlan`/`UnionPlan` has changed;
106
+ `DeprecatedObjectPlan`/etc exist for backcompat
107
+ - `FieldArgs` can now accept an input shape indicating the args and their
108
+ types
109
+ - `FieldPlanResolver<TArgs, TParentStep, TResultStep>` has switched the order
110
+ of the first two generic parameters:
111
+ `FieldPlanResolver<TParentStep, TArgs, TResultStep>` - this is to reflect
112
+ the order of the arguments to the function. Also null has been removed from
113
+ the generics.
114
+ - Various generics (including `GrafastFieldConfig`) that used to take a
115
+ GraphQL type instance as a generic parameter no longer do - you need to use
116
+ external code generation because TypeScript cannot handle the dynamic
117
+ creation.
118
+ - `GrafastFieldConfig` last two generics swapped order.
119
+ - `GrafastArgumentConfig` generics completely changed
120
+
121
+ - Updated dependencies
122
+ [[`0e36cb9077c76710d2e407830323f86c5038126e`](https://github.com/graphile/crystal/commit/0e36cb9077c76710d2e407830323f86c5038126e),
123
+ [`c0c3f48fa9f60cb9a4436ea135979b779ecc71ec`](https://github.com/graphile/crystal/commit/c0c3f48fa9f60cb9a4436ea135979b779ecc71ec),
124
+ [`cef9a37f846b4af105ac20960530d65c9f44afa9`](https://github.com/graphile/crystal/commit/cef9a37f846b4af105ac20960530d65c9f44afa9),
125
+ [`56ce94a847c6a4094643665cbf5d3712f56140b6`](https://github.com/graphile/crystal/commit/56ce94a847c6a4094643665cbf5d3712f56140b6),
126
+ [`070467c4ea693a2516fc8006bebb88b1ab96fb26`](https://github.com/graphile/crystal/commit/070467c4ea693a2516fc8006bebb88b1ab96fb26),
127
+ [`192a27e08763ea26607344a2ea6c7f5c595cc2a3`](https://github.com/graphile/crystal/commit/192a27e08763ea26607344a2ea6c7f5c595cc2a3),
128
+ [`142e39f26ce329f09bee0b5427f1ddc5103e610e`](https://github.com/graphile/crystal/commit/142e39f26ce329f09bee0b5427f1ddc5103e610e),
129
+ [`6ef6abce15936a896156d5316020df55cf7d18e3`](https://github.com/graphile/crystal/commit/6ef6abce15936a896156d5316020df55cf7d18e3),
130
+ [`0239c2d519300a72f545e0db7c371adae4ade2a9`](https://github.com/graphile/crystal/commit/0239c2d519300a72f545e0db7c371adae4ade2a9),
131
+ [`09d95319be3e25e023dfbab9d1542dfe06f65355`](https://github.com/graphile/crystal/commit/09d95319be3e25e023dfbab9d1542dfe06f65355),
132
+ [`0ea439d33ccef7f8d01ac5f54893ab2bbf1cbd4d`](https://github.com/graphile/crystal/commit/0ea439d33ccef7f8d01ac5f54893ab2bbf1cbd4d),
133
+ [`8034614d1078b1bd177b6e7fcc949420614e3245`](https://github.com/graphile/crystal/commit/8034614d1078b1bd177b6e7fcc949420614e3245),
134
+ [`a830770e775a65ce1d09fa767f38e84f5c0e5139`](https://github.com/graphile/crystal/commit/a830770e775a65ce1d09fa767f38e84f5c0e5139),
135
+ [`459e1869a2ec58925b2bac5458af487c52a8ca37`](https://github.com/graphile/crystal/commit/459e1869a2ec58925b2bac5458af487c52a8ca37),
136
+ [`c350e49e372ec12a4cbf04fb6b4260e01832d12b`](https://github.com/graphile/crystal/commit/c350e49e372ec12a4cbf04fb6b4260e01832d12b),
137
+ [`3176ea3e57d626b39613a73117ef97627370ec83`](https://github.com/graphile/crystal/commit/3176ea3e57d626b39613a73117ef97627370ec83),
138
+ [`46a42f5547c041289aa98657ebc6815f4b6c8539`](https://github.com/graphile/crystal/commit/46a42f5547c041289aa98657ebc6815f4b6c8539),
139
+ [`be3f174c5aae8fe78a240e1bc4e1de7f18644b43`](https://github.com/graphile/crystal/commit/be3f174c5aae8fe78a240e1bc4e1de7f18644b43),
140
+ [`c43ed67b9d3acbadb172ee88ba9c2a4d32528a25`](https://github.com/graphile/crystal/commit/c43ed67b9d3acbadb172ee88ba9c2a4d32528a25),
141
+ [`576fb8bad56cb940ab444574d752e914d462018a`](https://github.com/graphile/crystal/commit/576fb8bad56cb940ab444574d752e914d462018a),
142
+ [`9f459101fa4428aa4bac71531e75f99e33da8e17`](https://github.com/graphile/crystal/commit/9f459101fa4428aa4bac71531e75f99e33da8e17),
143
+ [`921665df8babe2651ab3b5886ab68bb518f2125b`](https://github.com/graphile/crystal/commit/921665df8babe2651ab3b5886ab68bb518f2125b),
144
+ [`78bb1a615754d772a5fda000e96073c91fa9eba7`](https://github.com/graphile/crystal/commit/78bb1a615754d772a5fda000e96073c91fa9eba7),
145
+ [`ab0bcda5fc3c136eea09493a7d9ed4542975858e`](https://github.com/graphile/crystal/commit/ab0bcda5fc3c136eea09493a7d9ed4542975858e),
146
+ [`455f4811d37ad8fff91183c7a88621bcf9d79acf`](https://github.com/graphile/crystal/commit/455f4811d37ad8fff91183c7a88621bcf9d79acf),
147
+ [`45adaff886e7cd72b864150927be6c0cb4a7dfe8`](https://github.com/graphile/crystal/commit/45adaff886e7cd72b864150927be6c0cb4a7dfe8),
148
+ [`b05d57b932ea00d10715dcab9f79d443408881fc`](https://github.com/graphile/crystal/commit/b05d57b932ea00d10715dcab9f79d443408881fc)]:
149
+ - grafast@0.1.1-beta.22
150
+ - @dataplan/pg@0.0.1-beta.33
151
+ - graphile-build-pg@5.0.0-beta.39
152
+ - graphile-build@5.0.0-beta.34
153
+ - graphile-config@0.0.1-beta.16
154
+ - tamedevil@0.0.0-beta.8
155
+
156
+ ## 5.0.0-beta.38
157
+
158
+ ### Patch Changes
159
+
160
+ - [`d68c5831ed66dc8a7a79aab2100ca733409c6f72`](https://github.com/graphile/crystal/commit/d68c5831ed66dc8a7a79aab2100ca733409c6f72)
161
+ Thanks [@benjie](https://github.com/benjie)! - Improve error messages around
162
+ correct usage of typeDefs and gql helper.
163
+
164
+ - [#2355](https://github.com/graphile/crystal/pull/2355)
165
+ [`7bb77961a38abea8a07980a3f47bc3ca22dac8f8`](https://github.com/graphile/crystal/commit/7bb77961a38abea8a07980a3f47bc3ca22dac8f8)
166
+ Thanks [@benjie](https://github.com/benjie)! - Fix bug in makeWrapPlansPlugin
167
+ where the default plan resolver used was incorrect; use the new
168
+ `defaultPlanResolver` export from `grafast` instead of building our own.
169
+
170
+ - [#2376](https://github.com/graphile/crystal/pull/2376)
171
+ [`da6f3c04efe3d8634c0bc3fcf93ac2518de85322`](https://github.com/graphile/crystal/commit/da6f3c04efe3d8634c0bc3fcf93ac2518de85322)
172
+ Thanks [@benjie](https://github.com/benjie)! - Overhaul Grafast to remove more
173
+ input planning - inputs should be evaluated at runtime - and remove more
174
+ plan-time step evaluation.
175
+
176
+ `FieldArgs.get` is no more; use `FieldArgs.getRaw` or use `bakedInput()`
177
+ (TODO: document) to get the "baked" version of a raw input value.
178
+
179
+ Input object fields no longer have `applyPlan`/`inputPlan`, instead having the
180
+ runtime equivalents `apply()` and `baked()`. `FieldArgs` is no longer
181
+ available on input object fields, since these fields are no longer called at
182
+ plantime; instead, the actual value is passed.
183
+
184
+ `FieldArgs` gains `.typeAt(path)` method that details the GraphQL input type
185
+ at the given path.
186
+
187
+ Field arguments are no longer passed `FieldArgs`, instead they're passed a
188
+ (similar) `FieldArg` object representing the argument value itself.
189
+
190
+ `autoApplyAfterParentPlan` is no more - instead if an argument has `applyPlan`
191
+ it will be called automatically unless it was called during the field plan
192
+ resolver itself.
193
+
194
+ `autoApplyAfterParentSubscribePlan` is no more - instead if an argument has
195
+ `applySubscribePlan` it will be called automatically unless it was called
196
+ during the field plan resolver itself.
197
+
198
+ Field arguments no longer support `inputPlan` - use `bakedInput()` if you need
199
+ that.
200
+
201
+ Input fields no longer support `inputPlan`, `applyPlan`,
202
+ `autoApplyAfterParentInputPlan` nor `autoApplyAfterParentApplyPlan`. Instead,
203
+ `apply()` (which is called by `applyStep()` at runtime) has been added.
204
+
205
+ `sqlValueWithCodec(value, codec)` can be used at runtime in places where
206
+ `$step.placeholder($value, codec)` would have been used previously.
207
+ `placeholder` has been removed from all places that are now runtime - namely
208
+ the list of modifiers below...
209
+
210
+ The following `ModifierStep` classes have all dropped their `Step` suffix,
211
+ these `Modifier` classes now all run at runtime, and are thus no longer steps;
212
+ they're invoked as part of the new `applyInput()` (TODO: document) step:
213
+
214
+ - `ModifierStep` &rArr; `Modifier`
215
+ - `PgBooleanFilterStep` &rArr; `PgBooleanFilter`
216
+ - `PgClassFilterStep` &rArr; `PgClassFilter`
217
+ - `PgConditionCapableParentStep` &rArr; `PgConditionCapableParent`
218
+ - `PgConditionLikeStep` &rArr; `PgConditionLike`
219
+ - `PgConditionStepMode` &rArr; `PgConditionMode`
220
+ - `PgConditionStep` &rArr; `PgCondition`
221
+ - `PgManyFilterStep` &rArr; `PgManyFilter`
222
+ - `PgOrFilterStep` &rArr; `PgOrFilter`
223
+ - `PgTempTableStep` &rArr; `PgTempTable`
224
+ - `SetterCapableStep` &rArr; `SetterCapable`
225
+ - `SetterStep` &rArr; `Setter`
226
+
227
+ (Interestingly, other than the removal of `placeholder` and the fact they deal
228
+ with runtime values rather than steps now, they're very similar to what they
229
+ were before.)
230
+
231
+ The deprecated forms of the above have been removed.
232
+
233
+ Methods that rely on these modifier plans have been removed:
234
+
235
+ - `PgUnionAllStep.wherePlan` - use
236
+ `fieldArg.apply($unionAll, qb => qb.whereBuilder())` instead
237
+ - `PgUnionAllStep.havingPlan` - use
238
+ `fieldArg.apply($unionAll, qb => qb.havingBuilder())` instead
239
+ - Same for PgSelectStep
240
+
241
+ The following gain query builders:
242
+
243
+ - `PgInsertSingle`
244
+ - `PgUpdateSingle`
245
+ - `PgDeleteSingle`
246
+
247
+ Query builders gain `meta`, an object that can be augmented with metadata
248
+ about the operation (typically this relates to cursors and similar
249
+ functionality). This is now used to implement `clientMutationId`.
250
+
251
+ Extends query builders with additional functionality.
252
+
253
+ Many of the types have had their generics changed, TypeScript should guide you
254
+ if you have issues here.
255
+
256
+ `NodeIdHandler` now requires a `getIdentifiers` method that runs at runtime
257
+ and returns the identifiers from a decoded NodeId string.
258
+
259
+ Types around GraphQL Global Object Identification (i.e. `Node` / `id`) have
260
+ changed.
261
+
262
+ - Updated dependencies
263
+ [[`d34014a9a3c469154cc796086ba13719954731e5`](https://github.com/graphile/crystal/commit/d34014a9a3c469154cc796086ba13719954731e5),
264
+ [`d3ae3415c230784fdfefc9d192ad93aca462bceb`](https://github.com/graphile/crystal/commit/d3ae3415c230784fdfefc9d192ad93aca462bceb),
265
+ [`98516379ac355a0833a64e002f3717cc3a1d6473`](https://github.com/graphile/crystal/commit/98516379ac355a0833a64e002f3717cc3a1d6473),
266
+ [`f8602d05eed3247c90b87c55d7af580d1698effc`](https://github.com/graphile/crystal/commit/f8602d05eed3247c90b87c55d7af580d1698effc),
267
+ [`65df25534fa3f787ba2ab7fd9547d295ff2b1288`](https://github.com/graphile/crystal/commit/65df25534fa3f787ba2ab7fd9547d295ff2b1288),
268
+ [`1b3c76efd27df73eab3a5a1d221ce13de4cd6b1a`](https://github.com/graphile/crystal/commit/1b3c76efd27df73eab3a5a1d221ce13de4cd6b1a),
269
+ [`f6e22692b628703b8ea48e580dc0b6f0bcbc9c5a`](https://github.com/graphile/crystal/commit/f6e22692b628703b8ea48e580dc0b6f0bcbc9c5a),
270
+ [`c3538050abbb485cf1d43f7c870b89f1ad7c2218`](https://github.com/graphile/crystal/commit/c3538050abbb485cf1d43f7c870b89f1ad7c2218),
271
+ [`3c0a925f26f10cae627a23c49c75ccd8d76b60c8`](https://github.com/graphile/crystal/commit/3c0a925f26f10cae627a23c49c75ccd8d76b60c8),
272
+ [`fcaeb48844156e258a037f420ea1505edb50c52a`](https://github.com/graphile/crystal/commit/fcaeb48844156e258a037f420ea1505edb50c52a),
273
+ [`68926abc31c32ce527327ffbb1ede4b0b7be446b`](https://github.com/graphile/crystal/commit/68926abc31c32ce527327ffbb1ede4b0b7be446b),
274
+ [`98c5009e21e423b0da22c2cb70cdb62909578f50`](https://github.com/graphile/crystal/commit/98c5009e21e423b0da22c2cb70cdb62909578f50),
275
+ [`4b49dbd2df3b339a2ba3f1e9ff400fa1a125298b`](https://github.com/graphile/crystal/commit/4b49dbd2df3b339a2ba3f1e9ff400fa1a125298b),
276
+ [`d7950e8e28ec6106a4ce2f7fe5e35d88b10eac48`](https://github.com/graphile/crystal/commit/d7950e8e28ec6106a4ce2f7fe5e35d88b10eac48),
277
+ [`c8f1971ea4198633ec97f72f82abf65089f71a88`](https://github.com/graphile/crystal/commit/c8f1971ea4198633ec97f72f82abf65089f71a88),
278
+ [`182ed0564104f59b012e0f9ffd452556b0927750`](https://github.com/graphile/crystal/commit/182ed0564104f59b012e0f9ffd452556b0927750),
279
+ [`dd3d22eab73a8554715bf1111e30586251f69a88`](https://github.com/graphile/crystal/commit/dd3d22eab73a8554715bf1111e30586251f69a88),
280
+ [`a120a8e43b24dfc174950cdbb69e481272a0b45e`](https://github.com/graphile/crystal/commit/a120a8e43b24dfc174950cdbb69e481272a0b45e),
281
+ [`be1e558d6a1a8cae3bf4b5724c340469d8837504`](https://github.com/graphile/crystal/commit/be1e558d6a1a8cae3bf4b5724c340469d8837504),
282
+ [`84f06eafa051e907a3050237ac6ee5aefb184652`](https://github.com/graphile/crystal/commit/84f06eafa051e907a3050237ac6ee5aefb184652),
283
+ [`4a3aeaa77c8b8d2e39c1a9d05581d0c613b812cf`](https://github.com/graphile/crystal/commit/4a3aeaa77c8b8d2e39c1a9d05581d0c613b812cf),
284
+ [`12d3a7174949794a1679132635e196f5dadce8a2`](https://github.com/graphile/crystal/commit/12d3a7174949794a1679132635e196f5dadce8a2),
285
+ [`ab7658ac44e1a5a0a98c6bb688a26d94b1175cc1`](https://github.com/graphile/crystal/commit/ab7658ac44e1a5a0a98c6bb688a26d94b1175cc1),
286
+ [`bc2a00d35f0a1954dba22e857adc3f4e2f5118e5`](https://github.com/graphile/crystal/commit/bc2a00d35f0a1954dba22e857adc3f4e2f5118e5),
287
+ [`ceeb9a6b63e566b09298e0440a385943302ad0f9`](https://github.com/graphile/crystal/commit/ceeb9a6b63e566b09298e0440a385943302ad0f9),
288
+ [`3e8c64bef928295494119e15e1e55cbdadb696fa`](https://github.com/graphile/crystal/commit/3e8c64bef928295494119e15e1e55cbdadb696fa),
289
+ [`0fc2db95d90df918cf5c59ef85f22ac78d8000d3`](https://github.com/graphile/crystal/commit/0fc2db95d90df918cf5c59ef85f22ac78d8000d3),
290
+ [`90e81a5deeae554a8be2dd55dcd01489860e96e6`](https://github.com/graphile/crystal/commit/90e81a5deeae554a8be2dd55dcd01489860e96e6),
291
+ [`836c8327a5ca1bd3c69f72055e71d00694de363e`](https://github.com/graphile/crystal/commit/836c8327a5ca1bd3c69f72055e71d00694de363e),
292
+ [`2f31836cb89a7ab27a8919803fe12b53a46d77e4`](https://github.com/graphile/crystal/commit/2f31836cb89a7ab27a8919803fe12b53a46d77e4),
293
+ [`c59132eb7a93bc82493d2f1ca050db8aaea9f4d1`](https://github.com/graphile/crystal/commit/c59132eb7a93bc82493d2f1ca050db8aaea9f4d1),
294
+ [`7c38cdeffe034c9b4f5cdd03a8f7f446bd52dcb7`](https://github.com/graphile/crystal/commit/7c38cdeffe034c9b4f5cdd03a8f7f446bd52dcb7),
295
+ [`728888b28fcd2a6fc481e0ccdfe20d41181a091f`](https://github.com/graphile/crystal/commit/728888b28fcd2a6fc481e0ccdfe20d41181a091f),
296
+ [`f4f39092d7a51517668384945895d3b450237cce`](https://github.com/graphile/crystal/commit/f4f39092d7a51517668384945895d3b450237cce),
297
+ [`5cf3dc9d158891eaf324b2cd4f485d1d4bbb6b5e`](https://github.com/graphile/crystal/commit/5cf3dc9d158891eaf324b2cd4f485d1d4bbb6b5e),
298
+ [`925689578ee9def403382df70f0e003bb299c166`](https://github.com/graphile/crystal/commit/925689578ee9def403382df70f0e003bb299c166),
299
+ [`83d3b533e702cc875b46ba2ca02bf3642b421be8`](https://github.com/graphile/crystal/commit/83d3b533e702cc875b46ba2ca02bf3642b421be8),
300
+ [`7001138c38e09822ad13db1018c62d2cac37941e`](https://github.com/graphile/crystal/commit/7001138c38e09822ad13db1018c62d2cac37941e),
301
+ [`e9e7e33665e22ec397e9ead054d2e4aad3eadc8c`](https://github.com/graphile/crystal/commit/e9e7e33665e22ec397e9ead054d2e4aad3eadc8c),
302
+ [`bb6ec8d834e3e630e28316196246f514114a2296`](https://github.com/graphile/crystal/commit/bb6ec8d834e3e630e28316196246f514114a2296),
303
+ [`3e188c2e981193d228ba3b7433f5e326336f629b`](https://github.com/graphile/crystal/commit/3e188c2e981193d228ba3b7433f5e326336f629b),
304
+ [`07a5469e5d3d050a7bcab928bb751c9e150d2e49`](https://github.com/graphile/crystal/commit/07a5469e5d3d050a7bcab928bb751c9e150d2e49),
305
+ [`e6da5d956ab696932410e7172cedfacba71dbf5e`](https://github.com/graphile/crystal/commit/e6da5d956ab696932410e7172cedfacba71dbf5e),
306
+ [`2b1918d053f590cdc534c8cb81f7e74e96c1bbe6`](https://github.com/graphile/crystal/commit/2b1918d053f590cdc534c8cb81f7e74e96c1bbe6),
307
+ [`037a1bcdc8ed8493d4748e08c18f258e4382a815`](https://github.com/graphile/crystal/commit/037a1bcdc8ed8493d4748e08c18f258e4382a815),
308
+ [`72b300b436a7acedaa7d0e3a7a5458d15a0e5396`](https://github.com/graphile/crystal/commit/72b300b436a7acedaa7d0e3a7a5458d15a0e5396),
309
+ [`770363214ee630746cddc9080dec22bbf38a3bb5`](https://github.com/graphile/crystal/commit/770363214ee630746cddc9080dec22bbf38a3bb5),
310
+ [`d1ecb39693a341f85762b27012ec4ea013857b0c`](https://github.com/graphile/crystal/commit/d1ecb39693a341f85762b27012ec4ea013857b0c),
311
+ [`042ebafe11fcf7e2ecac9b131265a55dddd42a6d`](https://github.com/graphile/crystal/commit/042ebafe11fcf7e2ecac9b131265a55dddd42a6d),
312
+ [`fa005eb0783c58a2476add984fbdd462e0e91dbe`](https://github.com/graphile/crystal/commit/fa005eb0783c58a2476add984fbdd462e0e91dbe),
313
+ [`df0e5a0f968cf6f9ae97b68745a9a2f391324bf5`](https://github.com/graphile/crystal/commit/df0e5a0f968cf6f9ae97b68745a9a2f391324bf5),
314
+ [`ef4cf75acd80e6b9c700c2b5a7ace899e565ef7f`](https://github.com/graphile/crystal/commit/ef4cf75acd80e6b9c700c2b5a7ace899e565ef7f),
315
+ [`ba2bfa15deaaddd92757a56c2b761624afe940bd`](https://github.com/graphile/crystal/commit/ba2bfa15deaaddd92757a56c2b761624afe940bd),
316
+ [`c041fd250372c57601188b65a6411c8f440afab6`](https://github.com/graphile/crystal/commit/c041fd250372c57601188b65a6411c8f440afab6),
317
+ [`629b45aab49151810f6efc18ac18f7d735626433`](https://github.com/graphile/crystal/commit/629b45aab49151810f6efc18ac18f7d735626433),
318
+ [`6d19724330d50d076aab9442660fa8abddd095cb`](https://github.com/graphile/crystal/commit/6d19724330d50d076aab9442660fa8abddd095cb),
319
+ [`ca5bc1a834df7b894088fb8602a12f9fcff55b38`](https://github.com/graphile/crystal/commit/ca5bc1a834df7b894088fb8602a12f9fcff55b38),
320
+ [`da6f3c04efe3d8634c0bc3fcf93ac2518de85322`](https://github.com/graphile/crystal/commit/da6f3c04efe3d8634c0bc3fcf93ac2518de85322),
321
+ [`8026b982a81776fb3d1d808392970c2d678c4023`](https://github.com/graphile/crystal/commit/8026b982a81776fb3d1d808392970c2d678c4023),
322
+ [`d257a1a1e59a7d4da0bf67345c07b04c04a2f7da`](https://github.com/graphile/crystal/commit/d257a1a1e59a7d4da0bf67345c07b04c04a2f7da),
323
+ [`00d79e6f5608affc3f36bb0ce4ca2547230174e7`](https://github.com/graphile/crystal/commit/00d79e6f5608affc3f36bb0ce4ca2547230174e7),
324
+ [`15854c5109114919b3d38fa675c539cda1f634a1`](https://github.com/graphile/crystal/commit/15854c5109114919b3d38fa675c539cda1f634a1),
325
+ [`f0bc64b71914dfdd3612f4b65370401fd85b97bc`](https://github.com/graphile/crystal/commit/f0bc64b71914dfdd3612f4b65370401fd85b97bc)]:
326
+ - grafast@0.1.1-beta.21
327
+ - @dataplan/pg@0.0.1-beta.32
328
+ - graphile-build-pg@5.0.0-beta.38
329
+ - graphile-build@5.0.0-beta.33
330
+ - graphile-config@0.0.1-beta.15
331
+
332
+ ## 5.0.0-beta.37
333
+
334
+ ### Patch Changes
335
+
336
+ - Updated dependencies
337
+ [[`fc9d64eb8`](https://github.com/graphile/crystal/commit/fc9d64eb8002d3b72625bc505ed76c07f4296d68),
338
+ [`a2dbad945`](https://github.com/graphile/crystal/commit/a2dbad9457195bec797d72e4e6d45f45278f9f69),
339
+ [`31078842a`](https://github.com/graphile/crystal/commit/31078842ad0eeaa7111491fa9eb5e3bd026fb38a),
340
+ [`5a0ec31de`](https://github.com/graphile/crystal/commit/5a0ec31deae91f1dd17a77a4bb7c1a911a27e26a)]:
341
+ - @dataplan/pg@0.0.1-beta.31
342
+ - grafast@0.1.1-beta.20
343
+ - graphile-build-pg@5.0.0-beta.37
344
+ - graphile-build@5.0.0-beta.32
345
+
346
+ ## 5.0.0-beta.36
347
+
348
+ ### Patch Changes
349
+
350
+ - Updated dependencies
351
+ [[`83c546509`](https://github.com/graphile/crystal/commit/83c546509d24be2955a56120981363ad3c3a5f3f)]:
352
+ - graphile-config@0.0.1-beta.14
353
+ - @dataplan/pg@0.0.1-beta.30
354
+ - grafast@0.1.1-beta.19
355
+ - graphile-build@5.0.0-beta.31
356
+ - graphile-build-pg@5.0.0-beta.36
357
+
358
+ ## 5.0.0-beta.35
359
+
360
+ ### Patch Changes
361
+
362
+ - Updated dependencies
363
+ [[`7580bc16a`](https://github.com/graphile/crystal/commit/7580bc16a050fd8d916c6dabe9d1ded980090349),
364
+ [`b336a5829`](https://github.com/graphile/crystal/commit/b336a58291cfec7aef884d3843172d408abfaf3c)]:
365
+ - graphile-config@0.0.1-beta.13
366
+ - @dataplan/pg@0.0.1-beta.29
367
+ - grafast@0.1.1-beta.18
368
+ - graphile-build@5.0.0-beta.30
369
+ - graphile-build-pg@5.0.0-beta.35
370
+
371
+ ## 5.0.0-beta.34
372
+
373
+ ### Patch Changes
374
+
375
+ - Updated dependencies
376
+ [[`bee1db4f4`](https://github.com/graphile/crystal/commit/bee1db4f442502b62cb05cd0f7092990328497b8)]:
377
+ - graphile-build-pg@5.0.0-beta.34
378
+
379
+ ## 5.0.0-beta.33
380
+
381
+ ### Patch Changes
382
+
383
+ - Updated dependencies
384
+ [[`555d65cce`](https://github.com/graphile/crystal/commit/555d65ccecb875f1e34cb40108176f0ddc11df64),
385
+ [`69ab227b5`](https://github.com/graphile/crystal/commit/69ab227b5e1c057a6fc8ebba87bde80d5aa7f3c8),
386
+ [`efa25d97d`](https://github.com/graphile/crystal/commit/efa25d97df2e00f13bc29806d396a8366a121031),
387
+ [`d13b76f0f`](https://github.com/graphile/crystal/commit/d13b76f0fef2a58466ecb44880af62d25910e83e),
388
+ [`b167bd849`](https://github.com/graphile/crystal/commit/b167bd8499be5866b71bac6594d55bd768fda1d0),
389
+ [`a202145c5`](https://github.com/graphile/crystal/commit/a202145c5af3e5467424e6772d532c2db1eb67c6),
390
+ [`2a37fb99a`](https://github.com/graphile/crystal/commit/2a37fb99a04784647dff6ab8c5bfffb072cc6e8a),
391
+ [`5d9f2de85`](https://github.com/graphile/crystal/commit/5d9f2de8519b216732b17464d0b326ec8d7c58de),
392
+ [`6a13ecbd4`](https://github.com/graphile/crystal/commit/6a13ecbd45534c39c846c1d8bc58242108426dd1),
393
+ [`84f07626d`](https://github.com/graphile/crystal/commit/84f07626d9dd9e22f6ae6a1045053df046fbc4ea),
394
+ [`86e228299`](https://github.com/graphile/crystal/commit/86e22829996a745dc1f8cbaf32e709b1bd346e79),
395
+ [`933786868`](https://github.com/graphile/crystal/commit/9337868689f4f05ab5faf2d4bb18a8ad8e23e189),
396
+ [`cba6ee06d`](https://github.com/graphile/crystal/commit/cba6ee06d38ec5ae4ef4dafa58569fad61f239ac)]:
397
+ - graphile-build-pg@5.0.0-beta.33
398
+ - graphile-build@5.0.0-beta.29
399
+ - grafast@0.1.1-beta.17
400
+ - graphile-config@0.0.1-beta.12
401
+ - @dataplan/pg@0.0.1-beta.28
402
+
403
+ ## 5.0.0-beta.32
404
+
405
+ ### Patch Changes
406
+
407
+ - Updated dependencies
408
+ [[`87bdf9730`](https://github.com/graphile/crystal/commit/87bdf973036a3801e44b22cfc9f0feb639de4aa9),
409
+ [`5626c7d36`](https://github.com/graphile/crystal/commit/5626c7d3649285e11fe9857dfa319d2883d027eb),
410
+ [`76c7340b7`](https://github.com/graphile/crystal/commit/76c7340b74d257c454beec883384d19ef078b21e),
411
+ [`aa480f6a3`](https://github.com/graphile/crystal/commit/aa480f6a3db8b545ff113e7a3a4b479be42a0eab)]:
412
+ - graphile-build-pg@5.0.0-beta.32
413
+ - graphile-config@0.0.1-beta.11
414
+ - grafast@0.1.1-beta.16
415
+ - @dataplan/pg@0.0.1-beta.27
416
+ - graphile-build@5.0.0-beta.28
417
+
418
+ ## 5.0.0-beta.31
419
+
420
+ ### Patch Changes
421
+
422
+ - Updated dependencies
423
+ [[`632691409`](https://github.com/graphile/crystal/commit/6326914098af55f20ac85ccf3537e75910a7dafa)]:
424
+ - graphile-build-pg@5.0.0-beta.31
425
+ - graphile-build@5.0.0-beta.27
426
+
427
+ ## 5.0.0-beta.30
428
+
429
+ ### Patch Changes
430
+
431
+ - Updated dependencies
432
+ [[`0b1f7b577`](https://github.com/graphile/crystal/commit/0b1f7b577114a49b8e3283823845ec6e37484240)]:
433
+ - graphile-build-pg@5.0.0-beta.30
434
+ - graphile-build@5.0.0-beta.26
435
+
436
+ ## 5.0.0-beta.29
437
+
438
+ ### Patch Changes
439
+
440
+ - Updated dependencies
441
+ [[`d7e6e714f`](https://github.com/graphile/crystal/commit/d7e6e714f0cc5656112703484298b77538b2dccc),
442
+ [`d5834def1`](https://github.com/graphile/crystal/commit/d5834def1fb84f3e2c0c0a6f146f8249a6df890a),
443
+ [`bb006ec7b`](https://github.com/graphile/crystal/commit/bb006ec7bdab24192c84f093ce3f92969aeb7279),
444
+ [`653929af0`](https://github.com/graphile/crystal/commit/653929af0a99a8a4d52b66e66c736be668b8700a),
445
+ [`6fdc6cad8`](https://github.com/graphile/crystal/commit/6fdc6cad8f8d1230202df533d05cc2bd80538f09),
446
+ [`42b982463`](https://github.com/graphile/crystal/commit/42b9824637a6c05e02935f2b05b5e8e0c61965a6),
447
+ [`eb69c7361`](https://github.com/graphile/crystal/commit/eb69c7361fc7bf8c5b1ce342eeb698bd28c9e013),
448
+ [`54054b873`](https://github.com/graphile/crystal/commit/54054b8733236ba7b2f2fa47d84e085f7196e3f9),
449
+ [`884a4b429`](https://github.com/graphile/crystal/commit/884a4b4297af90fdadaf73addd524f1fbbcfdcce),
450
+ [`0df171123`](https://github.com/graphile/crystal/commit/0df17112300a8ea391dfd220c5f05d362ceaa58a),
451
+ [`1eac03ec2`](https://github.com/graphile/crystal/commit/1eac03ec2e9da65c64b7754c04292f43da82c40b),
452
+ [`dfac43992`](https://github.com/graphile/crystal/commit/dfac43992019b0b6c1d113d2490a87eb03d103d7),
453
+ [`38835313a`](https://github.com/graphile/crystal/commit/38835313ad93445206dccdd4cf07b90c5a6e4377),
454
+ [`426e9320e`](https://github.com/graphile/crystal/commit/426e9320e76ef95927eebb6fe4072050b6208771),
455
+ [`e8a9fd424`](https://github.com/graphile/crystal/commit/e8a9fd4243981b892364148eca1df66620ddeb87),
456
+ [`cc0941731`](https://github.com/graphile/crystal/commit/cc0941731a1679bc04ce7b7fd4254009bb5f1f62),
457
+ [`50f6ce456`](https://github.com/graphile/crystal/commit/50f6ce456de3edd084869b54ee9f2eaf51a7fa0c),
458
+ [`b0865d169`](https://github.com/graphile/crystal/commit/b0865d1691105b5419009954c98c8109a27a5d81),
459
+ [`3b09b414f`](https://github.com/graphile/crystal/commit/3b09b414ff43c34593373fa1f242481b0c7ada70),
460
+ [`b7b6dd64f`](https://github.com/graphile/crystal/commit/b7b6dd64fcc07f2ca15528fd39d61297d743dcc6),
461
+ [`8b472cd51`](https://github.com/graphile/crystal/commit/8b472cd51cd66d8227f9f2722d09c0a774792b0f),
462
+ [`ba637b56d`](https://github.com/graphile/crystal/commit/ba637b56d79a14f82fe555739921724eab0c07f7),
463
+ [`9cd9bb522`](https://github.com/graphile/crystal/commit/9cd9bb5222a9f0398ee4b8bfa4f741b6de2a2192)]:
464
+ - graphile-build-pg@5.0.0-beta.29
465
+ - grafast@0.1.1-beta.15
466
+ - graphile-build@5.0.0-beta.25
467
+ - @dataplan/pg@0.0.1-beta.26
468
+ - graphile-config@0.0.1-beta.10
469
+
470
+ ## 5.0.0-beta.28
471
+
472
+ ### Patch Changes
473
+
474
+ - Updated dependencies
475
+ [[`52ef49ca9`](https://github.com/graphile/crystal/commit/52ef49ca9357e63d0aa5c06ac089bf57ee991c73),
476
+ [`82ce02cd9`](https://github.com/graphile/crystal/commit/82ce02cd93df3df3c9570c3528483c4f720ff9bb),
477
+ [`871d32b2a`](https://github.com/graphile/crystal/commit/871d32b2a18df0d257880fc54a61d9e68c4607d6),
478
+ [`e8a0c4441`](https://github.com/graphile/crystal/commit/e8a0c4441cd04402974cd0af6b80816c9cda91e7),
479
+ [`d9d07b97b`](https://github.com/graphile/crystal/commit/d9d07b97b41c928033b9a920931ae0ccccf88e82),
480
+ [`a26e3a30c`](https://github.com/graphile/crystal/commit/a26e3a30c02f963f8f5e9c9d021e871f33689e1b),
481
+ [`eca7e62e2`](https://github.com/graphile/crystal/commit/eca7e62e2a09af77f4f166a281dab81d009d9ec1),
482
+ [`02c11a4d4`](https://github.com/graphile/crystal/commit/02c11a4d42bf434dffc9354b300e8d791c4eeb2d)]:
483
+ - graphile-build-pg@5.0.0-beta.28
484
+ - @dataplan/pg@0.0.1-beta.25
485
+ - grafast@0.1.1-beta.14
486
+ - graphile-build@5.0.0-beta.24
487
+
488
+ ## 5.0.0-beta.27
489
+
490
+ ### Patch Changes
491
+
492
+ - Updated dependencies
493
+ [[`807650035`](https://github.com/graphile/crystal/commit/8076500354a3e2bc2de1b6c4e947bd710cc5bddc)]:
494
+ - @dataplan/pg@0.0.1-beta.24
495
+ - grafast@0.1.1-beta.13
496
+ - graphile-build-pg@5.0.0-beta.27
497
+ - graphile-build@5.0.0-beta.23
498
+
499
+ ## 5.0.0-beta.26
500
+
501
+ ### Patch Changes
502
+
503
+ - [#2094](https://github.com/graphile/crystal/pull/2094)
504
+ [`c0e50a1b4`](https://github.com/graphile/crystal/commit/c0e50a1b4f1c95bfcafb5458dce0d5e56852d7d0)
505
+ Thanks [@benjie](https://github.com/benjie)! - makeWrapPlansPlugin more likely
506
+ to be exportable.
507
+
508
+ - Updated dependencies
509
+ [[`1f67999eb`](https://github.com/graphile/crystal/commit/1f67999eb11435562ca76e8e7349aaadc28390f6),
510
+ [`1bd50b61e`](https://github.com/graphile/crystal/commit/1bd50b61ebb10b7d09b3612c2e2767c41cca3b78),
511
+ [`8bdc553b7`](https://github.com/graphile/crystal/commit/8bdc553b79aae21a27d22a4e1f1e57ee2e5d1d3f),
512
+ [`4e102b1a1`](https://github.com/graphile/crystal/commit/4e102b1a1cd232e6f6703df0706415f01831dab2),
513
+ [`1cabbd311`](https://github.com/graphile/crystal/commit/1cabbd311bdefd7ce78f8dacbf61a42237a6c73c),
514
+ [`7bb1573ba`](https://github.com/graphile/crystal/commit/7bb1573ba45a4d8b7fa9ad53cdd79686d2641383),
515
+ [`590b6fdf5`](https://github.com/graphile/crystal/commit/590b6fdf5d04a392c4cc9e8bdad83278377c547b),
516
+ [`18addb385`](https://github.com/graphile/crystal/commit/18addb3852525aa91019a36d58fa2fecd8b5b443),
517
+ [`d6102714e`](https://github.com/graphile/crystal/commit/d6102714e4fec35952784c988c1617c789eee0cd),
518
+ [`6ed615e55`](https://github.com/graphile/crystal/commit/6ed615e557b2ab1fb57f1e68c06730a8e3da7175),
519
+ [`b25cc539c`](https://github.com/graphile/crystal/commit/b25cc539c00aeda7a943c37509aaae4dc7812317),
520
+ [`867f33136`](https://github.com/graphile/crystal/commit/867f331365346fc46ed1e0d23c79719846e398f4),
521
+ [`925123497`](https://github.com/graphile/crystal/commit/925123497cf17b5e145ab80f62fa9de768a977ae),
522
+ [`cf535c210`](https://github.com/graphile/crystal/commit/cf535c21078da06c14dd12f30e9b4378da4ded03),
523
+ [`acf99b190`](https://github.com/graphile/crystal/commit/acf99b190954e3c5926e820daed68dfe8eb3ee1f),
524
+ [`4967a197f`](https://github.com/graphile/crystal/commit/4967a197fd2c71ee2a581fe29470ee9f30e74de5),
525
+ [`1908e1ba1`](https://github.com/graphile/crystal/commit/1908e1ba11883a34dac66f985fc20ab160e572b1),
526
+ [`084d80be6`](https://github.com/graphile/crystal/commit/084d80be6e17187c9a9932bcf079e3f460368782),
527
+ [`aa0474755`](https://github.com/graphile/crystal/commit/aa0474755142a758fc58c5c1a30b8c754bc84e7c)]:
528
+ - graphile-build-pg@5.0.0-beta.26
529
+ - grafast@0.1.1-beta.12
530
+ - @dataplan/pg@0.0.1-beta.23
531
+ - graphile-build@5.0.0-beta.22
532
+
533
+ ## 5.0.0-beta.25
534
+
535
+ ### Patch Changes
536
+
537
+ - Updated dependencies
538
+ [[`582bd768f`](https://github.com/graphile/crystal/commit/582bd768fec403ce3284f293b85b9fd86e4d3f40)]:
539
+ - graphile-build@5.0.0-beta.21
540
+ - graphile-config@0.0.1-beta.9
541
+ - @dataplan/pg@0.0.1-beta.22
542
+ - grafast@0.1.1-beta.11
543
+ - graphile-build-pg@5.0.0-beta.25
544
+
545
+ ## 5.0.0-beta.24
546
+
547
+ ### Patch Changes
548
+
549
+ - Updated dependencies
550
+ [[`3c161f7e1`](https://github.com/graphile/crystal/commit/3c161f7e13375105b1035a7d5d1c0f2b507ca5c7),
551
+ [`a674a9923`](https://github.com/graphile/crystal/commit/a674a9923bc908c9315afa40e0cb256ee0953d16),
552
+ [`b7cfeffd1`](https://github.com/graphile/crystal/commit/b7cfeffd1019d61c713a5054c4f5929960a2a6ab)]:
553
+ - grafast@0.1.1-beta.10
554
+ - @dataplan/pg@0.0.1-beta.21
555
+ - graphile-build@5.0.0-beta.20
556
+ - graphile-build-pg@5.0.0-beta.24
557
+
558
+ ## 5.0.0-beta.23
559
+
560
+ ### Patch Changes
561
+
562
+ - Updated dependencies
563
+ [[`437570f97`](https://github.com/graphile/crystal/commit/437570f97e8520afaf3d0d0b514d1f4c31546b76)]:
564
+ - graphile-build-pg@5.0.0-beta.23
565
+ - grafast@0.1.1-beta.9
566
+ - @dataplan/pg@0.0.1-beta.20
567
+ - graphile-build@5.0.0-beta.19
568
+
569
+ ## 5.0.0-beta.22
570
+
571
+ ### Patch Changes
572
+
573
+ - Updated dependencies
574
+ [[`1842af661`](https://github.com/graphile/crystal/commit/1842af661950d5f962b65f6362a45a3b9c8f15e8),
575
+ [`bd5a908a4`](https://github.com/graphile/crystal/commit/bd5a908a4d04310f90dfb46ad87398ffa993af3b)]:
576
+ - graphile-build-pg@5.0.0-beta.22
577
+ - graphile-build@5.0.0-beta.18
578
+ - grafast@0.1.1-beta.8
579
+ - @dataplan/pg@0.0.1-beta.19
580
+
581
+ ## 5.0.0-beta.21
582
+
583
+ ### Patch Changes
584
+
585
+ - [#2042](https://github.com/graphile/crystal/pull/2042)
586
+ [`e22cb4dfa`](https://github.com/graphile/crystal/commit/e22cb4dfa94b60d1b99c374e8c28943373bd8496)
587
+ Thanks [@benjie](https://github.com/benjie)! - Expose `nullable?: boolean` as
588
+ an orderByAscDesc option, and default it true if 'nulls' is set. Vital if
589
+ you're ordering by nullable things!
590
+
591
+ - [#2006](https://github.com/graphile/crystal/pull/2006)
592
+ [`bee0a0a68`](https://github.com/graphile/crystal/commit/bee0a0a68d48816f84b1a7f5ec69bd6069211426)
593
+ Thanks [@benjie](https://github.com/benjie)! - Adopt improved inflection
594
+ typings.
595
+
596
+ - Updated dependencies
597
+ [[`357d475f5`](https://github.com/graphile/crystal/commit/357d475f54fecc8c51892e0346d6872b34132430),
598
+ [`30bcd6c12`](https://github.com/graphile/crystal/commit/30bcd6c12e59f878617ea987c35a2f589ce05cb8),
599
+ [`3551725e7`](https://github.com/graphile/crystal/commit/3551725e71c3ed876554e19e5ab2c1dcb0fb1143),
600
+ [`80836471e`](https://github.com/graphile/crystal/commit/80836471e5cedb29dee63bc5002550c4f1713cfd),
601
+ [`b788dd868`](https://github.com/graphile/crystal/commit/b788dd86849e703cc3aa863fd9190c36a087b865),
602
+ [`5eca6d65a`](https://github.com/graphile/crystal/commit/5eca6d65a816bac3d0ceaa6cafa7df1a79c2be47),
603
+ [`a5c20fefb`](https://github.com/graphile/crystal/commit/a5c20fefb571dea6d1187515dc48dd547e9e6204),
604
+ [`1ce08980e`](https://github.com/graphile/crystal/commit/1ce08980e2a52ed9bc81564d248c19648ecd3616),
605
+ [`ab08cbf9c`](https://github.com/graphile/crystal/commit/ab08cbf9c504c3cc22495a99a965e7634c18a6a3),
606
+ [`dff4f2535`](https://github.com/graphile/crystal/commit/dff4f2535ac6ce893089b312fcd5fffcd98573a5),
607
+ [`a287a57c2`](https://github.com/graphile/crystal/commit/a287a57c2765da0fb6a132ea0953f64453210ceb),
608
+ [`45e10950b`](https://github.com/graphile/crystal/commit/45e10950b533f97cdd986e5442e2e160a8e431a2),
609
+ [`2fe56f9a6`](https://github.com/graphile/crystal/commit/2fe56f9a6dac03484ace45c29c2223a65f9ca1db),
610
+ [`fed603d71`](https://github.com/graphile/crystal/commit/fed603d719c02f33e12190f925c9e3b06c581fac),
611
+ [`ed6e0d278`](https://github.com/graphile/crystal/commit/ed6e0d2788217a1c419634837f4208013eaf2923),
612
+ [`86168b740`](https://github.com/graphile/crystal/commit/86168b740510aef17bde7ae21f1d0eebb0c5c9b3),
613
+ [`7ad35fe4d`](https://github.com/graphile/crystal/commit/7ad35fe4d9b20f6ec82dc95c362390a87e25b42c),
614
+ [`e82e4911e`](https://github.com/graphile/crystal/commit/e82e4911e32138df1b90ec0fde555ea963018d21),
615
+ [`272608c13`](https://github.com/graphile/crystal/commit/272608c135e4ef0f76b8b5a9f764494a3f3ad779),
616
+ [`42ece5aa6`](https://github.com/graphile/crystal/commit/42ece5aa6ca05345ebc17fb5c7d55df3b79b7612),
617
+ [`e0d69e518`](https://github.com/graphile/crystal/commit/e0d69e518a98c70f9b90f59d243ce33978c1b5a1),
618
+ [`db8ceed0f`](https://github.com/graphile/crystal/commit/db8ceed0f17923eb78ff09c9f3f28800a5c7e3b6),
619
+ [`6699388ec`](https://github.com/graphile/crystal/commit/6699388ec167d35c71220ce5d9113cac578da6cb),
620
+ [`966203504`](https://github.com/graphile/crystal/commit/96620350467ab8c65b56adf2f055e19450f8e772),
621
+ [`c1645b249`](https://github.com/graphile/crystal/commit/c1645b249aae949a548cd916e536ccfb63e5ab35),
622
+ [`ed8bbaa3c`](https://github.com/graphile/crystal/commit/ed8bbaa3cd1563a7601ca8c6b0412633b0ea4ce9),
623
+ [`a0e82b9c5`](https://github.com/graphile/crystal/commit/a0e82b9c5f4e585f1af1e147299cd07944ece6f8),
624
+ [`14e2412ee`](https://github.com/graphile/crystal/commit/14e2412ee368e8d53abf6774c7f0069f32d4e8a3),
625
+ [`c48d3da7f`](https://github.com/graphile/crystal/commit/c48d3da7fe4fac2562fab5f085d252a0bfb6f0b6),
626
+ [`57ab0e1e7`](https://github.com/graphile/crystal/commit/57ab0e1e72c01213b21d3efc539cd655d83d993a),
627
+ [`8442242e4`](https://github.com/graphile/crystal/commit/8442242e43cac7d89ca0c413cf42c9fabf6f247f),
628
+ [`bee0a0a68`](https://github.com/graphile/crystal/commit/bee0a0a68d48816f84b1a7f5ec69bd6069211426),
629
+ [`51a94417f`](https://github.com/graphile/crystal/commit/51a94417fb62b54d309be184f4be479bc267c2b7),
630
+ [`64ce7b765`](https://github.com/graphile/crystal/commit/64ce7b7650530251aec38a51089da66f914c19b4),
631
+ [`cba842357`](https://github.com/graphile/crystal/commit/cba84235786acbd77ade53bae7a3fba4a9be1eb7),
632
+ [`2fa77d0f2`](https://github.com/graphile/crystal/commit/2fa77d0f237cdb98d3dafb6b5e4083a2c6c38673),
633
+ [`81d17460c`](https://github.com/graphile/crystal/commit/81d17460ced08608814635779c5cf997c19c101d)]:
634
+ - @dataplan/pg@0.0.1-beta.18
635
+ - grafast@0.1.1-beta.7
636
+ - tamedevil@0.0.0-beta.7
637
+ - graphile-build-pg@5.0.0-beta.21
638
+ - graphile-build@5.0.0-beta.17
639
+ - graphile-config@0.0.1-beta.8
640
+
641
+ ## 5.0.0-beta.20
642
+
643
+ ### Patch Changes
644
+
645
+ - [#1958](https://github.com/graphile/crystal/pull/1958)
646
+ [`8315e8d01`](https://github.com/graphile/crystal/commit/8315e8d01c118cebc4ebbc53a2f264b958b252ad)
647
+ Thanks [@benjie](https://github.com/benjie)! - EXPORTABLE now accepts a third
648
+ argument, `nameHint`, which is used to hint what variable name to use for the
649
+ given value. Used this in `graphile-export` along with some fixes and
650
+ optimizations to improve the exports further.
651
+ - Updated dependencies
652
+ [[`9f85c614d`](https://github.com/graphile/crystal/commit/9f85c614d48dc745c5fed15333dbb75af7fddc88),
653
+ [`6c6be29f1`](https://github.com/graphile/crystal/commit/6c6be29f12b24782c926b2bc62ed2ede09ac05de),
654
+ [`6c80c44b7`](https://github.com/graphile/crystal/commit/6c80c44b76a5eb30cc2b1555ba81a4b6236f4300),
655
+ [`179d25b09`](https://github.com/graphile/crystal/commit/179d25b09bb3272eeef564067b8e512d8de0112f),
656
+ [`8315e8d01`](https://github.com/graphile/crystal/commit/8315e8d01c118cebc4ebbc53a2f264b958b252ad),
657
+ [`9d53dde72`](https://github.com/graphile/crystal/commit/9d53dde726b7304962e921b88a159649e49156e5)]:
658
+ - @dataplan/pg@0.0.1-beta.17
659
+ - grafast@0.1.1-beta.6
660
+ - graphile-build-pg@5.0.0-beta.20
661
+ - graphile-build@5.0.0-beta.16
662
+ - tamedevil@0.0.0-beta.6
663
+
664
+ ## 5.0.0-beta.19
665
+
666
+ ### Patch Changes
667
+
668
+ - [#1924](https://github.com/graphile/crystal/pull/1924)
669
+ [`ef44c29b2`](https://github.com/graphile/crystal/commit/ef44c29b24a1ad5a042ae1536a4546dd64b17195)
670
+ Thanks [@benjie](https://github.com/benjie)! - 🚨 TypeScript is now configured
671
+ to hide interfaces marked as `@internal`. This may result in a few errors
672
+ where you're accessing things you oughtn't be, but also may hide some
673
+ interfaces that should be exposed - please file an issue if an API you were
674
+ dependent on has been removed from the TypeScript typings. If that API happens
675
+ to be `step.dependencies`; you should first read this:
676
+ https://benjie.dev/graphql/ancestors
677
+
678
+ - [#1931](https://github.com/graphile/crystal/pull/1931)
679
+ [`ec3112c7b`](https://github.com/graphile/crystal/commit/ec3112c7b58d142b4b1d86cbb7de4ca80bbfda00)
680
+ Thanks [@benjie](https://github.com/benjie)! - Add support for deprecating
681
+ arguments to makeExtendSchemaPlugin
682
+
683
+ - Updated dependencies
684
+ [[`49fd8afed`](https://github.com/graphile/crystal/commit/49fd8afed1afe573ea76a2a7a821dfa5d6288e2d),
685
+ [`63dd7ea99`](https://github.com/graphile/crystal/commit/63dd7ea992d30ad711dd85a73a127484a0e35479),
686
+ [`d801c9778`](https://github.com/graphile/crystal/commit/d801c9778a86d61e060896460af9fe62a733534a),
687
+ [`3a2ea80ee`](https://github.com/graphile/crystal/commit/3a2ea80ee470b2aef91366727d7d60a0c65067f5),
688
+ [`ef44c29b2`](https://github.com/graphile/crystal/commit/ef44c29b24a1ad5a042ae1536a4546dd64b17195),
689
+ [`8ea67f891`](https://github.com/graphile/crystal/commit/8ea67f8910693edaf70daa9952e35d8396166f38),
690
+ [`5de3e86eb`](https://github.com/graphile/crystal/commit/5de3e86eba1ddfe5e07732d0325c63e5d72d4b5b),
691
+ [`e20e66ed7`](https://github.com/graphile/crystal/commit/e20e66ed71b499ee5bbf05105f981809fd302212)]:
692
+ - tamedevil@0.0.0-beta.5
693
+ - grafast@0.1.1-beta.5
694
+ - graphile-build-pg@5.0.0-beta.19
695
+ - graphile-build@5.0.0-beta.15
696
+ - @dataplan/pg@0.0.1-beta.16
697
+ - graphile-config@0.0.1-beta.7
698
+
699
+ ## 5.0.0-beta.18
700
+
701
+ ### Patch Changes
702
+
703
+ - [#1916](https://github.com/graphile/crystal/pull/1916)
704
+ [`a2176ea32`](https://github.com/graphile/crystal/commit/a2176ea324db0801249661b30e9c9d314c6fb159)
705
+ Thanks [@benjie](https://github.com/benjie)! - Add `__assertStep` registration
706
+ support to makeGrafastSchema and PostGraphile's makeExtendSchemaPlugin.
707
+
708
+ - [#1917](https://github.com/graphile/crystal/pull/1917)
709
+ [`886833e2e`](https://github.com/graphile/crystal/commit/886833e2e319f23d905d7184ca88fca701b94044)
710
+ Thanks [@benjie](https://github.com/benjie)! - Add `polymorphicBranch` step to
711
+ core to help users deal with simple polymorphic use cases.
712
+
713
+ - [#1920](https://github.com/graphile/crystal/pull/1920)
714
+ [`635af159f`](https://github.com/graphile/crystal/commit/635af159fd412171030dbaee3a82b661c516a9f8)
715
+ Thanks [@benjie](https://github.com/benjie)! - Add ability to set (and infer)
716
+ scopes to makeExtendSchemaPlugin
717
+
718
+ - Updated dependencies
719
+ [[`555a2be03`](https://github.com/graphile/crystal/commit/555a2be037f49bd599abbaafe6e5d5ab190c96d6),
720
+ [`1b6c2f636`](https://github.com/graphile/crystal/commit/1b6c2f6360a316a8dc550c60e28c61deea538f19),
721
+ [`a2176ea32`](https://github.com/graphile/crystal/commit/a2176ea324db0801249661b30e9c9d314c6fb159),
722
+ [`886833e2e`](https://github.com/graphile/crystal/commit/886833e2e319f23d905d7184ca88fca701b94044),
723
+ [`5b2db0c75`](https://github.com/graphile/crystal/commit/5b2db0c7586182523015f8f79fa4d43f98679c1e),
724
+ [`184773382`](https://github.com/graphile/crystal/commit/184773382f074a3b5339e4cfabec55173cd4f1e1),
725
+ [`f97d7976a`](https://github.com/graphile/crystal/commit/f97d7976a683a1e2cb0fed1ce0e30aeff8cc1886)]:
726
+ - @dataplan/pg@0.0.1-beta.15
727
+ - tamedevil@0.0.0-beta.4
728
+ - grafast@0.1.1-beta.4
729
+ - graphile-build-pg@5.0.0-beta.18
730
+ - graphile-build@5.0.0-beta.14
731
+
732
+ ## 5.0.0-beta.17
733
+
734
+ ### Patch Changes
735
+
736
+ - Updated dependencies
737
+ [[`0df5511ac`](https://github.com/graphile/crystal/commit/0df5511ac8b79ea34f8d12ebf8feeb421f8fe971)]:
738
+ - graphile-config@0.0.1-beta.6
739
+ - @dataplan/pg@0.0.1-beta.14
740
+ - grafast@0.1.1-beta.3
741
+ - graphile-build@5.0.0-beta.13
742
+ - graphile-build-pg@5.0.0-beta.17
743
+
744
+ ## 5.0.0-beta.16
745
+
746
+ ### Patch Changes
747
+
748
+ - [#1886](https://github.com/graphile/crystal/pull/1886)
749
+ [`8a76db07f`](https://github.com/graphile/crystal/commit/8a76db07f4c110cecc6225504f9a05ccbcbc7b92)
750
+ Thanks [@benjie](https://github.com/benjie)! - Attempt to catch invalid plan
751
+ resolvers (e.g. those returning `undefined`) sooner.
752
+ - Updated dependencies
753
+ [[`3fdc2bce4`](https://github.com/graphile/crystal/commit/3fdc2bce42418773f808c5b8309dfb361cd95ce9),
754
+ [`aeef362b5`](https://github.com/graphile/crystal/commit/aeef362b5744816f01e4a6f714bbd77f92332bc5),
755
+ [`8a76db07f`](https://github.com/graphile/crystal/commit/8a76db07f4c110cecc6225504f9a05ccbcbc7b92),
756
+ [`bce0636d4`](https://github.com/graphile/crystal/commit/bce0636d424476664672166193a181c83476423a),
757
+ [`f305c3278`](https://github.com/graphile/crystal/commit/f305c327848eb7baef46c5384a7cc5af6f79db8d),
758
+ [`3b558e0c1`](https://github.com/graphile/crystal/commit/3b558e0c110dd49e5d51e49a5ad6463a9ed68ecb),
759
+ [`2ae8d33aa`](https://github.com/graphile/crystal/commit/2ae8d33aa83955649dcd6e7489604b059ed2daf4),
760
+ [`9e1df08b7`](https://github.com/graphile/crystal/commit/9e1df08b702ae32870a8f1324bab37f447cba868),
761
+ [`8a0cdb95f`](https://github.com/graphile/crystal/commit/8a0cdb95f200b28b0ea1ab5caa12b23dce5f374f),
762
+ [`dbd91fdd8`](https://github.com/graphile/crystal/commit/dbd91fdd836f041b6e2ff9d358c6a6f521f43914),
763
+ [`f1d5ad18e`](https://github.com/graphile/crystal/commit/f1d5ad18e1cd0d59b9e74f619ec6b0de57f07b17),
764
+ [`c66c3527c`](https://github.com/graphile/crystal/commit/c66c3527ce2bb38afa37242ecb5a22247efd6db9),
765
+ [`f66cc40b3`](https://github.com/graphile/crystal/commit/f66cc40b3bc5bf2e7f92fe5a6bd5638e2a51ac2b),
766
+ [`f18635a5c`](https://github.com/graphile/crystal/commit/f18635a5cf55845c9534d82bb483e5fbb9ed179e),
767
+ [`1c9f1c0ed`](https://github.com/graphile/crystal/commit/1c9f1c0edf4e621a5b6345d3a41527a18143c6ae),
768
+ [`9fb5cc06e`](https://github.com/graphile/crystal/commit/9fb5cc06ee52165378392969172e6ee8128833f6)]:
769
+ - grafast@0.1.1-beta.2
770
+ - graphile-build-pg@5.0.0-beta.16
771
+ - graphile-build@5.0.0-beta.12
772
+ - graphile-config@0.0.1-beta.5
773
+
774
+ ## 5.0.0-beta.15
775
+
776
+ ### Patch Changes
777
+
778
+ - Updated dependencies
779
+ [[`49fcb0d58`](https://github.com/graphile/crystal/commit/49fcb0d585b31b291c9072c339d6f5b550eefc9f),
780
+ [`2e7fc6449`](https://github.com/graphile/crystal/commit/2e7fc6449c2d08c44c32985811bb2e233a04056b),
781
+ [`7aef73319`](https://github.com/graphile/crystal/commit/7aef73319a8a147c700727be62427e1eefdefbf8)]:
782
+ - grafast@0.1.1-beta.1
783
+ - graphile-build-pg@5.0.0-beta.15
784
+ - graphile-config@0.0.1-beta.4
785
+ - graphile-build@5.0.0-beta.11
786
+
787
+ ## 5.0.0-beta.14
788
+
789
+ ### Patch Changes
790
+
791
+ - Updated dependencies
792
+ [[`2d447a6b4`](https://github.com/graphile/crystal/commit/2d447a6b45d7db2813bd957f412cd959e2185759)]:
793
+ - graphile-build-pg@5.0.0-beta.14
794
+
795
+ ## 5.0.0-beta.13
796
+
797
+ ### Patch Changes
798
+
799
+ - Updated dependencies
800
+ [[`26e0bc726`](https://github.com/graphile/crystal/commit/26e0bc72653cd8dcef4b6cfb3c76876a5e620a12)]:
801
+ - graphile-build-pg@5.0.0-beta.13
802
+
803
+ ## 5.0.0-beta.12
804
+
805
+ ### Patch Changes
806
+
807
+ - Updated dependencies []:
808
+ - grafast@0.1.1-beta.0
809
+ - graphile-build-pg@5.0.0-beta.12
810
+
811
+ ## 5.0.0-beta.11
812
+
813
+ ### Patch Changes
814
+
815
+ - [#1760](https://github.com/graphile/crystal/pull/1760)
816
+ [`eeccfd675`](https://github.com/graphile/crystal/commit/eeccfd67585a79330197886fdc98335562e08c0a)
817
+ Thanks [@benjie](https://github.com/benjie)! - makeExtendSchemaPlugin now
818
+ support specifying scalar details via resolvers/plans
819
+
820
+ - [#1768](https://github.com/graphile/crystal/pull/1768)
821
+ [`264158f03`](https://github.com/graphile/crystal/commit/264158f034e7b6ebc1a9a94d92b7e4fb746c5fac)
822
+ Thanks [@benjie](https://github.com/benjie)! - Fix `type Foo extends Bar`
823
+ syntax in makeExtendSchemaPlugin - no longer throws
824
+ `getTypeByName before 'init' phase` error.
825
+ - Updated dependencies
826
+ [[`4a4d26d87`](https://github.com/graphile/crystal/commit/4a4d26d87ce74589429b8ca5126a7bfdf30351b8),
827
+ [`b2bce88da`](https://github.com/graphile/crystal/commit/b2bce88da26c7a8965468be16fc2d935eadd3434),
828
+ [`861a8a306`](https://github.com/graphile/crystal/commit/861a8a306ef42a821da19e77903ddd7e8130bfb3),
829
+ [`9a84bc6dd`](https://github.com/graphile/crystal/commit/9a84bc6dd5b33c1919f75f867df1f61c78686695),
830
+ [`b728d7fb9`](https://github.com/graphile/crystal/commit/b728d7fb91eb29fbb21d955af5fd9cb4278f6222),
831
+ [`7d55d2c34`](https://github.com/graphile/crystal/commit/7d55d2c343880d7e665f9743f6ae7e39343c22cc)]:
832
+ - grafast@0.1.1-beta.0
833
+ - graphile-build-pg@5.0.0-beta.11
834
+ - graphile-build@5.0.0-beta.10
835
+
836
+ ## 5.0.0-beta.10
837
+
838
+ ### Patch Changes
839
+
840
+ - [#514](https://github.com/graphile/crystal-pre-merge/pull/514)
841
+ [`c9848f693`](https://github.com/graphile/crystal-pre-merge/commit/c9848f6936a5abd7740c0638bfb458fb5551f03b)
842
+ Thanks [@benjie](https://github.com/benjie)! - Update package.json repository
843
+ information
844
+
845
+ - Updated dependencies
846
+ [[`c9848f693`](https://github.com/graphile/crystal-pre-merge/commit/c9848f6936a5abd7740c0638bfb458fb5551f03b),
847
+ [`ede1092fe`](https://github.com/graphile/crystal-pre-merge/commit/ede1092fe197719b6fa786f4cfa75f6a1f4c56c1),
848
+ [`566983fbd`](https://github.com/graphile/crystal-pre-merge/commit/566983fbd99c4b2df8c4ebd6260521670a2b7dfc),
849
+ [`409bf6071`](https://github.com/graphile/crystal-pre-merge/commit/409bf607180d4d8faec658c803e5ec4d1a00c451)]:
850
+ - graphile-build-pg@5.0.0-beta.10
851
+ - graphile-build@5.0.0-beta.9
852
+ - graphile-config@0.0.1-beta.3
853
+ - grafast@0.0.1-beta.8
854
+ - tamedevil@0.0.0-beta.3
855
+
856
+ ## 5.0.0-beta.9
857
+
858
+ ### Patch Changes
859
+
860
+ - Updated dependencies
861
+ [[`3700e204f`](https://github.com/benjie/crystal/commit/3700e204f430db182c92ca7abc82017c81fa1f9b)]:
862
+ - grafast@0.0.1-beta.7
863
+ - graphile-build@5.0.0-beta.8
864
+ - graphile-build-pg@5.0.0-beta.9
865
+
866
+ ## 5.0.0-beta.8
867
+
868
+ ### Patch Changes
869
+
870
+ - [#496](https://github.com/benjie/crystal/pull/496)
871
+ [`c9bfd9892`](https://github.com/benjie/crystal/commit/c9bfd989247f9433fb5b18c5175c9d8d64cd21a1)
872
+ Thanks [@benjie](https://github.com/benjie)! - Update dependencies (sometimes
873
+ through major versions).
874
+
875
+ - Updated dependencies
876
+ [[`c9bfd9892`](https://github.com/benjie/crystal/commit/c9bfd989247f9433fb5b18c5175c9d8d64cd21a1),
877
+ [`e613b476d`](https://github.com/benjie/crystal/commit/e613b476d6ee867d1f7509c895dabee40e7f9a31)]:
878
+ - graphile-build-pg@5.0.0-beta.8
879
+ - graphile-build@5.0.0-beta.7
880
+ - graphile-config@0.0.1-beta.2
881
+ - grafast@0.0.1-beta.6
882
+ - tamedevil@0.0.0-beta.2
883
+
884
+ ## 5.0.0-beta.7
885
+
886
+ ### Patch Changes
887
+
888
+ - Updated dependencies
889
+ [[`53186213a`](https://github.com/benjie/crystal/commit/53186213ade962f4b66cb0d5ea8b57b5ce7ea85f),
890
+ [`e916b7412`](https://github.com/benjie/crystal/commit/e916b7412fc1fbbcb1578dbe07684189c2a720ad),
891
+ [`73f1b5218`](https://github.com/benjie/crystal/commit/73f1b52187b2e009d502afa1db8a4e8f702e2958),
892
+ [`109c8ec67`](https://github.com/benjie/crystal/commit/109c8ec6784dc74f4c4c4c43cc61516cc12401c8)]:
893
+ - grafast@0.0.1-beta.5
894
+ - graphile-build-pg@5.0.0-beta.7
895
+ - graphile-build@5.0.0-beta.6
896
+
897
+ ## 5.0.0-beta.6
898
+
899
+ ### Patch Changes
900
+
901
+ - [#460](https://github.com/benjie/crystal/pull/460)
902
+ [`07883a1a5`](https://github.com/benjie/crystal/commit/07883a1a5eac63bdc0541d6a2b562fc97342c439)
903
+ Thanks [@benjie](https://github.com/benjie)! - Fix makeExtendSchemaPlugin: now
904
+ calls callback in 'init' phase, so `Build` type is used (rather than
905
+ `Partial<Build>`) and other types/handlers/etc should already be registered.
906
+ - Updated dependencies
907
+ [[`f9cc88dc4`](https://github.com/benjie/crystal/commit/f9cc88dc442d371aee154a28d4e63c6da39f6b2e),
908
+ [`d17dd1cd4`](https://github.com/benjie/crystal/commit/d17dd1cd47d6cb125fbc84c38a8c004857e1bdd2),
909
+ [`00d026409`](https://github.com/benjie/crystal/commit/00d0264090f90914eac881b34918fa3370782adc)]:
910
+ - grafast@0.0.1-beta.4
911
+ - graphile-build-pg@5.0.0-beta.6
912
+ - graphile-build@5.0.0-beta.5
913
+
914
+ ## 5.0.0-beta.5
915
+
916
+ ### Patch Changes
917
+
918
+ - Updated dependencies
919
+ [[`22ecd1e5d`](https://github.com/benjie/crystal/commit/22ecd1e5de1dcd094be3085cba56b705446413f9)]:
920
+ - graphile-build-pg@5.0.0-beta.5
921
+
3
922
  ## 5.0.0-beta.4
4
923
 
5
924
  ### Patch Changes