Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
kitten committed Jul 29, 2020
1 parent 4ec0088 commit 8033b9b
Show file tree
Hide file tree
Showing 23 changed files with 86 additions and 60 deletions.
5 changes: 0 additions & 5 deletions .changeset/afraid-dragons-train.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/chatty-poems-rescue.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cuddly-ligers-design.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hip-adults-look.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/hot-turkeys-deliver.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/hungry-cycles-kiss.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/pretty-squids-learn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rotten-pandas-obey.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/six-shoes-kneel.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.0.2

### Patch Changes

- Add special-case for fetching an introspection result in our schema-checking, this avoids an error when urql-devtools fetches the backend graphql schema, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#893](https://github.com/FormidableLabs/urql/pull/893))
- Mute warning when using built-in GraphQL fields, like `__type`, by [@kitten](https://github.com/kitten) (See [#919](https://github.com/FormidableLabs/urql/pull/919))
- ⚠️ Fix return type for resolvers to allow data objects to be returned with `__typename` as expected, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#927](https://github.com/FormidableLabs/urql/pull/927))
- Updated dependencies (See [#911](https://github.com/FormidableLabs/urql/pull/911) and [#908](https://github.com/FormidableLabs/urql/pull/908))
- @urql/core@1.12.3

## 3.0.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.0.1",
"version": "3.0.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.12.1",
"@urql/core": ">=1.12.3",
"wonka": "^4.0.14"
},
"peerDependencies": {
Expand Down
11 changes: 11 additions & 0 deletions exchanges/persisted-fetch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @urql/exchange-persisted-fetch

## 1.2.0

### Minor Changes

- Pass the parsed GraphQL-document as a second argument to the `generateHash` option, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#887](https://github.com/FormidableLabs/urql/pull/887))

### Patch Changes

- Updated dependencies (See [#911](https://github.com/FormidableLabs/urql/pull/911) and [#908](https://github.com/FormidableLabs/urql/pull/908))
- @urql/core@1.12.3

## 1.1.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions exchanges/persisted-fetch/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@urql/exchange-persisted-fetch",
"version": "1.1.0",
"version": "1.2.0",
"description": "An exchange that allows for persisted queries support when fetching queries",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down Expand Up @@ -49,7 +49,7 @@
"preset": "../../scripts/jest/preset"
},
"dependencies": {
"@urql/core": ">=1.12.2",
"@urql/core": ">=1.12.3",
"wonka": "^4.0.14"
},
"peerDependencies": {
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.12.3

### Patch Changes

- Remove whitespace and comments from string-queries, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#911](https://github.com/FormidableLabs/urql/pull/911))
- Remove redundant whitespaces when using GET for graphql queries, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#908](https://github.com/FormidableLabs/urql/pull/908))

## 1.12.2

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

## 1.1.0

### Minor Changes

- Add the option to reset the client on a next-urql application, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#894](https://github.com/FormidableLabs/urql/pull/894))

### Patch Changes

- Updated dependencies (See [#924](https://github.com/FormidableLabs/urql/pull/924) and [#904](https://github.com/FormidableLabs/urql/pull/904))
- [email protected]

## 1.0.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/next-urql/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "next-urql",
"version": "1.0.2",
"version": "1.1.0",
"description": "Convenience wrappers for using urql with NextJS.",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down Expand Up @@ -51,7 +51,7 @@
},
"dependencies": {
"react-ssr-prepass": "^1.2.1",
"urql": ">=1.9.8"
"urql": ">=1.10.0"
},
"peerDependencies": {
"isomorphic-unfetch": "^3.0.0",
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.2.0

### Minor Changes

- Add the operation to the query, mutation and subscription result, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#924](https://github.com/FormidableLabs/urql/pull/924))

### Patch Changes

- Updated dependencies (See [#911](https://github.com/FormidableLabs/urql/pull/911) and [#908](https://github.com/FormidableLabs/urql/pull/908))
- @urql/core@1.12.3

## 1.1.8

### 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.8",
"version": "1.2.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.12.0",
"@urql/core": "^1.12.3",
"wonka": "^4.0.14"
},
"publishConfig": {
Expand Down
12 changes: 12 additions & 0 deletions packages/react-urql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# urql

## 1.10.0

### Minor Changes

- Add the operation to the query, mutation and subscription result, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#924](https://github.com/FormidableLabs/urql/pull/924))

### Patch Changes

- Update hooks to be exported functions rather than exported block-scoped variables to provide TypeScript consumers with better access to their signature, by [@dotansimha](https://github.com/dotansimha) (See [#904](https://github.com/FormidableLabs/urql/pull/904))
- Updated dependencies (See [#911](https://github.com/FormidableLabs/urql/pull/911) and [#908](https://github.com/FormidableLabs/urql/pull/908))
- @urql/core@1.12.3

## 1.9.8

### 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.8",
"version": "1.10.0",
"description": "A highly customizable and versatile GraphQL client for React",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down Expand Up @@ -59,7 +59,7 @@
"react": ">= 16.8.0"
},
"dependencies": {
"@urql/core": "^1.12.0",
"@urql/core": "^1.12.3",
"wonka": "^4.0.14"
}
}
11 changes: 11 additions & 0 deletions packages/svelte-urql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @urql/svelte

## 0.4.0

### Minor Changes

- Add the operation to the query, mutation and subscription result, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#924](https://github.com/FormidableLabs/urql/pull/924))

### Patch Changes

- Updated dependencies (See [#911](https://github.com/FormidableLabs/urql/pull/911) and [#908](https://github.com/FormidableLabs/urql/pull/908))
- @urql/core@1.12.3

## 0.3.0

### Minor 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.3.0",
"version": "0.4.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 @@ -55,7 +55,7 @@
"svelte": "^3.0.0"
},
"dependencies": {
"@urql/core": "^1.12.1",
"@urql/core": "^1.12.3",
"wonka": "^4.0.14"
},
"devDependencies": {
Expand Down

0 comments on commit 8033b9b

Please sign in to comment.