Skip to content

Commit 8364724

Browse files
committed
v4.14.0
1 parent 5796c25 commit 8364724

11 files changed

Lines changed: 26 additions & 19 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.13.0...v) (2023-01-12)
6+
# [](https://github.com/graphile/graphile-engine/compare/v4.13.0...v) (2023-10-05)
7+
8+
9+
### Features
10+
11+
* **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))
12+
* **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))
13+
* **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))
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.13.0",
7+
"version": "4.14.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.13.0",
3+
"version": "4.14.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,11 +40,11 @@
4040
"@graphile/lru": "4.11.0",
4141
"chalk": "^2.4.2",
4242
"debug": "^4.1.1",
43-
"graphile-build": "4.13.0",
43+
"graphile-build": "4.14.0",
4444
"jsonwebtoken": "^9.0.0",
4545
"lodash": ">=4 <5",
4646
"lru-cache": ">=4 <5",
47-
"pg-sql2": "4.13.0"
47+
"pg-sql2": "4.14.0"
4848
},
4949
"peerDependencies": {
5050
"pg": ">=6.1.0 <9"

packages/graphile-build/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphile-build",
3-
"version": "4.13.0",
3+
"version": "4.14.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.11.0",
3434
"chalk": "^2.4.2",
3535
"debug": "^4.1.1",
36-
"graphql-parse-resolve-info": "4.13.0",
36+
"graphql-parse-resolve-info": "4.14.0",
3737
"iterall": "^1.2.2",
3838
"lodash": ">=4 <5",
3939
"lru-cache": "^5.0.0",

packages/graphile-utils/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphile-utils",
3-
"version": "4.13.0",
3+
"version": "4.14.0",
44
"description": "Utilities to help with building graphile-build plugins",
55
"main": "node8plus/index.js",
66
"types": "node8plus/index.d.ts",
@@ -38,8 +38,8 @@
3838
"node": ">=8.6"
3939
},
4040
"devDependencies": {
41-
"graphile-build": "4.13.0",
42-
"graphile-build-pg": "4.13.0",
41+
"graphile-build": "4.14.0",
42+
"graphile-build-pg": "4.14.0",
4343
"jest": "25.x",
4444
"jest-serializer-graphql-schema": "4.10.0",
4545
"ts-node": "^9.0.0",

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.13.0",
3+
"version": "4.14.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/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.13.0",
3+
"version": "4.14.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/pg-pubsub/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphile/pg-pubsub",
3-
"version": "4.13.0",
3+
"version": "4.14.0",
44
"description": "Subscriptions plugin for PostGraphile using PostgreSQL's LISTEN/NOTIFY",
55
"main": "dist/index.js",
66
"scripts": {

packages/pg-sql2/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pg-sql2",
3-
"version": "4.13.0",
3+
"version": "4.14.0",
44
"description": "Generate safe Postgres-compliant SQL with tagged template literals",
55
"main": "node8plus/index.js",
66
"types": "node8plus/index.d.ts",

packages/postgraphile-core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postgraphile-core",
3-
"version": "4.13.0",
3+
"version": "4.14.0",
44
"description": "",
55
"main": "node8plus/index.js",
66
"scripts": {
@@ -19,8 +19,8 @@
1919
"url": "https://github.com/graphile/graphile-engine/issues"
2020
},
2121
"dependencies": {
22-
"graphile-build": "4.13.0",
23-
"graphile-build-pg": "4.13.0",
22+
"graphile-build": "4.14.0",
23+
"graphile-build-pg": "4.14.0",
2424
"tslib": "^2.0.1"
2525
},
2626
"devDependencies": {

0 commit comments

Comments
 (0)