Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
kitten committed Mar 19, 2020
1 parent 91f7110 commit a8e7f68
Show file tree
Hide file tree
Showing 21 changed files with 109 additions and 36 deletions.
16 changes: 0 additions & 16 deletions .changeset/rich-camels-hunt.md

This file was deleted.

10 changes: 10 additions & 0 deletions exchanges/graphcache/CHANGELOG.md
@@ -1,5 +1,15 @@
# @urql/exchange-graphcache

## 2.2.8

### Patch Changes

- ⚠️ Fix node resolution when using Webpack, which experiences a bug where it only resolves
`package.json:main` instead of `module` when an `.mjs` file imports a package, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#642](https://github.com/FormidableLabs/urql/pull/642))
- Updated dependencies (See [#642](https://github.com/FormidableLabs/urql/pull/642))
- @urql/exchange-populate@0.1.3
- @urql/core@1.10.4

## 2.2.7

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions exchanges/graphcache/package.json
@@ -1,6 +1,6 @@
{
"name": "@urql/exchange-graphcache",
"version": "2.2.7",
"version": "2.2.8",
"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.3",
"@urql/exchange-populate": ">=0.1.2",
"@urql/core": ">=1.10.4",
"@urql/exchange-populate": ">=0.1.3",
"wonka": "^4.0.9"
},
"peerDependencies": {
Expand Down
9 changes: 9 additions & 0 deletions exchanges/multipart-fetch/CHANGELOG.md
@@ -1,5 +1,14 @@
# @urql/exchange-multipart-fetch

## 0.1.3

### Patch Changes

- ⚠️ Fix node resolution when using Webpack, which experiences a bug where it only resolves
`package.json:main` instead of `module` when an `.mjs` file imports a package, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#642](https://github.com/FormidableLabs/urql/pull/642))
- Updated dependencies (See [#642](https://github.com/FormidableLabs/urql/pull/642))
- @urql/core@1.10.4

## 0.1.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions exchanges/multipart-fetch/package.json
@@ -1,6 +1,6 @@
{
"name": "@urql/exchange-multipart-fetch",
"version": "0.1.2",
"version": "0.1.3",
"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.3",
"@urql/core": ">=1.10.4",
"extract-files": "^7.0.0",
"wonka": "^4.0.9"
},
Expand Down
9 changes: 9 additions & 0 deletions exchanges/populate/CHANGELOG.md
@@ -1,5 +1,14 @@
# @urql/exchange-populate

## 0.1.3

### Patch Changes

- ⚠️ Fix node resolution when using Webpack, which experiences a bug where it only resolves
`package.json:main` instead of `module` when an `.mjs` file imports a package, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#642](https://github.com/FormidableLabs/urql/pull/642))
- Updated dependencies (See [#642](https://github.com/FormidableLabs/urql/pull/642))
- @urql/core@1.10.4

## 0.1.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions exchanges/populate/package.json
@@ -1,6 +1,6 @@
{
"name": "@urql/exchange-populate",
"version": "0.1.2",
"version": "0.1.3",
"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.3",
"@urql/core": ">=1.10.4",
"wonka": "^4.0.9"
},
"peerDependencies": {
Expand Down
9 changes: 9 additions & 0 deletions exchanges/retry/CHANGELOG.md
@@ -1,5 +1,14 @@
# Changelog

## 0.1.3

### Patch Changes

- ⚠️ Fix node resolution when using Webpack, which experiences a bug where it only resolves
`package.json:main` instead of `module` when an `.mjs` file imports a package, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#642](https://github.com/FormidableLabs/urql/pull/642))
- Updated dependencies (See [#642](https://github.com/FormidableLabs/urql/pull/642))
- @urql/core@1.10.4

## 0.1.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions exchanges/retry/package.json
@@ -1,6 +1,6 @@
{
"name": "@urql/exchange-retry",
"version": "0.1.2",
"version": "0.1.3",
"description": "An exchange for operation retry support in urql",
"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.3",
"@urql/core": ">=1.10.4",
"wonka": "^4.0.9"
},
"publishConfig": {
Expand Down
9 changes: 9 additions & 0 deletions exchanges/suspense/CHANGELOG.md
@@ -1,5 +1,14 @@
# Changelog

## 1.8.7

### Patch Changes

- ⚠️ Fix node resolution when using Webpack, which experiences a bug where it only resolves
`package.json:main` instead of `module` when an `.mjs` file imports a package, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#642](https://github.com/FormidableLabs/urql/pull/642))
- Updated dependencies (See [#642](https://github.com/FormidableLabs/urql/pull/642))
- @urql/core@1.10.4

## 1.8.6

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions exchanges/suspense/package.json
@@ -1,6 +1,6 @@
{
"name": "@urql/exchange-suspense",
"version": "1.8.6",
"version": "1.8.7",
"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 @@ -60,7 +60,7 @@
"react": ">= 16.8.0"
},
"dependencies": {
"@urql/core": ">=1.10.3",
"@urql/core": ">=1.10.4",
"wonka": "^4.0.9"
},
"publishConfig": {
Expand Down
7 changes: 7 additions & 0 deletions packages/core/CHANGELOG.md
@@ -1,5 +1,12 @@
# @urql/core

## 1.10.4

### Patch Changes

- ⚠️ Fix node resolution when using Webpack, which experiences a bug where it only resolves
`package.json:main` instead of `module` when an `.mjs` file imports a package, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#642](https://github.com/FormidableLabs/urql/pull/642))

## 1.10.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@urql/core",
"version": "1.10.3",
"version": "1.10.4",
"description": "The shared core for the highly customizable and versatile GraphQL client",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down
9 changes: 9 additions & 0 deletions packages/next-urql/CHANGELOG.md
@@ -1,5 +1,14 @@
# Changelog

## 0.3.5

### Patch Changes

- ⚠️ Fix node resolution when using Webpack, which experiences a bug where it only resolves
`package.json:main` instead of `module` when an `.mjs` file imports a package, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#642](https://github.com/FormidableLabs/urql/pull/642))
- Updated dependencies (See [#642](https://github.com/FormidableLabs/urql/pull/642))
- urql@1.9.3

## 0.3.4

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/next-urql/package.json
@@ -1,6 +1,6 @@
{
"name": "next-urql",
"version": "0.3.4",
"version": "0.3.5",
"description": "Convenience wrappers for using urql with NextJS.",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down Expand Up @@ -59,7 +59,7 @@
},
"dependencies": {
"react-ssr-prepass": "^1.1.2",
"urql": ">=1.9.2"
"urql": ">=1.9.3"
},
"peerDependencies": {
"isomorphic-unfetch": "^3.0.0",
Expand Down
9 changes: 9 additions & 0 deletions packages/preact-urql/CHANGELOG.md
@@ -1,5 +1,14 @@
# @urql/preact

## 1.1.4

### Patch Changes

- ⚠️ Fix node resolution when using Webpack, which experiences a bug where it only resolves
`package.json:main` instead of `module` when an `.mjs` file imports a package, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#642](https://github.com/FormidableLabs/urql/pull/642))
- Updated dependencies (See [#642](https://github.com/FormidableLabs/urql/pull/642))
- @urql/core@1.10.4

## 1.1.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/preact-urql/package.json
@@ -1,6 +1,6 @@
{
"name": "@urql/preact",
"version": "1.1.3",
"version": "1.1.4",
"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.3",
"@urql/core": "^1.10.4",
"wonka": "^4.0.9"
},
"publishConfig": {
Expand Down
9 changes: 9 additions & 0 deletions packages/react-urql/CHANGELOG.md
@@ -1,5 +1,14 @@
# urql

## 1.9.3

### Patch Changes

- ⚠️ Fix node resolution when using Webpack, which experiences a bug where it only resolves
`package.json:main` instead of `module` when an `.mjs` file imports a package, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#642](https://github.com/FormidableLabs/urql/pull/642))
- Updated dependencies (See [#642](https://github.com/FormidableLabs/urql/pull/642))
- @urql/core@1.10.4

## 1.9.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/react-urql/package.json
@@ -1,6 +1,6 @@
{
"name": "urql",
"version": "1.9.2",
"version": "1.9.3",
"description": "A highly customizable and versatile GraphQL client for React",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down Expand Up @@ -68,7 +68,7 @@
"react": ">= 16.8.0"
},
"dependencies": {
"@urql/core": "^1.10.3",
"@urql/core": "^1.10.4",
"wonka": "^4.0.9"
}
}
9 changes: 9 additions & 0 deletions packages/svelte-urql/CHANGELOG.md
@@ -1,5 +1,14 @@
# @urql/svelte

## 0.1.2

### Patch Changes

- ⚠️ Fix node resolution when using Webpack, which experiences a bug where it only resolves
`package.json:main` instead of `module` when an `.mjs` file imports a package, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#642](https://github.com/FormidableLabs/urql/pull/642))
- Updated dependencies (See [#642](https://github.com/FormidableLabs/urql/pull/642))
- @urql/core@1.10.4

## 0.1.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/svelte-urql/package.json
@@ -1,6 +1,6 @@
{
"name": "@urql/svelte",
"version": "0.1.1",
"version": "0.1.2",
"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.3",
"@urql/core": "^1.10.4",
"wonka": "^4.0.9"
},
"devDependencies": {
Expand Down

0 comments on commit a8e7f68

Please sign in to comment.