graphile-export 1.0.0-rc.5 → 1.0.0
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.
- package/package.json +2 -14
- package/CHANGELOG.md +0 -969
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-export",
|
|
3
|
-
"version": "1.0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Export in-memory generated GraphQL schemas to JS files when built with our helpers.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -15,9 +15,6 @@
|
|
|
15
15
|
"default": "./dist/helpers.js"
|
|
16
16
|
}
|
|
17
17
|
},
|
|
18
|
-
"scripts": {
|
|
19
|
-
"prepack": "tsc -b"
|
|
20
|
-
},
|
|
21
18
|
"repository": {
|
|
22
19
|
"type": "git",
|
|
23
20
|
"url": "git+https://github.com/graphile/crystal.git"
|
|
@@ -67,14 +64,5 @@
|
|
|
67
64
|
},
|
|
68
65
|
"files": [
|
|
69
66
|
"dist"
|
|
70
|
-
]
|
|
71
|
-
"devDependencies": {
|
|
72
|
-
"@types/babel__generator": "^7.27.0",
|
|
73
|
-
"@types/babel__template": "^7.4.4",
|
|
74
|
-
"@types/jest": "^30.0.0",
|
|
75
|
-
"@types/prettier": "^3.0.0",
|
|
76
|
-
"jest": "^30.2.0",
|
|
77
|
-
"ts-node": "^10.9.2",
|
|
78
|
-
"typescript": "^5.9.3"
|
|
79
|
-
}
|
|
67
|
+
]
|
|
80
68
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,969 +0,0 @@
|
|
|
1
|
-
# graphile-export
|
|
2
|
-
|
|
3
|
-
## 1.0.0-rc.5
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- [#2963](https://github.com/graphile/crystal/pull/2963)
|
|
8
|
-
[`9c417ca`](https://github.com/graphile/crystal/commit/9c417cab6685f9592285016dcdbcacca523d6446)
|
|
9
|
-
Thanks [@benjaie](https://github.com/benjaie)! - Graphile Export now optimizes
|
|
10
|
-
the code further by detecting the parameters of functions that are always
|
|
11
|
-
called with the same values and eliminating them. Further optimizations have
|
|
12
|
-
also been applied: Graphile Export now requires fewer passes to achieve the
|
|
13
|
-
same results and more optimizations to the exported code are now applied.
|
|
14
|
-
|
|
15
|
-
- [#2966](https://github.com/graphile/crystal/pull/2966)
|
|
16
|
-
[`82ef520`](https://github.com/graphile/crystal/commit/82ef5205ad07533606c656f91f08aa4b265aef7a)
|
|
17
|
-
Thanks [@benjie](https://github.com/benjie)! - Fix omission in Graphile Export
|
|
18
|
-
where exporting a frozen/sealed object or array would not result in a
|
|
19
|
-
frozen/sealed object being restored.
|
|
20
|
-
|
|
21
|
-
- [#2960](https://github.com/graphile/crystal/pull/2960)
|
|
22
|
-
[`5e9082b`](https://github.com/graphile/crystal/commit/5e9082b540c9984c0f70a625ce6e7025567dec5c)
|
|
23
|
-
Thanks [@benjie](https://github.com/benjie)! - Implement deduplication of
|
|
24
|
-
equivalent `EXPORTABLE(...)` expressions (shrink export size).
|
|
25
|
-
|
|
26
|
-
- [#2959](https://github.com/graphile/crystal/pull/2959)
|
|
27
|
-
[`53d5daf`](https://github.com/graphile/crystal/commit/53d5dafa96d4b84e6a35c8d124404496119b2219)
|
|
28
|
-
Thanks [@benjie](https://github.com/benjie)! - Improve compatibility with Node
|
|
29
|
-
ESM
|
|
30
|
-
|
|
31
|
-
- [#2965](https://github.com/graphile/crystal/pull/2965)
|
|
32
|
-
[`d15e1c2`](https://github.com/graphile/crystal/commit/d15e1c2dc9ffad906d08d3ec2963034494d43d98)
|
|
33
|
-
Thanks [@benjie](https://github.com/benjie)! - Make EXPORTABLE's scope a
|
|
34
|
-
readonly array for greater compatibility.
|
|
35
|
-
|
|
36
|
-
- [#2959](https://github.com/graphile/crystal/pull/2959)
|
|
37
|
-
[`3fca6a7`](https://github.com/graphile/crystal/commit/3fca6a7857cede1939bda75fd00ae9114370f08b)
|
|
38
|
-
Thanks [@benjie](https://github.com/benjie)! - Improve optimization pass to
|
|
39
|
-
eliminate more redundant logic.
|
|
40
|
-
|
|
41
|
-
- [#2967](https://github.com/graphile/crystal/pull/2967)
|
|
42
|
-
[`dbdc8d8`](https://github.com/graphile/crystal/commit/dbdc8d8138164028ec2953ff81531e9238ecf05c)
|
|
43
|
-
Thanks [@benjie](https://github.com/benjie)! - Further optimize the `optimize`
|
|
44
|
-
step in Graphile Export
|
|
45
|
-
|
|
46
|
-
- [#2962](https://github.com/graphile/crystal/pull/2962)
|
|
47
|
-
[`b73416b`](https://github.com/graphile/crystal/commit/b73416b09c947fc0ce57ea9d4f26d15679dbc112)
|
|
48
|
-
Thanks [@benjaie](https://github.com/benjaie)! - Improve export optimization
|
|
49
|
-
to remove redundant repeated identifier arguments from local helper function
|
|
50
|
-
calls, resulting in smaller and more straight-forward exports and easier
|
|
51
|
-
optimizations for third-party plugins where `import`s are discouraged.
|
|
52
|
-
- Updated dependencies
|
|
53
|
-
[[`b793077`](https://github.com/graphile/crystal/commit/b793077f81c0bb56e5cb75853c06db6f934223ff),
|
|
54
|
-
[`57dfa70`](https://github.com/graphile/crystal/commit/57dfa70b70b026c4d84d58a6fd64731f22f7b11a)]:
|
|
55
|
-
- grafast@1.0.0-rc.8
|
|
56
|
-
|
|
57
|
-
## 1.0.0-rc.4
|
|
58
|
-
|
|
59
|
-
### Patch Changes
|
|
60
|
-
|
|
61
|
-
- [`a3722d6`](https://github.com/graphile/crystal/commit/a3722d613bc6fb9e32f167aae9a31eaa422ceef1)
|
|
62
|
-
Thanks [@benjie](https://github.com/benjie)! - Refactor to enable TypeScript
|
|
63
|
-
options rewriteRelativeImportExtensions and erasableSyntaxOnly (including
|
|
64
|
-
using .ts extensions in source code)
|
|
65
|
-
- Updated dependencies
|
|
66
|
-
[[`9eb3829`](https://github.com/graphile/crystal/commit/9eb3829ea337041e4585e0cfeb63b44e87d7d14f),
|
|
67
|
-
[`a3722d6`](https://github.com/graphile/crystal/commit/a3722d613bc6fb9e32f167aae9a31eaa422ceef1),
|
|
68
|
-
[`5fc379e`](https://github.com/graphile/crystal/commit/5fc379ea1ee56ea033a3f7d8c4a1ee00a6c83de7)]:
|
|
69
|
-
- grafast@1.0.0-rc.5
|
|
70
|
-
- pg-sql2@5.0.0-rc.4
|
|
71
|
-
|
|
72
|
-
## 1.0.0-rc.3
|
|
73
|
-
|
|
74
|
-
### Patch Changes
|
|
75
|
-
|
|
76
|
-
- [#2877](https://github.com/graphile/crystal/pull/2877)
|
|
77
|
-
[`1e45a3d`](https://github.com/graphile/crystal/commit/1e45a3d6495cfea45bfdde95af889a453b82def3)
|
|
78
|
-
Thanks [@benjie](https://github.com/benjie)! - Safety - use null prototype
|
|
79
|
-
objects in more places.
|
|
80
|
-
|
|
81
|
-
- [#2873](https://github.com/graphile/crystal/pull/2873)
|
|
82
|
-
[`0772086`](https://github.com/graphile/crystal/commit/0772086411a55d56b4e345cff1eef133eee31b36)
|
|
83
|
-
Thanks [@benjie](https://github.com/benjie)! - Update TypeScript configuration
|
|
84
|
-
to support Node 22 minimum
|
|
85
|
-
|
|
86
|
-
- [#2888](https://github.com/graphile/crystal/pull/2888)
|
|
87
|
-
[`1a56db2`](https://github.com/graphile/crystal/commit/1a56db2f53bc455a3d3ba6555a2cd777b27b271c)
|
|
88
|
-
Thanks [@benjaie](https://github.com/benjaie)! - Node v22+ is required for
|
|
89
|
-
this module.
|
|
90
|
-
|
|
91
|
-
- Updated dependencies
|
|
92
|
-
[[`44555c7`](https://github.com/graphile/crystal/commit/44555c7f479d531d6aef100f99859c3bcbf06c93),
|
|
93
|
-
[`1e45a3d`](https://github.com/graphile/crystal/commit/1e45a3d6495cfea45bfdde95af889a453b82def3),
|
|
94
|
-
[`0772086`](https://github.com/graphile/crystal/commit/0772086411a55d56b4e345cff1eef133eee31b36),
|
|
95
|
-
[`a565503`](https://github.com/graphile/crystal/commit/a5655035dfee7000c1d37e4791354d7a2ba35792),
|
|
96
|
-
[`d9ccc82`](https://github.com/graphile/crystal/commit/d9ccc82a30ca6167f480e5c8bc15d17df51c0d1c),
|
|
97
|
-
[`1a56db2`](https://github.com/graphile/crystal/commit/1a56db2f53bc455a3d3ba6555a2cd777b27b271c),
|
|
98
|
-
[`eafa3f0`](https://github.com/graphile/crystal/commit/eafa3f036ce68e6ffb65935f0a78edee2fa6bdf8),
|
|
99
|
-
[`b27c562`](https://github.com/graphile/crystal/commit/b27c562409f7a2fd8a0eeaca96cd2c6b935efe4c),
|
|
100
|
-
[`f23f0cf`](https://github.com/graphile/crystal/commit/f23f0cf8812eddff7c91c529499a4f20f1f2978c),
|
|
101
|
-
[`afe31f0`](https://github.com/graphile/crystal/commit/afe31f09a5b204f79321f8db9b42440df23a1183),
|
|
102
|
-
[`d3a1be9`](https://github.com/graphile/crystal/commit/d3a1be921d70d143a94ca376d9d08dd85269f5bf)]:
|
|
103
|
-
- grafast@1.0.0-rc.4
|
|
104
|
-
- pg-sql2@5.0.0-rc.3
|
|
105
|
-
|
|
106
|
-
## 1.0.0-rc.2
|
|
107
|
-
|
|
108
|
-
### Patch Changes
|
|
109
|
-
|
|
110
|
-
- [#2829](https://github.com/graphile/crystal/pull/2829)
|
|
111
|
-
[`a82e6fa`](https://github.com/graphile/crystal/commit/a82e6fae099f7e9d62fb3fc1ee173368cdabca27)
|
|
112
|
-
Thanks [@benjie](https://github.com/benjie)! - Update dependency ranges.
|
|
113
|
-
|
|
114
|
-
- Updated dependencies
|
|
115
|
-
[[`f3a9869`](https://github.com/graphile/crystal/commit/f3a9869c6f9e7aa1eb501af5f7d582d2073be585),
|
|
116
|
-
[`68f61cd`](https://github.com/graphile/crystal/commit/68f61cdbeea19e81b1d59a3fac69a569642c5c88),
|
|
117
|
-
[`8cfe23f`](https://github.com/graphile/crystal/commit/8cfe23f6e694503ffb99a642f816e858275f5b4e),
|
|
118
|
-
[`a82e6fa`](https://github.com/graphile/crystal/commit/a82e6fae099f7e9d62fb3fc1ee173368cdabca27)]:
|
|
119
|
-
- grafast@1.0.0-rc.2
|
|
120
|
-
- pg-sql2@5.0.0-rc.2
|
|
121
|
-
|
|
122
|
-
## 1.0.0-rc.1
|
|
123
|
-
|
|
124
|
-
### Patch Changes
|
|
125
|
-
|
|
126
|
-
- [`8a5a7c5`](https://github.com/graphile/crystal/commit/8a5a7c536fc4b9b702600c5cc3d413724670c327)
|
|
127
|
-
Thanks [@benjie](https://github.com/benjie)! - Bump to release candidate
|
|
128
|
-
|
|
129
|
-
- Updated dependencies
|
|
130
|
-
[[`abb623d`](https://github.com/graphile/crystal/commit/abb623d59e517c0949f0fef5440b817103c685bf),
|
|
131
|
-
[`31b388c`](https://github.com/graphile/crystal/commit/31b388c6d5546640af7dcf4e6021643e47892ed1),
|
|
132
|
-
[`930240a`](https://github.com/graphile/crystal/commit/930240a4a7d3373f5691d495df752bb8fedac2af),
|
|
133
|
-
[`7b86454`](https://github.com/graphile/crystal/commit/7b864546fa81803ce0e573a2efa2e7f0905b2040),
|
|
134
|
-
[`42a0785`](https://github.com/graphile/crystal/commit/42a0785ddabf58812a22d764eeddfde9362974e5),
|
|
135
|
-
[`d196d60`](https://github.com/graphile/crystal/commit/d196d60664fbc9ffd410c11645db27554b22ac0b),
|
|
136
|
-
[`c6cbe61`](https://github.com/graphile/crystal/commit/c6cbe6175b0f1f034db59d42cbe594e7d329aba6),
|
|
137
|
-
[`d4ac603`](https://github.com/graphile/crystal/commit/d4ac603da7df6ea01aaa483a7cb29b1e514a90cd),
|
|
138
|
-
[`8a5a7c5`](https://github.com/graphile/crystal/commit/8a5a7c536fc4b9b702600c5cc3d413724670c327),
|
|
139
|
-
[`ea0135f`](https://github.com/graphile/crystal/commit/ea0135fac3f43850b65828f2ff2b01a34cfdff15),
|
|
140
|
-
[`b6821f5`](https://github.com/graphile/crystal/commit/b6821f5f4dc13abd0b605be7396c1b3c36e66177)]:
|
|
141
|
-
- grafast@1.0.0-rc.1
|
|
142
|
-
- pg-sql2@5.0.0-rc.1
|
|
143
|
-
|
|
144
|
-
## 0.0.2-beta.31
|
|
145
|
-
|
|
146
|
-
### Patch Changes
|
|
147
|
-
|
|
148
|
-
- [#2730](https://github.com/graphile/crystal/pull/2730)
|
|
149
|
-
[`4c3cf22`](https://github.com/graphile/crystal/commit/4c3cf22592f44cb28e399434474ca5fcef0e1a3b)
|
|
150
|
-
Thanks [@benjie](https://github.com/benjie)! - Update `graphql` version range
|
|
151
|
-
|
|
152
|
-
- [#2142](https://github.com/graphile/crystal/pull/2142)
|
|
153
|
-
[`ab96e5f`](https://github.com/graphile/crystal/commit/ab96e5f58aa3315db9b85b452b048f600cb8353e)
|
|
154
|
-
Thanks [@benjie](https://github.com/benjie)! - Support for `@defer` and
|
|
155
|
-
`@stream` no longer requires `graphql@16.1.0-experimental-stream-defer.6`.
|
|
156
|
-
`graphql@^16.9.0` should now work, since we ponyfill everything we need.
|
|
157
|
-
- Updated dependencies
|
|
158
|
-
[[`4c3cf22`](https://github.com/graphile/crystal/commit/4c3cf22592f44cb28e399434474ca5fcef0e1a3b),
|
|
159
|
-
[`71e0af2`](https://github.com/graphile/crystal/commit/71e0af265c90e9d9d0dc764cc552f7470e860251),
|
|
160
|
-
[`ab96e5f`](https://github.com/graphile/crystal/commit/ab96e5f58aa3315db9b85b452b048f600cb8353e),
|
|
161
|
-
[`278b4d3`](https://github.com/graphile/crystal/commit/278b4d398eb7db1935caba4155e1d1727284a370),
|
|
162
|
-
[`eaa771b`](https://github.com/graphile/crystal/commit/eaa771b34dbdac1c4d701faa8fb5947e9cf1d1be),
|
|
163
|
-
[`d0c15cc`](https://github.com/graphile/crystal/commit/d0c15ccc32ed8dec19ff068f851529132dc93302),
|
|
164
|
-
[`bffbb77`](https://github.com/graphile/crystal/commit/bffbb775ea76d1add85422866a6b7e904d2311af),
|
|
165
|
-
[`c48ca48`](https://github.com/graphile/crystal/commit/c48ca4840227b8e5e6a1dc198a189cfd911a602b)]:
|
|
166
|
-
- grafast@0.1.1-beta.27
|
|
167
|
-
|
|
168
|
-
## 0.0.2-beta.30
|
|
169
|
-
|
|
170
|
-
### Patch Changes
|
|
171
|
-
|
|
172
|
-
- [#2692](https://github.com/graphile/crystal/pull/2692)
|
|
173
|
-
[`3d5c464`](https://github.com/graphile/crystal/commit/3d5c4641df66b431066efd6c74b67ca0d38ba7f4)
|
|
174
|
-
Thanks [@benjie](https://github.com/benjie)! - Allow forbidding certain
|
|
175
|
-
objects/functions from being exported, and raise error as early as possible.
|
|
176
|
-
- Updated dependencies
|
|
177
|
-
[[`c3f9c38`](https://github.com/graphile/crystal/commit/c3f9c38cb00ad4553e4bc3c04e16a7c77bd16142),
|
|
178
|
-
[`13513dd`](https://github.com/graphile/crystal/commit/13513ddaea15ad9498a77de7c4e92679498f99ca),
|
|
179
|
-
[`bc2b188`](https://github.com/graphile/crystal/commit/bc2b188a50e00f153dc68df6955399c5917130bd),
|
|
180
|
-
[`c13813e`](https://github.com/graphile/crystal/commit/c13813eecb42c0d9a6703540c022e318e18c5751),
|
|
181
|
-
[`4a9072b`](https://github.com/graphile/crystal/commit/4a9072bfa3d3e86c6013caf2b89a31e87f2bb421),
|
|
182
|
-
[`6dafac1`](https://github.com/graphile/crystal/commit/6dafac162955291e5147c21e57734b44e30acb98),
|
|
183
|
-
[`34efed0`](https://github.com/graphile/crystal/commit/34efed09892d4b6533f40026de4a6b0a8a35035d),
|
|
184
|
-
[`185d449`](https://github.com/graphile/crystal/commit/185d449ed30d29c9134cc898b50a1473ab2910a2)]:
|
|
185
|
-
- grafast@0.1.1-beta.26
|
|
186
|
-
|
|
187
|
-
## 0.0.2-beta.29
|
|
188
|
-
|
|
189
|
-
### Patch Changes
|
|
190
|
-
|
|
191
|
-
- [#2577](https://github.com/graphile/crystal/pull/2577)
|
|
192
|
-
[`0c6b1f1`](https://github.com/graphile/crystal/commit/0c6b1f1e188f6e2913832adfed9ca76dfdc25c47)
|
|
193
|
-
Thanks [@benjie](https://github.com/benjie)! - Update dependencies
|
|
194
|
-
|
|
195
|
-
- Updated dependencies
|
|
196
|
-
[[`0c6b1f1`](https://github.com/graphile/crystal/commit/0c6b1f1e188f6e2913832adfed9ca76dfdc25c47)]:
|
|
197
|
-
- grafast@0.1.1-beta.23
|
|
198
|
-
|
|
199
|
-
## 0.0.2-beta.28
|
|
200
|
-
|
|
201
|
-
### Patch Changes
|
|
202
|
-
|
|
203
|
-
- [#2576](https://github.com/graphile/crystal/pull/2576)
|
|
204
|
-
[`8dd9bb3701b8d01ece4349161e7ce065c21487a6`](https://github.com/graphile/crystal/commit/8dd9bb3701b8d01ece4349161e7ce065c21487a6)
|
|
205
|
-
Thanks [@benjie](https://github.com/benjie)! - Provide option to allow
|
|
206
|
-
disabling optimize (to reduce memory pressure).
|
|
207
|
-
|
|
208
|
-
- [#2574](https://github.com/graphile/crystal/pull/2574)
|
|
209
|
-
[`ec25997a6a2557cde9aaa9e27eb202ad945b6015`](https://github.com/graphile/crystal/commit/ec25997a6a2557cde9aaa9e27eb202ad945b6015)
|
|
210
|
-
Thanks [@benjie](https://github.com/benjie)! - Fix dependency ranges to allow
|
|
211
|
-
ESLint 9
|
|
212
|
-
|
|
213
|
-
## 0.0.2-beta.27
|
|
214
|
-
|
|
215
|
-
### Patch Changes
|
|
216
|
-
|
|
217
|
-
- [#2535](https://github.com/graphile/crystal/pull/2535)
|
|
218
|
-
[`fae2629f7bdd39b62ca7f8a911306a0dda3232b5`](https://github.com/graphile/crystal/commit/fae2629f7bdd39b62ca7f8a911306a0dda3232b5)
|
|
219
|
-
Thanks [@benjie](https://github.com/benjie)! - Graphile Export now exports in
|
|
220
|
-
the new typeDefs/objects/interfaces/unions/... format, and further sorts the
|
|
221
|
-
types and fields (but not the SDL!) for easier lookup.
|
|
222
|
-
|
|
223
|
-
- [#2482](https://github.com/graphile/crystal/pull/2482)
|
|
224
|
-
[`459e1869a2ec58925b2bac5458af487c52a8ca37`](https://github.com/graphile/crystal/commit/459e1869a2ec58925b2bac5458af487c52a8ca37)
|
|
225
|
-
Thanks [@benjie](https://github.com/benjie)! - Minimum version of Node.js
|
|
226
|
-
bumped to Node 22 (the latest LTS).
|
|
227
|
-
|
|
228
|
-
- [#2446](https://github.com/graphile/crystal/pull/2446)
|
|
229
|
-
[`a1d17ca2a18f3e733ca728e29645781c7789ebab`](https://github.com/graphile/crystal/commit/a1d17ca2a18f3e733ca728e29645781c7789ebab)
|
|
230
|
-
Thanks [@nckswt](https://github.com/nckswt)! - graphile-export now uses ES2022
|
|
231
|
-
syntax for ESLint check on exported schema, fixing compatibility with
|
|
232
|
-
`@graphile/pg-aggregates`.
|
|
233
|
-
|
|
234
|
-
- [#2497](https://github.com/graphile/crystal/pull/2497)
|
|
235
|
-
[`d0be66bcbcb497c06fc992a11d80b220fb6ac168`](https://github.com/graphile/crystal/commit/d0be66bcbcb497c06fc992a11d80b220fb6ac168)
|
|
236
|
-
Thanks [@benjie](https://github.com/benjie)! - Fix detection of SQL when
|
|
237
|
-
`pg-sql2` isn't available at runtime, and improve misleading error around
|
|
238
|
-
class instances
|
|
239
|
-
- Updated dependencies
|
|
240
|
-
[[`0e36cb9077c76710d2e407830323f86c5038126e`](https://github.com/graphile/crystal/commit/0e36cb9077c76710d2e407830323f86c5038126e),
|
|
241
|
-
[`5a26196eff8fd1956d73e0b8fdf5cfcb7f01b7d3`](https://github.com/graphile/crystal/commit/5a26196eff8fd1956d73e0b8fdf5cfcb7f01b7d3),
|
|
242
|
-
[`c0c3f48fa9f60cb9a4436ea135979b779ecc71ec`](https://github.com/graphile/crystal/commit/c0c3f48fa9f60cb9a4436ea135979b779ecc71ec),
|
|
243
|
-
[`cef9a37f846b4af105ac20960530d65c9f44afa9`](https://github.com/graphile/crystal/commit/cef9a37f846b4af105ac20960530d65c9f44afa9),
|
|
244
|
-
[`56ce94a847c6a4094643665cbf5d3712f56140b6`](https://github.com/graphile/crystal/commit/56ce94a847c6a4094643665cbf5d3712f56140b6),
|
|
245
|
-
[`192a27e08763ea26607344a2ea6c7f5c595cc2a3`](https://github.com/graphile/crystal/commit/192a27e08763ea26607344a2ea6c7f5c595cc2a3),
|
|
246
|
-
[`6ef6abce15936a896156d5316020df55cf7d18e3`](https://github.com/graphile/crystal/commit/6ef6abce15936a896156d5316020df55cf7d18e3),
|
|
247
|
-
[`0239c2d519300a72f545e0db7c371adae4ade2a9`](https://github.com/graphile/crystal/commit/0239c2d519300a72f545e0db7c371adae4ade2a9),
|
|
248
|
-
[`0ea439d33ccef7f8d01ac5f54893ab2bbf1cbd4d`](https://github.com/graphile/crystal/commit/0ea439d33ccef7f8d01ac5f54893ab2bbf1cbd4d),
|
|
249
|
-
[`8034614d1078b1bd177b6e7fcc949420614e3245`](https://github.com/graphile/crystal/commit/8034614d1078b1bd177b6e7fcc949420614e3245),
|
|
250
|
-
[`459e1869a2ec58925b2bac5458af487c52a8ca37`](https://github.com/graphile/crystal/commit/459e1869a2ec58925b2bac5458af487c52a8ca37),
|
|
251
|
-
[`c350e49e372ec12a4cbf04fb6b4260e01832d12b`](https://github.com/graphile/crystal/commit/c350e49e372ec12a4cbf04fb6b4260e01832d12b),
|
|
252
|
-
[`3176ea3e57d626b39613a73117ef97627370ec83`](https://github.com/graphile/crystal/commit/3176ea3e57d626b39613a73117ef97627370ec83),
|
|
253
|
-
[`46a42f5547c041289aa98657ebc6815f4b6c8539`](https://github.com/graphile/crystal/commit/46a42f5547c041289aa98657ebc6815f4b6c8539),
|
|
254
|
-
[`a87bbd76f1a8b60fd86de65922746d830cc160b4`](https://github.com/graphile/crystal/commit/a87bbd76f1a8b60fd86de65922746d830cc160b4),
|
|
255
|
-
[`be3f174c5aae8fe78a240e1bc4e1de7f18644b43`](https://github.com/graphile/crystal/commit/be3f174c5aae8fe78a240e1bc4e1de7f18644b43),
|
|
256
|
-
[`576fb8bad56cb940ab444574d752e914d462018a`](https://github.com/graphile/crystal/commit/576fb8bad56cb940ab444574d752e914d462018a),
|
|
257
|
-
[`9f459101fa4428aa4bac71531e75f99e33da8e17`](https://github.com/graphile/crystal/commit/9f459101fa4428aa4bac71531e75f99e33da8e17),
|
|
258
|
-
[`921665df8babe2651ab3b5886ab68bb518f2125b`](https://github.com/graphile/crystal/commit/921665df8babe2651ab3b5886ab68bb518f2125b),
|
|
259
|
-
[`78bb1a615754d772a5fda000e96073c91fa9eba7`](https://github.com/graphile/crystal/commit/78bb1a615754d772a5fda000e96073c91fa9eba7),
|
|
260
|
-
[`c9cd0cc72a4db4b02b2bdf770161c9346cb4b174`](https://github.com/graphile/crystal/commit/c9cd0cc72a4db4b02b2bdf770161c9346cb4b174),
|
|
261
|
-
[`ab0bcda5fc3c136eea09493a7d9ed4542975858e`](https://github.com/graphile/crystal/commit/ab0bcda5fc3c136eea09493a7d9ed4542975858e),
|
|
262
|
-
[`455f4811d37ad8fff91183c7a88621bcf9d79acf`](https://github.com/graphile/crystal/commit/455f4811d37ad8fff91183c7a88621bcf9d79acf),
|
|
263
|
-
[`45adaff886e7cd72b864150927be6c0cb4a7dfe8`](https://github.com/graphile/crystal/commit/45adaff886e7cd72b864150927be6c0cb4a7dfe8)]:
|
|
264
|
-
- grafast@0.1.1-beta.22
|
|
265
|
-
- pg-sql2@5.0.0-beta.9
|
|
266
|
-
|
|
267
|
-
## 0.0.2-beta.26
|
|
268
|
-
|
|
269
|
-
### Patch Changes
|
|
270
|
-
|
|
271
|
-
- [#2356](https://github.com/graphile/crystal/pull/2356)
|
|
272
|
-
[`eb34f24cbbddd3553e2bd00176193ca998f35fb4`](https://github.com/graphile/crystal/commit/eb34f24cbbddd3553e2bd00176193ca998f35fb4)
|
|
273
|
-
Thanks [@benjie](https://github.com/benjie)! - No longer outputs 'undefined'
|
|
274
|
-
properties for arguments that have no extensions/etc.
|
|
275
|
-
|
|
276
|
-
- [#2356](https://github.com/graphile/crystal/pull/2356)
|
|
277
|
-
[`4b49dbd2df3b339a2ba3f1e9ff400fa1a125298b`](https://github.com/graphile/crystal/commit/4b49dbd2df3b339a2ba3f1e9ff400fa1a125298b)
|
|
278
|
-
Thanks [@benjie](https://github.com/benjie)! - 🚨 makeGrafastSchema and schema
|
|
279
|
-
export now export extensions directly rather than extensions.grafast - applies
|
|
280
|
-
to fields and arguments. All previous exports cannot be (safely) executed with
|
|
281
|
-
latest makeGrafastSchema - please regenerate exports.
|
|
282
|
-
|
|
283
|
-
- [#2424](https://github.com/graphile/crystal/pull/2424)
|
|
284
|
-
[`bff9ad1af9a4ef33ab3f7684bf384a069343d5ff`](https://github.com/graphile/crystal/commit/bff9ad1af9a4ef33ab3f7684bf384a069343d5ff)
|
|
285
|
-
Thanks [@benjie](https://github.com/benjie)! - Implement a large number of
|
|
286
|
-
optimizations against the exported code and update to the latest
|
|
287
|
-
makeGrafastSchema format.
|
|
288
|
-
|
|
289
|
-
- [#2377](https://github.com/graphile/crystal/pull/2377)
|
|
290
|
-
[`7c38cdeffe034c9b4f5cdd03a8f7f446bd52dcb7`](https://github.com/graphile/crystal/commit/7c38cdeffe034c9b4f5cdd03a8f7f446bd52dcb7)
|
|
291
|
-
Thanks [@benjie](https://github.com/benjie)! - Since `ModifierStep` and
|
|
292
|
-
`BaseStep` are no more; `ExecutableStep` can be renamed to simply `Step`. The
|
|
293
|
-
old name (`ExecutableStep`) is now deprecated.
|
|
294
|
-
|
|
295
|
-
- [#2376](https://github.com/graphile/crystal/pull/2376)
|
|
296
|
-
[`da6f3c04efe3d8634c0bc3fcf93ac2518de85322`](https://github.com/graphile/crystal/commit/da6f3c04efe3d8634c0bc3fcf93ac2518de85322)
|
|
297
|
-
Thanks [@benjie](https://github.com/benjie)! - Overhaul Grafast to remove more
|
|
298
|
-
input planning - inputs should be evaluated at runtime - and remove more
|
|
299
|
-
plan-time step evaluation.
|
|
300
|
-
|
|
301
|
-
`FieldArgs.get` is no more; use `FieldArgs.getRaw` or use `bakedInput()`
|
|
302
|
-
(TODO: document) to get the "baked" version of a raw input value.
|
|
303
|
-
|
|
304
|
-
Input object fields no longer have `applyPlan`/`inputPlan`, instead having the
|
|
305
|
-
runtime equivalents `apply()` and `baked()`. `FieldArgs` is no longer
|
|
306
|
-
available on input object fields, since these fields are no longer called at
|
|
307
|
-
plantime; instead, the actual value is passed.
|
|
308
|
-
|
|
309
|
-
`FieldArgs` gains `.typeAt(path)` method that details the GraphQL input type
|
|
310
|
-
at the given path.
|
|
311
|
-
|
|
312
|
-
Field arguments are no longer passed `FieldArgs`, instead they're passed a
|
|
313
|
-
(similar) `FieldArg` object representing the argument value itself.
|
|
314
|
-
|
|
315
|
-
`autoApplyAfterParentPlan` is no more - instead if an argument has `applyPlan`
|
|
316
|
-
it will be called automatically unless it was called during the field plan
|
|
317
|
-
resolver itself.
|
|
318
|
-
|
|
319
|
-
`autoApplyAfterParentSubscribePlan` is no more - instead if an argument has
|
|
320
|
-
`applySubscribePlan` it will be called automatically unless it was called
|
|
321
|
-
during the field plan resolver itself.
|
|
322
|
-
|
|
323
|
-
Field arguments no longer support `inputPlan` - use `bakedInput()` if you need
|
|
324
|
-
that.
|
|
325
|
-
|
|
326
|
-
Input fields no longer support `inputPlan`, `applyPlan`,
|
|
327
|
-
`autoApplyAfterParentInputPlan` nor `autoApplyAfterParentApplyPlan`. Instead,
|
|
328
|
-
`apply()` (which is called by `applyStep()` at runtime) has been added.
|
|
329
|
-
|
|
330
|
-
`sqlValueWithCodec(value, codec)` can be used at runtime in places where
|
|
331
|
-
`$step.placeholder($value, codec)` would have been used previously.
|
|
332
|
-
`placeholder` has been removed from all places that are now runtime - namely
|
|
333
|
-
the list of modifiers below...
|
|
334
|
-
|
|
335
|
-
The following `ModifierStep` classes have all dropped their `Step` suffix,
|
|
336
|
-
these `Modifier` classes now all run at runtime, and are thus no longer steps;
|
|
337
|
-
they're invoked as part of the new `applyInput()` (TODO: document) step:
|
|
338
|
-
- `ModifierStep` ⇒ `Modifier`
|
|
339
|
-
- `PgBooleanFilterStep` ⇒ `PgBooleanFilter`
|
|
340
|
-
- `PgClassFilterStep` ⇒ `PgClassFilter`
|
|
341
|
-
- `PgConditionCapableParentStep` ⇒ `PgConditionCapableParent`
|
|
342
|
-
- `PgConditionLikeStep` ⇒ `PgConditionLike`
|
|
343
|
-
- `PgConditionStepMode` ⇒ `PgConditionMode`
|
|
344
|
-
- `PgConditionStep` ⇒ `PgCondition`
|
|
345
|
-
- `PgManyFilterStep` ⇒ `PgManyFilter`
|
|
346
|
-
- `PgOrFilterStep` ⇒ `PgOrFilter`
|
|
347
|
-
- `PgTempTableStep` ⇒ `PgTempTable`
|
|
348
|
-
- `SetterCapableStep` ⇒ `SetterCapable`
|
|
349
|
-
- `SetterStep` ⇒ `Setter`
|
|
350
|
-
|
|
351
|
-
(Interestingly, other than the removal of `placeholder` and the fact they deal
|
|
352
|
-
with runtime values rather than steps now, they're very similar to what they
|
|
353
|
-
were before.)
|
|
354
|
-
|
|
355
|
-
The deprecated forms of the above have been removed.
|
|
356
|
-
|
|
357
|
-
Methods that rely on these modifier plans have been removed:
|
|
358
|
-
- `PgUnionAllStep.wherePlan` - use
|
|
359
|
-
`fieldArg.apply($unionAll, qb => qb.whereBuilder())` instead
|
|
360
|
-
- `PgUnionAllStep.havingPlan` - use
|
|
361
|
-
`fieldArg.apply($unionAll, qb => qb.havingBuilder())` instead
|
|
362
|
-
- Same for PgSelectStep
|
|
363
|
-
|
|
364
|
-
The following gain query builders:
|
|
365
|
-
- `PgInsertSingle`
|
|
366
|
-
- `PgUpdateSingle`
|
|
367
|
-
- `PgDeleteSingle`
|
|
368
|
-
|
|
369
|
-
Query builders gain `meta`, an object that can be augmented with metadata
|
|
370
|
-
about the operation (typically this relates to cursors and similar
|
|
371
|
-
functionality). This is now used to implement `clientMutationId`.
|
|
372
|
-
|
|
373
|
-
Extends query builders with additional functionality.
|
|
374
|
-
|
|
375
|
-
Many of the types have had their generics changed, TypeScript should guide you
|
|
376
|
-
if you have issues here.
|
|
377
|
-
|
|
378
|
-
`NodeIdHandler` now requires a `getIdentifiers` method that runs at runtime
|
|
379
|
-
and returns the identifiers from a decoded NodeId string.
|
|
380
|
-
|
|
381
|
-
Types around GraphQL Global Object Identification (i.e. `Node` / `id`) have
|
|
382
|
-
changed.
|
|
383
|
-
|
|
384
|
-
- Updated dependencies
|
|
385
|
-
[[`d34014a9a3c469154cc796086ba13719954731e5`](https://github.com/graphile/crystal/commit/d34014a9a3c469154cc796086ba13719954731e5),
|
|
386
|
-
[`98516379ac355a0833a64e002f3717cc3a1d6473`](https://github.com/graphile/crystal/commit/98516379ac355a0833a64e002f3717cc3a1d6473),
|
|
387
|
-
[`f8602d05eed3247c90b87c55d7af580d1698effc`](https://github.com/graphile/crystal/commit/f8602d05eed3247c90b87c55d7af580d1698effc),
|
|
388
|
-
[`65df25534fa3f787ba2ab7fd9547d295ff2b1288`](https://github.com/graphile/crystal/commit/65df25534fa3f787ba2ab7fd9547d295ff2b1288),
|
|
389
|
-
[`1b3c76efd27df73eab3a5a1d221ce13de4cd6b1a`](https://github.com/graphile/crystal/commit/1b3c76efd27df73eab3a5a1d221ce13de4cd6b1a),
|
|
390
|
-
[`e10c372dafbe0d6014b1e946349b22f40aa87ef9`](https://github.com/graphile/crystal/commit/e10c372dafbe0d6014b1e946349b22f40aa87ef9),
|
|
391
|
-
[`3c0a925f26f10cae627a23c49c75ccd8d76b60c8`](https://github.com/graphile/crystal/commit/3c0a925f26f10cae627a23c49c75ccd8d76b60c8),
|
|
392
|
-
[`fcaeb48844156e258a037f420ea1505edb50c52a`](https://github.com/graphile/crystal/commit/fcaeb48844156e258a037f420ea1505edb50c52a),
|
|
393
|
-
[`68926abc31c32ce527327ffbb1ede4b0b7be446b`](https://github.com/graphile/crystal/commit/68926abc31c32ce527327ffbb1ede4b0b7be446b),
|
|
394
|
-
[`4b49dbd2df3b339a2ba3f1e9ff400fa1a125298b`](https://github.com/graphile/crystal/commit/4b49dbd2df3b339a2ba3f1e9ff400fa1a125298b),
|
|
395
|
-
[`d7950e8e28ec6106a4ce2f7fe5e35d88b10eac48`](https://github.com/graphile/crystal/commit/d7950e8e28ec6106a4ce2f7fe5e35d88b10eac48),
|
|
396
|
-
[`c8f1971ea4198633ec97f72f82abf65089f71a88`](https://github.com/graphile/crystal/commit/c8f1971ea4198633ec97f72f82abf65089f71a88),
|
|
397
|
-
[`dd3d22eab73a8554715bf1111e30586251f69a88`](https://github.com/graphile/crystal/commit/dd3d22eab73a8554715bf1111e30586251f69a88),
|
|
398
|
-
[`a120a8e43b24dfc174950cdbb69e481272a0b45e`](https://github.com/graphile/crystal/commit/a120a8e43b24dfc174950cdbb69e481272a0b45e),
|
|
399
|
-
[`3b0f5082b2272997ce33ce8823a4752513d19e28`](https://github.com/graphile/crystal/commit/3b0f5082b2272997ce33ce8823a4752513d19e28),
|
|
400
|
-
[`84f06eafa051e907a3050237ac6ee5aefb184652`](https://github.com/graphile/crystal/commit/84f06eafa051e907a3050237ac6ee5aefb184652),
|
|
401
|
-
[`4a3aeaa77c8b8d2e39c1a9d05581d0c613b812cf`](https://github.com/graphile/crystal/commit/4a3aeaa77c8b8d2e39c1a9d05581d0c613b812cf),
|
|
402
|
-
[`3789326b2e2fdb86519acc75e606c752ddefe590`](https://github.com/graphile/crystal/commit/3789326b2e2fdb86519acc75e606c752ddefe590),
|
|
403
|
-
[`0fc2db95d90df918cf5c59ef85f22ac78d8000d3`](https://github.com/graphile/crystal/commit/0fc2db95d90df918cf5c59ef85f22ac78d8000d3),
|
|
404
|
-
[`90e81a5deeae554a8be2dd55dcd01489860e96e6`](https://github.com/graphile/crystal/commit/90e81a5deeae554a8be2dd55dcd01489860e96e6),
|
|
405
|
-
[`c59132eb7a93bc82493d2f1ca050db8aaea9f4d1`](https://github.com/graphile/crystal/commit/c59132eb7a93bc82493d2f1ca050db8aaea9f4d1),
|
|
406
|
-
[`7c38cdeffe034c9b4f5cdd03a8f7f446bd52dcb7`](https://github.com/graphile/crystal/commit/7c38cdeffe034c9b4f5cdd03a8f7f446bd52dcb7),
|
|
407
|
-
[`728888b28fcd2a6fc481e0ccdfe20d41181a091f`](https://github.com/graphile/crystal/commit/728888b28fcd2a6fc481e0ccdfe20d41181a091f),
|
|
408
|
-
[`f4f39092d7a51517668384945895d3b450237cce`](https://github.com/graphile/crystal/commit/f4f39092d7a51517668384945895d3b450237cce),
|
|
409
|
-
[`5cf3dc9d158891eaf324b2cd4f485d1d4bbb6b5e`](https://github.com/graphile/crystal/commit/5cf3dc9d158891eaf324b2cd4f485d1d4bbb6b5e),
|
|
410
|
-
[`83d3b533e702cc875b46ba2ca02bf3642b421be8`](https://github.com/graphile/crystal/commit/83d3b533e702cc875b46ba2ca02bf3642b421be8),
|
|
411
|
-
[`7001138c38e09822ad13db1018c62d2cac37941e`](https://github.com/graphile/crystal/commit/7001138c38e09822ad13db1018c62d2cac37941e),
|
|
412
|
-
[`e9e7e33665e22ec397e9ead054d2e4aad3eadc8c`](https://github.com/graphile/crystal/commit/e9e7e33665e22ec397e9ead054d2e4aad3eadc8c),
|
|
413
|
-
[`bb6ec8d834e3e630e28316196246f514114a2296`](https://github.com/graphile/crystal/commit/bb6ec8d834e3e630e28316196246f514114a2296),
|
|
414
|
-
[`2b1918d053f590cdc534c8cb81f7e74e96c1bbe6`](https://github.com/graphile/crystal/commit/2b1918d053f590cdc534c8cb81f7e74e96c1bbe6),
|
|
415
|
-
[`d1ecb39693a341f85762b27012ec4ea013857b0c`](https://github.com/graphile/crystal/commit/d1ecb39693a341f85762b27012ec4ea013857b0c),
|
|
416
|
-
[`042ebafe11fcf7e2ecac9b131265a55dddd42a6d`](https://github.com/graphile/crystal/commit/042ebafe11fcf7e2ecac9b131265a55dddd42a6d),
|
|
417
|
-
[`fa005eb0783c58a2476add984fbdd462e0e91dbe`](https://github.com/graphile/crystal/commit/fa005eb0783c58a2476add984fbdd462e0e91dbe),
|
|
418
|
-
[`df0e5a0f968cf6f9ae97b68745a9a2f391324bf5`](https://github.com/graphile/crystal/commit/df0e5a0f968cf6f9ae97b68745a9a2f391324bf5),
|
|
419
|
-
[`ef4cf75acd80e6b9c700c2b5a7ace899e565ef7f`](https://github.com/graphile/crystal/commit/ef4cf75acd80e6b9c700c2b5a7ace899e565ef7f),
|
|
420
|
-
[`c041fd250372c57601188b65a6411c8f440afab6`](https://github.com/graphile/crystal/commit/c041fd250372c57601188b65a6411c8f440afab6),
|
|
421
|
-
[`629b45aab49151810f6efc18ac18f7d735626433`](https://github.com/graphile/crystal/commit/629b45aab49151810f6efc18ac18f7d735626433),
|
|
422
|
-
[`6d19724330d50d076aab9442660fa8abddd095cb`](https://github.com/graphile/crystal/commit/6d19724330d50d076aab9442660fa8abddd095cb),
|
|
423
|
-
[`ca5bc1a834df7b894088fb8602a12f9fcff55b38`](https://github.com/graphile/crystal/commit/ca5bc1a834df7b894088fb8602a12f9fcff55b38),
|
|
424
|
-
[`da6f3c04efe3d8634c0bc3fcf93ac2518de85322`](https://github.com/graphile/crystal/commit/da6f3c04efe3d8634c0bc3fcf93ac2518de85322),
|
|
425
|
-
[`412b92a0b1e03ad962521f630b57a996d8620cf6`](https://github.com/graphile/crystal/commit/412b92a0b1e03ad962521f630b57a996d8620cf6),
|
|
426
|
-
[`f0bc64b71914dfdd3612f4b65370401fd85b97bc`](https://github.com/graphile/crystal/commit/f0bc64b71914dfdd3612f4b65370401fd85b97bc)]:
|
|
427
|
-
- grafast@0.1.1-beta.21
|
|
428
|
-
- pg-sql2@5.0.0-beta.8
|
|
429
|
-
|
|
430
|
-
## 0.0.2-beta.25
|
|
431
|
-
|
|
432
|
-
### Patch Changes
|
|
433
|
-
|
|
434
|
-
- Updated dependencies
|
|
435
|
-
[[`fc9d64eb8`](https://github.com/graphile/crystal/commit/fc9d64eb8002d3b72625bc505ed76c07f4296d68),
|
|
436
|
-
[`a2dbad945`](https://github.com/graphile/crystal/commit/a2dbad9457195bec797d72e4e6d45f45278f9f69),
|
|
437
|
-
[`31078842a`](https://github.com/graphile/crystal/commit/31078842ad0eeaa7111491fa9eb5e3bd026fb38a),
|
|
438
|
-
[`5a0ec31de`](https://github.com/graphile/crystal/commit/5a0ec31deae91f1dd17a77a4bb7c1a911a27e26a)]:
|
|
439
|
-
- grafast@0.1.1-beta.20
|
|
440
|
-
|
|
441
|
-
## 0.0.2-beta.24
|
|
442
|
-
|
|
443
|
-
### Patch Changes
|
|
444
|
-
|
|
445
|
-
- Updated dependencies []:
|
|
446
|
-
- grafast@0.1.1-beta.19
|
|
447
|
-
|
|
448
|
-
## 0.0.2-beta.23
|
|
449
|
-
|
|
450
|
-
### Patch Changes
|
|
451
|
-
|
|
452
|
-
- Updated dependencies
|
|
453
|
-
[[`b336a5829`](https://github.com/graphile/crystal/commit/b336a58291cfec7aef884d3843172d408abfaf3c)]:
|
|
454
|
-
- grafast@0.1.1-beta.18
|
|
455
|
-
|
|
456
|
-
## 0.0.2-beta.22
|
|
457
|
-
|
|
458
|
-
### Patch Changes
|
|
459
|
-
|
|
460
|
-
- Updated dependencies
|
|
461
|
-
[[`69ab227b5`](https://github.com/graphile/crystal/commit/69ab227b5e1c057a6fc8ebba87bde80d5aa7f3c8),
|
|
462
|
-
[`7bf045282`](https://github.com/graphile/crystal/commit/7bf04528264c3b9c509f148253fed96d3394141d)]:
|
|
463
|
-
- grafast@0.1.1-beta.17
|
|
464
|
-
- pg-sql2@5.0.0-beta.7
|
|
465
|
-
|
|
466
|
-
## 0.0.2-beta.21
|
|
467
|
-
|
|
468
|
-
### Patch Changes
|
|
469
|
-
|
|
470
|
-
- Updated dependencies
|
|
471
|
-
[[`76c7340b7`](https://github.com/graphile/crystal/commit/76c7340b74d257c454beec883384d19ef078b21e)]:
|
|
472
|
-
- grafast@0.1.1-beta.16
|
|
473
|
-
|
|
474
|
-
## 0.0.2-beta.20
|
|
475
|
-
|
|
476
|
-
### Patch Changes
|
|
477
|
-
|
|
478
|
-
- [#2175](https://github.com/graphile/crystal/pull/2175)
|
|
479
|
-
[`c69b2fdec`](https://github.com/graphile/crystal/commit/c69b2fdec2d73f1101440eb96fe126f9ad77db98)
|
|
480
|
-
Thanks [@benjie](https://github.com/benjie)! - Fix 'Container is falsy' error
|
|
481
|
-
message the latest Babel patch release would cause.
|
|
482
|
-
|
|
483
|
-
- [#2180](https://github.com/graphile/crystal/pull/2180)
|
|
484
|
-
[`4a4daf5ec`](https://github.com/graphile/crystal/commit/4a4daf5ec4c7002a561f4b6516257fc63e491cce)
|
|
485
|
-
Thanks [@nckswt](https://github.com/nckswt)! - Fix bug in graphile-export
|
|
486
|
-
handing modules where default export (`import mod from 'mod'`) differed from
|
|
487
|
-
wildcard export (`import * as mod from 'mod'`).
|
|
488
|
-
- Updated dependencies
|
|
489
|
-
[[`d5834def1`](https://github.com/graphile/crystal/commit/d5834def1fb84f3e2c0c0a6f146f8249a6df890a),
|
|
490
|
-
[`42b982463`](https://github.com/graphile/crystal/commit/42b9824637a6c05e02935f2b05b5e8e0c61965a6),
|
|
491
|
-
[`884a4b429`](https://github.com/graphile/crystal/commit/884a4b4297af90fdadaf73addd524f1fbbcfdcce),
|
|
492
|
-
[`38835313a`](https://github.com/graphile/crystal/commit/38835313ad93445206dccdd4cf07b90c5a6e4377),
|
|
493
|
-
[`b0865d169`](https://github.com/graphile/crystal/commit/b0865d1691105b5419009954c98c8109a27a5d81)]:
|
|
494
|
-
- grafast@0.1.1-beta.15
|
|
495
|
-
|
|
496
|
-
## 0.0.2-beta.19
|
|
497
|
-
|
|
498
|
-
### Patch Changes
|
|
499
|
-
|
|
500
|
-
- Updated dependencies
|
|
501
|
-
[[`871d32b2a`](https://github.com/graphile/crystal/commit/871d32b2a18df0d257880fc54a61d9e68c4607d6),
|
|
502
|
-
[`a26e3a30c`](https://github.com/graphile/crystal/commit/a26e3a30c02f963f8f5e9c9d021e871f33689e1b),
|
|
503
|
-
[`02c11a4d4`](https://github.com/graphile/crystal/commit/02c11a4d42bf434dffc9354b300e8d791c4eeb2d)]:
|
|
504
|
-
- grafast@0.1.1-beta.14
|
|
505
|
-
|
|
506
|
-
## 0.0.2-beta.18
|
|
507
|
-
|
|
508
|
-
### Patch Changes
|
|
509
|
-
|
|
510
|
-
- Updated dependencies
|
|
511
|
-
[[`807650035`](https://github.com/graphile/crystal/commit/8076500354a3e2bc2de1b6c4e947bd710cc5bddc)]:
|
|
512
|
-
- grafast@0.1.1-beta.13
|
|
513
|
-
|
|
514
|
-
## 0.0.2-beta.17
|
|
515
|
-
|
|
516
|
-
### Patch Changes
|
|
517
|
-
|
|
518
|
-
- [#2094](https://github.com/graphile/crystal/pull/2094)
|
|
519
|
-
[`d2d9b1965`](https://github.com/graphile/crystal/commit/d2d9b1965b0cad29891220c32c978a147d8a4015)
|
|
520
|
-
Thanks [@benjie](https://github.com/benjie)! - Output location in more error
|
|
521
|
-
messages.
|
|
522
|
-
|
|
523
|
-
- Updated dependencies
|
|
524
|
-
[[`1bd50b61e`](https://github.com/graphile/crystal/commit/1bd50b61ebb10b7d09b3612c2e2767c41cca3b78),
|
|
525
|
-
[`4e102b1a1`](https://github.com/graphile/crystal/commit/4e102b1a1cd232e6f6703df0706415f01831dab2),
|
|
526
|
-
[`7bb1573ba`](https://github.com/graphile/crystal/commit/7bb1573ba45a4d8b7fa9ad53cdd79686d2641383),
|
|
527
|
-
[`18addb385`](https://github.com/graphile/crystal/commit/18addb3852525aa91019a36d58fa2fecd8b5b443),
|
|
528
|
-
[`6ed615e55`](https://github.com/graphile/crystal/commit/6ed615e557b2ab1fb57f1e68c06730a8e3da7175),
|
|
529
|
-
[`b25cc539c`](https://github.com/graphile/crystal/commit/b25cc539c00aeda7a943c37509aaae4dc7812317),
|
|
530
|
-
[`867f33136`](https://github.com/graphile/crystal/commit/867f331365346fc46ed1e0d23c79719846e398f4),
|
|
531
|
-
[`cf535c210`](https://github.com/graphile/crystal/commit/cf535c21078da06c14dd12f30e9b4378da4ded03),
|
|
532
|
-
[`acf99b190`](https://github.com/graphile/crystal/commit/acf99b190954e3c5926e820daed68dfe8eb3ee1f),
|
|
533
|
-
[`4967a197f`](https://github.com/graphile/crystal/commit/4967a197fd2c71ee2a581fe29470ee9f30e74de5),
|
|
534
|
-
[`1908e1ba1`](https://github.com/graphile/crystal/commit/1908e1ba11883a34dac66f985fc20ab160e572b1),
|
|
535
|
-
[`084d80be6`](https://github.com/graphile/crystal/commit/084d80be6e17187c9a9932bcf079e3f460368782)]:
|
|
536
|
-
- grafast@0.1.1-beta.12
|
|
537
|
-
|
|
538
|
-
## 0.0.2-beta.16
|
|
539
|
-
|
|
540
|
-
### Patch Changes
|
|
541
|
-
|
|
542
|
-
- Updated dependencies
|
|
543
|
-
[[`582bd768f`](https://github.com/graphile/crystal/commit/582bd768fec403ce3284f293b85b9fd86e4d3f40)]:
|
|
544
|
-
- grafast@0.1.1-beta.11
|
|
545
|
-
|
|
546
|
-
## 0.0.2-beta.15
|
|
547
|
-
|
|
548
|
-
### Patch Changes
|
|
549
|
-
|
|
550
|
-
- Updated dependencies
|
|
551
|
-
[[`3c161f7e1`](https://github.com/graphile/crystal/commit/3c161f7e13375105b1035a7d5d1c0f2b507ca5c7),
|
|
552
|
-
[`a674a9923`](https://github.com/graphile/crystal/commit/a674a9923bc908c9315afa40e0cb256ee0953d16),
|
|
553
|
-
[`b7cfeffd1`](https://github.com/graphile/crystal/commit/b7cfeffd1019d61c713a5054c4f5929960a2a6ab)]:
|
|
554
|
-
- grafast@0.1.1-beta.10
|
|
555
|
-
|
|
556
|
-
## 0.0.2-beta.14
|
|
557
|
-
|
|
558
|
-
### Patch Changes
|
|
559
|
-
|
|
560
|
-
- Updated dependencies
|
|
561
|
-
[[`437570f97`](https://github.com/graphile/crystal/commit/437570f97e8520afaf3d0d0b514d1f4c31546b76)]:
|
|
562
|
-
- grafast@0.1.1-beta.9
|
|
563
|
-
|
|
564
|
-
## 0.0.2-beta.13
|
|
565
|
-
|
|
566
|
-
### Patch Changes
|
|
567
|
-
|
|
568
|
-
- Updated dependencies
|
|
569
|
-
[[`bd5a908a4`](https://github.com/graphile/crystal/commit/bd5a908a4d04310f90dfb46ad87398ffa993af3b)]:
|
|
570
|
-
- grafast@0.1.1-beta.8
|
|
571
|
-
|
|
572
|
-
## 0.0.2-beta.12
|
|
573
|
-
|
|
574
|
-
### Patch Changes
|
|
575
|
-
|
|
576
|
-
- [#2050](https://github.com/graphile/crystal/pull/2050)
|
|
577
|
-
[`a4d4de334`](https://github.com/graphile/crystal/commit/a4d4de33435d3f6d04d9e627bcc3e77f6eb66c7b)
|
|
578
|
-
Thanks [@benjie](https://github.com/benjie)! - Graphile Export now
|
|
579
|
-
auto-detects that a function has additional properties set, and makes sure
|
|
580
|
-
these properties are exported too. (Typically this is `fn.isSyncAndSafe=true`
|
|
581
|
-
for Grafast optimization.)
|
|
582
|
-
|
|
583
|
-
- [#2050](https://github.com/graphile/crystal/pull/2050)
|
|
584
|
-
[`de24f1d14`](https://github.com/graphile/crystal/commit/de24f1d143a331f410cf4955a18b10a09790f7f8)
|
|
585
|
-
Thanks [@benjie](https://github.com/benjie)! - Fix exporting input object
|
|
586
|
-
inputPlan in typeDefs mode.
|
|
587
|
-
|
|
588
|
-
- [#1993](https://github.com/graphile/crystal/pull/1993)
|
|
589
|
-
[`fdc440eb3`](https://github.com/graphile/crystal/commit/fdc440eb31004114aa5e1d91d290414dd0587746)
|
|
590
|
-
Thanks [@benjie](https://github.com/benjie)! - Ability to export values from
|
|
591
|
-
graphile-export (e.g. the registry)
|
|
592
|
-
|
|
593
|
-
- [#2050](https://github.com/graphile/crystal/pull/2050)
|
|
594
|
-
[`0dbfbb687`](https://github.com/graphile/crystal/commit/0dbfbb68747f2755ba228afe22bf2da25348c71b)
|
|
595
|
-
Thanks [@benjie](https://github.com/benjie)! - Don't pass filePath to lintText
|
|
596
|
-
to avoid ESLint ignoring the file.
|
|
597
|
-
|
|
598
|
-
- Updated dependencies
|
|
599
|
-
[[`357d475f5`](https://github.com/graphile/crystal/commit/357d475f54fecc8c51892e0346d6872b34132430),
|
|
600
|
-
[`3551725e7`](https://github.com/graphile/crystal/commit/3551725e71c3ed876554e19e5ab2c1dcb0fb1143),
|
|
601
|
-
[`80836471e`](https://github.com/graphile/crystal/commit/80836471e5cedb29dee63bc5002550c4f1713cfd),
|
|
602
|
-
[`a5c20fefb`](https://github.com/graphile/crystal/commit/a5c20fefb571dea6d1187515dc48dd547e9e6204),
|
|
603
|
-
[`1ce08980e`](https://github.com/graphile/crystal/commit/1ce08980e2a52ed9bc81564d248c19648ecd3616),
|
|
604
|
-
[`ab08cbf9c`](https://github.com/graphile/crystal/commit/ab08cbf9c504c3cc22495a99a965e7634c18a6a3),
|
|
605
|
-
[`dff4f2535`](https://github.com/graphile/crystal/commit/dff4f2535ac6ce893089b312fcd5fffcd98573a5),
|
|
606
|
-
[`a287a57c2`](https://github.com/graphile/crystal/commit/a287a57c2765da0fb6a132ea0953f64453210ceb),
|
|
607
|
-
[`2fe56f9a6`](https://github.com/graphile/crystal/commit/2fe56f9a6dac03484ace45c29c2223a65f9ca1db),
|
|
608
|
-
[`fed603d71`](https://github.com/graphile/crystal/commit/fed603d719c02f33e12190f925c9e3b06c581fac),
|
|
609
|
-
[`ed6e0d278`](https://github.com/graphile/crystal/commit/ed6e0d2788217a1c419634837f4208013eaf2923),
|
|
610
|
-
[`e82e4911e`](https://github.com/graphile/crystal/commit/e82e4911e32138df1b90ec0fde555ea963018d21),
|
|
611
|
-
[`94a05064e`](https://github.com/graphile/crystal/commit/94a05064ea05108685ff71174a9f871ab5b4c147),
|
|
612
|
-
[`42ece5aa6`](https://github.com/graphile/crystal/commit/42ece5aa6ca05345ebc17fb5c7d55df3b79b7612),
|
|
613
|
-
[`e0d69e518`](https://github.com/graphile/crystal/commit/e0d69e518a98c70f9b90f59d243ce33978c1b5a1),
|
|
614
|
-
[`6699388ec`](https://github.com/graphile/crystal/commit/6699388ec167d35c71220ce5d9113cac578da6cb),
|
|
615
|
-
[`966203504`](https://github.com/graphile/crystal/commit/96620350467ab8c65b56adf2f055e19450f8e772),
|
|
616
|
-
[`c1645b249`](https://github.com/graphile/crystal/commit/c1645b249aae949a548cd916e536ccfb63e5ab35),
|
|
617
|
-
[`ed8bbaa3c`](https://github.com/graphile/crystal/commit/ed8bbaa3cd1563a7601ca8c6b0412633b0ea4ce9),
|
|
618
|
-
[`a0e82b9c5`](https://github.com/graphile/crystal/commit/a0e82b9c5f4e585f1af1e147299cd07944ece6f8),
|
|
619
|
-
[`14e2412ee`](https://github.com/graphile/crystal/commit/14e2412ee368e8d53abf6774c7f0069f32d4e8a3),
|
|
620
|
-
[`57ab0e1e7`](https://github.com/graphile/crystal/commit/57ab0e1e72c01213b21d3efc539cd655d83d993a),
|
|
621
|
-
[`8442242e4`](https://github.com/graphile/crystal/commit/8442242e43cac7d89ca0c413cf42c9fabf6f247f),
|
|
622
|
-
[`64ce7b765`](https://github.com/graphile/crystal/commit/64ce7b7650530251aec38a51089da66f914c19b4),
|
|
623
|
-
[`cba842357`](https://github.com/graphile/crystal/commit/cba84235786acbd77ade53bae7a3fba4a9be1eb7),
|
|
624
|
-
[`2fa77d0f2`](https://github.com/graphile/crystal/commit/2fa77d0f237cdb98d3dafb6b5e4083a2c6c38673)]:
|
|
625
|
-
- grafast@0.1.1-beta.7
|
|
626
|
-
- pg-sql2@5.0.0-beta.6
|
|
627
|
-
|
|
628
|
-
## 0.0.2-beta.11
|
|
629
|
-
|
|
630
|
-
### Patch Changes
|
|
631
|
-
|
|
632
|
-
- [#1958](https://github.com/graphile/crystal/pull/1958)
|
|
633
|
-
[`8315e8d01`](https://github.com/graphile/crystal/commit/8315e8d01c118cebc4ebbc53a2f264b958b252ad)
|
|
634
|
-
Thanks [@benjie](https://github.com/benjie)! - EXPORTABLE now accepts a third
|
|
635
|
-
argument, `nameHint`, which is used to hint what variable name to use for the
|
|
636
|
-
given value. Used this in `graphile-export` along with some fixes and
|
|
637
|
-
optimizations to improve the exports further.
|
|
638
|
-
|
|
639
|
-
- [#1946](https://github.com/graphile/crystal/pull/1946)
|
|
640
|
-
[`9d53dde72`](https://github.com/graphile/crystal/commit/9d53dde726b7304962e921b88a159649e49156e5)
|
|
641
|
-
Thanks [@benjie](https://github.com/benjie)! - Exporting a schema now performs
|
|
642
|
-
ESLint 'no-use-before-define' check to catch even more invalid export
|
|
643
|
-
conditions. Fix `registerNodeIdCodec` calls caught by this.
|
|
644
|
-
- Updated dependencies
|
|
645
|
-
[[`9f85c614d`](https://github.com/graphile/crystal/commit/9f85c614d48dc745c5fed15333dbb75af7fddc88),
|
|
646
|
-
[`6c6be29f1`](https://github.com/graphile/crystal/commit/6c6be29f12b24782c926b2bc62ed2ede09ac05de),
|
|
647
|
-
[`8315e8d01`](https://github.com/graphile/crystal/commit/8315e8d01c118cebc4ebbc53a2f264b958b252ad)]:
|
|
648
|
-
- grafast@0.1.1-beta.6
|
|
649
|
-
|
|
650
|
-
## 0.0.2-beta.10
|
|
651
|
-
|
|
652
|
-
### Patch Changes
|
|
653
|
-
|
|
654
|
-
- [#1934](https://github.com/graphile/crystal/pull/1934)
|
|
655
|
-
[`9ac0ddc01`](https://github.com/graphile/crystal/commit/9ac0ddc014bfceb60b4b5641d6e8db605cc6a79b)
|
|
656
|
-
Thanks [@benjie](https://github.com/benjie)! - Automatically detect when a
|
|
657
|
-
`graphile-export` export is invalid, and throw an error indicating which
|
|
658
|
-
method needs to have `EXPORTABLE` added around it.
|
|
659
|
-
|
|
660
|
-
- [#1935](https://github.com/graphile/crystal/pull/1935)
|
|
661
|
-
[`8ea67f891`](https://github.com/graphile/crystal/commit/8ea67f8910693edaf70daa9952e35d8396166f38)
|
|
662
|
-
Thanks [@benjie](https://github.com/benjie)! - Fix lots of things related to
|
|
663
|
-
exporting a schema with `graphile-export`.
|
|
664
|
-
|
|
665
|
-
- Updated dependencies
|
|
666
|
-
[[`63dd7ea99`](https://github.com/graphile/crystal/commit/63dd7ea992d30ad711dd85a73a127484a0e35479),
|
|
667
|
-
[`d801c9778`](https://github.com/graphile/crystal/commit/d801c9778a86d61e060896460af9fe62a733534a),
|
|
668
|
-
[`ef44c29b2`](https://github.com/graphile/crystal/commit/ef44c29b24a1ad5a042ae1536a4546dd64b17195)]:
|
|
669
|
-
- grafast@0.1.1-beta.5
|
|
670
|
-
- pg-sql2@5.0.0-beta.5
|
|
671
|
-
|
|
672
|
-
## 0.0.2-beta.9
|
|
673
|
-
|
|
674
|
-
### Patch Changes
|
|
675
|
-
|
|
676
|
-
- Updated dependencies
|
|
677
|
-
[[`a2176ea32`](https://github.com/graphile/crystal/commit/a2176ea324db0801249661b30e9c9d314c6fb159),
|
|
678
|
-
[`886833e2e`](https://github.com/graphile/crystal/commit/886833e2e319f23d905d7184ca88fca701b94044)]:
|
|
679
|
-
- grafast@0.1.1-beta.4
|
|
680
|
-
|
|
681
|
-
## 0.0.2-beta.8
|
|
682
|
-
|
|
683
|
-
### Patch Changes
|
|
684
|
-
|
|
685
|
-
- Updated dependencies []:
|
|
686
|
-
- grafast@0.1.1-beta.3
|
|
687
|
-
|
|
688
|
-
## 0.0.2-beta.7
|
|
689
|
-
|
|
690
|
-
### Patch Changes
|
|
691
|
-
|
|
692
|
-
- Updated dependencies
|
|
693
|
-
[[`3fdc2bce4`](https://github.com/graphile/crystal/commit/3fdc2bce42418773f808c5b8309dfb361cd95ce9),
|
|
694
|
-
[`aeef362b5`](https://github.com/graphile/crystal/commit/aeef362b5744816f01e4a6f714bbd77f92332bc5),
|
|
695
|
-
[`8a76db07f`](https://github.com/graphile/crystal/commit/8a76db07f4c110cecc6225504f9a05ccbcbc7b92),
|
|
696
|
-
[`8a0cdb95f`](https://github.com/graphile/crystal/commit/8a0cdb95f200b28b0ea1ab5caa12b23dce5f374f),
|
|
697
|
-
[`1c9f1c0ed`](https://github.com/graphile/crystal/commit/1c9f1c0edf4e621a5b6345d3a41527a18143c6ae)]:
|
|
698
|
-
- grafast@0.1.1-beta.2
|
|
699
|
-
|
|
700
|
-
## 0.0.2-beta.6
|
|
701
|
-
|
|
702
|
-
### Patch Changes
|
|
703
|
-
|
|
704
|
-
- Updated dependencies
|
|
705
|
-
[[`49fcb0d58`](https://github.com/graphile/crystal/commit/49fcb0d585b31b291c9072c339d6f5b550eefc9f)]:
|
|
706
|
-
- grafast@0.1.1-beta.1
|
|
707
|
-
|
|
708
|
-
## 0.0.2-beta.5
|
|
709
|
-
|
|
710
|
-
### Patch Changes
|
|
711
|
-
|
|
712
|
-
- Updated dependencies
|
|
713
|
-
[[`4a4d26d87`](https://github.com/graphile/crystal/commit/4a4d26d87ce74589429b8ca5126a7bfdf30351b8),
|
|
714
|
-
[`b2bce88da`](https://github.com/graphile/crystal/commit/b2bce88da26c7a8965468be16fc2d935eadd3434),
|
|
715
|
-
[`861a8a306`](https://github.com/graphile/crystal/commit/861a8a306ef42a821da19e77903ddd7e8130bfb3)]:
|
|
716
|
-
- grafast@0.1.1-beta.0
|
|
717
|
-
|
|
718
|
-
## 0.0.2-beta.4
|
|
719
|
-
|
|
720
|
-
### Patch Changes
|
|
721
|
-
|
|
722
|
-
- [#514](https://github.com/graphile/crystal-pre-merge/pull/514)
|
|
723
|
-
[`c9848f693`](https://github.com/graphile/crystal-pre-merge/commit/c9848f6936a5abd7740c0638bfb458fb5551f03b)
|
|
724
|
-
Thanks [@benjie](https://github.com/benjie)! - Update package.json repository
|
|
725
|
-
information
|
|
726
|
-
|
|
727
|
-
- Updated dependencies
|
|
728
|
-
[[`c9848f693`](https://github.com/graphile/crystal-pre-merge/commit/c9848f6936a5abd7740c0638bfb458fb5551f03b),
|
|
729
|
-
[`ede1092fe`](https://github.com/graphile/crystal-pre-merge/commit/ede1092fe197719b6fa786f4cfa75f6a1f4c56c1),
|
|
730
|
-
[`566983fbd`](https://github.com/graphile/crystal-pre-merge/commit/566983fbd99c4b2df8c4ebd6260521670a2b7dfc),
|
|
731
|
-
[`409bf6071`](https://github.com/graphile/crystal-pre-merge/commit/409bf607180d4d8faec658c803e5ec4d1a00c451)]:
|
|
732
|
-
- grafast@0.0.1-beta.8
|
|
733
|
-
- pg-sql2@5.0.0-beta.3
|
|
734
|
-
|
|
735
|
-
## 0.0.2-beta.3
|
|
736
|
-
|
|
737
|
-
### Patch Changes
|
|
738
|
-
|
|
739
|
-
- [#496](https://github.com/benjie/crystal/pull/496)
|
|
740
|
-
[`c9bfd9892`](https://github.com/benjie/crystal/commit/c9bfd989247f9433fb5b18c5175c9d8d64cd21a1)
|
|
741
|
-
Thanks [@benjie](https://github.com/benjie)! - Update dependencies (sometimes
|
|
742
|
-
through major versions).
|
|
743
|
-
|
|
744
|
-
- Updated dependencies
|
|
745
|
-
[[`c9bfd9892`](https://github.com/benjie/crystal/commit/c9bfd989247f9433fb5b18c5175c9d8d64cd21a1),
|
|
746
|
-
[`e613b476d`](https://github.com/benjie/crystal/commit/e613b476d6ee867d1f7509c895dabee40e7f9a31)]:
|
|
747
|
-
- grafast@0.0.1-beta.6
|
|
748
|
-
- pg-sql2@5.0.0-beta.2
|
|
749
|
-
|
|
750
|
-
## 0.0.2-beta.2
|
|
751
|
-
|
|
752
|
-
### Patch Changes
|
|
753
|
-
|
|
754
|
-
- [#454](https://github.com/benjie/crystal/pull/454)
|
|
755
|
-
[`89400d5c2`](https://github.com/benjie/crystal/commit/89400d5c2bb44aeccbb6285c283313f4e3947847)
|
|
756
|
-
Thanks [@benjie](https://github.com/benjie)! - Apply a different patch to the
|
|
757
|
-
babel traverse issue we've been facing when optimizing.
|
|
758
|
-
|
|
759
|
-
## 0.0.2-beta.1
|
|
760
|
-
|
|
761
|
-
### Patch Changes
|
|
762
|
-
|
|
763
|
-
- [`cbd987385`](https://github.com/benjie/crystal/commit/cbd987385f99bd1248bc093ac507cc2f641ba3e8)
|
|
764
|
-
Thanks [@benjie](https://github.com/benjie)! - Bump all packages to beta
|
|
765
|
-
|
|
766
|
-
- Updated dependencies
|
|
767
|
-
[[`cbd987385`](https://github.com/benjie/crystal/commit/cbd987385f99bd1248bc093ac507cc2f641ba3e8)]:
|
|
768
|
-
- grafast@0.0.1-beta.1
|
|
769
|
-
- pg-sql2@5.0.0-beta.1
|
|
770
|
-
|
|
771
|
-
## 0.0.2-alpha.8
|
|
772
|
-
|
|
773
|
-
### Patch Changes
|
|
774
|
-
|
|
775
|
-
- [#428](https://github.com/benjie/crystal/pull/428)
|
|
776
|
-
[`9695c65f8`](https://github.com/benjie/crystal/commit/9695c65f8dbad807de683a70f5f663af2d3b35f0)
|
|
777
|
-
Thanks [@benjie](https://github.com/benjie)! - Optimize away some unnecessary
|
|
778
|
-
content from graphile-exported schema
|
|
779
|
-
|
|
780
|
-
- Updated dependencies
|
|
781
|
-
[[`ea003ca3a`](https://github.com/benjie/crystal/commit/ea003ca3a8f68fb87dca603582e47981ed033996),
|
|
782
|
-
[`57d88b5fa`](https://github.com/benjie/crystal/commit/57d88b5fa3ed296210c1fcb223452213fd57985b),
|
|
783
|
-
[`9f87a26b1`](https://github.com/benjie/crystal/commit/9f87a26b10e5539aa88cfd9909e265513e941fd5)]:
|
|
784
|
-
- grafast@0.0.1-alpha.15
|
|
785
|
-
|
|
786
|
-
## 0.0.2-alpha.7
|
|
787
|
-
|
|
788
|
-
### Patch Changes
|
|
789
|
-
|
|
790
|
-
- [#418](https://github.com/benjie/crystal/pull/418)
|
|
791
|
-
[`9ab2adba2`](https://github.com/benjie/crystal/commit/9ab2adba2c146b5d1bc91bbb2f25e4645ed381de)
|
|
792
|
-
Thanks [@benjie](https://github.com/benjie)! - Overhaul peerDependencies and
|
|
793
|
-
dependencies to try and eliminate duplicate modules error.
|
|
794
|
-
- Updated dependencies
|
|
795
|
-
[[`620f9e07e`](https://github.com/benjie/crystal/commit/620f9e07ec6f4d66a8dc01ed6bb054a75f7b1c8b),
|
|
796
|
-
[`1882e0185`](https://github.com/benjie/crystal/commit/1882e018576adf69bcae8a999224cb4d5e62a3e1),
|
|
797
|
-
[`881672305`](https://github.com/benjie/crystal/commit/88167230578393e3b24a364f0d673e36c5cb088d),
|
|
798
|
-
[`e5012f9a1`](https://github.com/benjie/crystal/commit/e5012f9a1901af63e1703ea4d717e8a22544f5e7),
|
|
799
|
-
[`9ab2adba2`](https://github.com/benjie/crystal/commit/9ab2adba2c146b5d1bc91bbb2f25e4645ed381de),
|
|
800
|
-
[`47f6f018b`](https://github.com/benjie/crystal/commit/47f6f018b11761cbfaa63d709edc0e3f4f9a9924),
|
|
801
|
-
[`ff4395bfc`](https://github.com/benjie/crystal/commit/ff4395bfc6e6b2fb263f644dae1e984c52dd84b9),
|
|
802
|
-
[`502b23340`](https://github.com/benjie/crystal/commit/502b233401975637bc0d516af78721b37f6f9b7b)]:
|
|
803
|
-
- grafast@0.0.1-alpha.13
|
|
804
|
-
|
|
805
|
-
## 0.0.2-alpha.6
|
|
806
|
-
|
|
807
|
-
### Patch Changes
|
|
808
|
-
|
|
809
|
-
- [#406](https://github.com/benjie/crystal/pull/406)
|
|
810
|
-
[`ecd7598f1`](https://github.com/benjie/crystal/commit/ecd7598f1a12c724e744249246eec7b882198a8a)
|
|
811
|
-
Thanks [@benjie](https://github.com/benjie)! - More docs for graphile-export
|
|
812
|
-
|
|
813
|
-
- Updated dependencies
|
|
814
|
-
[[`9281a2d88`](https://github.com/benjie/crystal/commit/9281a2d889ab1e72a3f6f9777779f31a6588d478),
|
|
815
|
-
[`675b7abb9`](https://github.com/benjie/crystal/commit/675b7abb93e11d955930b9026fb0b65a56ecc999)]:
|
|
816
|
-
- grafast@0.0.1-alpha.12
|
|
817
|
-
|
|
818
|
-
## 0.0.2-alpha.5
|
|
819
|
-
|
|
820
|
-
### Patch Changes
|
|
821
|
-
|
|
822
|
-
- [#372](https://github.com/benjie/crystal/pull/372)
|
|
823
|
-
[`ae1a248eb`](https://github.com/benjie/crystal/commit/ae1a248ebd5e907f94f37e44f2d17737cd5755cb)
|
|
824
|
-
Thanks [@benjie](https://github.com/benjie)! - Optimize away even more IIFEs
|
|
825
|
-
|
|
826
|
-
- [#383](https://github.com/benjie/crystal/pull/383)
|
|
827
|
-
[`2c8586b36`](https://github.com/benjie/crystal/commit/2c8586b367b76af91d1785cc90455c70911fdec7)
|
|
828
|
-
Thanks [@benjie](https://github.com/benjie)! - Change
|
|
829
|
-
'objectType.extensions.grafast.Step' to
|
|
830
|
-
'objectType.extensions.grafast.assertStep', accept it via object spec,
|
|
831
|
-
deprecate registerObjectType form that accepts it (pass via object spec
|
|
832
|
-
instead), improve typings around it.
|
|
833
|
-
- Updated dependencies
|
|
834
|
-
[[`409581534`](https://github.com/benjie/crystal/commit/409581534f41ac2cf0ff21c77c2bcd8eaa8218fd),
|
|
835
|
-
[`b7533bd4d`](https://github.com/benjie/crystal/commit/b7533bd4dfc210cb8b113b8fa06f163a212aa5e4),
|
|
836
|
-
[`9feb769c2`](https://github.com/benjie/crystal/commit/9feb769c2df0c57971ed26a937be4a1bee7a7524),
|
|
837
|
-
[`7573bf374`](https://github.com/benjie/crystal/commit/7573bf374897228b613b19f37b4e076737db3279),
|
|
838
|
-
[`2c8586b36`](https://github.com/benjie/crystal/commit/2c8586b367b76af91d1785cc90455c70911fdec7),
|
|
839
|
-
[`c43802d74`](https://github.com/benjie/crystal/commit/c43802d7419f93d18964c654f16d0937a2e23ca0),
|
|
840
|
-
[`b118b8f6d`](https://github.com/benjie/crystal/commit/b118b8f6dc18196212cfb0a05486e1dd8d77ccf8),
|
|
841
|
-
[`9008c4f87`](https://github.com/benjie/crystal/commit/9008c4f87df53be4051c49f9836358dc2baa59df),
|
|
842
|
-
[`e8c81cd20`](https://github.com/benjie/crystal/commit/e8c81cd2046390ed5b6799aa7ff3d90b28a1861a)]:
|
|
843
|
-
- grafast@0.0.1-alpha.10
|
|
844
|
-
|
|
845
|
-
## 0.0.2-alpha.4
|
|
846
|
-
|
|
847
|
-
### Patch Changes
|
|
848
|
-
|
|
849
|
-
- [#366](https://github.com/benjie/crystal/pull/366)
|
|
850
|
-
[`6878c589c`](https://github.com/benjie/crystal/commit/6878c589cc9fc8f05a6efd377e1272ae24fbf256)
|
|
851
|
-
Thanks [@benjie](https://github.com/benjie)! - Fix typeDefs export, and
|
|
852
|
-
makeGrafastSchema support for arg and input field plans.
|
|
853
|
-
- Updated dependencies
|
|
854
|
-
[[`339fe20d0`](https://github.com/benjie/crystal/commit/339fe20d0c6e8600d263ce8093cd85a6ea8adbbf),
|
|
855
|
-
[`56237691b`](https://github.com/benjie/crystal/commit/56237691bf3eed321b7159e17f36e3651356946f),
|
|
856
|
-
[`ed1982f31`](https://github.com/benjie/crystal/commit/ed1982f31a845ceb3aafd4b48d667649f06778f5),
|
|
857
|
-
[`1fe47a2b0`](https://github.com/benjie/crystal/commit/1fe47a2b08d6e7153a22dde3a99b7a9bf50c4f84),
|
|
858
|
-
[`6878c589c`](https://github.com/benjie/crystal/commit/6878c589cc9fc8f05a6efd377e1272ae24fbf256),
|
|
859
|
-
[`2ac706f18`](https://github.com/benjie/crystal/commit/2ac706f18660c855fe20f460b50694fdd04a7768)]:
|
|
860
|
-
- pg-sql2@5.0.0-alpha.3
|
|
861
|
-
- grafast@0.0.1-alpha.9
|
|
862
|
-
|
|
863
|
-
## 0.0.2-alpha.3
|
|
864
|
-
|
|
865
|
-
### Patch Changes
|
|
866
|
-
|
|
867
|
-
- [#332](https://github.com/benjie/crystal/pull/332)
|
|
868
|
-
[`faa1c9eaa`](https://github.com/benjie/crystal/commit/faa1c9eaa25cbd6f0e25635f6a100d0dc9be6106)
|
|
869
|
-
Thanks [@benjie](https://github.com/benjie)! - Adjust dependencies and
|
|
870
|
-
peerDependencies and peerDependenciesMeta.
|
|
871
|
-
|
|
872
|
-
## 0.0.2-alpha.2
|
|
873
|
-
|
|
874
|
-
### Patch Changes
|
|
875
|
-
|
|
876
|
-
- [`21e95326d`](https://github.com/benjie/crystal/commit/21e95326d72eaad7a8860c4c21a11736191f169b)
|
|
877
|
-
Thanks [@benjie](https://github.com/benjie)! - Fix the name of some exported
|
|
878
|
-
variables (Step -> Plan)
|
|
879
|
-
|
|
880
|
-
- [`7f857950a`](https://github.com/benjie/crystal/commit/7f857950a7e4ec763c936eb6bd1fb77824041d71)
|
|
881
|
-
Thanks [@benjie](https://github.com/benjie)! - Upgrade to the latest
|
|
882
|
-
TypeScript/tslib
|
|
883
|
-
|
|
884
|
-
- Updated dependencies
|
|
885
|
-
[[`2389f47ec`](https://github.com/benjie/crystal/commit/2389f47ecf3b708f1085fdeb818eacaaeb257a2d),
|
|
886
|
-
[`82cc01152`](https://github.com/benjie/crystal/commit/82cc01152ee06dafce45299661afd77ad943d785),
|
|
887
|
-
[`e91ee201d`](https://github.com/benjie/crystal/commit/e91ee201d80d3b32e4e632b101f4c25362a1a05b),
|
|
888
|
-
[`865bec590`](https://github.com/benjie/crystal/commit/865bec5901f666e147f5d4088152d1f0d2584827),
|
|
889
|
-
[`7f857950a`](https://github.com/benjie/crystal/commit/7f857950a7e4ec763c936eb6bd1fb77824041d71),
|
|
890
|
-
[`d39a5d409`](https://github.com/benjie/crystal/commit/d39a5d409ffe1a5855740ecbff1ad11ec0bf6660)]:
|
|
891
|
-
- grafast@0.0.1-alpha.3
|
|
892
|
-
- pg-sql2@5.0.0-alpha.2
|
|
893
|
-
|
|
894
|
-
## 0.0.2-alpha.1
|
|
895
|
-
|
|
896
|
-
### Patch Changes
|
|
897
|
-
|
|
898
|
-
- [`759ad403d`](https://github.com/benjie/crystal/commit/759ad403d71363312c5225c165873ae84b8a098c)
|
|
899
|
-
Thanks [@benjie](https://github.com/benjie)! - Alpha release - see
|
|
900
|
-
https://postgraphile.org/news/2023-04-26-version-5-alpha
|
|
901
|
-
|
|
902
|
-
- Updated dependencies
|
|
903
|
-
[[`759ad403d`](https://github.com/benjie/crystal/commit/759ad403d71363312c5225c165873ae84b8a098c)]:
|
|
904
|
-
- grafast@0.0.1-alpha.1
|
|
905
|
-
- pg-sql2@5.0.0-alpha.1
|
|
906
|
-
|
|
907
|
-
## 0.0.2-1.1
|
|
908
|
-
|
|
909
|
-
### Patch Changes
|
|
910
|
-
|
|
911
|
-
- [#260](https://github.com/benjie/crystal/pull/260)
|
|
912
|
-
[`d5312e6b9`](https://github.com/benjie/crystal/commit/d5312e6b968fbeb46d074b82a41b4bdbc166598c)
|
|
913
|
-
Thanks [@benjie](https://github.com/benjie)! - TypeScript v5 is now required
|
|
914
|
-
|
|
915
|
-
- Updated dependencies
|
|
916
|
-
[[`ae304b33c`](https://github.com/benjie/crystal/commit/ae304b33c7c5a04d36b552177ae24a7b7b522645),
|
|
917
|
-
[`d5312e6b9`](https://github.com/benjie/crystal/commit/d5312e6b968fbeb46d074b82a41b4bdbc166598c),
|
|
918
|
-
[`22ec50e36`](https://github.com/benjie/crystal/commit/22ec50e360d90de41c586c5c220438f780c10ee8),
|
|
919
|
-
[`0f4709356`](https://github.com/benjie/crystal/commit/0f47093560cf4f8b1f215853bc91d7f6531278cc),
|
|
920
|
-
[`f93c79b94`](https://github.com/benjie/crystal/commit/f93c79b94eb93ae04b1b2e0478f5106e1aca8ee2),
|
|
921
|
-
[`53e164cbc`](https://github.com/benjie/crystal/commit/53e164cbca7eaf1e6e03c849ac1bbe1789c61105),
|
|
922
|
-
[`395b4a2dd`](https://github.com/benjie/crystal/commit/395b4a2dd24044bad25f5e411a7a7cfa43883eef)]:
|
|
923
|
-
- grafast@0.0.1-1.1
|
|
924
|
-
- pg-sql2@5.0.0-1.1
|
|
925
|
-
|
|
926
|
-
## 0.0.2-0.4
|
|
927
|
-
|
|
928
|
-
### Patch Changes
|
|
929
|
-
|
|
930
|
-
- [`768f32681`](undefined) - Fix peerDependencies ranges
|
|
931
|
-
|
|
932
|
-
- Updated dependencies [[`768f32681`](undefined)]:
|
|
933
|
-
- grafast@0.0.1-0.4
|
|
934
|
-
|
|
935
|
-
## 0.0.2-0.3
|
|
936
|
-
|
|
937
|
-
### Patch Changes
|
|
938
|
-
|
|
939
|
-
- [`d11c1911c`](undefined) - Fix dependencies
|
|
940
|
-
|
|
941
|
-
- Updated dependencies [[`d11c1911c`](undefined)]:
|
|
942
|
-
- grafast@0.0.1-0.3
|
|
943
|
-
|
|
944
|
-
## 0.0.2-0.2
|
|
945
|
-
|
|
946
|
-
### Patch Changes
|
|
947
|
-
|
|
948
|
-
- Updated dependencies [[`25037fc15`](undefined)]:
|
|
949
|
-
- grafast@0.0.1-0.2
|
|
950
|
-
|
|
951
|
-
## 0.0.2-0.1
|
|
952
|
-
|
|
953
|
-
### Patch Changes
|
|
954
|
-
|
|
955
|
-
- Updated dependencies [[`55f15cf35`](undefined)]:
|
|
956
|
-
- grafast@0.0.1-0.1
|
|
957
|
-
|
|
958
|
-
## 0.0.2-0.0
|
|
959
|
-
|
|
960
|
-
### Patch Changes
|
|
961
|
-
|
|
962
|
-
- [#125](https://github.com/benjie/crystal/pull/125)
|
|
963
|
-
[`91f2256b3`](https://github.com/benjie/crystal/commit/91f2256b3fd699bec19fc86f1ca79df057e58639)
|
|
964
|
-
Thanks [@benjie](https://github.com/benjie)! - Initial changesets release
|
|
965
|
-
|
|
966
|
-
- Updated dependencies
|
|
967
|
-
[[`91f2256b3`](https://github.com/benjie/crystal/commit/91f2256b3fd699bec19fc86f1ca79df057e58639)]:
|
|
968
|
-
- grafast@0.0.1-0.0
|
|
969
|
-
- pg-sql2@5.0.0-0.1
|