File tree Expand file tree Collapse file tree 11 files changed +59
-32
lines changed
Expand file tree Collapse file tree 11 files changed +59
-32
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1010 "dependencies" : {
1111 "@solidjs/router" : " ^0.15.4" ,
1212 "@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 " ,
1515 "graphql" : " ^16.9.0" ,
1616 "solid-js" : " ^1.9.10" ,
1717 "vinxi" : " ^0.5.0"
Original file line number Diff line number Diff line change 77 "build" : " vite build"
88 },
99 "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 " ,
1212 "graphql" : " ^16.9.0" ,
1313 "solid-js" : " ^1.9.10"
1414 },
Original file line number Diff line number Diff line change 11# @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
Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 11{
22 "name" : " @urql/solid-start" ,
3- "version" : " 0.0 .0" ,
3+ "version" : " 0.1 .0" ,
44 "description" : " A highly customizable and versatile GraphQL client for SolidStart" ,
55 "sideEffects" : false ,
66 "homepage" : " https://formidable.com/open-source/urql/docs/" ,
6868 "dependencies" : {
6969 "@solid-primitives/utils" : " ^6.2.1" ,
7070 "@urql/core" : " workspace:^6.0.1" ,
71- "@urql/solid" : " workspace:^1.0.0 " ,
71+ "@urql/solid" : " workspace:^1.0.1 " ,
7272 "wonka" : " ^6.3.2"
7373 },
7474 "publishConfig" : {
Original file line number Diff line number Diff line change 11# @urql/solid
22
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+
310## 1.0.0
411
512### Patch Changes
Original file line number Diff line number Diff line change 11{
22 "name" : " @urql/solid" ,
3- "version" : " 1.0.0 " ,
3+ "version" : " 1.0.1 " ,
44 "exports" : {
55 "." : " ./src/index.ts"
66 },
Original file line number Diff line number Diff line change 11{
22 "name" : " @urql/solid" ,
3- "version" : " 1.0.0 " ,
3+ "version" : " 1.0.1 " ,
44 "description" : " A highly customizable and versatile GraphQL client for Solid" ,
55 "sideEffects" : false ,
66 "homepage" : " https://formidable.com/open-source/urql/docs/" ,
You can’t perform that action at this time.
0 commit comments