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 (#3853)

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

authored by

github-actions[bot]
github-actions[bot]
and committed by
GitHub
917ac600 773cae7c

+25 -21
-5
.changeset/late-boats-listen.md
··· 1 - --- 2 - '@urql/solid-start': minor 3 - --- 4 - 5 - Fix SSR runtime failures caused by importing SolidStart's `action` API at module load time by reading `action` from `Provider` context instead.
-5
.changeset/shiny-pets-give.md
··· 1 - --- 2 - '@urql/solid-start': patch 3 - --- 4 - 5 - Fix `createSubscription` to use `@urql/solid-start` context instead of re-exporting the Solid-only implementation from `@urql/solid`.
-5
.changeset/some-bushes-smash.md
··· 1 - --- 2 - '@urql/vue': minor 3 - --- 4 - 5 - Optional custom injection key support for `provideClient`, `install`, `useClient`, and `useClientHandle`. Multiple clients can be provided and consumed under different keys; default key remains `'$urql'` for backward compatibility.
+1 -1
examples/with-solid-start/package.json
··· 11 11 "@solidjs/router": "^0.15.4", 12 12 "@solidjs/start": "^1.2.1", 13 13 "@urql/core": "^6.0.1", 14 - "@urql/solid-start": "^0.1.0", 14 + "@urql/solid-start": "^0.2.0", 15 15 "graphql": "^16.9.0", 16 16 "solid-js": "^1.9.10", 17 17 "vinxi": "^0.5.0"
+1 -1
examples/with-vue3/package.json
··· 9 9 }, 10 10 "dependencies": { 11 11 "@urql/core": "^6.0.1", 12 - "@urql/vue": "^2.0.0", 12 + "@urql/vue": "^2.1.0", 13 13 "graphql": "^16.6.0", 14 14 "vue": "^3.2.47" 15 15 },
+12
packages/solid-start-urql/CHANGELOG.md
··· 1 1 # @urql/solid-start 2 2 3 + ## 0.2.0 4 + 5 + ### Minor Changes 6 + 7 + - Fix SSR runtime failures caused by importing SolidStart's `action` API at module load time by reading `action` from `Provider` context instead 8 + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#3850](https://github.com/urql-graphql/urql/pull/3850)) 9 + 10 + ### Patch Changes 11 + 12 + - ⚠️ Fix `createSubscription` to use `@urql/solid-start` context instead of re-exporting the Solid-only implementation from `@urql/solid` 13 + Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#3850](https://github.com/urql-graphql/urql/pull/3850)) 14 + 3 15 ## 0.1.0 4 16 5 17 ### Minor Changes
+1 -1
packages/solid-start-urql/jsr.json
··· 1 1 { 2 2 "name": "@urql/solid-start", 3 - "version": "0.1.0", 3 + "version": "0.2.0", 4 4 "exports": { 5 5 ".": "./src/index.ts" 6 6 },
+1 -1
packages/solid-start-urql/package.json
··· 1 1 { 2 2 "name": "@urql/solid-start", 3 - "version": "0.1.0", 3 + "version": "0.2.0", 4 4 "description": "A highly customizable and versatile GraphQL client for SolidStart", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",
+7
packages/vue-urql/CHANGELOG.md
··· 1 1 # @urql/vue 2 2 3 + ## 2.1.0 4 + 5 + ### Minor Changes 6 + 7 + - Optional custom injection key support for `provideClient`, `install`, `useClient`, and `useClientHandle`. Multiple clients can be provided and consumed under different keys; default key remains `'$urql'` for backward compatibility 8 + Submitted by [@albertcito](https://github.com/albertcito) (See [#3858](https://github.com/urql-graphql/urql/pull/3858)) 9 + 3 10 ## 2.0.0 4 11 5 12 ### Major Changes
+1 -1
packages/vue-urql/jsr.json
··· 1 1 { 2 2 "name": "@urql/vue", 3 - "version": "2.0.0", 3 + "version": "2.1.0", 4 4 "exports": { 5 5 ".": "./src/index.ts" 6 6 },
+1 -1
packages/vue-urql/package.json
··· 1 1 { 2 2 "name": "@urql/vue", 3 - "version": "2.0.0", 3 + "version": "2.1.0", 4 4 "description": "A highly customizable and versatile GraphQL client for vue", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",