Skip to content

Commit c20e682

Browse files
committed
v4.10.0
1 parent 215f5cf commit c20e682

9 files changed

Lines changed: 54 additions & 27 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,14 @@
33
We use PostGraphile's GitHub releases tab to log our changes in detail, but
44
this auto-generated changelog helps us to produce that list, and it may be
55
helpful to you also.
6-
# [](https://github.com/graphile/graphile-engine/compare/v4.9.2...v) (2020-10-23)
6+
# [](https://github.com/graphile/graphile-engine/compare/v4.9.2...v) (2020-11-18)
7+
8+
9+
### Features
10+
11+
* **deps:** support for GraphQL v15 ([#689](https://github.com/graphile/graphile-engine/issues/689)) ([3e7f98f](https://github.com/graphile/graphile-engine/commit/3e7f98f8f9582501344bab7ac2d20fc1af065ce7))
12+
* **pg:** support domain constrained composite types ([#615](https://github.com/graphile/graphile-engine/issues/615)) ([215f5cf](https://github.com/graphile/graphile-engine/commit/215f5cf22b53fd979ea62c0ef3a25aec6846e1ee))
13+
* **pubsub:** add maxListeners to subscription eventEmitter ([#688](https://github.com/graphile/graphile-engine/issues/688)) ([576177f](https://github.com/graphile/graphile-engine/commit/576177f7f85e4462c330f5d3f1e37421dedf8f5a))
714

815

916

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"packages": [
55
"packages/*"
66
],
7-
"version": "4.9.2",
7+
"version": "4.10.0",
88
"command": {
99
"publish": {
1010
"allowBranch": [

packages/graphile-build-pg/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphile-build-pg",
3-
"version": "4.9.2",
3+
"version": "4.10.0",
44
"description": "Build a GraphQL schema by reflection over a PostgreSQL schema. Easy to customize since it's built with plugins on graphile-build",
55
"main": "node8plus/index.js",
66
"types": "node8plus/index.d.ts",
@@ -40,7 +40,7 @@
4040
"@graphile/lru": "4.9.0",
4141
"chalk": "^2.4.2",
4242
"debug": "^4.1.1",
43-
"graphile-build": "4.9.0",
43+
"graphile-build": "4.10.0",
4444
"graphql-iso-date": "^3.6.0",
4545
"jsonwebtoken": "^8.5.1",
4646
"lodash": ">=4 <5",
@@ -55,7 +55,7 @@
5555
"eslint_d": "^9.1.2",
5656
"flow-copy-source": "^2.0.9",
5757
"jest": "25.x",
58-
"jest-serializer-graphql-schema": "4.9.0"
58+
"jest-serializer-graphql-schema": "4.10.0"
5959
},
6060
"files": [
6161
"node8plus",

packages/graphile-build/package.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphile-build",
3-
"version": "4.9.0",
3+
"version": "4.10.0",
44
"description": "Build a GraphQL schema from plugins",
55
"main": "node8plus/index.js",
66
"types": "node8plus/index.d.ts",
@@ -33,7 +33,7 @@
3333
"@graphile/lru": "4.9.0",
3434
"chalk": "^2.4.2",
3535
"debug": "^4.1.1",
36-
"graphql-parse-resolve-info": "4.9.0",
36+
"graphql-parse-resolve-info": "4.10.0",
3737
"iterall": "^1.2.2",
3838
"lodash": ">=4 <5",
3939
"lru-cache": "^5.0.0",
@@ -48,10 +48,13 @@
4848
"eslint_d": "^9.1.2",
4949
"flow-copy-source": "^2.0.9",
5050
"jest": "25.x",
51-
"jest-serializer-graphql-schema": "4.9.0"
51+
"jest-serializer-graphql-schema": "4.10.0"
5252
},
5353
"peerDependencies": {
5454
"graphql": ">=0.9 <0.14 || ^14.0.2 || ^15.4.0"
5555
},
56-
"files": ["node8plus", "index.js"]
56+
"files": [
57+
"node8plus",
58+
"index.js"
59+
]
5760
}

packages/graphile-utils/package.json

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphile-utils",
3-
"version": "4.9.2",
3+
"version": "4.10.0",
44
"description": "Utilities to help with building graphile-build plugins",
55
"main": "node8plus/index.js",
66
"types": "node8plus/index.d.ts",
@@ -38,16 +38,18 @@
3838
"node": ">=8.6"
3939
},
4040
"devDependencies": {
41-
"graphile-build": "4.9.0",
42-
"graphile-build-pg": "4.9.2",
41+
"graphile-build": "4.10.0",
42+
"graphile-build-pg": "4.10.0",
4343
"jest": "25.x",
44-
"jest-serializer-graphql-schema": "4.9.0",
44+
"jest-serializer-graphql-schema": "4.10.0",
4545
"ts-node": "^9.0.0",
4646
"typescript": "^4.0.2"
4747
},
4848
"peerDependencies": {
4949
"graphile-build": "^4.5.0",
5050
"graphile-build-pg": "^4.5.0"
5151
},
52-
"files": ["node8plus"]
52+
"files": [
53+
"node8plus"
54+
]
5355
}

packages/graphql-parse-resolve-info/package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphql-parse-resolve-info",
3-
"version": "4.9.0",
3+
"version": "4.10.0",
44
"description": "Parse GraphQLResolveInfo (the 4th argument of resolve) into a simple tree",
55
"main": "index.js",
66
"types": "node8plus/index.d.ts",
@@ -45,7 +45,11 @@
4545
"debug": "^4.1.1",
4646
"tslib": "^2.0.1"
4747
},
48-
"files": ["node8plus", "index.js", "build-turbo"],
48+
"files": [
49+
"node8plus",
50+
"index.js",
51+
"build-turbo"
52+
],
4953
"engines": {
5054
"node": ">=8.6"
5155
}

packages/jest-serializer-graphql-schema/package.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jest-serializer-graphql-schema",
3-
"version": "4.9.0",
3+
"version": "4.10.0",
44
"description": "Jest serializer for GraphQLSchema objects",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
@@ -13,7 +13,11 @@
1313
"type": "git",
1414
"url": "git+https://github.com/graphile/graphile-engine.git"
1515
},
16-
"keywords": ["jest", "graphql", "schema"],
16+
"keywords": [
17+
"jest",
18+
"graphql",
19+
"schema"
20+
],
1721
"author": "David Baumgold <david@davidbaumgold.com>",
1822
"license": "MIT",
1923
"bugs": {
@@ -30,7 +34,9 @@
3034
"ts-jest": "25.x",
3135
"typescript": "^4.0.2"
3236
},
33-
"files": ["dist"],
37+
"files": [
38+
"dist"
39+
],
3440
"dependencies": {
3541
"tslib": "^2.0.1"
3642
}

packages/pg-pubsub/package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphile/pg-pubsub",
3-
"version": "4.9.0",
3+
"version": "4.10.0",
44
"description": "Subscriptions plugin for PostGraphile using PostgreSQL's LISTEN/NOTIFY",
55
"main": "dist/index.js",
66
"scripts": {
@@ -45,13 +45,15 @@
4545
"@types/jest": "25.x",
4646
"graphql": ">=0.6 <16",
4747
"jest": "25.x",
48-
"jest-serializer-graphql-schema": "4.9.0",
48+
"jest-serializer-graphql-schema": "4.10.0",
4949
"mock-req": "^0.2.0",
5050
"mock-res": "^0.5.0",
5151
"pg": ">=6.1.0 <9",
5252
"postgraphile": "^4.4.0",
5353
"ts-jest": "25.x",
5454
"typescript": "^4.0.2"
5555
},
56-
"files": ["dist"]
56+
"files": [
57+
"dist"
58+
]
5759
}

packages/postgraphile-core/package.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postgraphile-core",
3-
"version": "4.9.2",
3+
"version": "4.10.0",
44
"description": "",
55
"main": "node8plus/index.js",
66
"scripts": {
@@ -19,16 +19,16 @@
1919
"url": "https://github.com/graphile/graphile-build/issues"
2020
},
2121
"dependencies": {
22-
"graphile-build": "4.9.0",
23-
"graphile-build-pg": "4.9.2",
22+
"graphile-build": "4.10.0",
23+
"graphile-build-pg": "4.10.0",
2424
"tslib": "^2.0.1"
2525
},
2626
"devDependencies": {
2727
"@types/node": "^14.6.4",
2828
"@types/pg": "^7.4.14",
2929
"debug": "^4.1.1",
3030
"jest": "25.x",
31-
"jest-serializer-graphql-schema": "4.9.0",
31+
"jest-serializer-graphql-schema": "4.10.0",
3232
"jest-silent-reporter": "^0.2.1",
3333
"jsonwebtoken": "^8.5.1",
3434
"pg-connection-string": "^2.1.0",
@@ -39,7 +39,10 @@
3939
"graphql": ">=0.9 <0.14 || ^14.0.2 || ^15.4.0",
4040
"pg": ">=6.1.0 <9"
4141
},
42-
"files": ["node8plus", "index.js"],
42+
"files": [
43+
"node8plus",
44+
"index.js"
45+
],
4346
"engines": {
4447
"node": ">=8.6"
4548
}

0 commit comments

Comments
 (0)