From a2a6921efa0a92b3d7f5c1cab9e64abf17292551 Mon Sep 17 00:00:00 2001 From: "shopify-github-actions-access[bot]" <109624739+shopify-github-actions-access[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 13:58:33 -0700 Subject: [PATCH] Version Packages (#2833) Co-authored-by: github-actions[bot] --- .changeset/rich-papayas-clean.md | 8 -------- packages/graphql-testing/CHANGELOG.md | 9 +++++++++ packages/graphql-testing/package.json | 2 +- 3 files changed, 10 insertions(+), 9 deletions(-) delete mode 100644 .changeset/rich-papayas-clean.md diff --git a/.changeset/rich-papayas-clean.md b/.changeset/rich-papayas-clean.md deleted file mode 100644 index 7a0fd81638..0000000000 --- a/.changeset/rich-papayas-clean.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@shopify/graphql-testing': patch ---- - -MockGraphQLResponse should allow an ExecutionResult containing any data. -GraphQL v15 defaulted ExecutionResult's data to be an object containing any keys -but v16 narrowed that down to use `unknown` instead of `any`. This change -explicitly uses the default behaviour of allowing any from v15. diff --git a/packages/graphql-testing/CHANGELOG.md b/packages/graphql-testing/CHANGELOG.md index b5303aa70a..d633fad41f 100644 --- a/packages/graphql-testing/CHANGELOG.md +++ b/packages/graphql-testing/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 8.2.1 + +### Patch Changes + +- [#2832](https://github.com/Shopify/quilt/pull/2832) [`e1fd441`](https://github.com/Shopify/quilt/commit/e1fd441e259c4454e59b932320c68dc693a38067) Thanks [@nattydodd](https://github.com/nattydodd)! - MockGraphQLResponse should allow an ExecutionResult containing any data. + GraphQL v15 defaulted ExecutionResult's data to be an object containing any keys + but v16 narrowed that down to use `unknown` instead of `any`. This change + explicitly uses the default behaviour of allowing any from v15. + ## 8.2.0 ### Minor Changes diff --git a/packages/graphql-testing/package.json b/packages/graphql-testing/package.json index 0f65fedaa5..4928e690c6 100644 --- a/packages/graphql-testing/package.json +++ b/packages/graphql-testing/package.json @@ -1,6 +1,6 @@ { "name": "@shopify/graphql-testing", - "version": "8.2.0", + "version": "8.2.1", "license": "MIT", "description": "Utilities to create mock GraphQL factories", "main": "index.js",