diff --git a/.changeset/big-melons-leave.md b/.changeset/big-melons-leave.md deleted file mode 100644 index 6fffd6a020..0000000000 --- a/.changeset/big-melons-leave.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/core': patch ---- - -Correctly mark cache-hits from the ssr-exchange diff --git a/.changeset/brown-doors-tan.md b/.changeset/brown-doors-tan.md deleted file mode 100644 index c263bc0b0b..0000000000 --- a/.changeset/brown-doors-tan.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -'@urql/exchange-graphcache': patch -'@urql/exchange-execute': patch -'@urql/core': patch -'next-urql': patch -'@urql/svelte': patch -'@urql/vue': patch ---- - -Fix type-generation, with a change in TS/Rollup the type generation took the paths as src and resolved them into the types dir diff --git a/.changeset/large-eggs-cough.md b/.changeset/large-eggs-cough.md deleted file mode 100644 index 0809304ea6..0000000000 --- a/.changeset/large-eggs-cough.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@urql/core': patch ---- - -Fix regression in `@urql/core`'s `stringifyDocument` that caused some formatted documents to not be reprinted. diff --git a/exchanges/auth/package.json b/exchanges/auth/package.json index 1cee84556f..59ec42a661 100644 --- a/exchanges/auth/package.json +++ b/exchanges/auth/package.json @@ -48,7 +48,7 @@ "prepublishOnly": "run-s clean build" }, "dependencies": { - "@urql/core": ">=3.0.0", + "@urql/core": ">=3.1.1", "wonka": "^6.0.0" }, "peerDependencies": { diff --git a/exchanges/context/package.json b/exchanges/context/package.json index cf60f0b29b..a16cf959d0 100644 --- a/exchanges/context/package.json +++ b/exchanges/context/package.json @@ -47,7 +47,7 @@ "prepublishOnly": "run-s clean build" }, "dependencies": { - "@urql/core": ">=2.3.6", + "@urql/core": ">=3.1.1", "wonka": "^6.0.0" }, "peerDependencies": { diff --git a/exchanges/execute/CHANGELOG.md b/exchanges/execute/CHANGELOG.md index 841499c1b0..e738feee35 100644 --- a/exchanges/execute/CHANGELOG.md +++ b/exchanges/execute/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 2.1.1 + +### Patch Changes + +- ⚠️ Fix type-generation, with a change in TS/Rollup the type generation took the paths as src and resolved them into the types dir, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#2870](https://github.com/urql-graphql/urql/pull/2870)) +- Updated dependencies (See [#2872](https://github.com/urql-graphql/urql/pull/2872), [#2870](https://github.com/urql-graphql/urql/pull/2870), and [#2871](https://github.com/urql-graphql/urql/pull/2871)) + - @urql/core@3.1.1 + ## 2.1.0 ### Minor Changes diff --git a/exchanges/execute/package.json b/exchanges/execute/package.json index b5ee31f266..0c3e1cadb1 100644 --- a/exchanges/execute/package.json +++ b/exchanges/execute/package.json @@ -1,6 +1,6 @@ { "name": "@urql/exchange-execute", - "version": "2.1.0", + "version": "2.1.1", "description": "An exchange for executing queries against a local schema in urql", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/", @@ -48,7 +48,7 @@ "prepublishOnly": "run-s clean build" }, "dependencies": { - "@urql/core": ">=3.1.0", + "@urql/core": ">=3.1.1", "wonka": "^6.0.0" }, "peerDependencies": { diff --git a/exchanges/graphcache/CHANGELOG.md b/exchanges/graphcache/CHANGELOG.md index a54f3785a0..9eb4308e6e 100644 --- a/exchanges/graphcache/CHANGELOG.md +++ b/exchanges/graphcache/CHANGELOG.md @@ -1,5 +1,13 @@ # @urql/exchange-graphcache +## 5.0.7 + +### Patch Changes + +- ⚠️ Fix type-generation, with a change in TS/Rollup the type generation took the paths as src and resolved them into the types dir, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#2870](https://github.com/urql-graphql/urql/pull/2870)) +- Updated dependencies (See [#2872](https://github.com/urql-graphql/urql/pull/2872), [#2870](https://github.com/urql-graphql/urql/pull/2870), and [#2871](https://github.com/urql-graphql/urql/pull/2871)) + - @urql/core@3.1.1 + ## 5.0.6 ### Patch Changes diff --git a/exchanges/graphcache/package.json b/exchanges/graphcache/package.json index 018ef27de5..3228b0095e 100644 --- a/exchanges/graphcache/package.json +++ b/exchanges/graphcache/package.json @@ -1,6 +1,6 @@ { "name": "@urql/exchange-graphcache", - "version": "5.0.6", + "version": "5.0.7", "description": "A normalized and configurable cache exchange for urql", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/graphcache", @@ -62,7 +62,7 @@ "prepublishOnly": "run-s clean build" }, "dependencies": { - "@urql/core": ">=3.1.0", + "@urql/core": ">=3.1.1", "wonka": "^6.0.0" }, "peerDependencies": { diff --git a/exchanges/multipart-fetch/package.json b/exchanges/multipart-fetch/package.json index 708cd49ba4..22c9cc47ab 100644 --- a/exchanges/multipart-fetch/package.json +++ b/exchanges/multipart-fetch/package.json @@ -46,7 +46,7 @@ "prepublishOnly": "run-s clean build" }, "dependencies": { - "@urql/core": ">=3.0.0", + "@urql/core": ">=3.1.1", "extract-files": "^11.0.0", "wonka": "^6.0.0" }, diff --git a/exchanges/persisted-fetch/package.json b/exchanges/persisted-fetch/package.json index 118f9ba3f1..68d1a46439 100644 --- a/exchanges/persisted-fetch/package.json +++ b/exchanges/persisted-fetch/package.json @@ -46,7 +46,7 @@ "prepublishOnly": "run-s clean build" }, "dependencies": { - "@urql/core": ">=3.0.0", + "@urql/core": ">=3.1.1", "wonka": "^6.0.0" }, "peerDependencies": { diff --git a/exchanges/populate/package.json b/exchanges/populate/package.json index 0ec77d1fbd..06e4b60f91 100644 --- a/exchanges/populate/package.json +++ b/exchanges/populate/package.json @@ -46,7 +46,7 @@ "prepublishOnly": "run-s clean build" }, "dependencies": { - "@urql/core": ">=3.0.0", + "@urql/core": ">=3.1.1", "wonka": "^6.0.0" }, "peerDependencies": { diff --git a/exchanges/refocus/package.json b/exchanges/refocus/package.json index c743fd5c49..99276f439f 100644 --- a/exchanges/refocus/package.json +++ b/exchanges/refocus/package.json @@ -56,7 +56,7 @@ "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" }, "dependencies": { - "@urql/core": ">=3.0.0", + "@urql/core": ">=3.1.1", "wonka": "^6.0.0" }, "publishConfig": { diff --git a/exchanges/request-policy/package.json b/exchanges/request-policy/package.json index bdd87788ff..a25181a486 100644 --- a/exchanges/request-policy/package.json +++ b/exchanges/request-policy/package.json @@ -54,7 +54,7 @@ "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" }, "dependencies": { - "@urql/core": ">=3.0.0", + "@urql/core": ">=3.1.1", "wonka": "^6.0.0" }, "publishConfig": { diff --git a/exchanges/retry/package.json b/exchanges/retry/package.json index 34dfce9622..52122ad29f 100644 --- a/exchanges/retry/package.json +++ b/exchanges/retry/package.json @@ -54,7 +54,7 @@ "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0" }, "dependencies": { - "@urql/core": ">=3.0.0", + "@urql/core": ">=3.1.1", "wonka": "^6.0.0" }, "publishConfig": { diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 90d6a46698..b3d8734884 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,13 @@ # @urql/core +## 3.1.1 + +### Patch Changes + +- Correctly mark cache-hits from the ssr-exchange, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#2872](https://github.com/urql-graphql/urql/pull/2872)) +- ⚠️ Fix type-generation, with a change in TS/Rollup the type generation took the paths as src and resolved them into the types dir, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#2870](https://github.com/urql-graphql/urql/pull/2870)) +- ⚠️ Fix regression in `@urql/core`'s `stringifyDocument` that caused some formatted documents to not be reprinted, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#2871](https://github.com/urql-graphql/urql/pull/2871)) + ## 3.1.0 ### Minor Changes diff --git a/packages/core/package.json b/packages/core/package.json index 2fb7d5a7ab..2ae857ad24 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@urql/core", - "version": "3.1.0", + "version": "3.1.1", "description": "The shared core for the highly customizable and versatile GraphQL client", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/", diff --git a/packages/next-urql/CHANGELOG.md b/packages/next-urql/CHANGELOG.md index c49c606417..ea2ba2aa1f 100644 --- a/packages/next-urql/CHANGELOG.md +++ b/packages/next-urql/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 4.0.2 + +### Patch Changes + +- ⚠️ Fix type-generation, with a change in TS/Rollup the type generation took the paths as src and resolved them into the types dir, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#2870](https://github.com/urql-graphql/urql/pull/2870)) + ## 4.0.1 ### Patch Changes diff --git a/packages/next-urql/package.json b/packages/next-urql/package.json index a389beae6a..e8590a2860 100644 --- a/packages/next-urql/package.json +++ b/packages/next-urql/package.json @@ -1,6 +1,6 @@ { "name": "next-urql", - "version": "4.0.1", + "version": "4.0.2", "description": "Convenience wrappers for using urql with NextJS.", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/", diff --git a/packages/preact-urql/package.json b/packages/preact-urql/package.json index 8f6cfc01aa..f8895fa0df 100644 --- a/packages/preact-urql/package.json +++ b/packages/preact-urql/package.json @@ -58,7 +58,7 @@ "preact": ">= 10.0.0" }, "dependencies": { - "@urql/core": "^3.0.3", + "@urql/core": "^3.1.1", "wonka": "^6.0.0" }, "publishConfig": { diff --git a/packages/react-urql/package.json b/packages/react-urql/package.json index 6624326a0b..f296259387 100644 --- a/packages/react-urql/package.json +++ b/packages/react-urql/package.json @@ -61,7 +61,7 @@ "react": ">= 16.8.0" }, "dependencies": { - "@urql/core": "^3.0.3", + "@urql/core": "^3.1.1", "wonka": "^6.0.0" } } diff --git a/packages/storybook-addon/package.json b/packages/storybook-addon/package.json index 01dc8662f9..0e0bbb3cec 100644 --- a/packages/storybook-addon/package.json +++ b/packages/storybook-addon/package.json @@ -40,7 +40,7 @@ "prepublishOnly": "run-s clean build" }, "dependencies": { - "@urql/core": "^3.0.0", + "@urql/core": "^3.1.1", "wonka": "^6.0.0" }, "devDependencies": { diff --git a/packages/svelte-urql/CHANGELOG.md b/packages/svelte-urql/CHANGELOG.md index 111aa1725f..2773434385 100644 --- a/packages/svelte-urql/CHANGELOG.md +++ b/packages/svelte-urql/CHANGELOG.md @@ -1,5 +1,13 @@ # @urql/svelte +## 3.0.3 + +### Patch Changes + +- ⚠️ Fix type-generation, with a change in TS/Rollup the type generation took the paths as src and resolved them into the types dir, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#2870](https://github.com/urql-graphql/urql/pull/2870)) +- Updated dependencies (See [#2872](https://github.com/urql-graphql/urql/pull/2872), [#2870](https://github.com/urql-graphql/urql/pull/2870), and [#2871](https://github.com/urql-graphql/urql/pull/2871)) + - @urql/core@3.1.1 + ## 3.0.2 ### Patch Changes diff --git a/packages/svelte-urql/package.json b/packages/svelte-urql/package.json index 00bec84651..d8bd953bbc 100644 --- a/packages/svelte-urql/package.json +++ b/packages/svelte-urql/package.json @@ -1,6 +1,6 @@ { "name": "@urql/svelte", - "version": "3.0.2", + "version": "3.0.3", "description": "A highly customizable and versatile GraphQL client for Svelte", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/", @@ -52,7 +52,7 @@ "svelte": "^3.0.0" }, "dependencies": { - "@urql/core": "^3.1.0", + "@urql/core": "^3.1.1", "wonka": "^6.0.0" }, "devDependencies": { diff --git a/packages/vue-urql/CHANGELOG.md b/packages/vue-urql/CHANGELOG.md index 33aa579b2a..00eba24ee9 100644 --- a/packages/vue-urql/CHANGELOG.md +++ b/packages/vue-urql/CHANGELOG.md @@ -1,5 +1,13 @@ # @urql/vue +## 1.0.4 + +### Patch Changes + +- ⚠️ Fix type-generation, with a change in TS/Rollup the type generation took the paths as src and resolved them into the types dir, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#2870](https://github.com/urql-graphql/urql/pull/2870)) +- Updated dependencies (See [#2872](https://github.com/urql-graphql/urql/pull/2872), [#2870](https://github.com/urql-graphql/urql/pull/2870), and [#2871](https://github.com/urql-graphql/urql/pull/2871)) + - @urql/core@3.1.1 + ## 1.0.3 ### Patch Changes diff --git a/packages/vue-urql/package.json b/packages/vue-urql/package.json index bf8680f2d7..a942c6a67d 100644 --- a/packages/vue-urql/package.json +++ b/packages/vue-urql/package.json @@ -1,6 +1,6 @@ { "name": "@urql/vue", - "version": "1.0.3", + "version": "1.0.4", "description": "A highly customizable and versatile GraphQL client for vue", "sideEffects": false, "homepage": "https://formidable.com/open-source/urql/docs/", @@ -57,7 +57,7 @@ "vue": "^2.7.0 || ^3.0.0" }, "dependencies": { - "@urql/core": "^3.1.0", + "@urql/core": "^3.1.1", "wonka": "^6.0.0" }, "publishConfig": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index fbbfba9d13..4fb34e01e5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -120,7 +120,7 @@ importers: exchanges/auth: specifiers: - '@urql/core': '>=3.0.0' + '@urql/core': '>=3.1.1' graphql: ^16.0.0 wonka: ^6.1.2 dependencies: @@ -131,7 +131,7 @@ importers: exchanges/context: specifiers: - '@urql/core': '>=2.3.6' + '@urql/core': '>=3.1.1' graphql: ^16.0.0 wonka: ^6.1.2 dependencies: @@ -142,7 +142,7 @@ importers: exchanges/execute: specifiers: - '@urql/core': '>=3.1.0' + '@urql/core': '>=3.1.1' graphql: ^16.0.0 wonka: ^6.1.2 dependencies: @@ -154,7 +154,7 @@ importers: exchanges/graphcache: specifiers: '@cypress/react': ^7.0.1 - '@urql/core': '>=3.1.0' + '@urql/core': '>=3.1.1' '@urql/exchange-execute': workspace:* '@urql/introspection': workspace:* cypress: ^11.1.0 @@ -178,7 +178,7 @@ importers: exchanges/multipart-fetch: specifiers: - '@urql/core': '>=3.0.0' + '@urql/core': '>=3.1.1' extract-files: ^11.0.0 graphql: ^16.0.0 wonka: ^6.1.2 @@ -191,7 +191,7 @@ importers: exchanges/persisted-fetch: specifiers: - '@urql/core': '>=3.0.0' + '@urql/core': '>=3.1.1' graphql: ^16.0.0 wonka: ^6.1.2 dependencies: @@ -202,7 +202,7 @@ importers: exchanges/populate: specifiers: - '@urql/core': '>=3.0.0' + '@urql/core': '>=3.1.1' graphql: ^16.0.0 wonka: ^6.1.2 dependencies: @@ -214,7 +214,7 @@ importers: exchanges/refocus: specifiers: '@types/react': ^17.0.39 - '@urql/core': '>=3.0.0' + '@urql/core': '>=3.1.1' graphql: ^16.0.0 wonka: ^6.1.2 dependencies: @@ -226,7 +226,7 @@ importers: exchanges/request-policy: specifiers: - '@urql/core': '>=3.0.0' + '@urql/core': '>=3.1.1' graphql: ^16.0.0 wonka: ^6.1.2 dependencies: @@ -237,7 +237,7 @@ importers: exchanges/retry: specifiers: - '@urql/core': '>=3.0.0' + '@urql/core': '>=3.1.1' graphql: ^16.0.0 wonka: ^6.1.2 dependencies: @@ -299,7 +299,7 @@ importers: packages/preact-urql: specifiers: '@testing-library/preact': ^2.0.0 - '@urql/core': ^3.0.3 + '@urql/core': ^3.1.1 graphql: ^16.0.0 preact: ^10.5.5 wonka: ^6.1.2 @@ -319,7 +319,7 @@ importers: '@testing-library/react-hooks': ^5.1.2 '@types/react': ^17.0.39 '@types/react-test-renderer': ^17.0.1 - '@urql/core': ^3.0.3 + '@urql/core': ^3.1.1 cypress: ^11.1.0 graphql: ^16.0.0 react: ^17.0.2 @@ -440,7 +440,7 @@ importers: '@storybook/preact': '>=6.0.28' '@storybook/react': '>=6.0.28' '@types/webpack-env': ^1.15.3 - '@urql/core': ^3.0.0 + '@urql/core': ^3.1.1 '@urql/devtools': '>=2.0.0' '@urql/preact': workspace:* graphql: ^16.0.0 @@ -475,7 +475,7 @@ importers: packages/svelte-urql: specifiers: - '@urql/core': ^3.1.0 + '@urql/core': ^3.1.1 graphql: ^16.0.0 svelte: ^3.20.0 wonka: ^6.1.2 @@ -488,7 +488,7 @@ importers: packages/vue-urql: specifiers: - '@urql/core': ^3.1.0 + '@urql/core': ^3.1.1 graphql: ^16.0.0 vue: ^3.0.11 wonka: ^6.1.2