Skip to content

Commit 7d745b3

Browse files
RELEASING: Releasing 12 package(s)
Releases: @dataplan/pg@1.0.4 @graphile/simplify-inflection@9.0.0 grafast@1.0.3 grafserv@1.0.1 graphile-build-pg@5.0.3 graphile-build@5.0.3 graphile-config@1.1.0 graphile-utils@5.0.2 graphile@5.0.1 pgl@5.0.1 postgraphile@5.0.4 ruru@2.0.1
1 parent eeddf88 commit 7d745b3

32 files changed

Lines changed: 339 additions & 24 deletions

File tree

grafast/dataplan-pg/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# @dataplan/pg
22

3+
## 1.0.4
4+
5+
### Patch Changes
6+
7+
- [#3071](https://github.com/graphile/crystal/pull/3071)
8+
[`3dff681`](https://github.com/graphile/crystal/commit/3dff681c8da4c66c37ac2f82896dc869b54d0c21)
9+
Thanks [@benjie](https://github.com/benjie)! - Previously we used
10+
`rootValue()` to represent the Query type; but in GraphQL.js rootValue can be
11+
null/undefined. Typically you just need a truthy value, so we now use an empty
12+
object.
13+
- Updated dependencies
14+
[[`9446f64`](https://github.com/graphile/crystal/commit/9446f64f35b7f6f46fd4ea37fbde67331f4ac947),
15+
[`56f8add`](https://github.com/graphile/crystal/commit/56f8add2f7b99d7ceee0c5c18354b236f6194537),
16+
[`1a9b835`](https://github.com/graphile/crystal/commit/1a9b835d0b8bc8adb22a864a23eff0c521e2309f),
17+
[`3b56a51`](https://github.com/graphile/crystal/commit/3b56a51ad751ce14b0c8c167df09bc9c3fbc11c3),
18+
[`f0d1f48`](https://github.com/graphile/crystal/commit/f0d1f487ecd12299cd5e416aa5c7282dfd7c9992),
19+
[`8b3904d`](https://github.com/graphile/crystal/commit/8b3904dcd26d95e0459ca4b8c469e13cf9454dc1)]:
20+
- grafast@1.0.3
21+
322
## 1.0.3
423

524
### Patch Changes

grafast/dataplan-pg/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dataplan/pg",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "PostgreSQL step classes for Grafast",
55
"type": "commonjs",
66
"main": "dist/index.js",

grafast/dataplan-pg/src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// This file is autogenerated by /scripts/postversion.mjs
2-
export const version = "1.0.3";
2+
export const version = "1.0.4";

grafast/grafast/CHANGELOG.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,48 @@
11
# grafast
22

3+
## 1.0.3
4+
5+
### Patch Changes
6+
7+
- [#3065](https://github.com/graphile/crystal/pull/3065)
8+
[`9446f64`](https://github.com/graphile/crystal/commit/9446f64f35b7f6f46fd4ea37fbde67331f4ac947)
9+
Thanks [@benjie](https://github.com/benjie)! - `fieldArgs` are now created in
10+
the root plan and applied in the layer plan of the target step; this fixes an
11+
issue where fieldArgs could not be applied to step with side effects.
12+
13+
- [#3061](https://github.com/graphile/crystal/pull/3061)
14+
[`56f8add`](https://github.com/graphile/crystal/commit/56f8add2f7b99d7ceee0c5c18354b236f6194537)
15+
Thanks [@benjie](https://github.com/benjie)! - Exposes rootValueStep on
16+
OperationPlan and removes some transient values from being stored. Adds new
17+
global `variableValues()` step retriever, useful for helping produce
18+
GraphQLResolveInfo and similar.
19+
20+
- [#3070](https://github.com/graphile/crystal/pull/3070)
21+
[`1a9b835`](https://github.com/graphile/crystal/commit/1a9b835d0b8bc8adb22a864a23eff0c521e2309f)
22+
Thanks [@benjie](https://github.com/benjie)! - Stop using deprecated
23+
GraphQLError signature
24+
25+
- [#3072](https://github.com/graphile/crystal/pull/3072)
26+
[`3b56a51`](https://github.com/graphile/crystal/commit/3b56a51ad751ce14b0c8c167df09bc9c3fbc11c3)
27+
Thanks [@benjie](https://github.com/benjie)! - Grafast no longer coerces
28+
`rootValue` to a mutable object, increasing compatibility with legacy
29+
resolvers.
30+
31+
- [#3069](https://github.com/graphile/crystal/pull/3069)
32+
[`f0d1f48`](https://github.com/graphile/crystal/commit/f0d1f487ecd12299cd5e416aa5c7282dfd7c9992)
33+
Thanks [@benjie](https://github.com/benjie)! - Remove vestigial
34+
`insideGraphQL` code.
35+
36+
- [#3062](https://github.com/graphile/crystal/pull/3062)
37+
[`8b3904d`](https://github.com/graphile/crystal/commit/8b3904dcd26d95e0459ca4b8c469e13cf9454dc1)
38+
Thanks [@benjie](https://github.com/benjie)! - Internals: clear
39+
\_\_TrackedValueStep initialValue on finalize.
40+
41+
- Updated dependencies
42+
[[`350dd8d`](https://github.com/graphile/crystal/commit/350dd8df273c44f3a51805a99e48497300942de3),
43+
[`5f95b1c`](https://github.com/graphile/crystal/commit/5f95b1c6ee298b3fcde49a41621861ea44809f9d)]:
44+
- graphile-config@1.1.0
45+
346
## 1.0.2
447

548
### Patch Changes

grafast/grafast/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "grafast",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "Cutting edge GraphQL planning and execution engine",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

grafast/grafast/src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// This file is autogenerated by /scripts/postversion.mjs
2-
export const version = "1.0.2";
2+
export const version = "1.0.3";

grafast/grafserv/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# grafserv
22

3+
## 1.0.1
4+
5+
### Patch Changes
6+
7+
- [#3070](https://github.com/graphile/crystal/pull/3070)
8+
[`1a9b835`](https://github.com/graphile/crystal/commit/1a9b835d0b8bc8adb22a864a23eff0c521e2309f)
9+
Thanks [@benjie](https://github.com/benjie)! - Stop using deprecated
10+
GraphQLError signature
11+
12+
- Updated dependencies
13+
[[`350dd8d`](https://github.com/graphile/crystal/commit/350dd8df273c44f3a51805a99e48497300942de3),
14+
[`5f95b1c`](https://github.com/graphile/crystal/commit/5f95b1c6ee298b3fcde49a41621861ea44809f9d)]:
15+
- graphile-config@1.1.0
16+
- ruru@2.0.1
17+
318
## 1.0.0
419

520
Identical to 1.0.0-rc.7.

grafast/grafserv/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "grafserv",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A highly optimized server for GraphQL, powered by Grafast",
55
"type": "commonjs",
66
"main": "dist/index.js",

grafast/grafserv/src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// This file is autogenerated by /scripts/postversion.mjs
2-
export const version = "1.0.0";
2+
export const version = "1.0.1";

grafast/ruru/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# ruru
22

3+
## 2.0.1
4+
5+
### Patch Changes
6+
7+
- [#3077](https://github.com/graphile/crystal/pull/3077)
8+
[`5f95b1c`](https://github.com/graphile/crystal/commit/5f95b1c6ee298b3fcde49a41621861ea44809f9d)
9+
Thanks [@benjie](https://github.com/benjie)! - CLIs will now correctly
10+
auto-import `graphile.config.mts` files (previously `graphile.config.ts` files
11+
worked, but `graphile.config.mts` files would be ignored). With all major
12+
versions of Node.js now having native support for type stripping and
13+
require(esm), we recommend moving your configuration files to TypeScript
14+
(using ESM and erasable syntax only).
15+
- Updated dependencies
16+
[[`350dd8d`](https://github.com/graphile/crystal/commit/350dd8df273c44f3a51805a99e48497300942de3),
17+
[`5f95b1c`](https://github.com/graphile/crystal/commit/5f95b1c6ee298b3fcde49a41621861ea44809f9d)]:
18+
- graphile-config@1.1.0
19+
320
## 2.0.0
421

522
Identical to 2.0.0-rc.7.

0 commit comments

Comments
 (0)