postgraphile 5.0.0-beta.3 → 5.0.0-beta.31

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 (51) hide show
  1. package/CHANGELOG.md +1161 -0
  2. package/README.md +6 -9
  3. package/dist/cli.d.ts +2 -2
  4. package/dist/cli.d.ts.map +1 -1
  5. package/dist/cli.js +12 -11
  6. package/dist/cli.js.map +1 -1
  7. package/dist/index.d.ts +0 -1
  8. package/dist/index.d.ts.map +1 -1
  9. package/dist/index.js +9 -2
  10. package/dist/index.js.map +1 -1
  11. package/dist/plugins/PgV4BehaviorPlugin.d.ts +3 -0
  12. package/dist/plugins/PgV4BehaviorPlugin.d.ts.map +1 -1
  13. package/dist/plugins/PgV4BehaviorPlugin.js +36 -51
  14. package/dist/plugins/PgV4BehaviorPlugin.js.map +1 -1
  15. package/dist/plugins/PgV4InflectionPlugin.d.ts +3 -0
  16. package/dist/plugins/PgV4InflectionPlugin.d.ts.map +1 -1
  17. package/dist/plugins/PgV4InflectionPlugin.js +6 -4
  18. package/dist/plugins/PgV4InflectionPlugin.js.map +1 -1
  19. package/dist/plugins/PgV4SimpleSubscriptionsPlugin.d.ts +2 -0
  20. package/dist/plugins/PgV4SimpleSubscriptionsPlugin.d.ts.map +1 -0
  21. package/dist/plugins/PgV4SimpleSubscriptionsPlugin.js +76 -0
  22. package/dist/plugins/PgV4SimpleSubscriptionsPlugin.js.map +1 -0
  23. package/dist/plugins/PgV4SmartTagsPlugin.d.ts +6 -0
  24. package/dist/plugins/PgV4SmartTagsPlugin.d.ts.map +1 -1
  25. package/dist/plugins/PgV4SmartTagsPlugin.js +34 -15
  26. package/dist/plugins/PgV4SmartTagsPlugin.js.map +1 -1
  27. package/dist/presets/lazy-jwt.d.ts +7 -0
  28. package/dist/presets/lazy-jwt.d.ts.map +1 -1
  29. package/dist/presets/lazy-jwt.js +17 -10
  30. package/dist/presets/lazy-jwt.js.map +1 -1
  31. package/dist/presets/relay.d.ts +7 -0
  32. package/dist/presets/relay.d.ts.map +1 -1
  33. package/dist/presets/relay.js +96 -67
  34. package/dist/presets/relay.js.map +1 -1
  35. package/dist/presets/v4.d.ts +3 -1
  36. package/dist/presets/v4.d.ts.map +1 -1
  37. package/dist/presets/v4.js +37 -21
  38. package/dist/presets/v4.js.map +1 -1
  39. package/dist/version.d.ts +1 -1
  40. package/dist/version.d.ts.map +1 -1
  41. package/dist/version.js +1 -1
  42. package/dist/version.js.map +1 -1
  43. package/fwd/grafast/mermaid/index.d.ts +1 -0
  44. package/fwd/grafast/mermaid/index.js +1 -0
  45. package/fwd/grafserv/envelop/index.d.ts +1 -0
  46. package/fwd/grafserv/envelop/index.js +1 -0
  47. package/fwd/grafserv/h3/v1/index.d.ts +1 -0
  48. package/fwd/grafserv/h3/v1/index.js +1 -0
  49. package/fwd/grafserv/lambda/v1/index.d.ts +1 -0
  50. package/fwd/grafserv/lambda/v1/index.js +1 -0
  51. package/package.json +68 -42
package/CHANGELOG.md CHANGED
@@ -1,5 +1,1166 @@
1
1
  # postgraphile
2
2
 
3
+ ## 5.0.0-beta.31
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ [[`0b1f7b577`](https://github.com/graphile/crystal/commit/0b1f7b577114a49b8e3283823845ec6e37484240)]:
9
+ - graphile-build-pg@5.0.0-beta.30
10
+ - graphile-build@5.0.0-beta.26
11
+ - graphile-utils@5.0.0-beta.30
12
+
13
+ ## 5.0.0-beta.30
14
+
15
+ ### Patch Changes
16
+
17
+ - [#2197](https://github.com/graphile/crystal/pull/2197)
18
+ [`d7e6e714f`](https://github.com/graphile/crystal/commit/d7e6e714f0cc5656112703484298b77538b2dccc)
19
+ Thanks [@benjie](https://github.com/benjie)! - Amber preset now supports
20
+ `@resultFieldName` on mutation functions, like V4 preset does.
21
+
22
+ - [#2187](https://github.com/graphile/crystal/pull/2187)
23
+ [`bb006ec7b`](https://github.com/graphile/crystal/commit/bb006ec7bdab24192c84f093ce3f92969aeb7279)
24
+ Thanks [@benjie](https://github.com/benjie)! - Fix behavior inheritance
25
+ especially around functions incorrectly inheriting from their underlying
26
+ codecs, bugs in unlogged/temp table behavior, and incorrect skipping of
27
+ generating table types. You may find after this change you have fields
28
+ appearing in your schema that were not present before, typically these will
29
+ represent database functions where you `@omit`'d the underlying table -
30
+ omitting the table should not prevent a function from accessing it. Further,
31
+ fix behavior of `@omit read` emulation to add
32
+ `-connection -list -array -single`.
33
+
34
+ - [#2156](https://github.com/graphile/crystal/pull/2156)
35
+ [`6fdc6cad8`](https://github.com/graphile/crystal/commit/6fdc6cad8f8d1230202df533d05cc2bd80538f09)
36
+ Thanks [@benjie](https://github.com/benjie)! - Added `pgRegistry.pgExecutors`
37
+ so executors don't need to be looked up from a resource (this causes
38
+ confusion) - instead they can be referenced directly. By default there's one
39
+ executor called `main`, i.e. `build.input.pgRegistry.pgExecutors.main`.
40
+
41
+ - [#2175](https://github.com/graphile/crystal/pull/2175)
42
+ [`c69b2fdec`](https://github.com/graphile/crystal/commit/c69b2fdec2d73f1101440eb96fe126f9ad77db98)
43
+ Thanks [@benjie](https://github.com/benjie)! - Fix 'Container is falsy' error
44
+ message the latest Babel patch release would cause.
45
+
46
+ - [#2191](https://github.com/graphile/crystal/pull/2191)
47
+ [`1eac03ec2`](https://github.com/graphile/crystal/commit/1eac03ec2e9da65c64b7754c04292f43da82c40b)
48
+ Thanks [@benjie](https://github.com/benjie)! - Broaden types around
49
+ `pgSelectSingleFromRecord`
50
+
51
+ - [#2158](https://github.com/graphile/crystal/pull/2158)
52
+ [`dfac43992`](https://github.com/graphile/crystal/commit/dfac43992019b0b6c1d113d2490a87eb03d103d7)
53
+ Thanks [@benjie](https://github.com/benjie)! - 🚨 Amber preset no longer
54
+ enables backward pagination options (`before`, `last`) on functions by
55
+ default - add `+backwards` behavior to these functions to enable. If you're
56
+ using the V4 preset you should be unaffected by this change because it enables
57
+ `+backwards` by default.
58
+
59
+ - [#2160](https://github.com/graphile/crystal/pull/2160)
60
+ [`426e9320e`](https://github.com/graphile/crystal/commit/426e9320e76ef95927eebb6fe4072050b6208771)
61
+ Thanks [@benjie](https://github.com/benjie)! - Massive overhaul of the
62
+ behavior system which now has a centralized registry of known behaviors and
63
+ applies behaviors in a more careful and nuanced way, removing many hacks and
64
+ workarounds, and ultimately meaning that `defaultBehavior: "-*"` should now
65
+ operate correctly. Importantly, `addBehaviorToTags()` has been removed - you
66
+ should use `plugin.schema.entityBehaviors` to indicate behaviors as shown in
67
+ this PR - do not mod the tags directly unless they're explicitly meant to be
68
+ overrides.
69
+
70
+ Technically this is a significant breaking change (besides the removal of the
71
+ `addBehaviorToTags()` helper) because the order in which behaviors are applied
72
+ has changed, and so a different behavior might ultimately "win". This shows up
73
+ in places where there is ambiguity, for example if you add `@filterable` to a
74
+ function that you don't have execute permissions on, that function will now
75
+ show up in the schema since user overrides (smart tags) "win" versus inferred
76
+ behaviors such as introspected permissions; this wasn't the case before.
77
+ Hopefully most users will not notice any difference, and for those who do, the
78
+ `graphile behavior debug` CLI may be able to help you figure out what's going
79
+ on.
80
+
81
+ Be sure to print your schema before and after this update and look for
82
+ changes; if there are changes then you likely need to fix the relevant
83
+ behaviors/smart tags. (Hopefully there's no changes for you!)
84
+
85
+ You'll also need to change any places where you're specifying behaviors that
86
+ will be type checked; you can either cast your existing strings e.g.
87
+ `defaultBehavior: "+connection -list" as GraphileBuild.BehaviorString`, or
88
+ preferably you can specify your behaviors as an array, which should give you
89
+ auto-complete on each entry; e.g. `defaultBehavior: ["connection", "-list"]`.
90
+
91
+ - [#2188](https://github.com/graphile/crystal/pull/2188)
92
+ [`282eb909f`](https://github.com/graphile/crystal/commit/282eb909f3e2dc74fb262714248d29056464fb1d)
93
+ Thanks [@benjie](https://github.com/benjie)! - PostGraphile V4 preset now
94
+ automatically includes the Amber preset on which it relies.
95
+
96
+ - [#2202](https://github.com/graphile/crystal/pull/2202)
97
+ [`2efadc0f8`](https://github.com/graphile/crystal/commit/2efadc0f80c3a0c172fb94c770afecc5447e832b)
98
+ Thanks [@benjie](https://github.com/benjie)! - Postgres v17 support
99
+
100
+ - [#2151](https://github.com/graphile/crystal/pull/2151)
101
+ [`e8a9fd424`](https://github.com/graphile/crystal/commit/e8a9fd4243981b892364148eca1df66620ddeb87)
102
+ Thanks [@benjie](https://github.com/benjie)! - Fix bug preventing using
103
+ certain steps as input to `resource.find({...})` and `resource.get({...})`.
104
+
105
+ - [#2188](https://github.com/graphile/crystal/pull/2188)
106
+ [`cc0941731`](https://github.com/graphile/crystal/commit/cc0941731a1679bc04ce7b7fd4254009bb5f1f62)
107
+ Thanks [@benjie](https://github.com/benjie)! - Overhaul the way in which
108
+ `graphile-config` presets work such that including a preset at two different
109
+ layers shouldn't result in unexpected behavior.
110
+
111
+ - [#2157](https://github.com/graphile/crystal/pull/2157)
112
+ [`50f6ce456`](https://github.com/graphile/crystal/commit/50f6ce456de3edd084869b54ee9f2eaf51a7fa0c)
113
+ Thanks [@benjie](https://github.com/benjie)! - 🚨 PostGraphile now ignores
114
+ unlogged database tables by default.
115
+
116
+ - [#2190](https://github.com/graphile/crystal/pull/2190)
117
+ [`b0865d169`](https://github.com/graphile/crystal/commit/b0865d1691105b5419009954c98c8109a27a5d81)
118
+ Thanks [@benjie](https://github.com/benjie)! - Apply `assertNotAsync` and
119
+ `assertNotPromise` in more places to detect plan resolvers returning promises.
120
+
121
+ - [#2199](https://github.com/graphile/crystal/pull/2199)
122
+ [`3b09b414f`](https://github.com/graphile/crystal/commit/3b09b414ff43c34593373fa1f242481b0c7ada70)
123
+ Thanks [@benjie](https://github.com/benjie)! - Database enum comments are now
124
+ reflected in the schema.
125
+
126
+ - [#2196](https://github.com/graphile/crystal/pull/2196)
127
+ [`b7b6dd64f`](https://github.com/graphile/crystal/commit/b7b6dd64fcc07f2ca15528fd39d61297d743dcc6)
128
+ Thanks [@benjie](https://github.com/benjie)! - 🚨 `@notNull` on a volatile
129
+ function now results in the field on the payload becoming non-null, not the
130
+ mutation field itself.
131
+
132
+ - [#2155](https://github.com/graphile/crystal/pull/2155)
133
+ [`8b472cd51`](https://github.com/graphile/crystal/commit/8b472cd51cd66d8227f9f2722d09c0a774792b0f)
134
+ Thanks [@benjie](https://github.com/benjie)! - `disablePlugins` now supports
135
+ TypeScript auto-completion of known plugin names. Other names are still
136
+ accepted without error, so this is just a minor DX improvement rather than
137
+ type safety.
138
+
139
+ - [#2198](https://github.com/graphile/crystal/pull/2198)
140
+ [`ba637b56d`](https://github.com/graphile/crystal/commit/ba637b56d79a14f82fe555739921724eab0c07f7)
141
+ Thanks [@benjie](https://github.com/benjie)! - Ensure that interface subtypes
142
+ are added to schema even if not referenced directly.
143
+ - Updated dependencies
144
+ [[`d7e6e714f`](https://github.com/graphile/crystal/commit/d7e6e714f0cc5656112703484298b77538b2dccc),
145
+ [`d5834def1`](https://github.com/graphile/crystal/commit/d5834def1fb84f3e2c0c0a6f146f8249a6df890a),
146
+ [`bb006ec7b`](https://github.com/graphile/crystal/commit/bb006ec7bdab24192c84f093ce3f92969aeb7279),
147
+ [`653929af0`](https://github.com/graphile/crystal/commit/653929af0a99a8a4d52b66e66c736be668b8700a),
148
+ [`6fdc6cad8`](https://github.com/graphile/crystal/commit/6fdc6cad8f8d1230202df533d05cc2bd80538f09),
149
+ [`42b982463`](https://github.com/graphile/crystal/commit/42b9824637a6c05e02935f2b05b5e8e0c61965a6),
150
+ [`eb69c7361`](https://github.com/graphile/crystal/commit/eb69c7361fc7bf8c5b1ce342eeb698bd28c9e013),
151
+ [`54054b873`](https://github.com/graphile/crystal/commit/54054b8733236ba7b2f2fa47d84e085f7196e3f9),
152
+ [`884a4b429`](https://github.com/graphile/crystal/commit/884a4b4297af90fdadaf73addd524f1fbbcfdcce),
153
+ [`0df171123`](https://github.com/graphile/crystal/commit/0df17112300a8ea391dfd220c5f05d362ceaa58a),
154
+ [`1eac03ec2`](https://github.com/graphile/crystal/commit/1eac03ec2e9da65c64b7754c04292f43da82c40b),
155
+ [`dfac43992`](https://github.com/graphile/crystal/commit/dfac43992019b0b6c1d113d2490a87eb03d103d7),
156
+ [`38835313a`](https://github.com/graphile/crystal/commit/38835313ad93445206dccdd4cf07b90c5a6e4377),
157
+ [`426e9320e`](https://github.com/graphile/crystal/commit/426e9320e76ef95927eebb6fe4072050b6208771),
158
+ [`e8a9fd424`](https://github.com/graphile/crystal/commit/e8a9fd4243981b892364148eca1df66620ddeb87),
159
+ [`cc0941731`](https://github.com/graphile/crystal/commit/cc0941731a1679bc04ce7b7fd4254009bb5f1f62),
160
+ [`50f6ce456`](https://github.com/graphile/crystal/commit/50f6ce456de3edd084869b54ee9f2eaf51a7fa0c),
161
+ [`b0865d169`](https://github.com/graphile/crystal/commit/b0865d1691105b5419009954c98c8109a27a5d81),
162
+ [`3b09b414f`](https://github.com/graphile/crystal/commit/3b09b414ff43c34593373fa1f242481b0c7ada70),
163
+ [`b7b6dd64f`](https://github.com/graphile/crystal/commit/b7b6dd64fcc07f2ca15528fd39d61297d743dcc6),
164
+ [`8b472cd51`](https://github.com/graphile/crystal/commit/8b472cd51cd66d8227f9f2722d09c0a774792b0f),
165
+ [`ba637b56d`](https://github.com/graphile/crystal/commit/ba637b56d79a14f82fe555739921724eab0c07f7),
166
+ [`9cd9bb522`](https://github.com/graphile/crystal/commit/9cd9bb5222a9f0398ee4b8bfa4f741b6de2a2192)]:
167
+ - graphile-build-pg@5.0.0-beta.29
168
+ - grafast@0.1.1-beta.15
169
+ - graphile-build@5.0.0-beta.25
170
+ - @dataplan/pg@0.0.1-beta.26
171
+ - graphile-config@0.0.1-beta.10
172
+ - graphile-utils@5.0.0-beta.29
173
+ - @dataplan/json@0.0.1-beta.24
174
+ - grafserv@0.1.1-beta.17
175
+
176
+ ## 5.0.0-beta.29
177
+
178
+ ### Patch Changes
179
+
180
+ - [#2149](https://github.com/graphile/crystal/pull/2149)
181
+ [`52ef49ca9`](https://github.com/graphile/crystal/commit/52ef49ca9357e63d0aa5c06ac089bf57ee991c73)
182
+ Thanks [@benjie](https://github.com/benjie)! - Fixed a bug in 'relational'
183
+ polymorphism where relations to each of the concrete types would
184
+ non-sensically be added to each of the concrete types.
185
+ - Updated dependencies
186
+ [[`52ef49ca9`](https://github.com/graphile/crystal/commit/52ef49ca9357e63d0aa5c06ac089bf57ee991c73),
187
+ [`82ce02cd9`](https://github.com/graphile/crystal/commit/82ce02cd93df3df3c9570c3528483c4f720ff9bb),
188
+ [`871d32b2a`](https://github.com/graphile/crystal/commit/871d32b2a18df0d257880fc54a61d9e68c4607d6),
189
+ [`e8a0c4441`](https://github.com/graphile/crystal/commit/e8a0c4441cd04402974cd0af6b80816c9cda91e7),
190
+ [`d9d07b97b`](https://github.com/graphile/crystal/commit/d9d07b97b41c928033b9a920931ae0ccccf88e82),
191
+ [`a26e3a30c`](https://github.com/graphile/crystal/commit/a26e3a30c02f963f8f5e9c9d021e871f33689e1b),
192
+ [`eca7e62e2`](https://github.com/graphile/crystal/commit/eca7e62e2a09af77f4f166a281dab81d009d9ec1),
193
+ [`02c11a4d4`](https://github.com/graphile/crystal/commit/02c11a4d42bf434dffc9354b300e8d791c4eeb2d)]:
194
+ - graphile-build-pg@5.0.0-beta.28
195
+ - @dataplan/pg@0.0.1-beta.25
196
+ - grafast@0.1.1-beta.14
197
+ - graphile-build@5.0.0-beta.24
198
+ - graphile-utils@5.0.0-beta.28
199
+ - @dataplan/json@0.0.1-beta.23
200
+ - grafserv@0.1.1-beta.16
201
+
202
+ ## 5.0.0-beta.28
203
+
204
+ ### Patch Changes
205
+
206
+ - Updated dependencies
207
+ [[`807650035`](https://github.com/graphile/crystal/commit/8076500354a3e2bc2de1b6c4e947bd710cc5bddc)]:
208
+ - @dataplan/pg@0.0.1-beta.24
209
+ - grafast@0.1.1-beta.13
210
+ - graphile-build-pg@5.0.0-beta.27
211
+ - graphile-utils@5.0.0-beta.27
212
+ - @dataplan/json@0.0.1-beta.22
213
+ - grafserv@0.1.1-beta.15
214
+ - graphile-build@5.0.0-beta.23
215
+
216
+ ## 5.0.0-beta.27
217
+
218
+ ### Patch Changes
219
+
220
+ - [#2129](https://github.com/graphile/crystal/pull/2129)
221
+ [`1f67999eb`](https://github.com/graphile/crystal/commit/1f67999eb11435562ca76e8e7349aaadc28390f6)
222
+ Thanks [@benjie](https://github.com/benjie)! - Fix bug in orderBy planning
223
+ that caused a new plan to be required for every request.
224
+
225
+ - [#2121](https://github.com/graphile/crystal/pull/2121)
226
+ [`8bdc553b7`](https://github.com/graphile/crystal/commit/8bdc553b79aae21a27d22a4e1f1e57ee2e5d1d3f)
227
+ Thanks [@benjie](https://github.com/benjie)! - Add support for accepting
228
+ poolConfig via makePgService
229
+
230
+ - [#2128](https://github.com/graphile/crystal/pull/2128)
231
+ [`4e102b1a1`](https://github.com/graphile/crystal/commit/4e102b1a1cd232e6f6703df0706415f01831dab2)
232
+ Thanks [@adamni21](https://github.com/adamni21)! - Reduce planning cost of
233
+ large input object trees by evaluating keys up front (thanks to @adamni21).
234
+
235
+ - [#1985](https://github.com/graphile/crystal/pull/1985)
236
+ [`d6102714e`](https://github.com/graphile/crystal/commit/d6102714e4fec35952784c988c1617c789eee0cd)
237
+ Thanks [@hannesj](https://github.com/hannesj)! - 🚨 PostgreSQL adaptor is no
238
+ longer loaded via string value; instead you must pass the adaptor instance
239
+ directly. If you have `adaptor: "@dataplan/pg/adaptors/pg"` then replace it
240
+ with `adaptor: await import("@dataplan/pg/adaptors/pg")`. (This shouldn't
241
+ cause you issues because you _should_ be using `makePgService` to construct
242
+ your `pgServices` rather than building raw objects.)
243
+
244
+ 🚨 If you've implemented a custom PgAdaptor, talk to Benjie about how to port
245
+ it. (Should be straightforward, but no point me figuring it out if no-one has
246
+ done it yet 🤷)
247
+
248
+ This change improves bundle-ability by reducing the number of dynamic imports.
249
+
250
+ Also: `PgAdaptorOptions` has been renamed to `PgAdaptorSettings`, so please do
251
+ a global find and replace for that.
252
+
253
+ - [#2094](https://github.com/graphile/crystal/pull/2094)
254
+ [`c0e50a1b4`](https://github.com/graphile/crystal/commit/c0e50a1b4f1c95bfcafb5458dce0d5e56852d7d0)
255
+ Thanks [@benjie](https://github.com/benjie)! - makeWrapPlansPlugin more likely
256
+ to be exportable.
257
+
258
+ - Updated dependencies
259
+ [[`1f67999eb`](https://github.com/graphile/crystal/commit/1f67999eb11435562ca76e8e7349aaadc28390f6),
260
+ [`1bd50b61e`](https://github.com/graphile/crystal/commit/1bd50b61ebb10b7d09b3612c2e2767c41cca3b78),
261
+ [`8bdc553b7`](https://github.com/graphile/crystal/commit/8bdc553b79aae21a27d22a4e1f1e57ee2e5d1d3f),
262
+ [`61f8bbca5`](https://github.com/graphile/crystal/commit/61f8bbca5badda5b27872e0ee01a2d4c1372210d),
263
+ [`4e102b1a1`](https://github.com/graphile/crystal/commit/4e102b1a1cd232e6f6703df0706415f01831dab2),
264
+ [`1cabbd311`](https://github.com/graphile/crystal/commit/1cabbd311bdefd7ce78f8dacbf61a42237a6c73c),
265
+ [`7bb1573ba`](https://github.com/graphile/crystal/commit/7bb1573ba45a4d8b7fa9ad53cdd79686d2641383),
266
+ [`590b6fdf5`](https://github.com/graphile/crystal/commit/590b6fdf5d04a392c4cc9e8bdad83278377c547b),
267
+ [`18addb385`](https://github.com/graphile/crystal/commit/18addb3852525aa91019a36d58fa2fecd8b5b443),
268
+ [`d6102714e`](https://github.com/graphile/crystal/commit/d6102714e4fec35952784c988c1617c789eee0cd),
269
+ [`6ed615e55`](https://github.com/graphile/crystal/commit/6ed615e557b2ab1fb57f1e68c06730a8e3da7175),
270
+ [`b25cc539c`](https://github.com/graphile/crystal/commit/b25cc539c00aeda7a943c37509aaae4dc7812317),
271
+ [`867f33136`](https://github.com/graphile/crystal/commit/867f331365346fc46ed1e0d23c79719846e398f4),
272
+ [`925123497`](https://github.com/graphile/crystal/commit/925123497cf17b5e145ab80f62fa9de768a977ae),
273
+ [`cf535c210`](https://github.com/graphile/crystal/commit/cf535c21078da06c14dd12f30e9b4378da4ded03),
274
+ [`c0e50a1b4`](https://github.com/graphile/crystal/commit/c0e50a1b4f1c95bfcafb5458dce0d5e56852d7d0),
275
+ [`acf99b190`](https://github.com/graphile/crystal/commit/acf99b190954e3c5926e820daed68dfe8eb3ee1f),
276
+ [`4967a197f`](https://github.com/graphile/crystal/commit/4967a197fd2c71ee2a581fe29470ee9f30e74de5),
277
+ [`1908e1ba1`](https://github.com/graphile/crystal/commit/1908e1ba11883a34dac66f985fc20ab160e572b1),
278
+ [`084d80be6`](https://github.com/graphile/crystal/commit/084d80be6e17187c9a9932bcf079e3f460368782),
279
+ [`aa0474755`](https://github.com/graphile/crystal/commit/aa0474755142a758fc58c5c1a30b8c754bc84e7c)]:
280
+ - graphile-build-pg@5.0.0-beta.26
281
+ - grafast@0.1.1-beta.12
282
+ - @dataplan/pg@0.0.1-beta.23
283
+ - grafserv@0.1.1-beta.14
284
+ - graphile-utils@5.0.0-beta.26
285
+ - @dataplan/json@0.0.1-beta.21
286
+ - graphile-build@5.0.0-beta.22
287
+
288
+ ## 5.0.0-beta.26
289
+
290
+ ### Patch Changes
291
+
292
+ - [#2071](https://github.com/graphile/crystal/pull/2071)
293
+ [`582bd768f`](https://github.com/graphile/crystal/commit/582bd768fec403ce3284f293b85b9fd86e4d3f40)
294
+ Thanks [@benjie](https://github.com/benjie)! - `GrafastExecutionArgs` now
295
+ accepts `resolvedPreset` and `requestContext` directly; passing these through
296
+ additional arguments is now deprecated and support will be removed in a future
297
+ revision. This affects:
298
+
299
+ - `grafast()`
300
+ - `execute()`
301
+ - `subscribe()`
302
+ - `hookArgs()`
303
+
304
+ `graphile-config` has gained a middleware system which is more powerful than
305
+ it's AsyncHooks system. Old hooks can be emulated through the middleware
306
+ system safely since middleware is a superset of hooks' capabilities.
307
+ `applyHooks` has been renamed to `orderedApply` (because it applies to more
308
+ than just hooks), calling `applyHooks` will still work but is deprecated.
309
+
310
+ 🚨 `grafast` no longer automatically reads your `graphile.config.ts` or
311
+ similar; you must do that yourself and pass the `resolvedPreset` to grafast
312
+ via the `args`. This is to aid in bundling of grafast since it should not need
313
+ to read from filesystem or dynamically load modules.
314
+
315
+ `grafast` no longer outputs performance warning when you set
316
+ `GRAPHILE_ENV=development`.
317
+
318
+ 🚨 `plugin.grafast.hooks.args` is now `plugin.grafast.middleware.prepareArgs`,
319
+ and the signature has changed - you must be sure to call the `next()` function
320
+ and ctx/resolvedPreset can be extracted directly from `args`:
321
+
322
+ ```diff
323
+ const plugin = {
324
+ grafast: {
325
+ - hooks: {
326
+ + middleware: {
327
+ - args({ args, ctx, resolvedPreset }) {
328
+ + prepareArgs(next, { args }) {
329
+ + const { requestContext: ctx, resolvedPreset } = args;
330
+ // ...
331
+ + return next();
332
+ }
333
+ }
334
+ }
335
+ }
336
+ ```
337
+
338
+ Many more middleware have been added; use TypeScript's autocomplete to see
339
+ what's available until we have proper documentation for them.
340
+
341
+ `plugin.grafserv.hooks.*` are still supported but deprecated; instead use
342
+ middleware `plugin.grafserv.middleware.*` (note that call signatures have
343
+ changed slightly, similar to the diff above):
344
+
345
+ - `hooks.init` -> `middleware.setPreset`
346
+ - `hooks.processGraphQLRequestBody` -> `middleware.processGraphQLRequestBody`
347
+ - `hooks.ruruHTMLParts` -> `middleware.ruruHTMLParts`
348
+
349
+ A few TypeScript types related to Hooks have been renamed, but their old names
350
+ are still available, just deprecated. They will be removed in a future update:
351
+
352
+ - `HookObject` -> `FunctionalityObject`
353
+ - `PluginHook` -> `CallbackOrDescriptor`
354
+ - `PluginHookObject` -> `CallbackDescriptor`
355
+ - `PluginHookCallback` -> `UnwrapCallback`
356
+
357
+ - Updated dependencies
358
+ [[`582bd768f`](https://github.com/graphile/crystal/commit/582bd768fec403ce3284f293b85b9fd86e4d3f40)]:
359
+ - graphile-build@5.0.0-beta.21
360
+ - graphile-config@0.0.1-beta.9
361
+ - @dataplan/pg@0.0.1-beta.22
362
+ - grafserv@0.1.1-beta.13
363
+ - grafast@0.1.1-beta.11
364
+ - graphile-build-pg@5.0.0-beta.25
365
+ - graphile-utils@5.0.0-beta.25
366
+ - @dataplan/json@0.0.1-beta.20
367
+
368
+ ## 5.0.0-beta.25
369
+
370
+ ### Patch Changes
371
+
372
+ - Updated dependencies
373
+ [[`3c161f7e1`](https://github.com/graphile/crystal/commit/3c161f7e13375105b1035a7d5d1c0f2b507ca5c7),
374
+ [`a674a9923`](https://github.com/graphile/crystal/commit/a674a9923bc908c9315afa40e0cb256ee0953d16),
375
+ [`b7cfeffd1`](https://github.com/graphile/crystal/commit/b7cfeffd1019d61c713a5054c4f5929960a2a6ab)]:
376
+ - grafast@0.1.1-beta.10
377
+ - @dataplan/json@0.0.1-beta.19
378
+ - @dataplan/pg@0.0.1-beta.21
379
+ - grafserv@0.1.1-beta.12
380
+ - graphile-build@5.0.0-beta.20
381
+ - graphile-build-pg@5.0.0-beta.24
382
+ - graphile-utils@5.0.0-beta.24
383
+
384
+ ## 5.0.0-beta.24
385
+
386
+ ### Patch Changes
387
+
388
+ - [#2064](https://github.com/graphile/crystal/pull/2064)
389
+ [`437570f97`](https://github.com/graphile/crystal/commit/437570f97e8520afaf3d0d0b514d1f4c31546b76)
390
+ Thanks [@benjie](https://github.com/benjie)! - Fix a bug relating to Global
391
+ Object Identifiers (specifically in update mutations, but probably elsewhere
392
+ too) related to early exit.
393
+ - Updated dependencies
394
+ [[`437570f97`](https://github.com/graphile/crystal/commit/437570f97e8520afaf3d0d0b514d1f4c31546b76)]:
395
+ - graphile-build-pg@5.0.0-beta.23
396
+ - grafast@0.1.1-beta.9
397
+ - graphile-utils@5.0.0-beta.23
398
+ - @dataplan/json@0.0.1-beta.18
399
+ - @dataplan/pg@0.0.1-beta.20
400
+ - grafserv@0.1.1-beta.11
401
+ - graphile-build@5.0.0-beta.19
402
+
403
+ ## 5.0.0-beta.23
404
+
405
+ ### Patch Changes
406
+
407
+ - [#2056](https://github.com/graphile/crystal/pull/2056)
408
+ [`1842af661`](https://github.com/graphile/crystal/commit/1842af661950d5f962b65f6362a45a3b9c8f15e8)
409
+ Thanks [@benjie](https://github.com/benjie)! - Improve exporting of resource
410
+ options (neater export code)
411
+
412
+ - Updated dependencies
413
+ [[`1842af661`](https://github.com/graphile/crystal/commit/1842af661950d5f962b65f6362a45a3b9c8f15e8),
414
+ [`bd5a908a4`](https://github.com/graphile/crystal/commit/bd5a908a4d04310f90dfb46ad87398ffa993af3b)]:
415
+ - graphile-build-pg@5.0.0-beta.22
416
+ - graphile-build@5.0.0-beta.18
417
+ - grafast@0.1.1-beta.8
418
+ - graphile-utils@5.0.0-beta.22
419
+ - @dataplan/json@0.0.1-beta.17
420
+ - @dataplan/pg@0.0.1-beta.19
421
+ - grafserv@0.1.1-beta.10
422
+
423
+ ## 5.0.0-beta.22
424
+
425
+ ### Patch Changes
426
+
427
+ - [#2015](https://github.com/graphile/crystal/pull/2015)
428
+ [`5eca6d65a`](https://github.com/graphile/crystal/commit/5eca6d65a816bac3d0ceaa6cafa7df1a79c2be47)
429
+ Thanks [@benjie](https://github.com/benjie)! - Use `inhibitOnNull` when
430
+ decoding a spec ID to prevent it being consumed if invalid (e.g. don't allow
431
+ using a 'Post' node ID to fetch a 'Person' record).
432
+
433
+ - [#1994](https://github.com/graphile/crystal/pull/1994)
434
+ [`ab08cbf9c`](https://github.com/graphile/crystal/commit/ab08cbf9c504c3cc22495a99a965e7634c18a6a3)
435
+ Thanks [@benjie](https://github.com/benjie)! - Introduce
436
+ `interface SQLable {[$toSQL](): SQL}` to `pg-sql2` and use it to simplify SQL
437
+ fragments in various places.
438
+
439
+ - [#1978](https://github.com/graphile/crystal/pull/1978)
440
+ [`a287a57c2`](https://github.com/graphile/crystal/commit/a287a57c2765da0fb6a132ea0953f64453210ceb)
441
+ Thanks [@benjie](https://github.com/benjie)! - Breaking: `connection()` step
442
+ now accepts configuration object in place of 2nd argument onwards:
443
+
444
+ ```diff
445
+ -return connection($list, nodePlan, cursorPlan);
446
+ +return connection($list, { nodePlan, cursorPlan });
447
+ ```
448
+
449
+ Feature: `edgeDataPlan` can be specified as part of this configuration object,
450
+ allowing you to associate edge data with your connection edges:
451
+
452
+ ```ts
453
+ return connection($list, {
454
+ edgeDataPlan($item) {
455
+ return object({ item: $item, otherThing: $otherThing });
456
+ },
457
+ });
458
+
459
+ // ...
460
+
461
+ const plans = {
462
+ FooEdge: {
463
+ otherThing($edge) {
464
+ return $edge.data().get("otherThing");
465
+ },
466
+ },
467
+ };
468
+ ```
469
+
470
+ Feature: `ConnectionStep` and `EdgeStep` gain `get()` methods, so
471
+ `*Connection.edges`, `*Connection.nodes`, `*Connection.pageInfo`, `*Edge.node`
472
+ and `*Edge.cursor` no longer need plans to be defined.
473
+
474
+ - [#2006](https://github.com/graphile/crystal/pull/2006)
475
+ [`7ad35fe4d`](https://github.com/graphile/crystal/commit/7ad35fe4d9b20f6ec82dc95c362390a87e25b42c)
476
+ Thanks [@benjie](https://github.com/benjie)! - When replacing inflectors via
477
+ `plugin.inflection.replace.<inflector_name>` the first argument is the
478
+ previous inflector (or null). Previously this was typed including the
479
+ `this: Inflection` argument which meant to appease TypeScript you needed to do
480
+ `previous.call(this, arg1, arg2)`, but this was never necessary in JS. This is
481
+ now fixed, and you can now issue `previous(arg1, arg2)` from TypeScript
482
+ without error.
483
+
484
+ - [#2050](https://github.com/graphile/crystal/pull/2050)
485
+ [`272608c13`](https://github.com/graphile/crystal/commit/272608c135e4ef0f76b8b5a9f764494a3f3ad779)
486
+ Thanks [@benjie](https://github.com/benjie)! - Add missing EXPORTABLE (and
487
+ remove excessive EXPORTABLE) to fix schema exports.
488
+
489
+ - [#1995](https://github.com/graphile/crystal/pull/1995)
490
+ [`e0d69e518`](https://github.com/graphile/crystal/commit/e0d69e518a98c70f9b90f59d243ce33978c1b5a1)
491
+ Thanks [@benjie](https://github.com/benjie)! - Refactoring of unary logic.
492
+
493
+ - [#2048](https://github.com/graphile/crystal/pull/2048)
494
+ [`db8ceed0f`](https://github.com/graphile/crystal/commit/db8ceed0f17923eb78ff09c9f3f28800a5c7e3b6)
495
+ Thanks [@benjie](https://github.com/benjie)! - Help detect more invalid
496
+ presets and plugins (bad imports) by forbidding keys starting with a capital
497
+ or the key `default`.
498
+
499
+ - [#2046](https://github.com/graphile/crystal/pull/2046)
500
+ [`966203504`](https://github.com/graphile/crystal/commit/96620350467ab8c65b56adf2f055e19450f8e772)
501
+ Thanks [@benjie](https://github.com/benjie)! - Envelop peer dependency
502
+ upgraded to V5
503
+
504
+ - [#1973](https://github.com/graphile/crystal/pull/1973)
505
+ [`a0e82b9c5`](https://github.com/graphile/crystal/commit/a0e82b9c5f4e585f1af1e147299cd07944ece6f8)
506
+ Thanks [@benjie](https://github.com/benjie)! - Add 'unary steps' concept to
507
+ codebase and refactor to using new executeV2 execution method which leverages
508
+ them. Backwards compatibility maintained, but users should move to executeV2.
509
+
510
+ - [#1989](https://github.com/graphile/crystal/pull/1989)
511
+ [`c48d3da7f`](https://github.com/graphile/crystal/commit/c48d3da7fe4fac2562fab5f085d252a0bfb6f0b6)
512
+ Thanks [@benjie](https://github.com/benjie)! - Make it so that more pgSelect
513
+ queries optimize themselves into parent queries via new step.canAddDependency
514
+ helper.
515
+
516
+ - [#2006](https://github.com/graphile/crystal/pull/2006)
517
+ [`bee0a0a68`](https://github.com/graphile/crystal/commit/bee0a0a68d48816f84b1a7f5ec69bd6069211426)
518
+ Thanks [@benjie](https://github.com/benjie)! - Adopt improved inflection
519
+ typings.
520
+
521
+ - [#2019](https://github.com/graphile/crystal/pull/2019)
522
+ [`51a94417f`](https://github.com/graphile/crystal/commit/51a94417fb62b54d309be184f4be479bc267c2b7)
523
+ Thanks [@benjie](https://github.com/benjie)! - Now possible to filter by relay
524
+ node identifiers without weird results if you pass an incompatible node id
525
+ (e.g. a 'Post' ID where a 'User' ID was expected) - significantly improves the
526
+ Relay preset.
527
+
528
+ - [#1988](https://github.com/graphile/crystal/pull/1988)
529
+ [`81d17460c`](https://github.com/graphile/crystal/commit/81d17460ced08608814635779c5cf997c19c101d)
530
+ Thanks [@benjie](https://github.com/benjie)! - Fix issue with record types
531
+ when attributes need to be cast; this previously caused errors with computed
532
+ columns when passed particular arguments.
533
+ - Updated dependencies
534
+ [[`357d475f5`](https://github.com/graphile/crystal/commit/357d475f54fecc8c51892e0346d6872b34132430),
535
+ [`30bcd6c12`](https://github.com/graphile/crystal/commit/30bcd6c12e59f878617ea987c35a2f589ce05cb8),
536
+ [`3551725e7`](https://github.com/graphile/crystal/commit/3551725e71c3ed876554e19e5ab2c1dcb0fb1143),
537
+ [`80836471e`](https://github.com/graphile/crystal/commit/80836471e5cedb29dee63bc5002550c4f1713cfd),
538
+ [`b788dd868`](https://github.com/graphile/crystal/commit/b788dd86849e703cc3aa863fd9190c36a087b865),
539
+ [`5eca6d65a`](https://github.com/graphile/crystal/commit/5eca6d65a816bac3d0ceaa6cafa7df1a79c2be47),
540
+ [`a5c20fefb`](https://github.com/graphile/crystal/commit/a5c20fefb571dea6d1187515dc48dd547e9e6204),
541
+ [`1ce08980e`](https://github.com/graphile/crystal/commit/1ce08980e2a52ed9bc81564d248c19648ecd3616),
542
+ [`ab08cbf9c`](https://github.com/graphile/crystal/commit/ab08cbf9c504c3cc22495a99a965e7634c18a6a3),
543
+ [`dff4f2535`](https://github.com/graphile/crystal/commit/dff4f2535ac6ce893089b312fcd5fffcd98573a5),
544
+ [`a287a57c2`](https://github.com/graphile/crystal/commit/a287a57c2765da0fb6a132ea0953f64453210ceb),
545
+ [`45e10950b`](https://github.com/graphile/crystal/commit/45e10950b533f97cdd986e5442e2e160a8e431a2),
546
+ [`2fe56f9a6`](https://github.com/graphile/crystal/commit/2fe56f9a6dac03484ace45c29c2223a65f9ca1db),
547
+ [`fed603d71`](https://github.com/graphile/crystal/commit/fed603d719c02f33e12190f925c9e3b06c581fac),
548
+ [`ed6e0d278`](https://github.com/graphile/crystal/commit/ed6e0d2788217a1c419634837f4208013eaf2923),
549
+ [`86168b740`](https://github.com/graphile/crystal/commit/86168b740510aef17bde7ae21f1d0eebb0c5c9b3),
550
+ [`7ad35fe4d`](https://github.com/graphile/crystal/commit/7ad35fe4d9b20f6ec82dc95c362390a87e25b42c),
551
+ [`e82e4911e`](https://github.com/graphile/crystal/commit/e82e4911e32138df1b90ec0fde555ea963018d21),
552
+ [`94a05064e`](https://github.com/graphile/crystal/commit/94a05064ea05108685ff71174a9f871ab5b4c147),
553
+ [`272608c13`](https://github.com/graphile/crystal/commit/272608c135e4ef0f76b8b5a9f764494a3f3ad779),
554
+ [`42ece5aa6`](https://github.com/graphile/crystal/commit/42ece5aa6ca05345ebc17fb5c7d55df3b79b7612),
555
+ [`e0d69e518`](https://github.com/graphile/crystal/commit/e0d69e518a98c70f9b90f59d243ce33978c1b5a1),
556
+ [`e22cb4dfa`](https://github.com/graphile/crystal/commit/e22cb4dfa94b60d1b99c374e8c28943373bd8496),
557
+ [`db8ceed0f`](https://github.com/graphile/crystal/commit/db8ceed0f17923eb78ff09c9f3f28800a5c7e3b6),
558
+ [`a5a0816bd`](https://github.com/graphile/crystal/commit/a5a0816bddc85a841770202db57457ff13137852),
559
+ [`6699388ec`](https://github.com/graphile/crystal/commit/6699388ec167d35c71220ce5d9113cac578da6cb),
560
+ [`966203504`](https://github.com/graphile/crystal/commit/96620350467ab8c65b56adf2f055e19450f8e772),
561
+ [`c1645b249`](https://github.com/graphile/crystal/commit/c1645b249aae949a548cd916e536ccfb63e5ab35),
562
+ [`ed8bbaa3c`](https://github.com/graphile/crystal/commit/ed8bbaa3cd1563a7601ca8c6b0412633b0ea4ce9),
563
+ [`a0e82b9c5`](https://github.com/graphile/crystal/commit/a0e82b9c5f4e585f1af1e147299cd07944ece6f8),
564
+ [`14e2412ee`](https://github.com/graphile/crystal/commit/14e2412ee368e8d53abf6774c7f0069f32d4e8a3),
565
+ [`c48d3da7f`](https://github.com/graphile/crystal/commit/c48d3da7fe4fac2562fab5f085d252a0bfb6f0b6),
566
+ [`57ab0e1e7`](https://github.com/graphile/crystal/commit/57ab0e1e72c01213b21d3efc539cd655d83d993a),
567
+ [`8442242e4`](https://github.com/graphile/crystal/commit/8442242e43cac7d89ca0c413cf42c9fabf6f247f),
568
+ [`bee0a0a68`](https://github.com/graphile/crystal/commit/bee0a0a68d48816f84b1a7f5ec69bd6069211426),
569
+ [`51a94417f`](https://github.com/graphile/crystal/commit/51a94417fb62b54d309be184f4be479bc267c2b7),
570
+ [`64ce7b765`](https://github.com/graphile/crystal/commit/64ce7b7650530251aec38a51089da66f914c19b4),
571
+ [`cba842357`](https://github.com/graphile/crystal/commit/cba84235786acbd77ade53bae7a3fba4a9be1eb7),
572
+ [`2fa77d0f2`](https://github.com/graphile/crystal/commit/2fa77d0f237cdb98d3dafb6b5e4083a2c6c38673),
573
+ [`81d17460c`](https://github.com/graphile/crystal/commit/81d17460ced08608814635779c5cf997c19c101d)]:
574
+ - @dataplan/json@0.0.1-beta.16
575
+ - @dataplan/pg@0.0.1-beta.18
576
+ - grafast@0.1.1-beta.7
577
+ - tamedevil@0.0.0-beta.7
578
+ - graphile-build-pg@5.0.0-beta.21
579
+ - pg-sql2@5.0.0-beta.6
580
+ - graphile-build@5.0.0-beta.17
581
+ - graphile-utils@5.0.0-beta.21
582
+ - graphile-config@0.0.1-beta.8
583
+ - grafserv@0.1.1-beta.9
584
+
585
+ ## 5.0.0-beta.21
586
+
587
+ ### Patch Changes
588
+
589
+ - [#1955](https://github.com/graphile/crystal/pull/1955)
590
+ [`6c6be29f1`](https://github.com/graphile/crystal/commit/6c6be29f12b24782c926b2bc62ed2ede09ac05de)
591
+ Thanks [@benjie](https://github.com/benjie)! - Steps are now prevented from
592
+ calling other steps' lifecycle methods. GRAPHILE_ENV is actively encouraged,
593
+ and falls back to NODE_ENV.
594
+
595
+ - [#1944](https://github.com/graphile/crystal/pull/1944)
596
+ [`6c80c44b7`](https://github.com/graphile/crystal/commit/6c80c44b76a5eb30cc2b1555ba81a4b6236f4300)
597
+ Thanks [@benjie](https://github.com/benjie)! - Fix accidental double-encoding
598
+ of values on their way to postgres.
599
+
600
+ - [#1949](https://github.com/graphile/crystal/pull/1949)
601
+ [`179d25b09`](https://github.com/graphile/crystal/commit/179d25b09bb3272eeef564067b8e512d8de0112f)
602
+ Thanks [@benjie](https://github.com/benjie)! - Add support for registering
603
+ PgCodecs via plugins, add support for ltree type, improve error messages, no
604
+ longer need to set a gather namespace to use cache/state.
605
+
606
+ - [#1958](https://github.com/graphile/crystal/pull/1958)
607
+ [`8315e8d01`](https://github.com/graphile/crystal/commit/8315e8d01c118cebc4ebbc53a2f264b958b252ad)
608
+ Thanks [@benjie](https://github.com/benjie)! - EXPORTABLE now accepts a third
609
+ argument, `nameHint`, which is used to hint what variable name to use for the
610
+ given value. Used this in `graphile-export` along with some fixes and
611
+ optimizations to improve the exports further.
612
+
613
+ - [#1946](https://github.com/graphile/crystal/pull/1946)
614
+ [`9d53dde72`](https://github.com/graphile/crystal/commit/9d53dde726b7304962e921b88a159649e49156e5)
615
+ Thanks [@benjie](https://github.com/benjie)! - Exporting a schema now performs
616
+ ESLint 'no-use-before-define' check to catch even more invalid export
617
+ conditions. Fix `registerNodeIdCodec` calls caught by this.
618
+ - Updated dependencies
619
+ [[`9f85c614d`](https://github.com/graphile/crystal/commit/9f85c614d48dc745c5fed15333dbb75af7fddc88),
620
+ [`6c6be29f1`](https://github.com/graphile/crystal/commit/6c6be29f12b24782c926b2bc62ed2ede09ac05de),
621
+ [`6c80c44b7`](https://github.com/graphile/crystal/commit/6c80c44b76a5eb30cc2b1555ba81a4b6236f4300),
622
+ [`179d25b09`](https://github.com/graphile/crystal/commit/179d25b09bb3272eeef564067b8e512d8de0112f),
623
+ [`8315e8d01`](https://github.com/graphile/crystal/commit/8315e8d01c118cebc4ebbc53a2f264b958b252ad),
624
+ [`9d53dde72`](https://github.com/graphile/crystal/commit/9d53dde726b7304962e921b88a159649e49156e5)]:
625
+ - @dataplan/pg@0.0.1-beta.17
626
+ - grafast@0.1.1-beta.6
627
+ - graphile-build-pg@5.0.0-beta.20
628
+ - graphile-build@5.0.0-beta.16
629
+ - graphile-utils@5.0.0-beta.20
630
+ - tamedevil@0.0.0-beta.6
631
+ - @dataplan/json@0.0.1-beta.15
632
+ - grafserv@0.1.1-beta.8
633
+
634
+ ## 5.0.0-beta.20
635
+
636
+ ### Patch Changes
637
+
638
+ - [#1927](https://github.com/graphile/crystal/pull/1927)
639
+ [`00d32d887`](https://github.com/graphile/crystal/commit/00d32d887a6ae01374a4fda1babab7c8f14832c0)
640
+ Thanks [@benjie](https://github.com/benjie)! - Excludes table constraints on
641
+ tables from extensions if configured to not include extensions.
642
+
643
+ - [#1927](https://github.com/graphile/crystal/pull/1927)
644
+ [`c62eee10b`](https://github.com/graphile/crystal/commit/c62eee10b445f9455bf2a0524ad2b828bdf4ffa6)
645
+ Thanks [@benjie](https://github.com/benjie)! - Add pg_am to pg-introspection
646
+ to enable determining index access method
647
+
648
+ - [#1934](https://github.com/graphile/crystal/pull/1934)
649
+ [`9ac0ddc01`](https://github.com/graphile/crystal/commit/9ac0ddc014bfceb60b4b5641d6e8db605cc6a79b)
650
+ Thanks [@benjie](https://github.com/benjie)! - Automatically detect when a
651
+ `graphile-export` export is invalid, and throw an error indicating which
652
+ method needs to have `EXPORTABLE` added around it.
653
+
654
+ - [#1931](https://github.com/graphile/crystal/pull/1931)
655
+ [`941e28003`](https://github.com/graphile/crystal/commit/941e280038a735014a9fe4e24fc534a197fac0f2)
656
+ Thanks [@benjie](https://github.com/benjie)! - Add support for deprecated
657
+ arguments to Ruru.
658
+
659
+ - [#1935](https://github.com/graphile/crystal/pull/1935)
660
+ [`8ea67f891`](https://github.com/graphile/crystal/commit/8ea67f8910693edaf70daa9952e35d8396166f38)
661
+ Thanks [@benjie](https://github.com/benjie)! - Fix lots of things related to
662
+ exporting a schema with `graphile-export`.
663
+
664
+ - [#1931](https://github.com/graphile/crystal/pull/1931)
665
+ [`068be2f51`](https://github.com/graphile/crystal/commit/068be2f51d7a9c17311f26c6c9451985397c9e1f)
666
+ Thanks [@benjie](https://github.com/benjie)! - Fix issue typing into Ruru
667
+ explorer plugin - characters no longer overwritten.
668
+
669
+ - [#1929](https://github.com/graphile/crystal/pull/1929)
670
+ [`7587ca9e0`](https://github.com/graphile/crystal/commit/7587ca9e0f2bb93d0b22d1e2979d7b7912363600)
671
+ Thanks [@benjie](https://github.com/benjie)! - PgLazyJWTPreset: return 401
672
+ error when validation of JWT fails.
673
+
674
+ - [#1935](https://github.com/graphile/crystal/pull/1935)
675
+ [`e20e66ed7`](https://github.com/graphile/crystal/commit/e20e66ed71b499ee5bbf05105f981809fd302212)
676
+ Thanks [@benjie](https://github.com/benjie)! - Make even more of the schema
677
+ exportable, including handling scalars with no parseLiteral definition.
678
+
679
+ - [#1931](https://github.com/graphile/crystal/pull/1931)
680
+ [`ec3112c7b`](https://github.com/graphile/crystal/commit/ec3112c7b58d142b4b1d86cbb7de4ca80bbfda00)
681
+ Thanks [@benjie](https://github.com/benjie)! - Add support for deprecating
682
+ arguments to makeExtendSchemaPlugin
683
+
684
+ - Updated dependencies
685
+ [[`49fd8afed`](https://github.com/graphile/crystal/commit/49fd8afed1afe573ea76a2a7a821dfa5d6288e2d),
686
+ [`63dd7ea99`](https://github.com/graphile/crystal/commit/63dd7ea992d30ad711dd85a73a127484a0e35479),
687
+ [`d801c9778`](https://github.com/graphile/crystal/commit/d801c9778a86d61e060896460af9fe62a733534a),
688
+ [`c21252541`](https://github.com/graphile/crystal/commit/c212525410cb2d97a808964ad727d0a68dd15f8b),
689
+ [`3a2ea80ee`](https://github.com/graphile/crystal/commit/3a2ea80ee470b2aef91366727d7d60a0c65067f5),
690
+ [`ef44c29b2`](https://github.com/graphile/crystal/commit/ef44c29b24a1ad5a042ae1536a4546dd64b17195),
691
+ [`8ea67f891`](https://github.com/graphile/crystal/commit/8ea67f8910693edaf70daa9952e35d8396166f38),
692
+ [`5de3e86eb`](https://github.com/graphile/crystal/commit/5de3e86eba1ddfe5e07732d0325c63e5d72d4b5b),
693
+ [`e20e66ed7`](https://github.com/graphile/crystal/commit/e20e66ed71b499ee5bbf05105f981809fd302212),
694
+ [`ec3112c7b`](https://github.com/graphile/crystal/commit/ec3112c7b58d142b4b1d86cbb7de4ca80bbfda00)]:
695
+ - tamedevil@0.0.0-beta.5
696
+ - grafast@0.1.1-beta.5
697
+ - grafserv@0.1.1-beta.7
698
+ - graphile-build-pg@5.0.0-beta.19
699
+ - graphile-build@5.0.0-beta.15
700
+ - graphile-utils@5.0.0-beta.19
701
+ - @dataplan/json@0.0.1-beta.14
702
+ - @dataplan/pg@0.0.1-beta.16
703
+ - pg-sql2@5.0.0-beta.5
704
+ - graphile-config@0.0.1-beta.7
705
+
706
+ ## 5.0.0-beta.19
707
+
708
+ ### Patch Changes
709
+
710
+ - [#1895](https://github.com/graphile/crystal/pull/1895)
711
+ [`555a2be03`](https://github.com/graphile/crystal/commit/555a2be037f49bd599abbaafe6e5d5ab190c96d6)
712
+ Thanks [@enisdenjo](https://github.com/enisdenjo)! - Fix issue with aggregates
713
+ for polymorphic connections.
714
+
715
+ - [#1917](https://github.com/graphile/crystal/pull/1917)
716
+ [`886833e2e`](https://github.com/graphile/crystal/commit/886833e2e319f23d905d7184ca88fca701b94044)
717
+ Thanks [@benjie](https://github.com/benjie)! - Add `polymorphicBranch` step to
718
+ core to help users deal with simple polymorphic use cases.
719
+
720
+ - [#1904](https://github.com/graphile/crystal/pull/1904)
721
+ [`5b2db0c75`](https://github.com/graphile/crystal/commit/5b2db0c7586182523015f8f79fa4d43f98679c1e)
722
+ Thanks [@benjie](https://github.com/benjie)! - Add pgRefDetails to scope for
723
+ some ref-generated fields, to enable plugins to hook them.
724
+
725
+ - [#1920](https://github.com/graphile/crystal/pull/1920)
726
+ [`635af159f`](https://github.com/graphile/crystal/commit/635af159fd412171030dbaee3a82b661c516a9f8)
727
+ Thanks [@benjie](https://github.com/benjie)! - Add ability to set (and infer)
728
+ scopes to makeExtendSchemaPlugin
729
+
730
+ - [#1905](https://github.com/graphile/crystal/pull/1905)
731
+ [`184773382`](https://github.com/graphile/crystal/commit/184773382f074a3b5339e4cfabec55173cd4f1e1)
732
+ Thanks [@benjie](https://github.com/benjie)! - Enable specifying the
733
+ polymorphic subtype a function returns via `@returnType MyType` smart tag.
734
+
735
+ - [#1901](https://github.com/graphile/crystal/pull/1901)
736
+ [`f97d7976a`](https://github.com/graphile/crystal/commit/f97d7976a683a1e2cb0fed1ce0e30aeff8cc1886)
737
+ Thanks [@benjie](https://github.com/benjie)! - Loosens step assertion from
738
+ Query type so it can be served from `constant(true)`.
739
+ - Updated dependencies
740
+ [[`555a2be03`](https://github.com/graphile/crystal/commit/555a2be037f49bd599abbaafe6e5d5ab190c96d6),
741
+ [`1b6c2f636`](https://github.com/graphile/crystal/commit/1b6c2f6360a316a8dc550c60e28c61deea538f19),
742
+ [`de7add402`](https://github.com/graphile/crystal/commit/de7add402bd4a45c8782fce69bf210635360cbe8),
743
+ [`a2176ea32`](https://github.com/graphile/crystal/commit/a2176ea324db0801249661b30e9c9d314c6fb159),
744
+ [`886833e2e`](https://github.com/graphile/crystal/commit/886833e2e319f23d905d7184ca88fca701b94044),
745
+ [`5b2db0c75`](https://github.com/graphile/crystal/commit/5b2db0c7586182523015f8f79fa4d43f98679c1e),
746
+ [`635af159f`](https://github.com/graphile/crystal/commit/635af159fd412171030dbaee3a82b661c516a9f8),
747
+ [`184773382`](https://github.com/graphile/crystal/commit/184773382f074a3b5339e4cfabec55173cd4f1e1),
748
+ [`f97d7976a`](https://github.com/graphile/crystal/commit/f97d7976a683a1e2cb0fed1ce0e30aeff8cc1886)]:
749
+ - @dataplan/pg@0.0.1-beta.15
750
+ - tamedevil@0.0.0-beta.4
751
+ - grafserv@0.1.1-beta.6
752
+ - graphile-utils@5.0.0-beta.18
753
+ - grafast@0.1.1-beta.4
754
+ - graphile-build-pg@5.0.0-beta.18
755
+ - graphile-build@5.0.0-beta.14
756
+ - @dataplan/json@0.0.1-beta.13
757
+
758
+ ## 5.0.0-beta.18
759
+
760
+ ### Patch Changes
761
+
762
+ - [#1892](https://github.com/graphile/crystal/pull/1892)
763
+ [`0df5511ac`](https://github.com/graphile/crystal/commit/0df5511ac8b79ea34f8d12ebf8feeb421f8fe971)
764
+ Thanks [@benjie](https://github.com/benjie)! - Fix plugin ordering bug that
765
+ ignored before/after when there was no provider; this now means
766
+ PgSmartTagsPlugin is correctly loaded before PgFakeConstraintPlugin, fixing
767
+ the `postgraphile.tags.json5` file.
768
+
769
+ - [#1894](https://github.com/graphile/crystal/pull/1894)
770
+ [`7851d89ab`](https://github.com/graphile/crystal/commit/7851d89ab4216b0252583f0068a69900fa2ddc88)
771
+ Thanks [@benjie](https://github.com/benjie)! - Fix logic around RBAC
772
+ permissions for tables and sequences.
773
+
774
+ - Updated dependencies
775
+ [[`0df5511ac`](https://github.com/graphile/crystal/commit/0df5511ac8b79ea34f8d12ebf8feeb421f8fe971)]:
776
+ - graphile-config@0.0.1-beta.6
777
+ - @dataplan/pg@0.0.1-beta.14
778
+ - grafast@0.1.1-beta.3
779
+ - grafserv@0.1.1-beta.5
780
+ - graphile-build@5.0.0-beta.13
781
+ - graphile-build-pg@5.0.0-beta.17
782
+ - graphile-utils@5.0.0-beta.17
783
+ - @dataplan/json@0.0.1-beta.12
784
+
785
+ ## 5.0.0-beta.17
786
+
787
+ ### Patch Changes
788
+
789
+ - [#1884](https://github.com/graphile/crystal/pull/1884)
790
+ [`bce0636d4`](https://github.com/graphile/crystal/commit/bce0636d424476664672166193a181c83476423a)
791
+ Thanks [@benjie](https://github.com/benjie)! - Fixes multiple pgServices codec
792
+ name conflicts by prepending the service name if it's not 'main'.
793
+
794
+ - [#1867](https://github.com/graphile/crystal/pull/1867)
795
+ [`004889258`](https://github.com/graphile/crystal/commit/004889258e22a19ffe9a641f57e4ddd5299db9bf)
796
+ Thanks [@benjie](https://github.com/benjie)! - Fix bug in CLI parser where
797
+ omitting `--watch` would force `watch: false` even if config sets
798
+ `watch: true`.
799
+
800
+ - [#1817](https://github.com/graphile/crystal/pull/1817)
801
+ [`f305c3278`](https://github.com/graphile/crystal/commit/f305c327848eb7baef46c5384a7cc5af6f79db8d)
802
+ Thanks [@benjie](https://github.com/benjie)! - Add support for limiting
803
+ polymorphic plans (only some of them, specifically `pgUnionAll()` right now)
804
+ to limit the types of their results; exposed via an experimental 'only'
805
+ argument on fields, for example
806
+ `allApplications(only: [GcpApplication, AwsApplication])` would limit the type
807
+ of applications returned to only be the two specified.
808
+
809
+ - [#1885](https://github.com/graphile/crystal/pull/1885)
810
+ [`9e1df08b7`](https://github.com/graphile/crystal/commit/9e1df08b702ae32870a8f1324bab37f447cba868)
811
+ Thanks [@benjie](https://github.com/benjie)! - Fix `orderBy:null` regression
812
+
813
+ - [#1878](https://github.com/graphile/crystal/pull/1878)
814
+ [`e04238c0a`](https://github.com/graphile/crystal/commit/e04238c0aee46cc86ba61d6461b6636c2f9d1183)
815
+ Thanks [@benjie](https://github.com/benjie)! - Add emulation for
816
+ `--simple-subscriptions` to V4 preset.
817
+
818
+ - [#1884](https://github.com/graphile/crystal/pull/1884)
819
+ [`c66c3527c`](https://github.com/graphile/crystal/commit/c66c3527ce2bb38afa37242ecb5a22247efd6db9)
820
+ Thanks [@benjie](https://github.com/benjie)! - List codecs can now have names.
821
+
822
+ - Updated dependencies
823
+ [[`3fdc2bce4`](https://github.com/graphile/crystal/commit/3fdc2bce42418773f808c5b8309dfb361cd95ce9),
824
+ [`aeef362b5`](https://github.com/graphile/crystal/commit/aeef362b5744816f01e4a6f714bbd77f92332bc5),
825
+ [`8a76db07f`](https://github.com/graphile/crystal/commit/8a76db07f4c110cecc6225504f9a05ccbcbc7b92),
826
+ [`bce0636d4`](https://github.com/graphile/crystal/commit/bce0636d424476664672166193a181c83476423a),
827
+ [`f305c3278`](https://github.com/graphile/crystal/commit/f305c327848eb7baef46c5384a7cc5af6f79db8d),
828
+ [`3b558e0c1`](https://github.com/graphile/crystal/commit/3b558e0c110dd49e5d51e49a5ad6463a9ed68ecb),
829
+ [`2ae8d33aa`](https://github.com/graphile/crystal/commit/2ae8d33aa83955649dcd6e7489604b059ed2daf4),
830
+ [`9e1df08b7`](https://github.com/graphile/crystal/commit/9e1df08b702ae32870a8f1324bab37f447cba868),
831
+ [`8a0cdb95f`](https://github.com/graphile/crystal/commit/8a0cdb95f200b28b0ea1ab5caa12b23dce5f374f),
832
+ [`dbd91fdd8`](https://github.com/graphile/crystal/commit/dbd91fdd836f041b6e2ff9d358c6a6f521f43914),
833
+ [`995e25035`](https://github.com/graphile/crystal/commit/995e250352217fdf8f036b8ed6cad3fab520817f),
834
+ [`f1d5ad18e`](https://github.com/graphile/crystal/commit/f1d5ad18e1cd0d59b9e74f619ec6b0de57f07b17),
835
+ [`c66c3527c`](https://github.com/graphile/crystal/commit/c66c3527ce2bb38afa37242ecb5a22247efd6db9),
836
+ [`f66cc40b3`](https://github.com/graphile/crystal/commit/f66cc40b3bc5bf2e7f92fe5a6bd5638e2a51ac2b),
837
+ [`f18635a5c`](https://github.com/graphile/crystal/commit/f18635a5cf55845c9534d82bb483e5fbb9ed179e),
838
+ [`1c9f1c0ed`](https://github.com/graphile/crystal/commit/1c9f1c0edf4e621a5b6345d3a41527a18143c6ae),
839
+ [`9fb5cc06e`](https://github.com/graphile/crystal/commit/9fb5cc06ee52165378392969172e6ee8128833f6)]:
840
+ - grafast@0.1.1-beta.2
841
+ - graphile-utils@5.0.0-beta.16
842
+ - graphile-build-pg@5.0.0-beta.16
843
+ - @dataplan/pg@0.0.1-beta.13
844
+ - graphile-build@5.0.0-beta.12
845
+ - graphile-config@0.0.1-beta.5
846
+ - grafserv@0.1.1-beta.4
847
+ - @dataplan/json@0.0.1-beta.11
848
+
849
+ ## 5.0.0-beta.16
850
+
851
+ ### Patch Changes
852
+
853
+ - [#1834](https://github.com/graphile/crystal/pull/1834)
854
+ [`2e7fc6449`](https://github.com/graphile/crystal/commit/2e7fc6449c2d08c44c32985811bb2e233a04056b)
855
+ Thanks [@benjie](https://github.com/benjie)! - Fix issue with watch mode where
856
+ schema omits database resources in some situations.
857
+ - Updated dependencies
858
+ [[`9696a1b08`](https://github.com/graphile/crystal/commit/9696a1b0885442f44e3a6ca6a4909ec96a445884),
859
+ [`49fcb0d58`](https://github.com/graphile/crystal/commit/49fcb0d585b31b291c9072c339d6f5b550eefc9f),
860
+ [`2e7fc6449`](https://github.com/graphile/crystal/commit/2e7fc6449c2d08c44c32985811bb2e233a04056b),
861
+ [`7aef73319`](https://github.com/graphile/crystal/commit/7aef73319a8a147c700727be62427e1eefdefbf8)]:
862
+ - grafserv@0.1.1-beta.3
863
+ - grafast@0.1.1-beta.1
864
+ - graphile-build-pg@5.0.0-beta.15
865
+ - graphile-config@0.0.1-beta.4
866
+ - @dataplan/pg@0.0.1-beta.12
867
+ - @dataplan/json@0.0.1-beta.10
868
+ - graphile-build@5.0.0-beta.11
869
+ - graphile-utils@5.0.0-beta.15
870
+
871
+ ## 5.0.0-beta.15
872
+
873
+ ### Patch Changes
874
+
875
+ - [#1799](https://github.com/graphile/crystal/pull/1799)
876
+ [`3dd5d86d6`](https://github.com/graphile/crystal/commit/3dd5d86d6c1ea7ba106c08e8a315ec47ed6cfa2d)
877
+ Thanks [@jvandermey](https://github.com/jvandermey)! - Can now pass onEdit
878
+ callbacks through the Ruru config via the plugin system; e.g. to update the
879
+ URL search params with the current editor state.
880
+
881
+ - [#1801](https://github.com/graphile/crystal/pull/1801)
882
+ [`2d447a6b4`](https://github.com/graphile/crystal/commit/2d447a6b45d7db2813bd957f412cd959e2185759)
883
+ Thanks [@benjie](https://github.com/benjie)! - Fix bug where the owner of a
884
+ database object wasn't seen as having any privileges.
885
+ - Updated dependencies
886
+ [[`2d447a6b4`](https://github.com/graphile/crystal/commit/2d447a6b45d7db2813bd957f412cd959e2185759)]:
887
+ - graphile-build-pg@5.0.0-beta.14
888
+ - graphile-utils@5.0.0-beta.14
889
+ - grafserv@0.1.1-beta.2
890
+ - @dataplan/pg@0.0.1-beta.11
891
+
892
+ ## 5.0.0-beta.14
893
+
894
+ ### Patch Changes
895
+
896
+ - [#1796](https://github.com/graphile/crystal/pull/1796)
897
+ [`ebb0b817e`](https://github.com/graphile/crystal/commit/ebb0b817e3efe210445d3f3396ff4bc53ebab3e7)
898
+ Thanks [@benjie](https://github.com/benjie)! - Can now set initial query and
899
+ variables in Ruru via the plugin system; e.g. to set query/variables based on
900
+ query string.
901
+
902
+ - [#1797](https://github.com/graphile/crystal/pull/1797)
903
+ [`26e0bc726`](https://github.com/graphile/crystal/commit/26e0bc72653cd8dcef4b6cfb3c76876a5e620a12)
904
+ Thanks [@benjie](https://github.com/benjie)! - Fix that smart tags were not
905
+ copied onto enum codecs.
906
+
907
+ - Updated dependencies
908
+ [[`781a89758`](https://github.com/graphile/crystal/commit/781a89758fff2712f0080d8fafb4048da189b782),
909
+ [`a38e650d6`](https://github.com/graphile/crystal/commit/a38e650d67d6c7ff0cf5b853377622090ede3a50),
910
+ [`26e0bc726`](https://github.com/graphile/crystal/commit/26e0bc72653cd8dcef4b6cfb3c76876a5e620a12)]:
911
+ - grafserv@0.1.1-beta.1
912
+ - graphile-build-pg@5.0.0-beta.13
913
+ - @dataplan/pg@0.0.1-beta.11
914
+ - graphile-utils@5.0.0-beta.13
915
+
916
+ ## 5.0.0-beta.13
917
+
918
+ ### Patch Changes
919
+
920
+ - Updated dependencies
921
+ [[`2805edc68`](https://github.com/graphile/crystal/commit/2805edc68b90546bf71ffd293af4d87a79345825)]:
922
+ - pg-sql2@5.0.0-beta.4
923
+ - @dataplan/pg@0.0.1-beta.10
924
+ - grafast@0.1.1-beta.0
925
+ - graphile-build-pg@5.0.0-beta.12
926
+ - graphile-utils@5.0.0-beta.12
927
+
928
+ ## 5.0.0-beta.12
929
+
930
+ ### Patch Changes
931
+
932
+ - [#1779](https://github.com/graphile/crystal/pull/1779)
933
+ [`4a4d26d87`](https://github.com/graphile/crystal/commit/4a4d26d87ce74589429b8ca5126a7bfdf30351b8)
934
+ Thanks [@benjie](https://github.com/benjie)! - Fix a polymorphic planning
935
+ issue.
936
+
937
+ - [#1778](https://github.com/graphile/crystal/pull/1778)
938
+ [`b2bce88da`](https://github.com/graphile/crystal/commit/b2bce88da26c7a8965468be16fc2d935eadd3434)
939
+ Thanks [@benjie](https://github.com/benjie)! - Enable source maps in modules
940
+ where it was disabled.
941
+
942
+ - [#1780](https://github.com/graphile/crystal/pull/1780)
943
+ [`861a8a306`](https://github.com/graphile/crystal/commit/861a8a306ef42a821da19e77903ddd7e8130bfb3)
944
+ Thanks [@benjie](https://github.com/benjie)! - Fix an issue with side effect
945
+ plans and polymorphism
946
+
947
+ - [#1770](https://github.com/graphile/crystal/pull/1770)
948
+ [`9a84bc6dd`](https://github.com/graphile/crystal/commit/9a84bc6dd5b33c1919f75f867df1f61c78686695)
949
+ Thanks [@benjie](https://github.com/benjie)! - Fix issues around enum tables:
950
+ indicate when an enum table codec replaces a regular attribute codec, expose
951
+ helpers for working with enum tables, and don't exclude enum table references
952
+ when using the Relay preset.
953
+
954
+ - [#1774](https://github.com/graphile/crystal/pull/1774)
955
+ [`7d55d2c34`](https://github.com/graphile/crystal/commit/7d55d2c343880d7e665f9743f6ae7e39343c22cc)
956
+ Thanks [@benjie](https://github.com/benjie)! - Add
957
+ `preset.gather.pgIdentifiers` setting (values: 'qualified' or 'unqualified');
958
+ if set to 'unqualified' then we will not add the schema name to table or
959
+ function identifiers - it's up to you to ensure they're present in the
960
+ `search_path` (which you can set via `pgSettings` on a per-request basis).
961
+ - Updated dependencies
962
+ [[`eeccfd675`](https://github.com/graphile/crystal/commit/eeccfd67585a79330197886fdc98335562e08c0a),
963
+ [`4a4d26d87`](https://github.com/graphile/crystal/commit/4a4d26d87ce74589429b8ca5126a7bfdf30351b8),
964
+ [`b2bce88da`](https://github.com/graphile/crystal/commit/b2bce88da26c7a8965468be16fc2d935eadd3434),
965
+ [`861a8a306`](https://github.com/graphile/crystal/commit/861a8a306ef42a821da19e77903ddd7e8130bfb3),
966
+ [`9a84bc6dd`](https://github.com/graphile/crystal/commit/9a84bc6dd5b33c1919f75f867df1f61c78686695),
967
+ [`b728d7fb9`](https://github.com/graphile/crystal/commit/b728d7fb91eb29fbb21d955af5fd9cb4278f6222),
968
+ [`264158f03`](https://github.com/graphile/crystal/commit/264158f034e7b6ebc1a9a94d92b7e4fb746c5fac),
969
+ [`2d31f058b`](https://github.com/graphile/crystal/commit/2d31f058b34d3f5ef11699582b9a4960a4ebc471),
970
+ [`7d55d2c34`](https://github.com/graphile/crystal/commit/7d55d2c343880d7e665f9743f6ae7e39343c22cc)]:
971
+ - graphile-utils@5.0.0-beta.11
972
+ - grafast@0.1.1-beta.0
973
+ - @dataplan/json@0.0.1-beta.9
974
+ - @dataplan/pg@0.0.1-beta.9
975
+ - graphile-build-pg@5.0.0-beta.11
976
+ - graphile-build@5.0.0-beta.10
977
+ - grafserv@0.1.1-beta.0
978
+
979
+ ## 5.0.0-beta.11
980
+
981
+ ### Patch Changes
982
+
983
+ - [#514](https://github.com/graphile/crystal-pre-merge/pull/514)
984
+ [`c9848f693`](https://github.com/graphile/crystal-pre-merge/commit/c9848f6936a5abd7740c0638bfb458fb5551f03b)
985
+ Thanks [@benjie](https://github.com/benjie)! - Update package.json repository
986
+ information
987
+
988
+ - Updated dependencies
989
+ [[`c9848f693`](https://github.com/graphile/crystal-pre-merge/commit/c9848f6936a5abd7740c0638bfb458fb5551f03b),
990
+ [`ede1092fe`](https://github.com/graphile/crystal-pre-merge/commit/ede1092fe197719b6fa786f4cfa75f6a1f4c56c1),
991
+ [`566983fbd`](https://github.com/graphile/crystal-pre-merge/commit/566983fbd99c4b2df8c4ebd6260521670a2b7dfc),
992
+ [`409bf6071`](https://github.com/graphile/crystal-pre-merge/commit/409bf607180d4d8faec658c803e5ec4d1a00c451)]:
993
+ - graphile-build-pg@5.0.0-beta.10
994
+ - graphile-build@5.0.0-beta.9
995
+ - graphile-utils@5.0.0-beta.10
996
+ - @dataplan/json@0.0.1-beta.8
997
+ - graphile-config@0.0.1-beta.3
998
+ - @dataplan/pg@0.0.1-beta.8
999
+ - grafserv@0.0.1-beta.9
1000
+ - grafast@0.0.1-beta.8
1001
+ - tamedevil@0.0.0-beta.3
1002
+ - pg-sql2@5.0.0-beta.3
1003
+ - @graphile/lru@5.0.0-beta.3
1004
+
1005
+ ## 5.0.0-beta.10
1006
+
1007
+ ### Patch Changes
1008
+
1009
+ - Updated dependencies []:
1010
+ - grafserv@0.0.1-beta.8
1011
+ - graphile-build-pg@5.0.0-beta.9
1012
+ - @dataplan/pg@0.0.1-beta.7
1013
+ - graphile-utils@5.0.0-beta.9
1014
+
1015
+ ## 5.0.0-beta.9
1016
+
1017
+ ### Patch Changes
1018
+
1019
+ - Updated dependencies
1020
+ [[`3700e204f`](https://github.com/benjie/crystal/commit/3700e204f430db182c92ca7abc82017c81fa1f9b)]:
1021
+ - grafast@0.0.1-beta.7
1022
+ - @dataplan/json@0.0.1-beta.7
1023
+ - @dataplan/pg@0.0.1-beta.7
1024
+ - grafserv@0.0.1-beta.7
1025
+ - graphile-build@5.0.0-beta.8
1026
+ - graphile-build-pg@5.0.0-beta.9
1027
+ - graphile-utils@5.0.0-beta.9
1028
+
1029
+ ## 5.0.0-beta.8
1030
+
1031
+ ### Patch Changes
1032
+
1033
+ - [#496](https://github.com/benjie/crystal/pull/496)
1034
+ [`ac092e021`](https://github.com/benjie/crystal/commit/ac092e0217d1385967dcdf39c9c1a390ebf6add8)
1035
+ Thanks [@benjie](https://github.com/benjie)! - PostGraphile no longer exports
1036
+ `GraphileBuild` nor `GraphileConfig` - these are global namespaces.
1037
+
1038
+ - [#496](https://github.com/benjie/crystal/pull/496)
1039
+ [`c9bfd9892`](https://github.com/benjie/crystal/commit/c9bfd989247f9433fb5b18c5175c9d8d64cd21a1)
1040
+ Thanks [@benjie](https://github.com/benjie)! - Update dependencies (sometimes
1041
+ through major versions).
1042
+
1043
+ - Updated dependencies
1044
+ [[`c9bfd9892`](https://github.com/benjie/crystal/commit/c9bfd989247f9433fb5b18c5175c9d8d64cd21a1),
1045
+ [`e613b476d`](https://github.com/benjie/crystal/commit/e613b476d6ee867d1f7509c895dabee40e7f9a31)]:
1046
+ - graphile-build-pg@5.0.0-beta.8
1047
+ - graphile-build@5.0.0-beta.7
1048
+ - graphile-utils@5.0.0-beta.8
1049
+ - @dataplan/json@0.0.1-beta.6
1050
+ - graphile-config@0.0.1-beta.2
1051
+ - @dataplan/pg@0.0.1-beta.6
1052
+ - grafserv@0.0.1-beta.6
1053
+ - grafast@0.0.1-beta.6
1054
+ - tamedevil@0.0.0-beta.2
1055
+ - pg-sql2@5.0.0-beta.2
1056
+ - @graphile/lru@5.0.0-beta.2
1057
+
1058
+ ## 5.0.0-beta.7
1059
+
1060
+ ### Patch Changes
1061
+
1062
+ - [#488](https://github.com/benjie/crystal/pull/488)
1063
+ [`e916b7412`](https://github.com/benjie/crystal/commit/e916b7412fc1fbbcb1578dbe07684189c2a720ad)
1064
+ Thanks [@benjie](https://github.com/benjie)! - Fix issues with polymorphism
1065
+ when interacting with nodeIds, particularly in mutations and SQL functions.
1066
+ - Updated dependencies
1067
+ [[`95e902f54`](https://github.com/benjie/crystal/commit/95e902f5403c16895e874692f7650293d77590dd),
1068
+ [`53186213a`](https://github.com/benjie/crystal/commit/53186213ade962f4b66cb0d5ea8b57b5ce7ea85f),
1069
+ [`e916b7412`](https://github.com/benjie/crystal/commit/e916b7412fc1fbbcb1578dbe07684189c2a720ad),
1070
+ [`73f1b5218`](https://github.com/benjie/crystal/commit/73f1b52187b2e009d502afa1db8a4e8f702e2958),
1071
+ [`109c8ec67`](https://github.com/benjie/crystal/commit/109c8ec6784dc74f4c4c4c43cc61516cc12401c8)]:
1072
+ - @dataplan/pg@0.0.1-beta.5
1073
+ - grafast@0.0.1-beta.5
1074
+ - graphile-build-pg@5.0.0-beta.7
1075
+ - graphile-build@5.0.0-beta.6
1076
+ - grafserv@0.0.1-beta.5
1077
+ - @dataplan/json@0.0.1-beta.5
1078
+ - graphile-utils@5.0.0-beta.7
1079
+
1080
+ ## 5.0.0-beta.6
1081
+
1082
+ ### Patch Changes
1083
+
1084
+ - [#462](https://github.com/benjie/crystal/pull/462)
1085
+ [`53f0488b1`](https://github.com/benjie/crystal/commit/53f0488b1c060fe9f5dfcd67ad5c0bd932a4b7aa)
1086
+ Thanks [@benjie](https://github.com/benjie)! - Allow 'null' to be passed to
1087
+ `withPgClient`/`withPgClientTransaction`
1088
+
1089
+ - [#460](https://github.com/benjie/crystal/pull/460)
1090
+ [`07883a1a5`](https://github.com/benjie/crystal/commit/07883a1a5eac63bdc0541d6a2b562fc97342c439)
1091
+ Thanks [@benjie](https://github.com/benjie)! - Fix makeExtendSchemaPlugin: now
1092
+ calls callback in 'init' phase, so `Build` type is used (rather than
1093
+ `Partial<Build>`) and other types/handlers/etc should already be registered.
1094
+
1095
+ - [#463](https://github.com/benjie/crystal/pull/463)
1096
+ [`22fa6230a`](https://github.com/benjie/crystal/commit/22fa6230aa7c7271e5360e619ec9e1f52c6ea49c)
1097
+ Thanks [@benjie](https://github.com/benjie)! - Add experimental support for h3
1098
+ server to grafserv.
1099
+
1100
+ - [#459](https://github.com/benjie/crystal/pull/459)
1101
+ [`d17dd1cd4`](https://github.com/benjie/crystal/commit/d17dd1cd47d6cb125fbc84c38a8c004857e1bdd2)
1102
+ Thanks [@benjie](https://github.com/benjie)! - Disable mutations for
1103
+ `@interface mode:relational` tables. (They shouldn't have been enabled, and
1104
+ they don't work yet.)
1105
+
1106
+ - [#464](https://github.com/benjie/crystal/pull/464)
1107
+ [`00d026409`](https://github.com/benjie/crystal/commit/00d0264090f90914eac881b34918fa3370782adc)
1108
+ Thanks [@benjie](https://github.com/benjie)! - `@dataplan/pg/adaptors/pg` now
1109
+ adds `rawClient` property which is the underlying Postgres client for use with
1110
+ `pgTyped`, `zapatos`, and other libraries that can use a raw postgres client.
1111
+ This is exposed via `NodePostgresPgClient` interface which is a subtype of
1112
+ `PgClient`.
1113
+ - Updated dependencies
1114
+ [[`53f0488b1`](https://github.com/benjie/crystal/commit/53f0488b1c060fe9f5dfcd67ad5c0bd932a4b7aa),
1115
+ [`f9cc88dc4`](https://github.com/benjie/crystal/commit/f9cc88dc442d371aee154a28d4e63c6da39f6b2e),
1116
+ [`07883a1a5`](https://github.com/benjie/crystal/commit/07883a1a5eac63bdc0541d6a2b562fc97342c439),
1117
+ [`22fa6230a`](https://github.com/benjie/crystal/commit/22fa6230aa7c7271e5360e619ec9e1f52c6ea49c),
1118
+ [`d17dd1cd4`](https://github.com/benjie/crystal/commit/d17dd1cd47d6cb125fbc84c38a8c004857e1bdd2),
1119
+ [`fa8cfcf9b`](https://github.com/benjie/crystal/commit/fa8cfcf9b4ce0c3e12511f3f6392051924a719e5),
1120
+ [`00d026409`](https://github.com/benjie/crystal/commit/00d0264090f90914eac881b34918fa3370782adc)]:
1121
+ - @dataplan/pg@0.0.1-beta.4
1122
+ - grafast@0.0.1-beta.4
1123
+ - graphile-utils@5.0.0-beta.6
1124
+ - grafserv@0.0.1-beta.4
1125
+ - graphile-build-pg@5.0.0-beta.6
1126
+ - @dataplan/json@0.0.1-beta.4
1127
+ - graphile-build@5.0.0-beta.5
1128
+
1129
+ ## 5.0.0-beta.5
1130
+
1131
+ ### Patch Changes
1132
+
1133
+ - Updated dependencies
1134
+ [[`22ecd1e5d`](https://github.com/benjie/crystal/commit/22ecd1e5de1dcd094be3085cba56b705446413f9)]:
1135
+ - graphile-build-pg@5.0.0-beta.5
1136
+ - graphile-utils@5.0.0-beta.5
1137
+
1138
+ ## 5.0.0-beta.4
1139
+
1140
+ ### Patch Changes
1141
+
1142
+ - [#454](https://github.com/benjie/crystal/pull/454)
1143
+ [`196e5c1aa`](https://github.com/benjie/crystal/commit/196e5c1aab52dbe2a069d0a15b9e4931523fd2dd)
1144
+ Thanks [@benjie](https://github.com/benjie)! -
1145
+ `@interface mode=single/relational` now get `Node` interface if the table has
1146
+ a PK.
1147
+
1148
+ 🚨 `@interface mode=union` no longer gets `Node` interface unless you also add
1149
+ `@behavior node`.
1150
+
1151
+ - [#454](https://github.com/benjie/crystal/pull/454)
1152
+ [`e75bf57dd`](https://github.com/benjie/crystal/commit/e75bf57ddb20d20c86dba880cbb1970ec6a875af)
1153
+ Thanks [@benjie](https://github.com/benjie)! - Automatically register
1154
+ connection types for unionMember unions.
1155
+
1156
+ - Updated dependencies
1157
+ [[`196e5c1aa`](https://github.com/benjie/crystal/commit/196e5c1aab52dbe2a069d0a15b9e4931523fd2dd),
1158
+ [`e75bf57dd`](https://github.com/benjie/crystal/commit/e75bf57ddb20d20c86dba880cbb1970ec6a875af)]:
1159
+ - graphile-build-pg@5.0.0-beta.4
1160
+ - graphile-build@5.0.0-beta.4
1161
+ - graphile-utils@5.0.0-beta.4
1162
+ - @dataplan/pg@0.0.1-beta.3
1163
+
3
1164
  ## 5.0.0-beta.3
4
1165
 
5
1166
  ### Patch Changes