grafserv 0.1.1-beta.2 → 0.1.1-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/package.json +10 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# grafserv
|
|
2
2
|
|
|
3
|
+
## 0.1.1-beta.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1807](https://github.com/graphile/crystal/pull/1807)
|
|
8
|
+
[`9696a1b08`](https://github.com/graphile/crystal/commit/9696a1b0885442f44e3a6ca6a4909ec96a445884)
|
|
9
|
+
Thanks [@innermatrix](https://github.com/innermatrix)! - Export lambda server
|
|
10
|
+
from `grafserv/lambda/v1`
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
[[`49fcb0d58`](https://github.com/graphile/crystal/commit/49fcb0d585b31b291c9072c339d6f5b550eefc9f),
|
|
14
|
+
[`7aef73319`](https://github.com/graphile/crystal/commit/7aef73319a8a147c700727be62427e1eefdefbf8)]:
|
|
15
|
+
- grafast@0.1.1-beta.1
|
|
16
|
+
- graphile-config@0.0.1-beta.4
|
|
17
|
+
- ruru@2.0.0-beta.8
|
|
18
|
+
|
|
3
19
|
## 0.1.1-beta.2
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "grafserv",
|
|
3
|
-
"version": "0.1.1-beta.
|
|
3
|
+
"version": "0.1.1-beta.3",
|
|
4
4
|
"description": "A highly optimized server for GraphQL, powered by Grafast",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -18,6 +18,10 @@
|
|
|
18
18
|
"types": "./dist/servers/express/v4/index.d.ts",
|
|
19
19
|
"default": "./dist/servers/express/v4/index.js"
|
|
20
20
|
},
|
|
21
|
+
"./lambda/v1": {
|
|
22
|
+
"types": "./dist/servers/lambda/v1/index.d.ts",
|
|
23
|
+
"default": "./dist/servers/lambda/v1/index.js"
|
|
24
|
+
},
|
|
21
25
|
"./koa/v2": {
|
|
22
26
|
"types": "./dist/servers/koa/v2/index.d.ts",
|
|
23
27
|
"default": "./dist/servers/koa/v2/index.js"
|
|
@@ -72,17 +76,17 @@
|
|
|
72
76
|
"@graphile/lru": "^5.0.0-beta.3",
|
|
73
77
|
"debug": "^4.3.4",
|
|
74
78
|
"eventemitter3": "^5.0.1",
|
|
75
|
-
"graphile-config": "^0.0.1-beta.
|
|
79
|
+
"graphile-config": "^0.0.1-beta.4",
|
|
76
80
|
"graphql-ws": "^5.14.0",
|
|
77
|
-
"ruru": "^2.0.0-beta.
|
|
81
|
+
"ruru": "^2.0.0-beta.8",
|
|
78
82
|
"tslib": "^2.6.2"
|
|
79
83
|
},
|
|
80
84
|
"engines": {
|
|
81
85
|
"node": ">=16.10"
|
|
82
86
|
},
|
|
83
87
|
"peerDependencies": {
|
|
84
|
-
"grafast": "^0.1.1-beta.
|
|
85
|
-
"graphile-config": "^0.0.1-beta.
|
|
88
|
+
"grafast": "^0.1.1-beta.1",
|
|
89
|
+
"graphile-config": "^0.0.1-beta.4",
|
|
86
90
|
"graphql": "^16.1.0-experimental-stream-defer.6",
|
|
87
91
|
"h3": "^1.7.1",
|
|
88
92
|
"ws": "^8.12.1"
|
|
@@ -103,7 +107,7 @@
|
|
|
103
107
|
"@whatwg-node/fetch": "^0.9.10",
|
|
104
108
|
"express": "^4.18.2",
|
|
105
109
|
"fastify": "^4.22.1",
|
|
106
|
-
"grafast": "^0.1.1-beta.
|
|
110
|
+
"grafast": "^0.1.1-beta.1",
|
|
107
111
|
"graphql-http": "^1.22.0",
|
|
108
112
|
"h3": "^1.8.1",
|
|
109
113
|
"jest": "^29.6.4",
|