From b6d05eef314f96b5bc778fea5ed703c95e792670 Mon Sep 17 00:00:00 2001 From: TheGuildBot <59414373+theguild-bot@users.noreply.github.com> Date: Wed, 21 Aug 2024 09:35:09 +0300 Subject: [PATCH] chore(release): update monorepo packages versions (#6459) Co-authored-by: github-actions[bot] --- .changeset/fluffy-planes-return.md | 31 ------------------------- packages/executors/http/CHANGELOG.md | 34 ++++++++++++++++++++++++++++ packages/executors/http/package.json | 2 +- 3 files changed, 35 insertions(+), 32 deletions(-) delete mode 100644 .changeset/fluffy-planes-return.md 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": {