Skip to content

Commit 8c4a26c

Browse files
committed
4.9.0
1 parent 50ccb77 commit 8c4a26c

File tree

2 files changed

+25
-4
lines changed

2 files changed

+25
-4
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,19 @@ to you also.
88
Graphile Engine, so you should also reference [those
99
changes](https://github.com/graphile/graphile-engine/blob/master/CHANGELOG.md).
1010

11+
# [4.9.0](https://github.com/graphile/postgraphile/compare/v4.8.0...v4.9.0) (2020-09-11)
12+
13+
### Bug Fixes
14+
15+
- **graphiql:** fix CSS bundling issue ([#1346](https://github.com/graphile/postgraphile/issues/1346)) ([31f177e](https://github.com/graphile/postgraphile/commit/31f177ea44c47f1097a7cf2256ae717dc3050b60))
16+
- **graphiql:** fix icon alignment issue ([#1347](https://github.com/graphile/postgraphile/issues/1347)) ([50ccb77](https://github.com/graphile/postgraphile/commit/50ccb77c25978db645849b009c8ff9a5bd0ae220))
17+
- **types:** update next function for Express compatability ([#1343](https://github.com/graphile/postgraphile/issues/1343)) ([0420c95](https://github.com/graphile/postgraphile/commit/0420c9564f2f38d885f1f24669ac0b5ca1baffb7))
18+
19+
### Features
20+
21+
- allow overriding init fail handling ([#1342](https://github.com/graphile/postgraphile/issues/1342)) ([b06142a](https://github.com/graphile/postgraphile/commit/b06142a4a6481acfca82f4c0962b1441ac259111))
22+
- upgrade graphile-engine and other dependencies ([#1345](https://github.com/graphile/postgraphile/issues/1345)) ([cd23d26](https://github.com/graphile/postgraphile/commit/cd23d26743d73d4d54b93a15dc89eb1c90f09a4b))
23+
1124
# [4.8.0](https://github.com/graphile/postgraphile/compare/v4.8.0-rc.0...v4.8.0) (2020-08-11)
1225

1326
### Bug Fixes

package.json

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "postgraphile",
3-
"version": "4.8.0",
3+
"version": "4.9.0",
44
"description": "A GraphQL schema created by reflection over a PostgreSQL schema 🐘 (previously known as PostGraphQL)",
55
"author": "Benjie Gillam <[email protected]> (https://twitter.com/benjie)",
66
"license": "MIT",
@@ -124,11 +124,19 @@
124124
"transform": {
125125
".*": "<rootDir>/resources/jest-preprocessor.js"
126126
},
127-
"moduleFileExtensions": ["ts", "js", "json"],
128-
"setupFiles": ["<rootDir>/resources/jest-setup.js"],
127+
"moduleFileExtensions": [
128+
"ts",
129+
"js",
130+
"json"
131+
],
132+
"setupFiles": [
133+
"<rootDir>/resources/jest-setup.js"
134+
],
129135
"browser": false,
130136
"testEnvironment": "node",
131-
"roots": ["<rootDir>/src"],
137+
"roots": [
138+
"<rootDir>/src"
139+
],
132140
"testRegex": "/__tests__/[^.]+-test.(t|j)s$"
133141
},
134142
"files": [

0 commit comments

Comments
 (0)