Skip to content

Commit d59538d

Browse files
committed
2.0.1
1 parent 2967dbc commit d59538d

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
99

10-
## [v2.0.0](https://github.com/little-core-labs/gqlr/compare/v1.2.0...v2.0.0)
10+
## [v2.0.1](https://github.com/little-core-labs/gqlr/compare/v2.0.0...v2.0.1)
11+
12+
### Merged
13+
14+
- bug: fix some issues with the Error object [`#18`](https://github.com/little-core-labs/gqlr/pull/18)
15+
16+
## [v2.0.0](https://github.com/little-core-labs/gqlr/compare/v1.2.0...v2.0.0) - 2020-11-14
1117

1218
### Merged
1319

cjs/index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class GraphQLClient {
2525
const { headers, status } = response
2626
return { ...responseBody, headers, status }
2727
} else {
28-
const errorResponseBody = typeof result === 'string' ? { error: responseBody } : responseBody
28+
const errorResponseBody = typeof responseBody === 'string' ? { error: responseBody } : responseBody
2929

3030
let requestBodyObject = requestBody
3131
try {
@@ -122,7 +122,7 @@ function generateError ({ errorResponseBody, response, requestBodyObject }) {
122122
'There was an error with the request.'
123123
const error = new Error(message)
124124

125-
error.response = { ...errorResponseBody, status: response.status, headers: response.headers }
125+
error.response = { ...errorResponseBody, status: response.status, headers: Object.fromEntries(response.headers.entries()) }
126126
error.request = requestBodyObject
127127

128128
return error

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gqlr",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "WIP: (g)raph(ql)-(r)equest. A simplified fork of graphql-request",
55
"type": "module",
66
"main": "cjs/index.js",

0 commit comments

Comments
 (0)