Skip to content

Commit

Permalink
Version Packages (#3443)
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 Dec 3, 2023
1 parent 0964a01 commit f39165d
Show file tree
Hide file tree
Showing 13 changed files with 25 additions and 27 deletions.
5 changes: 0 additions & 5 deletions .changeset/late-plants-poke.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/mean-onions-share.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/stale-eagles-hide.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tender-files-tie.md

This file was deleted.

2 changes: 1 addition & 1 deletion examples/with-apq/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"dependencies": {
"@urql/core": "^4.2.0",
"@urql/exchange-persisted": "^4.1.0",
"@urql/exchange-persisted": "^4.1.1",
"graphql": "^16.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand Down
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.2.0",
"@urql/exchange-graphcache": "^6.3.3",
"@urql/exchange-graphcache": "^6.4.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.2.0",
"@urql/exchange-graphcache": "^6.3.3",
"@urql/exchange-graphcache": "^6.4.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.2.0",
"@urql/exchange-auth": "^2.1.6",
"@urql/exchange-graphcache": "^6.3.3",
"@urql/exchange-graphcache": "^6.4.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.2.0",
"@urql/exchange-graphcache": "^6.3.3",
"@urql/exchange-graphcache": "^6.4.0",
"graphql": "^16.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand Down
11 changes: 11 additions & 0 deletions exchanges/graphcache/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @urql/exchange-graphcache

## 6.4.0

### Minor Changes

- Allow the user to debug cache-misses by means of the new `logger` interface on the `cacheExchange`. A field miss will dispatch a `debug` log when it's not marked with `@_optional` or when it's non-nullable in the `schema`
Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#3446](https://github.com/urql-graphql/urql/pull/3446))
- Add `onCacheHydrated` as an option for the `StorageAdapter`
Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#3428](https://github.com/urql-graphql/urql/pull/3428))
- Add optional `logger` to the options, this allows you to filter out warnings or disable them all together
Submitted by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#3444](https://github.com/urql-graphql/urql/pull/3444))

## 6.3.3

### Patch 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.3.3",
"version": "6.4.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 exchanges/persisted/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @urql/exchange-persisted-fetch

## 4.1.1

### Patch Changes

- Warn about cached persisted-miss results in development, when a `persistedExchange()` sees a persisted-miss error for a result that's already seen a persisted-miss error (i.e. two misses). This shouldn't happen unless something is caching persisted errors and we should warn about this appropriately
Submitted by [@kitten](https://github.com/kitten) (See [#3442](https://github.com/urql-graphql/urql/pull/3442))

## 4.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion exchanges/persisted/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@urql/exchange-persisted",
"version": "4.1.0",
"version": "4.1.1",
"description": "An exchange that allows for persisted queries support when fetching queries",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down

0 comments on commit f39165d

Please sign in to comment.