Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
kitten committed Mar 17, 2020
1 parent 6f2aa88 commit 12f40a2
Show file tree
Hide file tree
Showing 24 changed files with 62 additions and 66 deletions.
5 changes: 0 additions & 5 deletions .changeset/dull-zebras-burn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fresh-cars-sip.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/khaki-jeans-report.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lucky-hotels-scream.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/metal-otters-mate.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/poor-bats-approve.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/red-candles-decide.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rude-toes-chew.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/spicy-flies-push.md

This file was deleted.

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

## 2.2.6

### Patch Changes

- ⚠️ Fix cache.inspectFields causing an undefined error for uninitialised or cleared commutative layers, by [@kitten](https://github.com/kitten) (See [#626](https://github.com/FormidableLabs/urql/pull/626))
- Improve Store constructor to accept an options object instead of separate arguments, identical to the cacheExchange options. (This is a patch, not a minor, since we consider Store part of the private API), by [@kitten](https://github.com/kitten) (See [#622](https://github.com/FormidableLabs/urql/pull/622))
- Allow a single field to be invalidated using cache.invalidate using two additional arguments, similar to store.resolve; This is a very small addition, so it's marked as a patch, by [@kitten](https://github.com/kitten) (See [#627](https://github.com/FormidableLabs/urql/pull/627))
- Prevent variables from being filtered and queries from being altered before they're forwarded, which prevented additional untyped variables from being used inside updater functions, by [@kitten](https://github.com/kitten) (See [#629](https://github.com/FormidableLabs/urql/pull/629))
- Expose generated result data on writeOptimistic and passthrough data on write operations, by [@kitten](https://github.com/kitten) (See [#613](https://github.com/FormidableLabs/urql/pull/613))
- Updated dependencies (See [#621](https://github.com/FormidableLabs/urql/pull/621))
- @urql/core@1.10.2

## 2.2.5

### Patch 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.2.5",
"version": "2.2.6",
"description": "A normalized and configurable cache exchange for urql",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/graphcache",
Expand Down Expand Up @@ -51,14 +51,14 @@
"lint": "eslint --ext=js,jsx,ts,tsx .",
"build": "rollup -c ../../scripts/rollup/config.js",
"prepare": "../../scripts/prepare/index.js",
"prepublishOnly": "run-s clean test build"
"prepublishOnly": "run-s clean build"
},
"jest": {
"preset": "../../scripts/jest/preset"
},
"dependencies": {
"wonka": "^3.2.1 || ^4.0.0",
"@urql/core": ">=1.10.1",
"@urql/core": ">=1.10.2",
"@urql/exchange-populate": ">=0.1.1"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion exchanges/multipart-fetch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"lint": "eslint --ext=js,jsx,ts,tsx .",
"build": "rollup -c ../../scripts/rollup/config.js",
"prepare": "../../scripts/prepare/index.js",
"prepublishOnly": "run-s clean test build"
"prepublishOnly": "run-s clean build"
},
"jest": {
"preset": "../../scripts/jest/preset"
Expand Down
2 changes: 1 addition & 1 deletion exchanges/populate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"lint": "eslint --ext=js,jsx,ts,tsx .",
"build": "rollup -c ../../scripts/rollup/config.js",
"prepare": "../../scripts/prepare/index.js",
"prepublishOnly": "run-s clean test build"
"prepublishOnly": "run-s clean build"
},
"jest": {
"preset": "../../scripts/jest/preset"
Expand Down
2 changes: 1 addition & 1 deletion exchanges/retry/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"lint": "eslint --ext=js,jsx,ts,tsx .",
"build": "rollup -c ../../scripts/rollup/config.js",
"prepare": "../../scripts/prepare/index.js",
"prepublishOnly": "run-s clean test build"
"prepublishOnly": "run-s clean build"
},
"jest": {
"preset": "../../scripts/jest/preset"
Expand Down
2 changes: 1 addition & 1 deletion exchanges/suspense/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"lint": "eslint --ext=js,jsx,ts,tsx .",
"build": "rollup -c ../../scripts/rollup/config.js",
"prepare": "../../scripts/prepare/index.js",
"prepublishOnly": "run-s clean test build"
"prepublishOnly": "run-s clean build"
},
"jest": {
"preset": "../../scripts/jest/preset"
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.10.2

### Patch Changes

- Add a guard to "maskTypenames" so a null value isn't considered an object, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#621](https://github.com/FormidableLabs/urql/pull/621))

## 1.10.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@urql/core",
"version": "1.10.1",
"version": "1.10.2",
"description": "The shared core for the highly customizable and versatile GraphQL client",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down Expand Up @@ -34,7 +34,7 @@
"lint": "eslint --ext=js,jsx,ts,tsx .",
"build": "rollup -c ../../scripts/rollup/config.js",
"prepare": "../../scripts/prepare/index.js",
"prepublishOnly": "run-s clean test build"
"prepublishOnly": "run-s clean build"
},
"jest": {
"preset": "../../scripts/jest/preset"
Expand Down
2 changes: 1 addition & 1 deletion packages/next-urql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"check": "tsc --noEmit",
"build": "rollup -c ../../scripts/rollup/config.js",
"prepare": "../../scripts/prepare/index.js",
"prepublishOnly": "run-s clean test build"
"prepublishOnly": "run-s clean build"
},
"jest": {
"preset": "../../scripts/jest/preset",
Expand Down
8 changes: 8 additions & 0 deletions packages/preact-urql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @urql/preact

## 1.1.2

### Patch Changes

- Bumps the `@urql/core` dependency minor version to ^1.10.1 for React, Preact and Svelte, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#623](https://github.com/FormidableLabs/urql/pull/623))
- Updated dependencies (See [#621](https://github.com/FormidableLabs/urql/pull/621))
- @urql/core@1.10.2

## 1.1.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 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.1",
"version": "1.1.2",
"description": "A highly customizable and versatile GraphQL client for Preact",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down Expand Up @@ -36,7 +36,7 @@
"lint": "eslint --ext=js,jsx,ts,tsx .",
"build": "rollup -c ../../scripts/rollup/config.js",
"prepare": "../../scripts/prepare/index.js",
"prepublishOnly": "run-s clean test build"
"prepublishOnly": "run-s clean build"
},
"jest": {
"preset": "../../scripts/jest/preset"
Expand All @@ -52,7 +52,7 @@
"preact": ">= 10.0.0"
},
"dependencies": {
"@urql/core": "^1.10.1",
"@urql/core": "^1.10.2",
"wonka": "^4.0.6"
},
"publishConfig": {
Expand Down
9 changes: 9 additions & 0 deletions packages/react-urql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# urql

## 1.9.1

### Patch Changes

- Bumps the `@urql/core` dependency minor version to ^1.10.1 for React, Preact and Svelte, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#623](https://github.com/FormidableLabs/urql/pull/623))
- Avoid React v16.13.0's "Warning: Cannot update a component" by preventing cross-hook updates during render or initial mount, by [@kitten](https://github.com/kitten) (See [#630](https://github.com/FormidableLabs/urql/pull/630))
- Updated dependencies (See [#621](https://github.com/FormidableLabs/urql/pull/621))
- @urql/core@1.10.2

## 1.9.0

### Patch Changes
Expand Down
6 changes: 3 additions & 3 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.0",
"version": "1.9.1",
"description": "A highly customizable and versatile GraphQL client for React",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down Expand Up @@ -37,7 +37,7 @@
"lint": "eslint --ext=js,jsx,ts,tsx .",
"build": "rollup -c ../../scripts/rollup/config.js",
"prepare": "../../scripts/prepare/index.js",
"prepublishOnly": "run-s clean test build"
"prepublishOnly": "run-s clean build"
},
"jest": {
"preset": "../../scripts/jest/preset"
Expand All @@ -60,7 +60,7 @@
"react": ">= 16.8.0"
},
"dependencies": {
"@urql/core": "^1.10.1",
"@urql/core": "^1.10.2",
"wonka": "^4.0.7"
}
}
8 changes: 8 additions & 0 deletions packages/svelte-urql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @urql/svelte

## 0.1.0

### Patch Changes

- Bumps the `@urql/core` dependency minor version to ^1.10.1 for React, Preact and Svelte, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#623](https://github.com/FormidableLabs/urql/pull/623))
- Updated dependencies (See [#621](https://github.com/FormidableLabs/urql/pull/621))
- @urql/core@1.10.2

## 0.1.0-alpha.0

Initial Alpha Release
6 changes: 3 additions & 3 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.0-alpha.0",
"version": "0.1.0",
"description": "A highly customizable and versatile GraphQL client for Svelte",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down Expand Up @@ -36,7 +36,7 @@
"lint": "eslint --ext=js,jsx,ts,tsx .",
"build": "rollup -c ../../scripts/rollup/config.js",
"prepare": "../../scripts/prepare/index.js",
"prepublishOnly": "run-s clean test build"
"prepublishOnly": "run-s clean build"
},
"jest": {
"preset": "../../scripts/jest/preset"
Expand All @@ -46,7 +46,7 @@
"svelte": "^3.0.0"
},
"dependencies": {
"@urql/core": "^1.10.1",
"@urql/core": "^1.10.2",
"wonka": "^4.0.7"
},
"devDependencies": {
Expand Down

0 comments on commit 12f40a2

Please sign in to comment.