Skip to content

Commit 653cf99

Browse files
Version Packages (#3841)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 9b913ed commit 653cf99

File tree

11 files changed

+59
-32
lines changed

11 files changed

+59
-32
lines changed

.changeset/fast-nights-rescue.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/tall-paths-roll.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

examples/with-solid-start/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
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"

examples/with-solid/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
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
},
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,22 @@
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

packages/solid-start-urql/jsr.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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+
}

packages/solid-start-urql/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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/",
@@ -68,7 +68,7 @@
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": {

packages/solid-urql/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
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

packages/solid-urql/jsr.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@urql/solid",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"exports": {
55
".": "./src/index.ts"
66
},

packages/solid-urql/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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/",

0 commit comments

Comments
 (0)