Skip to content

Commit 46257b4

Browse files
committed
v4.5.0
1 parent a3e478b commit 46257b4

14 files changed

Lines changed: 30 additions & 30 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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.5.0-rc.0...v) (2019-11-19)
6+
# [](https://github.com/graphile/graphile-engine/compare/v4.5.0-rc.0...v) (2019-11-20)
77

88

99

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.5.0-rc.0",
7+
"version": "4.5.0",
88
"command": {
99
"publish": {
1010
"allowBranch": [

packages/graphile-build-pg/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphile-build-pg",
3-
"version": "4.5.0-rc.0",
3+
"version": "4.5.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",
@@ -37,15 +37,15 @@
3737
},
3838
"homepage": "https://github.com/graphile/graphile-build/tree/master/packages/graphile-build-pg",
3939
"dependencies": {
40-
"@graphile/lru": "4.4.6-alpha.0",
40+
"@graphile/lru": "4.5.0",
4141
"chalk": "^2.4.2",
4242
"debug": "^4.1.1",
43-
"graphile-build": "4.5.0-rc.0",
43+
"graphile-build": "4.5.0",
4444
"graphql-iso-date": "^3.6.0",
4545
"jsonwebtoken": "^8.5.1",
4646
"lodash": ">=4 <5",
4747
"lru-cache": ">=4 <5",
48-
"pg-sql2": "4.4.6-alpha.0",
48+
"pg-sql2": "4.5.0",
4949
"postgres-interval": "^1.2.0"
5050
},
5151
"peerDependencies": {
@@ -56,7 +56,7 @@
5656
"eslint_d": "^8.0.0",
5757
"flow-copy-source": "^1.2.0",
5858
"jest": "^24.8.0",
59-
"jest-serializer-graphql-schema": "4.5.0-rc.0"
59+
"jest-serializer-graphql-schema": "4.5.0"
6060
},
6161
"files": [
6262
"node8plus",

packages/graphile-build/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphile-build",
3-
"version": "4.5.0-rc.0",
3+
"version": "4.5.0",
44
"description": "Build a GraphQL schema from plugins",
55
"main": "node8plus/index.js",
66
"types": "node8plus/index.d.ts",
@@ -30,10 +30,10 @@
3030
},
3131
"homepage": "https://graphile.org/graphile-build/",
3232
"dependencies": {
33-
"@graphile/lru": "4.4.6-alpha.0",
33+
"@graphile/lru": "4.5.0",
3434
"chalk": "^2.4.2",
3535
"debug": "^4.1.1",
36-
"graphql-parse-resolve-info": "4.4.6-alpha.0",
36+
"graphql-parse-resolve-info": "4.5.0",
3737
"iterall": "^1.2.2",
3838
"lodash": ">=4 <5",
3939
"lru-cache": "^5.0.0",
@@ -48,7 +48,7 @@
4848
"eslint_d": "^8.0.0",
4949
"flow-copy-source": "^1.2.0",
5050
"jest": "^24.8.0",
51-
"jest-serializer-graphql-schema": "4.5.0-rc.0"
51+
"jest-serializer-graphql-schema": "4.5.0"
5252
},
5353
"peerDependencies": {
5454
"graphql": ">=0.9 <0.14 || ^14.0.2"

packages/graphile-utils/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphile-utils",
3-
"version": "4.5.0-rc.0",
3+
"version": "4.5.0",
44
"description": "Utilities to help with building graphile-build plugins",
55
"main": "node8plus/index.js",
66
"types": "node8plus/index.d.ts",
@@ -37,10 +37,10 @@
3737
"node": ">=8.6"
3838
},
3939
"devDependencies": {
40-
"graphile-build": "4.5.0-rc.0",
41-
"graphile-build-pg": "4.5.0-rc.0",
40+
"graphile-build": "4.5.0",
41+
"graphile-build-pg": "4.5.0",
4242
"jest": "^24.8.0",
43-
"jest-serializer-graphql-schema": "4.5.0-rc.0",
43+
"jest-serializer-graphql-schema": "4.5.0",
4444
"ts-node": "^8.1.0",
4545
"typescript": "^3.4.5"
4646
},

packages/graphile/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphile",
3-
"version": "4.1.0",
3+
"version": "4.5.0",
44
"scripts": {
55
"watch": "sleep 1000000000",
66
"test": "true",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphql-parse-resolve-info",
3-
"version": "4.4.6-alpha.0",
3+
"version": "4.5.0",
44
"description": "Parse GraphQLResolveInfo (the 4th argument of resolve) into a simple tree",
55
"main": "index.js",
66
"types": "node8plus/index.d.ts",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jest-serializer-graphql-schema",
3-
"version": "4.5.0-rc.0",
3+
"version": "4.5.0",
44
"description": "Jest serializer for GraphQLSchema objects",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

packages/lds/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphile/lds",
3-
"version": "4.4.6-alpha.0",
3+
"version": "4.5.0",
44
"description": "Logical decoding server for PostgreSQL, monitors for new/edited/deleted rows and announces them to interested clients.",
55
"main": "dist/index.js",
66
"scripts": {

packages/lru/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphile/lru",
3-
"version": "4.4.6-alpha.0",
3+
"version": "4.5.0",
44
"description": "Extremely simple zero-dependencies ES6 LRU (you probably want lru-cache instead)",
55
"main": "node8plus/index.js",
66
"types": "node8plus/index.d.ts",

0 commit comments

Comments
 (0)