Skip to content

Commit bcd3161

Browse files
refactor(audit-implementation): mask more headers, date header with format, omit long body, stable stringify (#43)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 7254e9e commit bcd3161

File tree

10 files changed

+2037
-1973
lines changed

10 files changed

+2037
-1973
lines changed

implementations/apollo-server/README.md

+240-239
Large diffs are not rendered by default.

implementations/deno/README.md

+223-212
Large diffs are not rendered by default.

implementations/express-graphql/README.md

+220-209
Large diffs are not rendered by default.

implementations/graphql-helix/README.md

+180-172
Large diffs are not rendered by default.

implementations/hotchocolate/README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,14 @@ The server _SHOULD_ support these, but is not required.
9595
9696
```json
9797
{
98-
"status": 200,
9998
"statusText": "OK",
99+
"status": 200,
100100
"headers": {
101-
"connection": "close",
102-
"content-type": "application/graphql-response+json;charset=utf-8",
103-
"date": "<timestamp>",
101+
"transfer-encoding": "chunked",
104102
"server": "Kestrel",
105-
"transfer-encoding": "chunked"
103+
"date": "<timestamp>",
104+
"content-type": "application/graphql-response+json;charset=utf-8",
105+
"connection": "close"
106106
},
107107
"body": {
108108
"data": {
@@ -120,14 +120,14 @@ The server _SHOULD_ support these, but is not required.
120120

121121
```json
122122
{
123-
"status": 200,
124123
"statusText": "OK",
124+
"status": 200,
125125
"headers": {
126-
"connection": "close",
127-
"content-type": "application/graphql-response+json;charset=utf-8",
128-
"date": "<timestamp>",
126+
"transfer-encoding": "chunked",
129127
"server": "Kestrel",
130-
"transfer-encoding": "chunked"
128+
"date": "<timestamp>",
129+
"content-type": "application/graphql-response+json;charset=utf-8",
130+
"connection": "close"
131131
},
132132
"body": {
133133
"data": {

0 commit comments

Comments
 (0)