postgraphile 5.0.0-beta.3 → 5.0.0-beta.30

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