From e7e227de0557eaa8d62336227957da365f4a0103 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 18 Jul 2022 13:09:24 +1000 Subject: [PATCH] Version Packages (#99) Co-authored-by: github-actions[bot] --- .changeset/orange-bugs-do.md | 21 --- .changeset/young-experts-deny.md | 5 - packages/apollo/CHANGELOG.md | 26 +++ packages/apollo/package.json | 4 +- packages/compiler/CHANGELOG.md | 6 + packages/compiler/package.json | 2 +- packages/fetch/CHANGELOG.md | 7 + packages/fetch/package.json | 4 +- packages/next/CHANGELOG.md | 7 + packages/next/package.json | 2 +- packages/tag/CHANGELOG.md | 21 +++ packages/tag/package.json | 2 +- pnpm-lock.yaml | 300 ++++++------------------------- test-app/CHANGELOG.md | 10 ++ test-app/package.json | 10 +- 15 files changed, 143 insertions(+), 284 deletions(-) delete mode 100644 .changeset/orange-bugs-do.md delete mode 100644 .changeset/young-experts-deny.md diff --git a/.changeset/orange-bugs-do.md b/.changeset/orange-bugs-do.md deleted file mode 100644 index 0222b94..0000000 --- a/.changeset/orange-bugs-do.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -"@ts-gql/apollo": minor -"@ts-gql/tag": minor ---- - -`ts-gql`'s `TypedDocumentNode` type is now compatible with [`@graphql-typed-document-node/core`](https://github.com/dotansimha/graphql-typed-document-node)'s `TypedDocumentNode`. - -The recommended usage of ts-gql with Apollo Client is now to use `@apollo/client` directly. This also allows ts-gql to be used with urql and any other GraphQL client that supports `@graphql-typed-document-node/core`. The `@ts-gql/apollo` package can still be used and may be updated in the future to avoid breakage if that makes sense but it is no longer the recommended pattern. - -When using `@apollo/client` over `@ts-gql/apollo`, it's important to note that some type safety will be lost: - -- Variables are always optional so omitting variables when they are required will no longer be caught by TypeScript -- `refetchQueries` will accept any string so passing names to queries that don't exist will not cause a TypeScript error. You should likely pass in the document with the query itself to avoid mis-typing query names causing errors. - -Because `@graphql-typed-document-node/core`'s `TypedDocumentNode` extends `graphql`'s `DocumentNode`, this means that `getDocumentNode` from `@ts-gql/tag` is no longer necessary. This could be another cause for bugs if there are two APIs, one that accepts a `TypedDocumentNode` that you should use and another that accepts `DocumentNode` which you shouldn't use, you could accidentally use the API that accepts `DocumentNode` over the one that accepts `TypedDocumentNode` where previously you would get an error when passing a `TypedDocumentNode` to something accepting a `DocumentNode`. - -#### Context behind this change - -When ts-gql was originally written, `@graphql-typed-document-node/core` did not exist. Since then, `@graphql-typed-document-node/core` has become used by Apollo Client and urql. Given that, maintaining types to adapt Apollo Client to ts-gql's `TypedDocumentNode` seems less sensible. - -While this does mean that some of ts-gql's safety is reduced, this seems like an appropriate trade-off so that ts-gql can reduce maintaince burden, avoid imposing opinions on top of GraphQL clients and support more GraphQL clients without having to write types for them specifically. diff --git a/.changeset/young-experts-deny.md b/.changeset/young-experts-deny.md deleted file mode 100644 index 2424dd2..0000000 --- a/.changeset/young-experts-deny.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@ts-gql/compiler": patch ---- - -When an operation has no variables, the variables type will now be `{}` instead of `{ [key: string]: never }`. The `{ [key: string]: never }` type attempts to describe an object with no properties but it means that a `TypedDocumentNode` with no variables won't be alllowed to be passed to something expecting a `TypedDocumentNode` with the variables of `{ [key: string]: any }` diff --git a/packages/apollo/CHANGELOG.md b/packages/apollo/CHANGELOG.md index 864e8a5..1e76b93 100644 --- a/packages/apollo/CHANGELOG.md +++ b/packages/apollo/CHANGELOG.md @@ -1,5 +1,31 @@ # @ts-gql/apollo +## 0.12.0 + +### Minor Changes + +- [#98](https://github.com/Thinkmill/ts-gql/pull/98) [`bc8d6eb`](https://github.com/Thinkmill/ts-gql/commit/bc8d6ebbf1021829de24d3c916dad5e0b3ab1edf) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - `ts-gql`'s `TypedDocumentNode` type is now compatible with [`@graphql-typed-document-node/core`](https://github.com/dotansimha/graphql-typed-document-node)'s `TypedDocumentNode`. + + The recommended usage of ts-gql with Apollo Client is now to use `@apollo/client` directly. This also allows ts-gql to be used with urql and any other GraphQL client that supports `@graphql-typed-document-node/core`. The `@ts-gql/apollo` package can still be used and may be updated in the future to avoid breakage if that makes sense but it is no longer the recommended pattern. + + When using `@apollo/client` over `@ts-gql/apollo`, it's important to note that some type safety will be lost: + + - Variables are always optional so omitting variables when they are required will no longer be caught by TypeScript + - `refetchQueries` will accept any string so passing names to queries that don't exist will not cause a TypeScript error. You should likely pass in the document with the query itself to avoid mis-typing query names causing errors. + + Because `@graphql-typed-document-node/core`'s `TypedDocumentNode` extends `graphql`'s `DocumentNode`, this means that `getDocumentNode` from `@ts-gql/tag` is no longer necessary. This could be another cause for bugs if there are two APIs, one that accepts a `TypedDocumentNode` that you should use and another that accepts `DocumentNode` which you shouldn't use, you could accidentally use the API that accepts `DocumentNode` over the one that accepts `TypedDocumentNode` where previously you would get an error when passing a `TypedDocumentNode` to something accepting a `DocumentNode`. + + #### Context behind this change + + When ts-gql was originally written, `@graphql-typed-document-node/core` did not exist. Since then, `@graphql-typed-document-node/core` has become used by Apollo Client and urql. Given that, maintaining types to adapt Apollo Client to ts-gql's `TypedDocumentNode` seems less sensible. + + While this does mean that some of ts-gql's safety is reduced, this seems like an appropriate trade-off so that ts-gql can reduce maintaince burden, avoid imposing opinions on top of GraphQL clients and support more GraphQL clients without having to write types for them specifically. + +### Patch Changes + +- Updated dependencies [[`bc8d6eb`](https://github.com/Thinkmill/ts-gql/commit/bc8d6ebbf1021829de24d3c916dad5e0b3ab1edf)]: + - @ts-gql/tag@0.7.0 + ## 0.11.2 ### Patch Changes diff --git a/packages/apollo/package.json b/packages/apollo/package.json index 197b479..a72d089 100644 --- a/packages/apollo/package.json +++ b/packages/apollo/package.json @@ -1,11 +1,11 @@ { "name": "@ts-gql/apollo", - "version": "0.11.2", + "version": "0.12.0", "main": "dist/apollo.cjs.js", "module": "dist/apollo.esm.js", "license": "MIT", "dependencies": { - "@ts-gql/tag": "^0.6.1" + "@ts-gql/tag": "^0.7.0" }, "peerDependencies": { "@apollo/client": "*", diff --git a/packages/compiler/CHANGELOG.md b/packages/compiler/CHANGELOG.md index 49028d9..250e46e 100644 --- a/packages/compiler/CHANGELOG.md +++ b/packages/compiler/CHANGELOG.md @@ -1,5 +1,11 @@ # @ts-gql/compiler +## 0.15.3 + +### Patch Changes + +- [#98](https://github.com/Thinkmill/ts-gql/pull/98) [`bc8d6eb`](https://github.com/Thinkmill/ts-gql/commit/bc8d6ebbf1021829de24d3c916dad5e0b3ab1edf) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - When an operation has no variables, the variables type will now be `{}` instead of `{ [key: string]: never }`. The `{ [key: string]: never }` type attempts to describe an object with no properties but it means that a `TypedDocumentNode` with no variables won't be alllowed to be passed to something expecting a `TypedDocumentNode` with the variables of `{ [key: string]: any }` + ## 0.15.2 ### Patch Changes diff --git a/packages/compiler/package.json b/packages/compiler/package.json index e555233..d517ddb 100644 --- a/packages/compiler/package.json +++ b/packages/compiler/package.json @@ -1,6 +1,6 @@ { "name": "@ts-gql/compiler", - "version": "0.15.2", + "version": "0.15.3", "main": "dist/compiler.cjs.js", "module": "dist/compiler.esm.js", "license": "MIT", diff --git a/packages/fetch/CHANGELOG.md b/packages/fetch/CHANGELOG.md index 9e36eff..9dc1030 100644 --- a/packages/fetch/CHANGELOG.md +++ b/packages/fetch/CHANGELOG.md @@ -1,5 +1,12 @@ # @ts-gql/fetch +## 0.1.2 + +### Patch Changes + +- Updated dependencies [[`bc8d6eb`](https://github.com/Thinkmill/ts-gql/commit/bc8d6ebbf1021829de24d3c916dad5e0b3ab1edf)]: + - @ts-gql/tag@0.7.0 + ## 0.1.1 ### Patch Changes diff --git a/packages/fetch/package.json b/packages/fetch/package.json index 5ef9cf4..254fcc7 100644 --- a/packages/fetch/package.json +++ b/packages/fetch/package.json @@ -1,11 +1,11 @@ { "name": "@ts-gql/fetch", - "version": "0.1.1", + "version": "0.1.2", "main": "dist/fetch.cjs.js", "module": "dist/fetch.esm.js", "license": "MIT", "dependencies": { - "@ts-gql/tag": "^0.6.1" + "@ts-gql/tag": "^0.7.0" }, "peerDependencies": { "graphql": "15 || 16" diff --git a/packages/next/CHANGELOG.md b/packages/next/CHANGELOG.md index 105369a..45d7258 100644 --- a/packages/next/CHANGELOG.md +++ b/packages/next/CHANGELOG.md @@ -1,5 +1,12 @@ # @ts-gql/next +## 16.0.3 + +### Patch Changes + +- Updated dependencies [[`bc8d6eb`](https://github.com/Thinkmill/ts-gql/commit/bc8d6ebbf1021829de24d3c916dad5e0b3ab1edf)]: + - @ts-gql/compiler@0.15.3 + ## 16.0.2 ### Patch Changes diff --git a/packages/next/package.json b/packages/next/package.json index 0e0a3d2..4b1bfcd 100644 --- a/packages/next/package.json +++ b/packages/next/package.json @@ -1,6 +1,6 @@ { "name": "@ts-gql/next", - "version": "16.0.2", + "version": "16.0.3", "main": "dist/next.cjs.js", "module": "dist/next.esm.js", "license": "MIT", diff --git a/packages/tag/CHANGELOG.md b/packages/tag/CHANGELOG.md index 38d6f26..e06bd99 100644 --- a/packages/tag/CHANGELOG.md +++ b/packages/tag/CHANGELOG.md @@ -1,5 +1,26 @@ # @ts-gql/tag +## 0.7.0 + +### Minor Changes + +- [#98](https://github.com/Thinkmill/ts-gql/pull/98) [`bc8d6eb`](https://github.com/Thinkmill/ts-gql/commit/bc8d6ebbf1021829de24d3c916dad5e0b3ab1edf) Thanks [@mitchellhamilton](https://github.com/mitchellhamilton)! - `ts-gql`'s `TypedDocumentNode` type is now compatible with [`@graphql-typed-document-node/core`](https://github.com/dotansimha/graphql-typed-document-node)'s `TypedDocumentNode`. + + The recommended usage of ts-gql with Apollo Client is now to use `@apollo/client` directly. This also allows ts-gql to be used with urql and any other GraphQL client that supports `@graphql-typed-document-node/core`. The `@ts-gql/apollo` package can still be used and may be updated in the future to avoid breakage if that makes sense but it is no longer the recommended pattern. + + When using `@apollo/client` over `@ts-gql/apollo`, it's important to note that some type safety will be lost: + + - Variables are always optional so omitting variables when they are required will no longer be caught by TypeScript + - `refetchQueries` will accept any string so passing names to queries that don't exist will not cause a TypeScript error. You should likely pass in the document with the query itself to avoid mis-typing query names causing errors. + + Because `@graphql-typed-document-node/core`'s `TypedDocumentNode` extends `graphql`'s `DocumentNode`, this means that `getDocumentNode` from `@ts-gql/tag` is no longer necessary. This could be another cause for bugs if there are two APIs, one that accepts a `TypedDocumentNode` that you should use and another that accepts `DocumentNode` which you shouldn't use, you could accidentally use the API that accepts `DocumentNode` over the one that accepts `TypedDocumentNode` where previously you would get an error when passing a `TypedDocumentNode` to something accepting a `DocumentNode`. + + #### Context behind this change + + When ts-gql was originally written, `@graphql-typed-document-node/core` did not exist. Since then, `@graphql-typed-document-node/core` has become used by Apollo Client and urql. Given that, maintaining types to adapt Apollo Client to ts-gql's `TypedDocumentNode` seems less sensible. + + While this does mean that some of ts-gql's safety is reduced, this seems like an appropriate trade-off so that ts-gql can reduce maintaince burden, avoid imposing opinions on top of GraphQL clients and support more GraphQL clients without having to write types for them specifically. + ## 0.6.1 ### Patch Changes diff --git a/packages/tag/package.json b/packages/tag/package.json index 74f0f2e..e43d697 100644 --- a/packages/tag/package.json +++ b/packages/tag/package.json @@ -1,6 +1,6 @@ { "name": "@ts-gql/tag", - "version": "0.6.1", + "version": "0.7.0", "main": "dist/tag.cjs.js", "module": "dist/tag.esm.js", "license": "MIT", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 820a18b..882db54 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1,4 +1,4 @@ -lockfileVersion: 5.4 +lockfileVersion: 5.3 importers: @@ -38,8 +38,8 @@ importers: '@preconstruct/cli': 2.1.0 '@ts-gql/eslint-plugin': link:packages/eslint-plugin '@types/jest': 25.2.1 - '@typescript-eslint/eslint-plugin': 4.14.2_244q5h7haj6xnpajhd7553ps5q - '@typescript-eslint/parser': 4.14.2_esndoj7uhzb4vgy4iv7xtori4m + '@typescript-eslint/eslint-plugin': 4.14.2_d7390e9fe7027d76bc0938ffdeedf2ec + '@typescript-eslint/parser': 4.14.2_eslint@6.8.0+typescript@4.5.2 babel-jest: 25.4.0_@babel+core@7.9.6 babel-plugin-macros: 2.8.0 eslint: 6.8.0 @@ -53,13 +53,13 @@ importers: packages/apollo: specifiers: '@apollo/client': ^3.1.2 - '@ts-gql/tag': ^0.6.1 + '@ts-gql/tag': ^0.7.0 graphql: ^16.3.0 react: ^16.14.0 dependencies: '@ts-gql/tag': link:../tag devDependencies: - '@apollo/client': 3.1.2_34gekfjjlqg4id2bwsjt4k32cq + '@apollo/client': 3.1.2_graphql@16.3.0+react@16.14.0 graphql: 16.3.0 react: 16.14.0 @@ -154,18 +154,18 @@ importers: dependencies: '@babel/runtime': 7.9.2 '@ts-gql/config': link:../config - '@typescript-eslint/experimental-utils': 2.34.0 + '@typescript-eslint/experimental-utils': 2.34.0_eslint@6.8.0+typescript@4.5.2 find-pkg-json-field-up: 1.0.1 slash: 3.0.0 devDependencies: '@ts-gql/tag': link:../tag - '@typescript-eslint/parser': 4.14.2 - eslint-snapshot-test: 3.0.0 + '@typescript-eslint/parser': 4.14.2_eslint@6.8.0+typescript@4.5.2 + eslint-snapshot-test: 3.0.0_eslint@6.8.0 graphql: 16.3.0 packages/fetch: specifiers: - '@ts-gql/tag': ^0.6.1 + '@ts-gql/tag': ^0.7.0 graphql: ^16.3.0 dependencies: '@ts-gql/tag': link:../tag @@ -198,11 +198,11 @@ importers: specifiers: '@apollo/client': ^3.6.9 '@ts-gql/babel-plugin': ^0.1.0 - '@ts-gql/compiler': ^0.15.1 + '@ts-gql/compiler': ^0.15.3 '@ts-gql/eslint-plugin': ^0.8.1 - '@ts-gql/fetch': ^0.1.0 - '@ts-gql/next': ^16.0.1 - '@ts-gql/tag': ^0.6.1 + '@ts-gql/fetch': ^0.1.2 + '@ts-gql/next': ^16.0.3 + '@ts-gql/tag': ^0.7.0 '@types/node': ^13.13.2 '@types/react': ^16.9.43 '@types/react-dom': ^16.9.8 @@ -213,7 +213,7 @@ importers: react-dom: ^16.14.0 urql: ^2.2.0 dependencies: - '@apollo/client': 3.6.9_react@16.14.0 + '@apollo/client': 3.6.9_graphql@16.3.0+react@16.14.0 '@ts-gql/babel-plugin': link:../packages/babel-plugin '@ts-gql/compiler': link:../packages/compiler '@ts-gql/eslint-plugin': link:../packages/eslint-plugin @@ -223,16 +223,16 @@ importers: '@types/node': 13.13.2 '@types/react': 16.9.43 '@types/react-dom': 16.9.8 - '@typescript-eslint/parser': 4.14.2 - next: 12.0.3_wcqkhtmu7mswc6yz4uyexck3ty + '@typescript-eslint/parser': 4.14.2_eslint@6.8.0+typescript@4.5.2 + next: 12.0.3_1469fadccb0d92a9481e657400186d42 raw-loader: 4.0.1 react: 16.14.0 react-dom: 16.14.0_react@16.14.0 - urql: 2.2.2_react@16.14.0 + urql: 2.2.2_graphql@16.3.0+react@16.14.0 packages: - /@apollo/client/3.1.2_34gekfjjlqg4id2bwsjt4k32cq: + /@apollo/client/3.1.2_graphql@16.3.0+react@16.14.0: resolution: {integrity: sha512-GaA/J0CDSSNe0HVm1abeOIJA3M4fs9Ih7wF2z1AI2SLqv5TBLvwBxh0+0+jCSntPZ3gnDQvR7MHjmXota5V1LQ==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 @@ -258,7 +258,7 @@ packages: zen-observable: 0.8.15 dev: true - /@apollo/client/3.6.9_react@16.14.0: + /@apollo/client/3.6.9_graphql@16.3.0+react@16.14.0: resolution: {integrity: sha512-Y1yu8qa2YeaCUBVuw08x8NHenFi0sw2I3KCu7Kw9mDSu86HmmtHJkCAifKVrN2iPgDTW/BbP3EpSV8/EQCcxZA==} peerDependencies: graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 @@ -273,11 +273,12 @@ packages: subscriptions-transport-ws: optional: true dependencies: - '@graphql-typed-document-node/core': 3.1.1 + '@graphql-typed-document-node/core': 3.1.1_graphql@16.3.0 '@wry/context': 0.6.1 '@wry/equality': 0.5.2 '@wry/trie': 0.3.1 - graphql-tag: 2.12.6 + graphql: 16.3.0 + graphql-tag: 2.12.6_graphql@16.3.0 hoist-non-react-statics: 3.3.2 optimism: 0.16.1 prop-types: 15.7.2 @@ -368,8 +369,6 @@ packages: resolve: 1.16.1 semver: 5.7.1 source-map: 0.5.7 - transitivePeerDependencies: - - supports-color dev: false /@babel/core/7.9.6: @@ -392,8 +391,6 @@ packages: resolve: 1.17.0 semver: 5.7.1 source-map: 0.5.7 - transitivePeerDependencies: - - supports-color dev: false /@babel/generator/7.10.5: @@ -448,8 +445,6 @@ packages: dependencies: '@babel/helper-explode-assignable-expression': 7.8.3 '@babel/types': 7.9.5 - transitivePeerDependencies: - - supports-color dev: false /@babel/helper-builder-react-jsx-experimental/7.10.5: @@ -536,8 +531,6 @@ packages: '@babel/helper-plugin-utils': 7.8.3 '@babel/helper-replace-supers': 7.8.6 '@babel/helper-split-export-declaration': 7.8.3 - transitivePeerDependencies: - - supports-color dev: false /@babel/helper-create-regexp-features-plugin/7.8.8_@babel+core@7.9.6: @@ -572,8 +565,6 @@ packages: dependencies: '@babel/traverse': 7.9.5 '@babel/types': 7.16.0 - transitivePeerDependencies: - - supports-color dev: false /@babel/helper-function-name/7.10.4: @@ -681,8 +672,6 @@ packages: '@babel/template': 7.10.4 '@babel/types': 7.16.0 lodash: 4.17.19 - transitivePeerDependencies: - - supports-color dev: false /@babel/helper-module-transforms/7.16.0: @@ -711,8 +700,6 @@ packages: '@babel/template': 7.8.6 '@babel/types': 7.9.5 lodash: 4.17.15 - transitivePeerDependencies: - - supports-color dev: false /@babel/helper-optimise-call-expression/7.10.4: @@ -761,8 +748,6 @@ packages: '@babel/template': 7.8.6 '@babel/traverse': 7.9.5 '@babel/types': 7.9.5 - transitivePeerDependencies: - - supports-color dev: false /@babel/helper-replace-supers/7.10.4: @@ -772,8 +757,6 @@ packages: '@babel/helper-optimise-call-expression': 7.10.4 '@babel/traverse': 7.10.5 '@babel/types': 7.16.0 - transitivePeerDependencies: - - supports-color dev: false /@babel/helper-replace-supers/7.16.0: @@ -795,8 +778,6 @@ packages: '@babel/helper-optimise-call-expression': 7.8.3 '@babel/traverse': 7.9.5 '@babel/types': 7.9.5 - transitivePeerDependencies: - - supports-color dev: false /@babel/helper-simple-access/7.10.4: @@ -866,8 +847,6 @@ packages: '@babel/template': 7.8.6 '@babel/traverse': 7.9.5 '@babel/types': 7.16.0 - transitivePeerDependencies: - - supports-color dev: false /@babel/helpers/7.16.0: @@ -887,8 +866,6 @@ packages: '@babel/template': 7.8.6 '@babel/traverse': 7.9.5 '@babel/types': 7.16.0 - transitivePeerDependencies: - - supports-color dev: false /@babel/helpers/7.9.6: @@ -897,8 +874,6 @@ packages: '@babel/template': 7.8.6 '@babel/traverse': 7.9.6 '@babel/types': 7.9.6 - transitivePeerDependencies: - - supports-color dev: false /@babel/highlight/7.10.4: @@ -973,8 +948,6 @@ packages: '@babel/helper-plugin-utils': 7.8.3 '@babel/helper-remap-async-to-generator': 7.8.3 '@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.9.6 - transitivePeerDependencies: - - supports-color dev: false /@babel/plugin-proposal-class-properties/7.10.4_@babel+core@7.16.0: @@ -1181,22 +1154,23 @@ packages: '@babel/helper-plugin-utils': 7.8.3 dev: false - /@babel/plugin-syntax-jsx/7.14.5: + /@babel/plugin-syntax-jsx/7.14.5_@babel+core@7.16.0: resolution: {integrity: sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: + '@babel/core': 7.16.0 '@babel/helper-plugin-utils': 7.14.5 dev: false - /@babel/plugin-syntax-jsx/7.14.5_@babel+core@7.16.0: + /@babel/plugin-syntax-jsx/7.14.5_@babel+core@7.9.6: resolution: {integrity: sha512-ohuFIsOMXJnbOMRfX7/w7LocdR6R7whhuRD4ax8IipLcLPlZGJKkBxgHp++U4N/vKyU16/YDQr2f5seajD3jIw==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0-0 dependencies: - '@babel/core': 7.16.0 + '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.14.5 dev: false @@ -1371,8 +1345,6 @@ packages: '@babel/helper-module-imports': 7.8.3 '@babel/helper-plugin-utils': 7.8.3 '@babel/helper-remap-async-to-generator': 7.8.3 - transitivePeerDependencies: - - supports-color dev: false /@babel/plugin-transform-block-scoped-functions/7.10.4_@babel+core@7.16.0: @@ -1444,8 +1416,6 @@ packages: '@babel/helper-replace-supers': 7.8.6 '@babel/helper-split-export-declaration': 7.8.3 globals: 11.12.0 - transitivePeerDependencies: - - supports-color dev: false /@babel/plugin-transform-computed-properties/7.10.4_@babel+core@7.16.0: @@ -1511,8 +1481,6 @@ packages: '@babel/core': 7.9.6 '@babel/helper-builder-binary-assignment-operator-visitor': 7.8.3 '@babel/helper-plugin-utils': 7.8.3 - transitivePeerDependencies: - - supports-color dev: false /@babel/plugin-transform-flow-strip-types/7.10.4_@babel+core@7.16.0: @@ -1608,8 +1576,6 @@ packages: '@babel/helper-module-transforms': 7.9.0 '@babel/helper-plugin-utils': 7.8.3 babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color dev: false /@babel/plugin-transform-modules-commonjs/7.10.4_@babel+core@7.16.0: @@ -1622,8 +1588,6 @@ packages: '@babel/helper-plugin-utils': 7.10.4 '@babel/helper-simple-access': 7.10.4 babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color dev: false /@babel/plugin-transform-modules-commonjs/7.10.4_@babel+core@7.9.6: @@ -1636,8 +1600,6 @@ packages: '@babel/helper-plugin-utils': 7.10.4 '@babel/helper-simple-access': 7.10.4 babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color dev: false /@babel/plugin-transform-modules-commonjs/7.9.0_@babel+core@7.9.6: @@ -1650,8 +1612,6 @@ packages: '@babel/helper-plugin-utils': 7.8.3 '@babel/helper-simple-access': 7.8.3 babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color dev: false /@babel/plugin-transform-modules-systemjs/7.9.0_@babel+core@7.9.6: @@ -1664,8 +1624,6 @@ packages: '@babel/helper-module-transforms': 7.9.0 '@babel/helper-plugin-utils': 7.8.3 babel-plugin-dynamic-import-node: 2.3.3 - transitivePeerDependencies: - - supports-color dev: false /@babel/plugin-transform-modules-umd/7.9.0_@babel+core@7.9.6: @@ -1676,8 +1634,6 @@ packages: '@babel/core': 7.9.6 '@babel/helper-module-transforms': 7.9.0 '@babel/helper-plugin-utils': 7.8.3 - transitivePeerDependencies: - - supports-color dev: false /@babel/plugin-transform-named-capturing-groups-regex/7.8.3_@babel+core@7.9.6: @@ -1718,8 +1674,6 @@ packages: '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 '@babel/helper-replace-supers': 7.8.6 - transitivePeerDependencies: - - supports-color dev: false /@babel/plugin-transform-parameters/7.10.5_@babel+core@7.16.0: @@ -1947,8 +1901,6 @@ packages: '@babel/helper-create-class-features-plugin': 7.9.5_@babel+core@7.9.6 '@babel/helper-plugin-utils': 7.8.3 '@babel/plugin-syntax-typescript': 7.8.3_@babel+core@7.9.6 - transitivePeerDependencies: - - supports-color dev: false /@babel/plugin-transform-unicode-regex/7.8.3_@babel+core@7.9.6: @@ -2027,8 +1979,6 @@ packages: invariant: 2.2.4 levenary: 1.1.1 semver: 5.7.1 - transitivePeerDependencies: - - supports-color dev: false /@babel/preset-modules/0.1.3_@babel+core@7.9.6: @@ -2066,8 +2016,6 @@ packages: '@babel/core': 7.9.6 '@babel/helper-plugin-utils': 7.8.3 '@babel/plugin-transform-typescript': 7.9.4_@babel+core@7.9.6 - transitivePeerDependencies: - - supports-color dev: false /@babel/runtime/7.11.2: @@ -2125,8 +2073,6 @@ packages: debug: 4.1.1 globals: 11.12.0 lodash: 4.17.19 - transitivePeerDependencies: - - supports-color dev: false /@babel/traverse/7.16.0: @@ -2158,8 +2104,6 @@ packages: debug: 4.1.1 globals: 11.12.0 lodash: 4.17.15 - transitivePeerDependencies: - - supports-color dev: false /@babel/traverse/7.9.6: @@ -2174,8 +2118,6 @@ packages: debug: 4.1.1 globals: 11.12.0 lodash: 4.17.15 - transitivePeerDependencies: - - supports-color dev: false /@babel/types/7.10.5: @@ -2532,12 +2474,6 @@ packages: tslib: 2.3.1 dev: false - /@graphql-typed-document-node/core/3.1.1: - resolution: {integrity: sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==} - peerDependencies: - graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - dev: false - /@graphql-typed-document-node/core/3.1.1_graphql@16.3.0: resolution: {integrity: sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==} peerDependencies: @@ -2624,7 +2560,6 @@ packages: transitivePeerDependencies: - bufferutil - canvas - - supports-color - utf-8-validate dev: false @@ -2677,8 +2612,6 @@ packages: v8-to-istanbul: 4.1.3 optionalDependencies: node-notifier: 6.0.0 - transitivePeerDependencies: - - supports-color dev: false /@jest/source-map/25.2.6: @@ -2711,7 +2644,6 @@ packages: transitivePeerDependencies: - bufferutil - canvas - - supports-color - utf-8-validate dev: false @@ -2735,8 +2667,6 @@ packages: slash: 3.0.0 source-map: 0.6.1 write-file-atomic: 3.0.3 - transitivePeerDependencies: - - supports-color dev: false /@jest/types/25.4.0: @@ -2768,8 +2698,6 @@ packages: semver: 6.3.0 spawndamnit: 2.0.0 validate-npm-package-name: 3.0.0 - transitivePeerDependencies: - - supports-color dev: false /@manypkg/find-root/1.0.0: @@ -2831,7 +2759,7 @@ packages: resolution: {integrity: sha512-fgjVjdCk0Jq627d/N33oQIJjWrcKtzw6Dfa2PfypoIJ35/xFIKgs6mPyvq8cg3Ao5b7dEn9+Rw45PGjlY5e7JA==} dev: false - /@next/react-dev-overlay/12.0.3_wcqkhtmu7mswc6yz4uyexck3ty: + /@next/react-dev-overlay/12.0.3_react-dom@16.14.0+react@16.14.0: resolution: {integrity: sha512-gHfDEVHFeTUpQMcyytzvkuOu+5DQXjXbCbQHuavFftYrlHqXfzYFsa+wERff+g4/0IzEvcYVp3F4gdmynWfUog==} peerDependencies: react: ^17.0.2 @@ -3052,8 +2980,6 @@ packages: semver: 7.3.4 terser: 5.5.1 v8-compile-cache: 2.2.0 - transitivePeerDependencies: - - supports-color dev: false /@preconstruct/hook/0.4.0: @@ -3063,8 +2989,6 @@ packages: '@babel/plugin-transform-modules-commonjs': 7.10.4_@babel+core@7.9.6 pirates: 4.0.1 source-map-support: 0.5.19 - transitivePeerDependencies: - - supports-color dev: false /@rollup/plugin-alias/3.1.2_rollup@2.38.5: @@ -3364,7 +3288,7 @@ packages: resolution: {integrity: sha512-te5lMAWii1uEJ4FwLjzdlbw3+n0FZNOvFXHxQDKeT0dilh7HOzdMzV2TrJVUzq8ep7J4Na8OUYPRLSQkJHAlrg==} dev: true - /@typescript-eslint/eslint-plugin/4.14.2_244q5h7haj6xnpajhd7553ps5q: + /@typescript-eslint/eslint-plugin/4.14.2_d7390e9fe7027d76bc0938ffdeedf2ec: resolution: {integrity: sha512-uMGfG7GFYK/nYutK/iqYJv6K/Xuog/vrRRZX9aEP4Zv1jsYXuvFUMDFLhUnc8WFv3D2R5QhNQL3VYKmvLS5zsQ==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -3375,8 +3299,8 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/experimental-utils': 4.14.2_esndoj7uhzb4vgy4iv7xtori4m - '@typescript-eslint/parser': 4.14.2_esndoj7uhzb4vgy4iv7xtori4m + '@typescript-eslint/experimental-utils': 4.14.2_eslint@6.8.0+typescript@4.5.2 + '@typescript-eslint/parser': 4.14.2_eslint@6.8.0+typescript@4.5.2 '@typescript-eslint/scope-manager': 4.14.2 debug: 4.1.1 eslint: 6.8.0 @@ -3386,18 +3310,17 @@ packages: semver: 7.3.4 tsutils: 3.17.1_typescript@4.5.2 typescript: 4.5.2 - transitivePeerDependencies: - - supports-color dev: false - /@typescript-eslint/experimental-utils/2.34.0: + /@typescript-eslint/experimental-utils/2.34.0_eslint@6.8.0+typescript@4.5.2: resolution: {integrity: sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} peerDependencies: eslint: '*' dependencies: '@types/json-schema': 7.0.9 - '@typescript-eslint/typescript-estree': 2.34.0 + '@typescript-eslint/typescript-estree': 2.34.0_typescript@4.5.2 + eslint: 6.8.0 eslint-scope: 5.1.1 eslint-utils: 2.0.0 transitivePeerDependencies: @@ -3405,7 +3328,7 @@ packages: - typescript dev: false - /@typescript-eslint/experimental-utils/4.14.2_esndoj7uhzb4vgy4iv7xtori4m: + /@typescript-eslint/experimental-utils/4.14.2_eslint@6.8.0+typescript@4.5.2: resolution: {integrity: sha512-mV9pmET4C2y2WlyHmD+Iun8SAEqkLahHGBkGqDVslHkmoj3VnxnGP4ANlwuxxfq1BsKdl/MPieDbohCEQgKrwA==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -3419,28 +3342,10 @@ packages: eslint-scope: 5.0.0 eslint-utils: 2.0.0 transitivePeerDependencies: - - supports-color - typescript dev: false - /@typescript-eslint/parser/4.14.2: - resolution: {integrity: sha512-ipqSP6EuUsMu3E10EZIApOJgWSpcNXeKZaFeNKQyzqxnQl8eQCbV+TSNsl+s2GViX2d18m1rq3CWgnpOxDPgHg==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/scope-manager': 4.14.2 - '@typescript-eslint/types': 4.14.2 - '@typescript-eslint/typescript-estree': 4.14.2 - debug: 4.1.1 - transitivePeerDependencies: - - supports-color - - /@typescript-eslint/parser/4.14.2_esndoj7uhzb4vgy4iv7xtori4m: + /@typescript-eslint/parser/4.14.2_eslint@6.8.0+typescript@4.5.2: resolution: {integrity: sha512-ipqSP6EuUsMu3E10EZIApOJgWSpcNXeKZaFeNKQyzqxnQl8eQCbV+TSNsl+s2GViX2d18m1rq3CWgnpOxDPgHg==} engines: {node: ^10.12.0 || >=12.0.0} peerDependencies: @@ -3456,9 +3361,6 @@ packages: debug: 4.1.1 eslint: 6.8.0 typescript: 4.5.2 - transitivePeerDependencies: - - supports-color - dev: false /@typescript-eslint/scope-manager/4.14.2: resolution: {integrity: sha512-cuV9wMrzKm6yIuV48aTPfIeqErt5xceTheAgk70N1V4/2Ecj+fhl34iro/vIssJlb7XtzcaD07hWk7Jk0nKghg==} @@ -3471,7 +3373,7 @@ packages: resolution: {integrity: sha512-LltxawRW6wXy4Gck6ZKlBD05tCHQUj4KLn4iR69IyRiDHX3d3NCAhO+ix5OR2Q+q9bjCrHE/HKt+riZkd1At8Q==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} - /@typescript-eslint/typescript-estree/2.34.0: + /@typescript-eslint/typescript-estree/2.34.0_typescript@4.5.2: resolution: {integrity: sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg==} engines: {node: ^8.10.0 || ^10.13.0 || >=11.10.1} peerDependencies: @@ -3486,31 +3388,12 @@ packages: is-glob: 4.0.3 lodash: 4.17.19 semver: 7.3.5 - tsutils: 3.21.0 + tsutils: 3.21.0_typescript@4.5.2 + typescript: 4.5.2 transitivePeerDependencies: - supports-color dev: false - /@typescript-eslint/typescript-estree/4.14.2: - resolution: {integrity: sha512-ESiFl8afXxt1dNj8ENEZT12p+jl9PqRur+Y19m0Z/SPikGL6rqq4e7Me60SU9a2M28uz48/8yct97VQYaGl0Vg==} - engines: {node: ^10.12.0 || >=12.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@typescript-eslint/types': 4.14.2 - '@typescript-eslint/visitor-keys': 4.14.2 - debug: 4.1.1 - globby: 11.0.2 - is-glob: 4.0.1 - lodash: 4.17.19 - semver: 7.3.4 - tsutils: 3.17.1 - transitivePeerDependencies: - - supports-color - /@typescript-eslint/typescript-estree/4.14.2_typescript@4.5.2: resolution: {integrity: sha512-ESiFl8afXxt1dNj8ENEZT12p+jl9PqRur+Y19m0Z/SPikGL6rqq4e7Me60SU9a2M28uz48/8yct97VQYaGl0Vg==} engines: {node: ^10.12.0 || >=12.0.0} @@ -3529,9 +3412,6 @@ packages: semver: 7.3.4 tsutils: 3.17.1_typescript@4.5.2 typescript: 4.5.2 - transitivePeerDependencies: - - supports-color - dev: false /@typescript-eslint/visitor-keys/4.14.2: resolution: {integrity: sha512-KBB+xLBxnBdTENs/rUgeUKO0UkPBRs2vD09oMRRIkj5BEN8PX1ToXV532desXfpQnZsYTyLLviS7JrPhdL154w==} @@ -3540,12 +3420,13 @@ packages: '@typescript-eslint/types': 4.14.2 eslint-visitor-keys: 2.0.0 - /@urql/core/2.6.0: + /@urql/core/2.6.0_graphql@16.3.0: resolution: {integrity: sha512-JuIbzDu2oASSe+m5u410ceqWQGTF6QK5W/UZaHuzQX+I2wX4aVdPN/NeZnaFFqG3UYw3+ttFHpQK0vrsU6QLFw==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 dependencies: - '@graphql-typed-document-node/core': 3.1.1 + '@graphql-typed-document-node/core': 3.1.1_graphql@16.3.0 + graphql: 16.3.0 wonka: 4.0.15 dev: false @@ -3715,8 +3596,6 @@ packages: dependencies: micromatch: 3.1.10 normalize-path: 2.1.1 - transitivePeerDependencies: - - supports-color dev: false /anymatch/3.1.1: @@ -3865,8 +3744,6 @@ packages: babel-preset-jest: 25.4.0_@babel+core@7.9.0 chalk: 3.0.0 slash: 3.0.0 - transitivePeerDependencies: - - supports-color dev: false /babel-jest/25.4.0_@babel+core@7.9.6: @@ -3883,8 +3760,6 @@ packages: babel-preset-jest: 25.4.0_@babel+core@7.9.6 chalk: 3.0.0 slash: 3.0.0 - transitivePeerDependencies: - - supports-color dev: false /babel-plugin-dynamic-import-node/2.3.3: @@ -3902,8 +3777,6 @@ packages: '@istanbuljs/schema': 0.1.2 istanbul-lib-instrument: 4.0.1 test-exclude: 6.0.0 - transitivePeerDependencies: - - supports-color dev: false /babel-plugin-jest-hoist/25.4.0: @@ -4112,8 +3985,6 @@ packages: snapdragon-node: 2.1.1 split-string: 3.1.0 to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color dev: false /braces/3.0.2: @@ -4835,22 +4706,12 @@ packages: /debug/2.6.9: resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true dependencies: ms: 2.0.0 dev: false /debug/4.1.1: resolution: {integrity: sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==} - peerDependencies: - supports-color: '*' - peerDependenciesMeta: - supports-color: - optional: true dependencies: ms: 2.1.2 @@ -5210,11 +5071,12 @@ packages: estraverse: 4.3.0 dev: false - /eslint-snapshot-test/3.0.0: + /eslint-snapshot-test/3.0.0_eslint@6.8.0: resolution: {integrity: sha512-rCMQDCX7ZVz+DLLFeVskPj7yFnFpzfCOQiTEkGgLWZjjvwbGK8Kfh+bjshrzDYyZC7WChp86mR1Y88KWdS9nQw==} peerDependencies: eslint: '>5.0.0' dependencies: + eslint: 6.8.0 lodash.merge: 4.6.2 dev: true @@ -5283,8 +5145,6 @@ packages: table: 5.4.6 text-table: 0.2.0 v8-compile-cache: 2.1.0 - transitivePeerDependencies: - - supports-color dev: false /espree/6.2.1: @@ -5430,8 +5290,6 @@ packages: regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color dev: false /expect/25.4.0: @@ -5490,8 +5348,6 @@ packages: regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color dev: false /extsprintf/1.3.0: @@ -5517,8 +5373,6 @@ packages: is-glob: 4.0.1 merge2: 1.3.0 micromatch: 3.1.10 - transitivePeerDependencies: - - supports-color dev: false /fast-glob/3.2.4: @@ -5629,8 +5483,6 @@ packages: '@babel/core': 7.9.6 '@babel/preset-typescript': 7.9.0_@babel+core@7.9.6 find-up: 4.1.0 - transitivePeerDependencies: - - supports-color dev: false /find-up/2.1.0: @@ -5797,8 +5649,6 @@ packages: resolution: {integrity: sha512-/pViTfifW+gBbh/RnlFYHINvELT9Znt+SYyDKAUL6uV6By019AK/s+i9XP4jSwq7lwP38Fd8HVeTxym3+hkwmQ==} dependencies: stream-parser: 0.3.1 - transitivePeerDependencies: - - supports-color dev: false /get-stream/3.0.0: @@ -5847,8 +5697,6 @@ packages: fs-extra: 7.0.1 globby: 9.2.0 read-yaml-file: 1.1.0 - transitivePeerDependencies: - - supports-color dev: false /getpass/0.1.7: @@ -5968,8 +5816,6 @@ packages: ignore: 4.0.6 pify: 4.0.1 slash: 2.0.0 - transitivePeerDependencies: - - supports-color dev: false /got/9.6.0: @@ -6010,15 +5856,6 @@ packages: graphql: 16.3.0 dev: true - /graphql-tag/2.12.6: - resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} - engines: {node: '>=10'} - peerDependencies: - graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - dependencies: - tslib: 2.3.1 - dev: false - /graphql-tag/2.12.6_graphql@16.3.0: resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} engines: {node: '>=10'} @@ -6784,8 +6621,6 @@ packages: '@istanbuljs/schema': 0.1.2 istanbul-lib-coverage: 3.0.0 semver: 6.3.0 - transitivePeerDependencies: - - supports-color dev: false /istanbul-lib-report/3.0.0: @@ -6804,8 +6639,6 @@ packages: debug: 4.1.1 istanbul-lib-coverage: 3.0.0 source-map: 0.6.1 - transitivePeerDependencies: - - supports-color dev: false /istanbul-reports/3.0.2: @@ -6846,7 +6679,6 @@ packages: transitivePeerDependencies: - bufferutil - canvas - - supports-color - utf-8-validate dev: false @@ -6875,7 +6707,6 @@ packages: transitivePeerDependencies: - bufferutil - canvas - - supports-color - utf-8-validate dev: false @@ -6957,8 +6788,6 @@ packages: which: 2.0.2 optionalDependencies: fsevents: 2.3.2 - transitivePeerDependencies: - - supports-color dev: false /jest-jasmine2/25.4.0: @@ -6985,7 +6814,6 @@ packages: transitivePeerDependencies: - bufferutil - canvas - - supports-color - utf-8-validate dev: false @@ -7093,7 +6921,6 @@ packages: transitivePeerDependencies: - bufferutil - canvas - - supports-color - utf-8-validate dev: false @@ -7130,7 +6957,6 @@ packages: transitivePeerDependencies: - bufferutil - canvas - - supports-color - utf-8-validate dev: false @@ -7230,7 +7056,6 @@ packages: transitivePeerDependencies: - bufferutil - canvas - - supports-color - utf-8-validate dev: false @@ -7671,8 +7496,6 @@ packages: regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color dev: false /micromatch/4.0.2: @@ -7795,15 +7618,13 @@ packages: regex-not: 1.0.2 snapdragon: 0.8.2 to-regex: 3.0.2 - transitivePeerDependencies: - - supports-color dev: false /natural-compare/1.4.0: resolution: {integrity: sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=} dev: false - /next/12.0.3_wcqkhtmu7mswc6yz4uyexck3ty: + /next/12.0.3_1469fadccb0d92a9481e657400186d42: resolution: {integrity: sha512-GGdhTBcerdMZbitrO67IVetmB+AHa2X69xrkXKClUT8SRu8pEVto/2QMSnfI+uYc5czCUWPsVtVY3aMoMRMaCA==} engines: {node: '>=12.22.0'} hasBin: true @@ -7826,7 +7647,7 @@ packages: '@napi-rs/triples': 1.0.3 '@next/env': 12.0.3 '@next/polyfill-module': 12.0.3 - '@next/react-dev-overlay': 12.0.3_wcqkhtmu7mswc6yz4uyexck3ty + '@next/react-dev-overlay': 12.0.3_react-dom@16.14.0+react@16.14.0 '@next/react-refresh-utils': 12.0.3_react-refresh@0.8.3 acorn: 8.5.0 assert: 2.0.0 @@ -7865,7 +7686,7 @@ packages: stream-browserify: 3.0.0 stream-http: 3.1.1 string_decoder: 1.3.0 - styled-jsx: 5.0.0-beta.3_react@16.14.0 + styled-jsx: 5.0.0-beta.3_@babel+core@7.9.6+react@16.14.0 timers-browserify: 2.0.12 tty-browserify: 0.0.1 use-subscription: 1.5.1_react@16.14.0 @@ -7886,7 +7707,6 @@ packages: '@next/swc-win32-x64-msvc': 12.0.3 transitivePeerDependencies: - '@babel/core' - - supports-color - webpack dev: false @@ -9079,8 +8899,6 @@ packages: micromatch: 3.1.10 minimist: 1.2.5 walker: 1.0.7 - transitivePeerDependencies: - - supports-color dev: false /saxes/3.1.11: @@ -9309,8 +9127,6 @@ packages: source-map: 0.5.7 source-map-resolve: 0.5.3 use: 3.1.1 - transitivePeerDependencies: - - supports-color dev: false /source-map-resolve/0.5.3: @@ -9479,8 +9295,6 @@ packages: resolution: {integrity: sha1-FhhUhpRCACGhGC/wrxkRwSl2F3M=} dependencies: debug: 2.6.9 - transitivePeerDependencies: - - supports-color dev: false /stream-transform/2.0.1: @@ -9612,7 +9426,7 @@ packages: engines: {node: '>=8'} dev: false - /styled-jsx/5.0.0-beta.3_react@16.14.0: + /styled-jsx/5.0.0-beta.3_@babel+core@7.9.6+react@16.14.0: resolution: {integrity: sha512-HtDDGSFPvmjHIqWf9n8Oo54tAoY/DTplvlyOH2+YOtD80Sp31Ap8ffSmxhgk5EkUoJ7xepdXMGT650mSffWuRA==} engines: {node: '>= 12.0.0'} peerDependencies: @@ -9622,7 +9436,8 @@ packages: '@babel/core': optional: true dependencies: - '@babel/plugin-syntax-jsx': 7.14.5 + '@babel/core': 7.9.6 + '@babel/plugin-syntax-jsx': 7.14.5_@babel+core@7.9.6 '@babel/types': 7.15.0 convert-source-map: 1.7.0 loader-utils: 1.2.3 @@ -9909,14 +9724,6 @@ packages: resolution: {integrity: sha512-77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==} dev: false - /tsutils/3.17.1: - resolution: {integrity: sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==} - engines: {node: '>= 6'} - peerDependencies: - typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' - dependencies: - tslib: 1.11.1 - /tsutils/3.17.1_typescript@4.5.2: resolution: {integrity: sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==} engines: {node: '>= 6'} @@ -9925,15 +9732,15 @@ packages: dependencies: tslib: 1.11.1 typescript: 4.5.2 - dev: false - /tsutils/3.21.0: + /tsutils/3.21.0_typescript@4.5.2: resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.11.1 + typescript: 4.5.2 dev: false /tty-browserify/0.0.1: @@ -10148,13 +9955,14 @@ packages: prepend-http: 2.0.0 dev: false - /urql/2.2.2_react@16.14.0: + /urql/2.2.2_graphql@16.3.0+react@16.14.0: resolution: {integrity: sha512-jaVhDxWS2gfJLWWupFXtRkTCuGeRX+b9v19PU6TnKIJ7VP+xyrgpNHghHcTBGo58F+rxvCXVNEvSvdlKFMiHhg==} peerDependencies: graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 react: '>= 16.8.0' dependencies: - '@urql/core': 2.6.0 + '@urql/core': 2.6.0_graphql@16.3.0 + graphql: 16.3.0 react: 16.14.0 wonka: 4.0.15 dev: false diff --git a/test-app/CHANGELOG.md b/test-app/CHANGELOG.md index e4ece8f..2cdad1c 100644 --- a/test-app/CHANGELOG.md +++ b/test-app/CHANGELOG.md @@ -1,5 +1,15 @@ # @ts-gql/test-app +## 0.1.28 + +### Patch Changes + +- Updated dependencies [[`bc8d6eb`](https://github.com/Thinkmill/ts-gql/commit/bc8d6ebbf1021829de24d3c916dad5e0b3ab1edf), [`bc8d6eb`](https://github.com/Thinkmill/ts-gql/commit/bc8d6ebbf1021829de24d3c916dad5e0b3ab1edf)]: + - @ts-gql/tag@0.7.0 + - @ts-gql/compiler@0.15.3 + - @ts-gql/fetch@0.1.2 + - @ts-gql/next@16.0.3 + ## 0.1.27 ### Patch Changes diff --git a/test-app/package.json b/test-app/package.json index 1f7bb81..cab5bd6 100644 --- a/test-app/package.json +++ b/test-app/package.json @@ -1,16 +1,16 @@ { "name": "@ts-gql/test-app", - "version": "0.1.27", + "version": "0.1.28", "private": true, "license": "MIT", "dependencies": { "@apollo/client": "^3.6.9", "@ts-gql/babel-plugin": "^0.1.0", - "@ts-gql/compiler": "^0.15.1", + "@ts-gql/compiler": "^0.15.3", "@ts-gql/eslint-plugin": "^0.8.1", - "@ts-gql/fetch": "^0.1.0", - "@ts-gql/next": "^16.0.1", - "@ts-gql/tag": "^0.6.1", + "@ts-gql/fetch": "^0.1.2", + "@ts-gql/next": "^16.0.3", + "@ts-gql/tag": "^0.7.0", "@types/node": "^13.13.2", "@types/react": "^16.9.43", "@types/react-dom": "^16.9.8",