Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
kitten committed Apr 9, 2020
1 parent ded6f43 commit 1b2c6ab
Show file tree
Hide file tree
Showing 23 changed files with 113 additions and 59 deletions.
13 changes: 0 additions & 13 deletions .changeset/fast-sheep-fetch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/large-paws-look.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/modern-weeks-retire.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/rotten-jobs-count.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sweet-ghosts-share.md

This file was deleted.

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

## 2.3.1

### Patch Changes

- Add graphql@^15.0.0 to peer dependency range, by [@kitten](https://github.com/kitten) (See [#688](https://github.com/FormidableLabs/urql/pull/688))
- Forcefully bump @urql/core package in all bindings and in @urql/exchange-graphcache.
We're aware that in some cases users may not have upgraded to @urql/core, even though that's within
the typical patch range. Since the latest @urql/core version contains a patch that is required for
`cache-and-network` to work, we're pushing another patch that now forcefully bumps everyone to the
new version that includes this fix, by [@kitten](https://github.com/kitten) (See [#684](https://github.com/FormidableLabs/urql/pull/684))
- Reimplement persistence support to take commutative layers into account, by [@kitten](https://github.com/kitten) (See [#674](https://github.com/FormidableLabs/urql/pull/674))
- Updated dependencies (See [#688](https://github.com/FormidableLabs/urql/pull/688) and [#678](https://github.com/FormidableLabs/urql/pull/678))
- @urql/exchange-populate@0.1.4
- @urql/core@1.10.8

## 2.3.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions exchanges/graphcache/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@urql/exchange-graphcache",
"version": "2.3.0",
"version": "2.3.1",
"description": "A normalized and configurable cache exchange for urql",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/graphcache",
Expand Down Expand Up @@ -57,8 +57,8 @@
"preset": "../../scripts/jest/preset"
},
"dependencies": {
"@urql/core": ">=1.10.7",
"@urql/exchange-populate": ">=0.1.3",
"@urql/core": ">=1.10.8",
"@urql/exchange-populate": ">=0.1.4",
"wonka": "^4.0.9"
},
"peerDependencies": {
Expand Down
10 changes: 10 additions & 0 deletions exchanges/multipart-fetch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @urql/exchange-multipart-fetch

## 0.1.4

### Patch Changes

- Add graphql@^15.0.0 to peer dependency range, by [@kitten](https://github.com/kitten) (See [#688](https://github.com/FormidableLabs/urql/pull/688))
- Bump extract-files to ^8.1.0, by [@kitten](https://github.com/kitten) (See [#688](https://github.com/FormidableLabs/urql/pull/688))
- ⚠️ Fix non-2xx results never being parsed as GraphQL results. This can result in valid GraphQLErrors being hidden, which should take precedence over generic HTTP NetworkErrors, by [@kitten](https://github.com/kitten) (See [#678](https://github.com/FormidableLabs/urql/pull/678))
- Updated dependencies (See [#688](https://github.com/FormidableLabs/urql/pull/688) and [#678](https://github.com/FormidableLabs/urql/pull/678))
- @urql/core@1.10.8

## 0.1.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions exchanges/multipart-fetch/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@urql/exchange-multipart-fetch",
"version": "0.1.3",
"version": "0.1.4",
"description": "An exchange that allows regular fetch and will transition to multipart when files are included",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down Expand Up @@ -48,7 +48,7 @@
"preset": "../../scripts/jest/preset"
},
"dependencies": {
"@urql/core": ">=1.10.4",
"@urql/core": ">=1.10.8",
"extract-files": "^8.1.0",
"wonka": "^4.0.9"
},
Expand Down
8 changes: 8 additions & 0 deletions exchanges/populate/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @urql/exchange-populate

## 0.1.4

### Patch Changes

- Add graphql@^15.0.0 to peer dependency range, by [@kitten](https://github.com/kitten) (See [#688](https://github.com/FormidableLabs/urql/pull/688))
- Updated dependencies (See [#688](https://github.com/FormidableLabs/urql/pull/688) and [#678](https://github.com/FormidableLabs/urql/pull/678))
- @urql/core@1.10.8

## 0.1.3

### 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.3",
"version": "0.1.4",
"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 @@ -48,7 +48,7 @@
"preset": "../../scripts/jest/preset"
},
"dependencies": {
"@urql/core": ">=1.10.4",
"@urql/core": ">=1.10.8",
"wonka": "^4.0.9"
},
"peerDependencies": {
Expand Down
8 changes: 8 additions & 0 deletions exchanges/retry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.1.4

### Patch Changes

- Add graphql@^15.0.0 to peer dependency range, by [@kitten](https://github.com/kitten) (See [#688](https://github.com/FormidableLabs/urql/pull/688))
- Updated dependencies (See [#688](https://github.com/FormidableLabs/urql/pull/688) and [#678](https://github.com/FormidableLabs/urql/pull/678))
- @urql/core@1.10.8

## 0.1.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions exchanges/retry/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@urql/exchange-retry",
"version": "0.1.3",
"version": "0.1.4",
"description": "An exchange for operation retry support in urql",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down Expand Up @@ -59,7 +59,7 @@
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0"
},
"dependencies": {
"@urql/core": ">=1.10.4",
"@urql/core": ">=1.10.8",
"wonka": "^4.0.9"
},
"publishConfig": {
Expand Down
8 changes: 8 additions & 0 deletions exchanges/suspense/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.8.8

### Patch Changes

- Add graphql@^15.0.0 to peer dependency range, by [@kitten](https://github.com/kitten) (See [#688](https://github.com/FormidableLabs/urql/pull/688))
- Updated dependencies (See [#688](https://github.com/FormidableLabs/urql/pull/688) and [#678](https://github.com/FormidableLabs/urql/pull/678))
- @urql/core@1.10.8

## 1.8.7

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions exchanges/suspense/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@urql/exchange-suspense",
"version": "1.8.7",
"version": "1.8.8",
"description": "An exchange for client-side React Suspense support in urql",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down Expand Up @@ -52,7 +52,7 @@
"react": ">= 16.8.0"
},
"dependencies": {
"@urql/core": ">=1.10.4",
"@urql/core": ">=1.10.8",
"wonka": "^4.0.9"
},
"publishConfig": {
Expand Down
7 changes: 7 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @urql/core

## 1.10.8

### Patch Changes

- Add graphql@^15.0.0 to peer dependency range, by [@kitten](https://github.com/kitten) (See [#688](https://github.com/FormidableLabs/urql/pull/688))
- ⚠️ Fix non-2xx results never being parsed as GraphQL results. This can result in valid GraphQLErrors being hidden, which should take precedence over generic HTTP NetworkErrors, by [@kitten](https://github.com/kitten) (See [#678](https://github.com/FormidableLabs/urql/pull/678))

## 1.10.7

### Patch Changes
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.10.7",
"version": "1.10.8",
"description": "The shared core for the highly customizable and versatile GraphQL client",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down
13 changes: 13 additions & 0 deletions packages/preact-urql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @urql/preact

## 1.1.5

### Patch Changes

- Add graphql@^15.0.0 to peer dependency range, by [@kitten](https://github.com/kitten) (See [#688](https://github.com/FormidableLabs/urql/pull/688))
- Forcefully bump @urql/core package in all bindings and in @urql/exchange-graphcache.
We're aware that in some cases users may not have upgraded to @urql/core, even though that's within
the typical patch range. Since the latest @urql/core version contains a patch that is required for
`cache-and-network` to work, we're pushing another patch that now forcefully bumps everyone to the
new version that includes this fix, by [@kitten](https://github.com/kitten) (See [#684](https://github.com/FormidableLabs/urql/pull/684))
- Updated dependencies (See [#688](https://github.com/FormidableLabs/urql/pull/688) and [#678](https://github.com/FormidableLabs/urql/pull/678))
- @urql/core@1.10.8

## 1.1.4

### 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.1.4",
"version": "1.1.5",
"description": "A highly customizable and versatile GraphQL client for Preact",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down Expand Up @@ -60,7 +60,7 @@
"preact": ">= 10.0.0"
},
"dependencies": {
"@urql/core": "^1.10.7",
"@urql/core": "^1.10.8",
"wonka": "^4.0.9"
},
"publishConfig": {
Expand Down
13 changes: 13 additions & 0 deletions packages/react-urql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# urql

## 1.9.6

### Patch Changes

- Add graphql@^15.0.0 to peer dependency range, by [@kitten](https://github.com/kitten) (See [#688](https://github.com/FormidableLabs/urql/pull/688))
- Forcefully bump @urql/core package in all bindings and in @urql/exchange-graphcache.
We're aware that in some cases users may not have upgraded to @urql/core, even though that's within
the typical patch range. Since the latest @urql/core version contains a patch that is required for
`cache-and-network` to work, we're pushing another patch that now forcefully bumps everyone to the
new version that includes this fix, by [@kitten](https://github.com/kitten) (See [#684](https://github.com/FormidableLabs/urql/pull/684))
- Updated dependencies (See [#688](https://github.com/FormidableLabs/urql/pull/688) and [#678](https://github.com/FormidableLabs/urql/pull/678))
- @urql/core@1.10.8

## 1.9.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/react-urql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "urql",
"version": "1.9.5",
"version": "1.9.6",
"description": "A highly customizable and versatile GraphQL client for React",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down Expand Up @@ -60,7 +60,7 @@
"react": ">= 16.8.0"
},
"dependencies": {
"@urql/core": "^1.10.7",
"@urql/core": "^1.10.8",
"wonka": "^4.0.9"
}
}
13 changes: 13 additions & 0 deletions packages/svelte-urql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @urql/svelte

## 0.1.3

### Patch Changes

- Add graphql@^15.0.0 to peer dependency range, by [@kitten](https://github.com/kitten) (See [#688](https://github.com/FormidableLabs/urql/pull/688))
- Forcefully bump @urql/core package in all bindings and in @urql/exchange-graphcache.
We're aware that in some cases users may not have upgraded to @urql/core, even though that's within
the typical patch range. Since the latest @urql/core version contains a patch that is required for
`cache-and-network` to work, we're pushing another patch that now forcefully bumps everyone to the
new version that includes this fix, by [@kitten](https://github.com/kitten) (See [#684](https://github.com/FormidableLabs/urql/pull/684))
- Updated dependencies (See [#688](https://github.com/FormidableLabs/urql/pull/688) and [#678](https://github.com/FormidableLabs/urql/pull/678))
- @urql/core@1.10.8

## 0.1.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/svelte-urql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@urql/svelte",
"version": "0.1.2",
"version": "0.1.3",
"description": "A highly customizable and versatile GraphQL client for Svelte",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down Expand Up @@ -54,7 +54,7 @@
"svelte": "^3.0.0"
},
"dependencies": {
"@urql/core": "^1.10.7",
"@urql/core": "^1.10.8",
"wonka": "^4.0.9"
},
"devDependencies": {
Expand Down

0 comments on commit 1b2c6ab

Please sign in to comment.