diff --git a/.changeset/fluffy-planes-return.md b/.changeset/fluffy-planes-return.md deleted file mode 100644 index 393960b85aa..00000000000 --- a/.changeset/fluffy-planes-return.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -'@graphql-tools/executor-http': patch ---- - -Details in the extensions when an unexpected error occurs; - -```json -{ - "request": { - "url": "https://api.example.com/graphql", - "method": "POST", - "body": { - "query": "query { hello }" - } - }, - "response": { - "status": 500, - "statusText": "Internal Server Error", - "headers": { - "content-type": "application/json" - }, - "body": { - "errors": [ - { - "message": "Internal Server Error" - } - ] - } - } -} -``` diff --git a/packages/executors/http/CHANGELOG.md b/packages/executors/http/CHANGELOG.md index 247ddedb167..e72304eb1ce 100644 --- a/packages/executors/http/CHANGELOG.md +++ b/packages/executors/http/CHANGELOG.md @@ -1,5 +1,39 @@ # @graphql-tools/executor-http +## 1.1.6 + +### Patch Changes + +- [`f9dd3d6`](https://github.com/ardatan/graphql-tools/commit/f9dd3d6bb4b160e35a7f2f3c6b31171b71f21040) + Thanks [@ardatan](https://github.com/ardatan)! - Details in the extensions when an unexpected + error occurs; + + ```json + { + "request": { + "url": "https://api.example.com/graphql", + "method": "POST", + "body": { + "query": "query { hello }" + } + }, + "response": { + "status": 500, + "statusText": "Internal Server Error", + "headers": { + "content-type": "application/json" + }, + "body": { + "errors": [ + { + "message": "Internal Server Error" + } + ] + } + } + } + ``` + ## 1.1.5 ### Patch Changes diff --git a/packages/executors/http/package.json b/packages/executors/http/package.json index cf48df73f85..85d360ece87 100644 --- a/packages/executors/http/package.json +++ b/packages/executors/http/package.json @@ -1,6 +1,6 @@ { "name": "@graphql-tools/executor-http", - "version": "1.1.5", + "version": "1.1.6", "type": "module", "description": "A set of utils for faster development of GraphQL tools", "repository": {