Skip to content

Commit 1f03430

Browse files
chore(deps): update (#117)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent a851d95 commit 1f03430

File tree

15 files changed

+932
-927
lines changed

15 files changed

+932
-927
lines changed

implementations/apollo-server/README.md

+12-6
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,12 @@ The server <i>MAY</i> support these, but are truly optional. These are suggestio
7878
"status": 400,
7979
"headers": {
8080
"x-powered-by": "Express",
81+
"keep-alive": "timeout=5",
8182
"etag": "W/\"5b5-Kk1S3FEKgu+/9bGQEzPmjXrSv1k\"",
8283
"date": "<timestamp>",
8384
"content-type": "application/json; charset=utf-8",
8485
"content-length": "1461",
85-
"connection": "close",
86+
"connection": "keep-alive",
8687
"access-control-allow-origin": "*"
8788
},
8889
"body": {
@@ -116,11 +117,12 @@ The server <i>MAY</i> support these, but are truly optional. These are suggestio
116117
"status": 400,
117118
"headers": {
118119
"x-powered-by": "Express",
120+
"keep-alive": "timeout=5",
119121
"etag": "W/\"5b5-Kk1S3FEKgu+/9bGQEzPmjXrSv1k\"",
120122
"date": "<timestamp>",
121123
"content-type": "application/graphql-response+json; charset=utf-8",
122124
"content-length": "1461",
123-
"connection": "close",
125+
"connection": "keep-alive",
124126
"access-control-allow-origin": "*"
125127
},
126128
"body": {
@@ -154,11 +156,12 @@ The server <i>MAY</i> support these, but are truly optional. These are suggestio
154156
"status": 400,
155157
"headers": {
156158
"x-powered-by": "Express",
159+
"keep-alive": "timeout=5",
157160
"etag": "W/\"5b5-Kk1S3FEKgu+/9bGQEzPmjXrSv1k\"",
158161
"date": "<timestamp>",
159162
"content-type": "application/json; charset=utf-8",
160163
"content-length": "1461",
161-
"connection": "close",
164+
"connection": "keep-alive",
162165
"access-control-allow-origin": "*"
163166
},
164167
"body": {
@@ -197,11 +200,12 @@ The server <i>SHOULD</i> support these, but is not required.
197200
"status": 400,
198201
"headers": {
199202
"x-powered-by": "Express",
203+
"keep-alive": "timeout=5",
200204
"etag": "W/\"59f-wZcL/SqdL2p72c+22U9112bt9Sk\"",
201205
"date": "<timestamp>",
202206
"content-type": "application/json; charset=utf-8",
203207
"content-length": "1439",
204-
"connection": "close",
208+
"connection": "keep-alive",
205209
"cache-control": "no-store",
206210
"access-control-allow-origin": "*"
207211
},
@@ -246,11 +250,12 @@ The server <i>SHOULD</i> support these, but is not required.
246250
"status": 400,
247251
"headers": {
248252
"x-powered-by": "Express",
253+
"keep-alive": "timeout=5",
249254
"etag": "W/\"5ae-cH8StyqXwjsvF8Ml3ZMaXdrpW14\"",
250255
"date": "<timestamp>",
251256
"content-type": "application/json; charset=utf-8",
252257
"content-length": "1454",
253-
"connection": "close",
258+
"connection": "keep-alive",
254259
"cache-control": "no-store",
255260
"access-control-allow-origin": "*"
256261
},
@@ -295,11 +300,12 @@ The server <i>SHOULD</i> support these, but is not required.
295300
"status": 400,
296301
"headers": {
297302
"x-powered-by": "Express",
303+
"keep-alive": "timeout=5",
298304
"etag": "W/\"bb6-RYqD6OT7vEB5+Qz3CsAplDQcI6k\"",
299305
"date": "<timestamp>",
300306
"content-type": "application/json; charset=utf-8",
301307
"content-length": "2998",
302-
"connection": "close",
308+
"connection": "keep-alive",
303309
"cache-control": "no-store",
304310
"access-control-allow-origin": "*"
305311
},

implementations/express-graphql/README.md

+30-15
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,12 @@ The server <i>MAY</i> support these, but are truly optional. These are suggestio
6969
"status": 200,
7070
"headers": {
7171
"x-powered-by": "Express",
72+
"keep-alive": "timeout=5",
7273
"etag": "W/\"1f-yOwhVHjWKeagyuteVuktj+6mcMg\"",
7374
"date": "<timestamp>",
7475
"content-type": "application/json; charset=utf-8",
7576
"content-length": "31",
76-
"connection": "close"
77+
"connection": "keep-alive"
7778
},
7879
"body": {
7980
"data": {
@@ -92,11 +93,12 @@ The server <i>MAY</i> support these, but are truly optional. These are suggestio
9293
"status": 200,
9394
"headers": {
9495
"x-powered-by": "Express",
96+
"keep-alive": "timeout=5",
9597
"etag": "W/\"1f-yOwhVHjWKeagyuteVuktj+6mcMg\"",
9698
"date": "<timestamp>",
9799
"content-type": "application/json; charset=utf-8",
98100
"content-length": "31",
99-
"connection": "close"
101+
"connection": "keep-alive"
100102
},
101103
"body": {
102104
"data": {
@@ -115,11 +117,12 @@ The server <i>MAY</i> support these, but are truly optional. These are suggestio
115117
"status": 200,
116118
"headers": {
117119
"x-powered-by": "Express",
120+
"keep-alive": "timeout=5",
118121
"etag": "W/\"1f-yOwhVHjWKeagyuteVuktj+6mcMg\"",
119122
"date": "<timestamp>",
120123
"content-type": "application/json; charset=utf-8",
121124
"content-length": "31",
122-
"connection": "close"
125+
"connection": "keep-alive"
123126
},
124127
"body": {
125128
"data": {
@@ -138,11 +141,12 @@ The server <i>MAY</i> support these, but are truly optional. These are suggestio
138141
"status": 200,
139142
"headers": {
140143
"x-powered-by": "Express",
144+
"keep-alive": "timeout=5",
141145
"etag": "W/\"1f-yOwhVHjWKeagyuteVuktj+6mcMg\"",
142146
"date": "<timestamp>",
143147
"content-type": "application/json; charset=utf-8",
144148
"content-length": "31",
145-
"connection": "close"
149+
"connection": "keep-alive"
146150
},
147151
"body": {
148152
"data": {
@@ -161,11 +165,12 @@ The server <i>MAY</i> support these, but are truly optional. These are suggestio
161165
"status": 200,
162166
"headers": {
163167
"x-powered-by": "Express",
168+
"keep-alive": "timeout=5",
164169
"etag": "W/\"1f-yOwhVHjWKeagyuteVuktj+6mcMg\"",
165170
"date": "<timestamp>",
166171
"content-type": "application/json; charset=utf-8",
167172
"content-length": "31",
168-
"connection": "close"
173+
"connection": "keep-alive"
169174
},
170175
"body": {
171176
"data": {
@@ -184,11 +189,12 @@ The server <i>MAY</i> support these, but are truly optional. These are suggestio
184189
"status": 200,
185190
"headers": {
186191
"x-powered-by": "Express",
192+
"keep-alive": "timeout=5",
187193
"etag": "W/\"1f-yOwhVHjWKeagyuteVuktj+6mcMg\"",
188194
"date": "<timestamp>",
189195
"content-type": "application/json; charset=utf-8",
190196
"content-length": "31",
191-
"connection": "close"
197+
"connection": "keep-alive"
192198
},
193199
"body": {
194200
"data": {
@@ -207,11 +213,12 @@ The server <i>MAY</i> support these, but are truly optional. These are suggestio
207213
"status": 200,
208214
"headers": {
209215
"x-powered-by": "Express",
216+
"keep-alive": "timeout=5",
210217
"etag": "W/\"1f-yOwhVHjWKeagyuteVuktj+6mcMg\"",
211218
"date": "<timestamp>",
212219
"content-type": "application/json; charset=utf-8",
213220
"content-length": "31",
214-
"connection": "close"
221+
"connection": "keep-alive"
215222
},
216223
"body": {
217224
"data": {
@@ -230,11 +237,12 @@ The server <i>MAY</i> support these, but are truly optional. These are suggestio
230237
"status": 200,
231238
"headers": {
232239
"x-powered-by": "Express",
240+
"keep-alive": "timeout=5",
233241
"etag": "W/\"1f-yOwhVHjWKeagyuteVuktj+6mcMg\"",
234242
"date": "<timestamp>",
235243
"content-type": "application/json; charset=utf-8",
236244
"content-length": "31",
237-
"connection": "close"
245+
"connection": "keep-alive"
238246
},
239247
"body": {
240248
"data": {
@@ -253,11 +261,12 @@ The server <i>MAY</i> support these, but are truly optional. These are suggestio
253261
"status": 200,
254262
"headers": {
255263
"x-powered-by": "Express",
264+
"keep-alive": "timeout=5",
256265
"etag": "W/\"1f-yOwhVHjWKeagyuteVuktj+6mcMg\"",
257266
"date": "<timestamp>",
258267
"content-type": "application/json; charset=utf-8",
259268
"content-length": "31",
260-
"connection": "close"
269+
"connection": "keep-alive"
261270
},
262271
"body": {
263272
"data": {
@@ -276,11 +285,12 @@ The server <i>MAY</i> support these, but are truly optional. These are suggestio
276285
"status": 200,
277286
"headers": {
278287
"x-powered-by": "Express",
288+
"keep-alive": "timeout=5",
279289
"etag": "W/\"1f-yOwhVHjWKeagyuteVuktj+6mcMg\"",
280290
"date": "<timestamp>",
281291
"content-type": "application/json; charset=utf-8",
282292
"content-length": "31",
283-
"connection": "close"
293+
"connection": "keep-alive"
284294
},
285295
"body": {
286296
"data": {
@@ -299,11 +309,12 @@ The server <i>MAY</i> support these, but are truly optional. These are suggestio
299309
"status": 200,
300310
"headers": {
301311
"x-powered-by": "Express",
312+
"keep-alive": "timeout=5",
302313
"etag": "W/\"1f-yOwhVHjWKeagyuteVuktj+6mcMg\"",
303314
"date": "<timestamp>",
304315
"content-type": "application/json; charset=utf-8",
305316
"content-length": "31",
306-
"connection": "close"
317+
"connection": "keep-alive"
307318
},
308319
"body": {
309320
"data": {
@@ -327,11 +338,12 @@ The server <i>SHOULD</i> support these, but is not required.
327338
"status": 200,
328339
"headers": {
329340
"x-powered-by": "Express",
341+
"keep-alive": "timeout=5",
330342
"etag": "W/\"1f-yOwhVHjWKeagyuteVuktj+6mcMg\"",
331343
"date": "<timestamp>",
332344
"content-type": "application/json; charset=utf-8",
333345
"content-length": "31",
334-
"connection": "close"
346+
"connection": "keep-alive"
335347
},
336348
"body": {
337349
"data": {
@@ -350,11 +362,12 @@ The server <i>SHOULD</i> support these, but is not required.
350362
"status": 400,
351363
"headers": {
352364
"x-powered-by": "Express",
365+
"keep-alive": "timeout=5",
353366
"etag": "W/\"68-Xc/MwYKGMF54XYivaA3tsxvGHZM\"",
354367
"date": "<timestamp>",
355368
"content-type": "application/json; charset=utf-8",
356369
"content-length": "104",
357-
"connection": "close"
370+
"connection": "keep-alive"
358371
},
359372
"body": {
360373
"errors": [
@@ -381,11 +394,12 @@ The server <i>SHOULD</i> support these, but is not required.
381394
"status": 400,
382395
"headers": {
383396
"x-powered-by": "Express",
397+
"keep-alive": "timeout=5",
384398
"etag": "W/\"7b-vh2QJW5nlT/MclH/TbhHlNDXWZE\"",
385399
"date": "<timestamp>",
386400
"content-type": "application/json; charset=utf-8",
387401
"content-length": "123",
388-
"connection": "close"
402+
"connection": "keep-alive"
389403
},
390404
"body": {
391405
"errors": [
@@ -412,11 +426,12 @@ The server <i>SHOULD</i> support these, but is not required.
412426
"status": 400,
413427
"headers": {
414428
"x-powered-by": "Express",
429+
"keep-alive": "timeout=5",
415430
"etag": "W/\"c6-jKvd+KIdPY2/2i/wYj0ck5PZF20\"",
416431
"date": "<timestamp>",
417432
"content-type": "application/json; charset=utf-8",
418433
"content-length": "198",
419-
"connection": "close"
434+
"connection": "keep-alive"
420435
},
421436
"body": {
422437
"errors": [

implementations/graph-client/README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,11 @@ The server <i>MAY</i> support these, but are truly optional. These are suggestio
7979
"statusText": "OK",
8080
"status": 200,
8181
"headers": {
82+
"keep-alive": "timeout=5",
8283
"date": "<timestamp>",
8384
"content-type": "application/json; charset=utf-8",
8485
"content-length": "55",
85-
"connection": "close"
86+
"connection": "keep-alive"
8687
},
8788
"body": {
8889
"errors": [
@@ -102,10 +103,11 @@ The server <i>MAY</i> support these, but are truly optional. These are suggestio
102103
"statusText": "OK",
103104
"status": 200,
104105
"headers": {
106+
"keep-alive": "timeout=5",
105107
"date": "<timestamp>",
106108
"content-type": "application/json; charset=utf-8",
107109
"content-length": "55",
108-
"connection": "close"
110+
"connection": "keep-alive"
109111
},
110112
"body": {
111113
"errors": [
@@ -125,10 +127,11 @@ The server <i>MAY</i> support these, but are truly optional. These are suggestio
125127
"statusText": "OK",
126128
"status": 200,
127129
"headers": {
130+
"keep-alive": "timeout=5",
128131
"date": "<timestamp>",
129132
"content-type": "application/json; charset=utf-8",
130133
"content-length": "55",
131-
"connection": "close"
134+
"connection": "keep-alive"
132135
},
133136
"body": {
134137
"errors": [

0 commit comments

Comments
 (0)