Skip to content

Commit

Permalink
Version Packages (#3332)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Jul 26, 2023
1 parent 9fad2dc commit abf77f4
Show file tree
Hide file tree
Showing 14 changed files with 30 additions and 32 deletions.
5 changes: 0 additions & 5 deletions .changeset/cyan-melons-drive.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hungry-experts-admire.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/many-rabbits-wave.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tame-ways-obey.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/thin-badgers-return.md

This file was deleted.

2 changes: 1 addition & 1 deletion examples/with-defer-stream-directives/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"dependencies": {
"@graphql-yoga/plugin-defer-stream": "^1.7.1",
"@urql/core": "^4.1.0",
"@urql/exchange-graphcache": "^6.2.0",
"@urql/exchange-graphcache": "^6.3.0",
"graphql": "17.0.0-alpha.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-graphcache-pagination/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"dependencies": {
"@urql/core": "^4.1.0",
"@urql/exchange-graphcache": "^6.2.0",
"@urql/exchange-graphcache": "^6.3.0",
"graphql": "^16.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-graphcache-updates/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dependencies": {
"@urql/core": "^4.1.0",
"@urql/exchange-auth": "^2.1.5",
"@urql/exchange-graphcache": "^6.2.0",
"@urql/exchange-graphcache": "^6.3.0",
"graphql": "^16.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-subscriptions-via-fetch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"dependencies": {
"@urql/core": "^4.1.0",
"@urql/exchange-graphcache": "^6.2.0",
"@urql/exchange-graphcache": "^6.3.0",
"graphql": "^16.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/with-svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"dependencies": {
"@urql/core": "^4.1.0",
"@urql/svelte": "^4.0.3",
"@urql/svelte": "^4.0.4",
"graphql": "^16.6.0",
"svelte": "^4.0.5"
},
Expand Down
16 changes: 16 additions & 0 deletions exchanges/graphcache/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @urql/exchange-graphcache

## 6.3.0

### Minor Changes

- Allow scalar values on the parent to be accessed from `parent[info.fieldName]` consistently. Prior to this change `parent[fieldAlias]` would get populated, which wouldn’t always result in a field that’s consistently accessible
Submitted by [@kitten](https://github.com/kitten) (See [#3336](https://github.com/urql-graphql/urql/pull/3336))
- Allow `cache.resolve` to return `undefined` when a value is not cached to make it easier to cause a cache miss in resolvers. **Reminder:** Returning `undefined` from a resolver means a field is uncached, while returning `null` means that a field’s value is `null` without causing a cache miss
Submitted by [@kitten](https://github.com/kitten) (See [#3333](https://github.com/urql-graphql/urql/pull/3333))

### Patch Changes

- Record a dependency when `__typename` field is read. This removes a prior, outdated exception to avoid confusion when using `cache.resolve(entity, '__typename')` which doesn't cause the cache to record a dependency
Submitted by [@kitten](https://github.com/kitten) (See [#3335](https://github.com/urql-graphql/urql/pull/3335))
- ⚠️ Fix cases where `ResolveInfo`’s `parentFieldKey` was incorrectly populated with a key that isn’t a field key (allowing for `cache.resolve(info.parentKey, info.parentFieldKey)` to be possible) but was instead set to `info.parentKey` combined with the field key
Submitted by [@kitten](https://github.com/kitten) (See [#3336](https://github.com/urql-graphql/urql/pull/3336))

## 6.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion exchanges/graphcache/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@urql/exchange-graphcache",
"version": "6.2.0",
"version": "6.3.0",
"description": "A normalized and configurable cache exchange for urql",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/graphcache",
Expand Down
7 changes: 7 additions & 0 deletions packages/svelte-urql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @urql/svelte

## 4.0.4

### Patch Changes

- ⚠️ Fix `queryStore` and `subscriptionStore` not subscribing when `writable` calls its `StartStopNotifier`. This caused both stores to be inactive and become unresponsive when they’ve been unsubscribed from once, as they wouldn’t be able to restart their subscriptions to the `Client`
Submitted by [@kitten](https://github.com/kitten) (See [#3331](https://github.com/urql-graphql/urql/pull/3331))

## 4.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte-urql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@urql/svelte",
"version": "4.0.3",
"version": "4.0.4",
"description": "A highly customizable and versatile GraphQL client for Svelte",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down

0 comments on commit abf77f4

Please sign in to comment.