Skip to content

Commit

Permalink
v4.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
benjie committed Oct 5, 2023
1 parent 5796c25 commit 8364724
Show file tree
Hide file tree
Showing 11 changed files with 26 additions and 19 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))



Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"packages": [
"packages/*"
],
"version": "4.13.0",
"version": "4.14.0",
"command": {
"publish": {
"allowBranch": [
Expand Down
6 changes: 3 additions & 3 deletions packages/graphile-build-pg/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions packages/graphile-build/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down
6 changes: 3 additions & 3 deletions packages/graphile-utils/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/graphql-parse-resolve-info/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/lds/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion packages/pg-pubsub/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion packages/pg-sql2/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
6 changes: 3 additions & 3 deletions packages/postgraphile-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "postgraphile-core",
"version": "4.13.0",
"version": "4.14.0",
"description": "",
"main": "node8plus/index.js",
"scripts": {
Expand All @@ -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": {
Expand Down
4 changes: 2 additions & 2 deletions packages/subscriptions-lds/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 8364724

Please sign in to comment.