diff --git a/CHANGELOG.md b/CHANGELOG.md index 93972ac109..a2aefd37ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,12 @@ We use PostGraphile's GitHub releases tab to log our changes in detail, but this auto-generated changelog helps us to produce that list, and it may be helpful to you also. -# [](https://github.com/graphile/graphile-engine/compare/v4.11.1...v) (2021-01-22) +# [](https://github.com/graphile/graphile-engine/compare/v4.11.1...v) (2021-01-29) + + +### Bug Fixes + +* **watch:** fix pool leak on unexpected connection termination ([#711](https://github.com/graphile/graphile-engine/issues/711)) ([b2fbc21](https://github.com/graphile/graphile-engine/commit/b2fbc21aa28829929eca7cb9f3cf59ace2dad799)) diff --git a/lerna.json b/lerna.json index bd7decdf04..3308ca5d88 100644 --- a/lerna.json +++ b/lerna.json @@ -4,7 +4,7 @@ "packages": [ "packages/*" ], - "version": "4.11.1", + "version": "4.11.2", "command": { "publish": { "allowBranch": [ diff --git a/packages/graphile-build-pg/package.json b/packages/graphile-build-pg/package.json index c11c8ecb42..4ed0b6a41c 100644 --- a/packages/graphile-build-pg/package.json +++ b/packages/graphile-build-pg/package.json @@ -1,6 +1,6 @@ { "name": "graphile-build-pg", - "version": "4.11.0", + "version": "4.11.2", "description": "Build a GraphQL schema by reflection over a PostgreSQL schema. Easy to customize since it's built with plugins on graphile-build", "main": "node8plus/index.js", "types": "node8plus/index.d.ts", diff --git a/packages/graphile-utils/package.json b/packages/graphile-utils/package.json index 85a9f08620..d8883e1848 100644 --- a/packages/graphile-utils/package.json +++ b/packages/graphile-utils/package.json @@ -1,6 +1,6 @@ { "name": "graphile-utils", - "version": "4.11.1", + "version": "4.11.2", "description": "Utilities to help with building graphile-build plugins", "main": "node8plus/index.js", "types": "node8plus/index.d.ts", @@ -39,7 +39,7 @@ }, "devDependencies": { "graphile-build": "4.11.0", - "graphile-build-pg": "4.11.0", + "graphile-build-pg": "4.11.2", "jest": "25.x", "jest-serializer-graphql-schema": "4.10.0", "ts-node": "^9.0.0", diff --git a/packages/postgraphile-core/package.json b/packages/postgraphile-core/package.json index 7bdf4d088c..44ea9559a7 100644 --- a/packages/postgraphile-core/package.json +++ b/packages/postgraphile-core/package.json @@ -1,6 +1,6 @@ { "name": "postgraphile-core", - "version": "4.11.0", + "version": "4.11.2", "description": "", "main": "node8plus/index.js", "scripts": { @@ -20,7 +20,7 @@ }, "dependencies": { "graphile-build": "4.11.0", - "graphile-build-pg": "4.11.0", + "graphile-build-pg": "4.11.2", "tslib": "^2.0.1" }, "devDependencies": {