Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Version Packages (#3667)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

authored by

github-actions[bot]
github-actions[bot]
and committed by
GitHub
6408474f a19f8303

+60 -46
-5
.changeset/chilly-cows-brake.md
··· 1 - --- 2 - '@urql/solid': patch 3 - --- 4 - 5 - Export Provider from the entry
-5
.changeset/forty-cameras-check.md
··· 1 - --- 2 - '@urql/solid': minor 3 - --- 4 - 5 - Initial release
-5
.changeset/healthy-years-ring.md
··· 1 - --- 2 - '@urql/solid': patch 3 - --- 4 - 5 - Correctly track query data reads with suspense
-5
.changeset/hungry-pandas-accept.md
··· 1 - --- 2 - '@urql/next': patch 3 - --- 4 - 5 - export SSRContext from provider
-5
.changeset/perfect-worms-deliver.md
··· 1 - --- 2 - '@urql/solid': patch 3 - --- 4 - 5 - feat(solid): reconcile data updates
+1 -1
examples/with-next/package.json
··· 4 4 "private": true, 5 5 "dependencies": { 6 6 "@urql/core": "^5.0.6", 7 - "@urql/next": "^1.1.1", 7 + "@urql/next": "^1.1.2", 8 8 "graphql": "^16.6.0", 9 9 "next": "13.4.2", 10 10 "react": "^18.2.0",
+1 -1
exchanges/auth/jsr.json
··· 12 12 "**/*.test.*.snap", 13 13 "**/*.spec.*.snap" 14 14 ] 15 - } 15 + }
+1 -1
exchanges/context/jsr.json
··· 12 12 "**/*.test.*.snap", 13 13 "**/*.spec.*.snap" 14 14 ] 15 - } 15 + }
+1 -1
exchanges/execute/jsr.json
··· 12 12 "**/*.test.*.snap", 13 13 "**/*.spec.*.snap" 14 14 ] 15 - } 15 + }
+1 -1
exchanges/graphcache/jsr.json
··· 14 14 "**/*.test.*.snap", 15 15 "**/*.spec.*.snap" 16 16 ] 17 - } 17 + }
+1 -1
exchanges/persisted/jsr.json
··· 12 12 "**/*.test.*.snap", 13 13 "**/*.spec.*.snap" 14 14 ] 15 - } 15 + }
+1 -1
exchanges/populate/jsr.json
··· 12 12 "**/*.test.*.snap", 13 13 "**/*.spec.*.snap" 14 14 ] 15 - } 15 + }
+1 -1
exchanges/refocus/jsr.json
··· 12 12 "**/*.test.*.snap", 13 13 "**/*.spec.*.snap" 14 14 ] 15 - } 15 + }
+1 -1
exchanges/request-policy/jsr.json
··· 12 12 "**/*.test.*.snap", 13 13 "**/*.spec.*.snap" 14 14 ] 15 - } 15 + }
+1 -1
exchanges/retry/jsr.json
··· 12 12 "**/*.test.*.snap", 13 13 "**/*.spec.*.snap" 14 14 ] 15 - } 15 + }
+1 -1
packages/core/jsr.json
··· 13 13 "**/*.test.*.snap", 14 14 "**/*.spec.*.snap" 15 15 ] 16 - } 16 + }
+1 -1
packages/introspection/jsr.json
··· 12 12 "**/*.test.*.snap", 13 13 "**/*.spec.*.snap" 14 14 ] 15 - } 15 + }
+7
packages/next-urql/CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 1.1.2 4 + 5 + ### Patch Changes 6 + 7 + - export SSRContext from provider 8 + Submitted by [@ccummings](https://github.com/ccummings) (See [#3659](https://github.com/urql-graphql/urql/pull/3659)) 9 + 3 10 ## 1.1.1 4 11 5 12 ### Patch Changes
+2 -2
packages/next-urql/jsr.json
··· 1 1 { 2 2 "name": "@urql/next", 3 - "version": "1.1.1", 3 + "version": "1.1.2", 4 4 "exports": { 5 5 ".": "./src/index.ts", 6 6 "./rsc": "./src/rsc.ts" ··· 13 13 "**/*.test.*.snap", 14 14 "**/*.spec.*.snap" 15 15 ] 16 - } 16 + }
+1 -1
packages/next-urql/package.json
··· 1 1 { 2 2 "name": "@urql/next", 3 - "version": "1.1.1", 3 + "version": "1.1.2", 4 4 "description": "Convenience wrappers for using urql with NextJS.", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",
+1 -1
packages/preact-urql/jsr.json
··· 12 12 "**/*.test.*.snap", 13 13 "**/*.spec.*.snap" 14 14 ] 15 - } 15 + }
+1 -1
packages/react-urql/jsr.json
··· 10 10 "**/*.test.*.snap", 11 11 "**/*.spec.*.snap" 12 12 ] 13 - } 13 + }
+17
packages/solid-urql/CHANGELOG.md
··· 1 + # @urql/solid 2 + 3 + ## 0.1.0 4 + 5 + ### Minor Changes 6 + 7 + - Initial release 8 + Submitted by [@stefanmaric](https://github.com/stefanmaric) (See [#3607](https://github.com/urql-graphql/urql/pull/3607)) 9 + 10 + ### Patch Changes 11 + 12 + - Export Provider from the entry 13 + Submitted by [@XiNiHa](https://github.com/XiNiHa) (See [#3670](https://github.com/urql-graphql/urql/pull/3670)) 14 + - Correctly track query data reads with suspense 15 + Submitted by [@XiNiHa](https://github.com/XiNiHa) (See [#3672](https://github.com/urql-graphql/urql/pull/3672)) 16 + - feat(solid): reconcile data updates 17 + Submitted by [@XiNiHa](https://github.com/XiNiHa) (See [#3674](https://github.com/urql-graphql/urql/pull/3674))
+15
packages/solid-urql/jsr.json
··· 1 + { 2 + "name": "@urql/solid", 3 + "version": "0.1.0", 4 + "exports": { 5 + ".": "./src/index.ts" 6 + }, 7 + "exclude": [ 8 + "node_modules", 9 + "cypress", 10 + "**/*.test.*", 11 + "**/*.spec.*", 12 + "**/*.test.*.snap", 13 + "**/*.spec.*.snap" 14 + ] 15 + }
+1 -1
packages/solid-urql/package.json
··· 1 1 { 2 2 "name": "@urql/solid", 3 - "version": "0.0.0", 3 + "version": "0.1.0", 4 4 "description": "A highly customizable and versatile GraphQL client for Solid", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",
+1 -1
packages/storage-rn/jsr.json
··· 12 12 "**/*.test.*.snap", 13 13 "**/*.spec.*.snap" 14 14 ] 15 - } 15 + }
+1 -1
packages/svelte-urql/jsr.json
··· 12 12 "**/*.test.*.snap", 13 13 "**/*.spec.*.snap" 14 14 ] 15 - } 15 + }
+1 -1
packages/vue-urql/jsr.json
··· 12 12 "**/*.test.*.snap", 13 13 "**/*.spec.*.snap" 14 14 ] 15 - } 15 + }