diff --git a/CHANGELOG.md b/CHANGELOG.md index 94e08eb41..5a8bfb6eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,14 @@ 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.13.0...v) (2023-01-12) +# [](https://github.com/graphile/graphile-engine/compare/v4.13.0...v) (2023-10-05) + + +### Features + +* **pg-pubsub:** add option to immediately get a result on listen ([#812](https://github.com/graphile/graphile-engine/issues/812)) ([12712f0](https://github.com/graphile/graphile-engine/commit/12712f01596753213712051008064108fc6e437c)) +* **pg:** Adds support for using partitioned table parents ([#801](https://github.com/graphile/graphile-engine/issues/801)) ([4deb984](https://github.com/graphile/graphile-engine/commit/4deb984c9c4c8eb1aaf3d69ed9a9deec45f5432d)) +* **pg:** use table enums in functions via domain ([#832](https://github.com/graphile/graphile-engine/issues/832)) ([35905be](https://github.com/graphile/graphile-engine/commit/35905bebab2341519f3e36dc59e455206b11dde0)) diff --git a/lerna.json b/lerna.json index c6ef8cda4..4802c19b5 100644 --- a/lerna.json +++ b/lerna.json @@ -4,7 +4,7 @@ "packages": [ "packages/*" ], - "version": "4.13.0", + "version": "4.14.0", "command": { "publish": { "allowBranch": [ diff --git a/packages/graphile-build-pg/package.json b/packages/graphile-build-pg/package.json index a282b6a91..810f4925e 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.13.0", + "version": "4.14.0", "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", @@ -40,11 +40,11 @@ "@graphile/lru": "4.11.0", "chalk": "^2.4.2", "debug": "^4.1.1", - "graphile-build": "4.13.0", + "graphile-build": "4.14.0", "jsonwebtoken": "^9.0.0", "lodash": ">=4 <5", "lru-cache": ">=4 <5", - "pg-sql2": "4.13.0" + "pg-sql2": "4.14.0" }, "peerDependencies": { "pg": ">=6.1.0 <9" diff --git a/packages/graphile-build/package.json b/packages/graphile-build/package.json index f5be95f4b..7718e9a74 100644 --- a/packages/graphile-build/package.json +++ b/packages/graphile-build/package.json @@ -1,6 +1,6 @@ { "name": "graphile-build", - "version": "4.13.0", + "version": "4.14.0", "description": "Build a GraphQL schema from plugins", "main": "node8plus/index.js", "types": "node8plus/index.d.ts", @@ -33,7 +33,7 @@ "@graphile/lru": "4.11.0", "chalk": "^2.4.2", "debug": "^4.1.1", - "graphql-parse-resolve-info": "4.13.0", + "graphql-parse-resolve-info": "4.14.0", "iterall": "^1.2.2", "lodash": ">=4 <5", "lru-cache": "^5.0.0", diff --git a/packages/graphile-utils/package.json b/packages/graphile-utils/package.json index 032f5b7fb..e1bcbc721 100644 --- a/packages/graphile-utils/package.json +++ b/packages/graphile-utils/package.json @@ -1,6 +1,6 @@ { "name": "graphile-utils", - "version": "4.13.0", + "version": "4.14.0", "description": "Utilities to help with building graphile-build plugins", "main": "node8plus/index.js", "types": "node8plus/index.d.ts", @@ -38,8 +38,8 @@ "node": ">=8.6" }, "devDependencies": { - "graphile-build": "4.13.0", - "graphile-build-pg": "4.13.0", + "graphile-build": "4.14.0", + "graphile-build-pg": "4.14.0", "jest": "25.x", "jest-serializer-graphql-schema": "4.10.0", "ts-node": "^9.0.0", diff --git a/packages/graphql-parse-resolve-info/package.json b/packages/graphql-parse-resolve-info/package.json index c7d2c8cdf..40a6cf728 100644 --- a/packages/graphql-parse-resolve-info/package.json +++ b/packages/graphql-parse-resolve-info/package.json @@ -1,6 +1,6 @@ { "name": "graphql-parse-resolve-info", - "version": "4.13.0", + "version": "4.14.0", "description": "Parse GraphQLResolveInfo (the 4th argument of resolve) into a simple tree", "main": "index.js", "types": "node8plus/index.d.ts", diff --git a/packages/lds/package.json b/packages/lds/package.json index 637849e66..d32b4ac41 100644 --- a/packages/lds/package.json +++ b/packages/lds/package.json @@ -1,6 +1,6 @@ { "name": "@graphile/lds", - "version": "4.13.0", + "version": "4.14.0", "description": "Logical decoding server for PostgreSQL, monitors for new/edited/deleted rows and announces them to interested clients.", "main": "dist/index.js", "scripts": { diff --git a/packages/pg-pubsub/package.json b/packages/pg-pubsub/package.json index 289303996..d6847e9ef 100644 --- a/packages/pg-pubsub/package.json +++ b/packages/pg-pubsub/package.json @@ -1,6 +1,6 @@ { "name": "@graphile/pg-pubsub", - "version": "4.13.0", + "version": "4.14.0", "description": "Subscriptions plugin for PostGraphile using PostgreSQL's LISTEN/NOTIFY", "main": "dist/index.js", "scripts": { diff --git a/packages/pg-sql2/package.json b/packages/pg-sql2/package.json index 55d61272d..e1f506a52 100644 --- a/packages/pg-sql2/package.json +++ b/packages/pg-sql2/package.json @@ -1,6 +1,6 @@ { "name": "pg-sql2", - "version": "4.13.0", + "version": "4.14.0", "description": "Generate safe Postgres-compliant SQL with tagged template literals", "main": "node8plus/index.js", "types": "node8plus/index.d.ts", diff --git a/packages/postgraphile-core/package.json b/packages/postgraphile-core/package.json index 25c78af1b..684702487 100644 --- a/packages/postgraphile-core/package.json +++ b/packages/postgraphile-core/package.json @@ -1,6 +1,6 @@ { "name": "postgraphile-core", - "version": "4.13.0", + "version": "4.14.0", "description": "", "main": "node8plus/index.js", "scripts": { @@ -19,8 +19,8 @@ "url": "https://github.com/graphile/graphile-engine/issues" }, "dependencies": { - "graphile-build": "4.13.0", - "graphile-build-pg": "4.13.0", + "graphile-build": "4.14.0", + "graphile-build-pg": "4.14.0", "tslib": "^2.0.1" }, "devDependencies": { diff --git a/packages/subscriptions-lds/package.json b/packages/subscriptions-lds/package.json index dd4d7ac58..b6f138dbd 100644 --- a/packages/subscriptions-lds/package.json +++ b/packages/subscriptions-lds/package.json @@ -1,6 +1,6 @@ { "name": "@graphile/subscriptions-lds", - "version": "4.13.0", + "version": "4.14.0", "description": "Subscriptions plugin for PostGraphile using PostgreSQL logicial decoding", "main": "dist/index.js", "scripts": { @@ -32,7 +32,7 @@ }, "homepage": "https://github.com/graphile/graphile-engine/tree/master/packages/subscriptions-lds#readme", "dependencies": { - "@graphile/lds": "4.13.0", + "@graphile/lds": "4.14.0", "@types/ws": "^6.0.1", "tslib": "^2.0.1", "ws": "^7.0.0"