Skip to content

Commit 8be64ba

Browse files
committed
v4.12.1
1 parent 189fd58 commit 8be64ba

File tree

9 files changed

+31
-17
lines changed

9 files changed

+31
-17
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@
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.12.0...v) (2021-05-26)
6+
# [](https://github.com/graphile/graphile-engine/compare/v4.12.0...v) (2021-05-27)
7+
8+
9+
### Features
10+
11+
* **utils:** support for NULLS FIRST/LAST in orderByAscDesc ([#737](https://github.com/graphile/graphile-engine/issues/737)) ([99b1a8e](https://github.com/graphile/graphile-engine/commit/99b1a8ee638322e61b0617c5d1497e9904a6ff21))
712

813

914

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.12.0",
7+
"version": "4.12.1",
88
"command": {
99
"publish": {
1010
"allowBranch": [

packages/graphile-build-pg/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-pg",
3-
"version": "4.12.0",
3+
"version": "4.12.1",
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",
@@ -44,7 +44,7 @@
4444
"jsonwebtoken": "^8.5.1",
4545
"lodash": ">=4 <5",
4646
"lru-cache": ">=4 <5",
47-
"pg-sql2": "4.12.0"
47+
"pg-sql2": "4.12.1"
4848
},
4949
"peerDependencies": {
5050
"pg": ">=6.1.0 <9"

packages/graphile-utils/package.json

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

packages/lds/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphile/lds",
3-
"version": "4.12.0",
3+
"version": "4.12.1",
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": {
@@ -46,5 +46,7 @@
4646
"ts-jest": "25.x",
4747
"typescript": "^4.0.2"
4848
},
49-
"files": ["dist"]
49+
"files": [
50+
"dist"
51+
]
5052
}

packages/pg-pubsub/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphile/pg-pubsub",
3-
"version": "4.12.0",
3+
"version": "4.12.1",
44
"description": "Subscriptions plugin for PostGraphile using PostgreSQL's LISTEN/NOTIFY",
55
"main": "dist/index.js",
66
"scripts": {
@@ -53,5 +53,7 @@
5353
"ts-jest": "25.x",
5454
"typescript": "^4.0.2"
5555
},
56-
"files": ["dist"]
56+
"files": [
57+
"dist"
58+
]
5759
}

packages/pg-sql2/package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pg-sql2",
3-
"version": "4.12.0",
3+
"version": "4.12.1",
44
"description": "Generate safe Postgres-compliant SQL with tagged template literals",
55
"main": "node8plus/index.js",
66
"types": "node8plus/index.d.ts",
@@ -51,7 +51,9 @@
5151
"debug": ">=3 <5",
5252
"tslib": "^2.0.1"
5353
},
54-
"files": ["node8plus"],
54+
"files": [
55+
"node8plus"
56+
],
5557
"engines": {
5658
"node": ">=8.6"
5759
}

packages/postgraphile-core/package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postgraphile-core",
3-
"version": "4.12.0",
3+
"version": "4.12.1",
44
"description": "",
55
"main": "node8plus/index.js",
66
"scripts": {
@@ -20,7 +20,7 @@
2020
},
2121
"dependencies": {
2222
"graphile-build": "4.12.0",
23-
"graphile-build-pg": "4.12.0",
23+
"graphile-build-pg": "4.12.1",
2424
"tslib": "^2.0.1"
2525
},
2626
"devDependencies": {
@@ -39,7 +39,10 @@
3939
"graphql": ">=0.9 <0.14 || ^14.0.2 || ^15.4.0",
4040
"pg": ">=6.1.0 <9"
4141
},
42-
"files": ["node8plus", "index.js"],
42+
"files": [
43+
"node8plus",
44+
"index.js"
45+
],
4346
"engines": {
4447
"node": ">=8.6"
4548
}

packages/subscriptions-lds/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@graphile/subscriptions-lds",
3-
"version": "4.12.0",
3+
"version": "4.12.1",
44
"description": "Subscriptions plugin for PostGraphile using PostgreSQL logicial decoding",
55
"main": "dist/index.js",
66
"scripts": {
@@ -32,7 +32,7 @@
3232
},
3333
"homepage": "https://github.com/graphile/graphile-engine/tree/master/packages/subscriptions-lds#readme",
3434
"dependencies": {
35-
"@graphile/lds": "4.12.0",
35+
"@graphile/lds": "4.12.1",
3636
"@types/ws": "^6.0.1",
3737
"tslib": "^2.0.1",
3838
"ws": "^7.0.0"

0 commit comments

Comments
 (0)