Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
kitten committed Sep 29, 2020
1 parent 1433bbb commit 5737b74
Show file tree
Hide file tree
Showing 18 changed files with 54 additions and 47 deletions.
5 changes: 0 additions & 5 deletions .changeset/chatty-poems-film.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/famous-penguins-tickle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fuzzy-peas-shop.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/great-dragons-study.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/strange-waves-confess.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/thin-cows-hug.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tidy-bobcats-sniff.md

This file was deleted.

10 changes: 10 additions & 0 deletions exchanges/graphcache/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @urql/exchange-graphcache

## 3.1.2

### Patch Changes

- ⚠️ Fix small pieces of code where polyfill-less ES5 usage was compromised. This was unlikely to have affected anyone in production as `Array.prototype.find` (the only usage of an ES6 method) is commonly used and polyfilled, by [@kitten](https://github.com/kitten) (See [#991](https://github.com/FormidableLabs/urql/pull/991))
- ⚠️ Fix queries that have erroed with a `NetworkError` (`isOfflineError`) not flowing back completely through the `cacheExchange`.
These queries should also now be reexecuted when the client comes back online, by [@kitten](https://github.com/kitten) (See [#1011](https://github.com/FormidableLabs/urql/pull/1011))
- Updated dependencies (See [#1011](https://github.com/FormidableLabs/urql/pull/1011))
- @urql/core@1.13.1

## 3.1.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions exchanges/graphcache/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@urql/exchange-graphcache",
"version": "3.1.1",
"version": "3.1.2",
"description": "A normalized and configurable cache exchange for urql",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/graphcache",
Expand Down Expand Up @@ -65,7 +65,7 @@
"preset": "../../scripts/jest/preset"
},
"dependencies": {
"@urql/core": ">=1.13.0",
"@urql/core": ">=1.13.1",
"wonka": "^4.0.14"
},
"peerDependencies": {
Expand Down
11 changes: 11 additions & 0 deletions exchanges/populate/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @urql/exchange-populate

## 0.2.0

### Minor Changes

- Support interfaces and nested interfaces, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#963](https://github.com/FormidableLabs/urql/pull/963))

### Patch Changes

- Updated dependencies (See [#1011](https://github.com/FormidableLabs/urql/pull/1011))
- @urql/core@1.13.1

## 0.1.8

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions exchanges/populate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@urql/exchange-populate",
"version": "0.1.8",
"version": "0.2.0",
"description": "An exchange that automaticcally populates the mutation selection body",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/advanced/auto-populate-mutations",
Expand Down Expand Up @@ -49,7 +49,7 @@
"preset": "../../scripts/jest/preset"
},
"dependencies": {
"@urql/core": ">=1.12.0",
"@urql/core": ">=1.13.1",
"wonka": "^4.0.14"
},
"peerDependencies": {
Expand Down
4 changes: 1 addition & 3 deletions exchanges/refocus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,7 @@
},
"devDependencies": {
"@types/react": "^16.9.19",
"graphql": "^15.1.0",
"react": "^16.13.0",
"react-dom": "^16.13.0"
"graphql": "^15.1.0"
},
"peerDependencies": {
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0"
Expand Down
6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @urql/core

## 1.13.1

### Patch Changes

- Allow `client.reexecuteOperation` to be called with mutations which skip the active operation minimums, by [@kitten](https://github.com/kitten) (See [#1011](https://github.com/FormidableLabs/urql/pull/1011))

## 1.13.0

Please note that this release changes the data structure of the `ssrExchange`'s
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@urql/core",
"version": "1.13.0",
"version": "1.13.1",
"description": "The shared core for the highly customizable and versatile GraphQL client",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down
7 changes: 7 additions & 0 deletions packages/next-urql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 1.2.0

### Minor Changes

- Add option called `neverSuspend` to disable `React.Suspense` on next.js, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#923](https://github.com/FormidableLabs/urql/pull/923))
- Expose `initUrqlClient` function so that a `Client` can be created manually for use in Next's newer SSR methods manually, such as `getServerSideProps`, by [@sunpietro](https://github.com/sunpietro) (See [#993](https://github.com/FormidableLabs/urql/pull/993))

## 1.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/next-urql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "next-urql",
"version": "1.1.0",
"version": "1.2.0",
"description": "Convenience wrappers for using urql with NextJS.",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down
11 changes: 11 additions & 0 deletions packages/preact-urql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @urql/preact

## 1.3.0

### Minor Changes

- Update `@urql/preact` implementation to match `urql` React implementation. Internally these changes should align behaviour and updates slightly, but outwardly no changes should be apparent apart from how some updates are scheduled, by [@kitten](https://github.com/kitten) (See [#1008](https://github.com/FormidableLabs/urql/pull/1008))

### Patch Changes

- Updated dependencies (See [#1011](https://github.com/FormidableLabs/urql/pull/1011))
- @urql/core@1.13.1

## 1.2.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/preact-urql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@urql/preact",
"version": "1.2.1",
"version": "1.3.0",
"description": "A highly customizable and versatile GraphQL client for Preact",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down Expand Up @@ -61,7 +61,7 @@
"preact": ">= 10.0.0"
},
"dependencies": {
"@urql/core": "^1.13.0",
"@urql/core": "^1.13.1",
"wonka": "^4.0.14"
},
"publishConfig": {
Expand Down

0 comments on commit 5737b74

Please sign in to comment.