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

Version Packages (#3841)

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
653cf99a 9b913ed6

+59 -32
-5
.changeset/fast-nights-rescue.md
··· 1 - --- 2 - '@urql/solid': patch 3 - --- 4 - 5 - Use `@solid-primitives/utils` for `access` and `MaybeAccessor` utilities instead of custom implementations. This aligns the package with standard Solid ecosystem conventions.
-16
.changeset/tall-paths-roll.md
··· 1 - --- 2 - '@urql/solid-start': minor 3 - --- 4 - 5 - Initial release of `@urql/solid-start` - URQL integration built with SolidStart's native primitives. 6 - 7 - Get started with: 8 - 9 - - **`createQuery`** - GraphQL queries using SolidStart's `query()` and `createAsync()` 10 - - **`createMutation`** - GraphQL mutations using SolidStart's `action()` and `useAction()` 11 - - **`createSubscription`** - Real-time GraphQL subscriptions 12 - - **`Provider`** and **`useClient`** - Context-based client access 13 - - **Reactive variables** - All parameters accept signals/accessors for automatic re-execution 14 - - **Full SSR support** - Works seamlessly with SolidStart's server-side rendering 15 - - **TypeScript support** - Complete type safety with GraphQL types 16 - - **Uses `@solid-primitives/utils`** - Leverages standard Solid ecosystem utilities
+2 -2
examples/with-solid-start/package.json
··· 10 10 "dependencies": { 11 11 "@solidjs/router": "^0.15.4", 12 12 "@solidjs/start": "^1.2.1", 13 - "@urql/core": "link:../../packages/core", 14 - "@urql/solid-start": "link:../../packages/solid-start-urql", 13 + "@urql/core": "^6.0.1", 14 + "@urql/solid-start": "^0.1.0", 15 15 "graphql": "^16.9.0", 16 16 "solid-js": "^1.9.10", 17 17 "vinxi": "^0.5.0"
+2 -2
examples/with-solid/package.json
··· 7 7 "build": "vite build" 8 8 }, 9 9 "dependencies": { 10 - "@urql/core": "link:../../packages/core", 11 - "@urql/solid": "link:../../packages/solid-urql", 10 + "@urql/core": "^6.0.1", 11 + "@urql/solid": "^1.0.1", 12 12 "graphql": "^16.9.0", 13 13 "solid-js": "^1.9.10" 14 14 },
+21
packages/solid-start-urql/CHANGELOG.md
··· 1 1 # @urql/solid-start 2 + 3 + ## 0.1.0 4 + 5 + ### Minor Changes 6 + 7 + - Initial release of `@urql/solid-start` - URQL integration built with SolidStart's native primitives. 8 + Get started with: 9 + - **`createQuery`** - GraphQL queries using SolidStart's `query()` and `createAsync()` 10 + - **`createMutation`** - GraphQL mutations using SolidStart's `action()` and `useAction()` 11 + - **`createSubscription`** - Real-time GraphQL subscriptions 12 + - **`Provider`** and **`useClient`** - Context-based client access 13 + - **Reactive variables** - All parameters accept signals/accessors for automatic re-execution 14 + - **Full SSR support** - Works seamlessly with SolidStart's server-side rendering 15 + - **TypeScript support** - Complete type safety with GraphQL types 16 + - **Uses `@solid-primitives/utils`** - Leverages standard Solid ecosystem utilities 17 + Submitted by [@davedbase](https://github.com/davedbase) (See [#3837](https://github.com/urql-graphql/urql/pull/3837)) 18 + 19 + ### Patch Changes 20 + 21 + - Updated dependencies (See [#3837](https://github.com/urql-graphql/urql/pull/3837)) 22 + - @urql/solid@1.0.1
+15
packages/solid-start-urql/jsr.json
··· 1 + { 2 + "name": "@urql/solid-start", 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 + }
+2 -2
packages/solid-start-urql/package.json
··· 1 1 { 2 2 "name": "@urql/solid-start", 3 - "version": "0.0.0", 3 + "version": "0.1.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/", ··· 68 68 "dependencies": { 69 69 "@solid-primitives/utils": "^6.2.1", 70 70 "@urql/core": "workspace:^6.0.1", 71 - "@urql/solid": "workspace:^1.0.0", 71 + "@urql/solid": "workspace:^1.0.1", 72 72 "wonka": "^6.3.2" 73 73 }, 74 74 "publishConfig": {
+7
packages/solid-urql/CHANGELOG.md
··· 1 1 # @urql/solid 2 2 3 + ## 1.0.1 4 + 5 + ### Patch Changes 6 + 7 + - Use `@solid-primitives/utils` for `access` and `MaybeAccessor` utilities instead of custom implementations. This aligns the package with standard Solid ecosystem conventions 8 + Submitted by [@davedbase](https://github.com/davedbase) (See [#3837](https://github.com/urql-graphql/urql/pull/3837)) 9 + 3 10 ## 1.0.0 4 11 5 12 ### Patch Changes
+1 -1
packages/solid-urql/jsr.json
··· 1 1 { 2 2 "name": "@urql/solid", 3 - "version": "1.0.0", 3 + "version": "1.0.1", 4 4 "exports": { 5 5 ".": "./src/index.ts" 6 6 },
+1 -1
packages/solid-urql/package.json
··· 1 1 { 2 2 "name": "@urql/solid", 3 - "version": "1.0.0", 3 + "version": "1.0.1", 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/",
+8 -3
pnpm-lock.yaml
··· 559 559 specifier: workspace:^6.0.1 560 560 version: link:../core 561 561 '@urql/solid': 562 - specifier: workspace:^1.0.0 562 + specifier: workspace:^1.0.1 563 563 version: link:../solid-urql 564 564 solid-js: 565 565 specifier: ^1.9.10 ··· 616 616 devDependencies: 617 617 '@react-native-async-storage/async-storage': 618 618 specifier: ^2.2.0 619 - version: 2.2.0(react-native@0.75.3(@babel/core@7.28.3)(@babel/preset-env@7.13.15(@babel/core@7.28.3))(@types/react@18.3.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.2)) 619 + version: 2.2.0(react-native@0.75.3(@babel/core@7.28.5)(@babel/preset-env@7.13.15(@babel/core@7.28.5))(@types/react@18.3.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.2)) 620 620 '@react-native-community/netinfo': 621 621 specifier: ^11.2.1 622 622 version: 11.2.1(react-native@0.75.3(@babel/core@7.28.5)(@babel/preset-env@7.13.15(@babel/core@7.28.5))(@types/react@18.3.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.2)) ··· 6943 6943 6944 6944 intersection-observer@0.7.0: 6945 6945 resolution: {integrity: sha512-Id0Fij0HsB/vKWGeBe9PxeY45ttRiBmhFyyt/geBdDHBYNctMRTE3dC1U3ujzz3lap+hVXlEcVaB56kZP/eEUg==} 6946 + deprecated: The Intersection Observer polyfill is no longer needed and can safely be removed. Intersection Observer has been Baseline since 2019. 6946 6947 6947 6948 into-stream@3.1.0: 6948 6949 resolution: {integrity: sha512-TcdjPibTksa1NQximqep2r17ISRiNE9fwlfbg3F8ANdvP5/yrFTew86VcO//jk4QTaMlbjypPBq76HN2zaKfZQ==} ··· 8295 8296 next@13.5.7: 8296 8297 resolution: {integrity: sha512-W7KIRTE+hPcgGdq89P3mQLDX3m7pJ6nxSyC+YxYaUExE+cS4UledB+Ntk98tKoyhsv6fjb2TRAnD7VDvoqmeFg==} 8297 8298 engines: {node: '>=16.14.0'} 8299 + deprecated: This version has a security vulnerability. Please upgrade to a patched version. See https://nextjs.org/blog/security-update-2025-12-11 for more details. 8298 8300 hasBin: true 8299 8301 peerDependencies: 8300 8302 '@opentelemetry/api': ^1.1.0 ··· 10719 10721 tar@6.2.1: 10720 10722 resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} 10721 10723 engines: {node: '>=10'} 10724 + deprecated: Old versions of tar are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exhorbitant rates) by contacting i@izs.me 10722 10725 10723 10726 tar@7.4.3: 10724 10727 resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==} 10725 10728 engines: {node: '>=18'} 10729 + deprecated: Old versions of tar are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exhorbitant rates) by contacting i@izs.me 10726 10730 10727 10731 tarr@1.1.0: 10728 10732 resolution: {integrity: sha512-tENbQ43IQckay71stp1p1lljRhoEZpZk10FzEZKW2tJcMcnLwV3CfZdxBAERlH6nwnFvnHMS9eJOJl6IzSsG0g==} ··· 11723 11727 whatwg-encoding@3.1.1: 11724 11728 resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} 11725 11729 engines: {node: '>=18'} 11730 + deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation 11726 11731 11727 11732 whatwg-fetch@3.6.20: 11728 11733 resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==} ··· 15160 15165 react-dom: 16.14.0(react@16.14.0) 15161 15166 react-lifecycles-compat: 3.0.4 15162 15167 15163 - '@react-native-async-storage/async-storage@2.2.0(react-native@0.75.3(@babel/core@7.28.3)(@babel/preset-env@7.13.15(@babel/core@7.28.3))(@types/react@18.3.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.2))': 15168 + '@react-native-async-storage/async-storage@2.2.0(react-native@0.75.3(@babel/core@7.28.5)(@babel/preset-env@7.13.15(@babel/core@7.28.5))(@types/react@18.3.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.2))': 15164 15169 dependencies: 15165 15170 merge-options: 3.0.4 15166 15171 react-native: 0.75.3(@babel/core@7.28.5)(@babel/preset-env@7.13.15(@babel/core@7.28.5))(@types/react@18.3.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.6.2)