Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #1511

Merged
merged 1 commit into from
May 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/beige-candles-kneel.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/bright-tools-taste.md

This file was deleted.

23 changes: 0 additions & 23 deletions .changeset/curvy-bobcats-fry.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fair-beds-happen.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fluffy-ligers-draw.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/great-scissors-boil.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/large-frogs-tease.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/lovely-hounds-tap.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/moody-mice-arrive.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/quiet-tips-drive.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silent-turtles-check.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slow-doors-sparkle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/witty-spiders-matter.md

This file was deleted.

8 changes: 8 additions & 0 deletions exchanges/auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.1.3

### Patch Changes

- Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570))
- Updated dependencies (See [#1570](https://github.com/FormidableLabs/urql/pull/1570), [#1509](https://github.com/FormidableLabs/urql/pull/1509), [#1600](https://github.com/FormidableLabs/urql/pull/1600), and [#1515](https://github.com/FormidableLabs/urql/pull/1515))
- @urql/[email protected]

## 0.1.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions exchanges/auth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@urql/exchange-auth",
"version": "0.1.2",
"version": "0.1.3",
"description": "An exchange for managing authentication and token refresh in urql",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down Expand Up @@ -51,7 +51,7 @@
"preset": "../../scripts/jest/preset"
},
"dependencies": {
"@urql/core": ">=1.14.0",
"@urql/core": ">=2.1.0",
"wonka": "^4.0.14"
},
"peerDependencies": {
Expand Down
8 changes: 8 additions & 0 deletions exchanges/execute/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.0.4

### Patch Changes

- Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570))
- Updated dependencies (See [#1570](https://github.com/FormidableLabs/urql/pull/1570), [#1509](https://github.com/FormidableLabs/urql/pull/1509), [#1600](https://github.com/FormidableLabs/urql/pull/1600), and [#1515](https://github.com/FormidableLabs/urql/pull/1515))
- @urql/[email protected]

## 1.0.3

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions exchanges/execute/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@urql/exchange-execute",
"version": "1.0.3",
"version": "1.0.4",
"description": "An exchange for executing queries against a local schema in urql",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down Expand Up @@ -51,7 +51,7 @@
"preset": "../../scripts/jest/preset"
},
"dependencies": {
"@urql/core": ">=1.15.1",
"@urql/core": ">=2.1.0",
"wonka": "^4.0.14"
},
"peerDependencies": {
Expand Down
16 changes: 16 additions & 0 deletions exchanges/graphcache/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @urql/exchange-graphcache

## 4.1.0

### Minor Changes

- Add `cache.link(...)` method to Graphcache. This method may be used in updaters to update links in the cache. It is hence the writing-equivalent of `cache.resolve()`, which previously didn't have any equivalent as such, which meant that only `cache.updateQuery` or `cache.writeFragment` could be used, even to update simple relations, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#1551](https://github.com/FormidableLabs/urql/pull/1551))
- Add on a generic to `cacheExchange` and `offlineExchange` for future, experimental type-generation support, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#1562](https://github.com/FormidableLabs/urql/pull/1562))

### Patch Changes

- ⚠️ Fix up internal types in Graphcache to improve their accuracy for catching more edge cases in its implementation. This only affects you if you previously imported any type related to `ScalarObject` from Graphcache which now is a more opaque type. We've also adjusted the `NullArray` types to be potentially nested, since lists in GraphQL can be nested arbitarily, which we were covering but didn't reflect in our types, by [@kitten](https://github.com/kitten) (See [#1591](https://github.com/FormidableLabs/urql/pull/1591))
- Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570))
- ⚠️ Fix list items being returned as `null` even for non-nullable lists, when the entities are missing in the cache. This could happen when a resolver was added returning entities or their keys. This behaviour is now (correctly) only applied to partial results with schema awareness, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#1566](https://github.com/FormidableLabs/urql/pull/1566))
- Allow for the schema subscription and mutationType to be null, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#1530](https://github.com/FormidableLabs/urql/pull/1530))
- Updated dependencies (See [#1570](https://github.com/FormidableLabs/urql/pull/1570), [#1509](https://github.com/FormidableLabs/urql/pull/1509), [#1600](https://github.com/FormidableLabs/urql/pull/1600), and [#1515](https://github.com/FormidableLabs/urql/pull/1515))
- @urql/[email protected]

## 4.0.0

### Major 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": "4.0.0",
"version": "4.1.0",
"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": ">=2.0.0",
"@urql/core": ">=2.1.0",
"wonka": "^4.0.14"
},
"peerDependencies": {
Expand Down
8 changes: 8 additions & 0 deletions exchanges/multipart-fetch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @urql/exchange-multipart-fetch

## 0.1.12

### Patch Changes

- Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570))
- Updated dependencies (See [#1570](https://github.com/FormidableLabs/urql/pull/1570), [#1509](https://github.com/FormidableLabs/urql/pull/1509), [#1600](https://github.com/FormidableLabs/urql/pull/1600), and [#1515](https://github.com/FormidableLabs/urql/pull/1515))
- @urql/[email protected]

## 0.1.11

### 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.11",
"version": "0.1.12",
"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 @@ -49,7 +49,7 @@
"preset": "../../scripts/jest/preset"
},
"dependencies": {
"@urql/core": ">=1.14.1",
"@urql/core": ">=2.1.0",
"extract-files": "^8.1.0",
"wonka": "^4.0.14"
},
Expand Down
8 changes: 8 additions & 0 deletions exchanges/persisted-fetch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @urql/exchange-persisted-fetch

## 1.3.1

### Patch Changes

- Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570))
- Updated dependencies (See [#1570](https://github.com/FormidableLabs/urql/pull/1570), [#1509](https://github.com/FormidableLabs/urql/pull/1509), [#1600](https://github.com/FormidableLabs/urql/pull/1600), and [#1515](https://github.com/FormidableLabs/urql/pull/1515))
- @urql/[email protected]

## 1.3.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.3.0",
"version": "1.3.1",
"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": ">=2.0.0",
"@urql/core": ">=2.1.0",
"wonka": "^4.0.14"
},
"peerDependencies": {
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.2.2

### Patch Changes

- Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570))
- Updated dependencies (See [#1570](https://github.com/FormidableLabs/urql/pull/1570), [#1509](https://github.com/FormidableLabs/urql/pull/1509), [#1600](https://github.com/FormidableLabs/urql/pull/1600), and [#1515](https://github.com/FormidableLabs/urql/pull/1515))
- @urql/[email protected]

## 0.2.1

### 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.2.1",
"version": "0.2.2",
"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.14.0",
"@urql/core": ">=2.1.0",
"wonka": "^4.0.14"
},
"peerDependencies": {
Expand Down
8 changes: 8 additions & 0 deletions exchanges/refocus/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.2.3

### Patch Changes

- Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570))
- Updated dependencies (See [#1570](https://github.com/FormidableLabs/urql/pull/1570), [#1509](https://github.com/FormidableLabs/urql/pull/1509), [#1600](https://github.com/FormidableLabs/urql/pull/1600), and [#1515](https://github.com/FormidableLabs/urql/pull/1515))
- @urql/[email protected]

## 0.2.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions exchanges/refocus/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@urql/exchange-refocus",
"version": "0.2.2",
"version": "0.2.3",
"description": "An exchange that dispatches active operations when the window regains focus",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down Expand Up @@ -58,7 +58,7 @@
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0"
},
"dependencies": {
"@urql/core": ">=1.14.0",
"@urql/core": ">=2.1.0",
"wonka": "^4.0.14"
},
"publishConfig": {
Expand Down
8 changes: 8 additions & 0 deletions exchanges/request-policy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.1.2

### Patch Changes

- Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570))
- Updated dependencies (See [#1570](https://github.com/FormidableLabs/urql/pull/1570), [#1509](https://github.com/FormidableLabs/urql/pull/1509), [#1600](https://github.com/FormidableLabs/urql/pull/1600), and [#1515](https://github.com/FormidableLabs/urql/pull/1515))
- @urql/[email protected]

## 0.1.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions exchanges/request-policy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@urql/exchange-request-policy",
"version": "0.1.1",
"version": "0.1.2",
"description": "An exchange for operation request-policy upgrading in urql",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down Expand Up @@ -56,7 +56,7 @@
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0"
},
"dependencies": {
"@urql/core": ">=2.0.0",
"@urql/core": ">=2.1.0",
"wonka": "^4.0.14"
},
"publishConfig": {
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.2.1

### Patch Changes

- Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570))
- Updated dependencies (See [#1570](https://github.com/FormidableLabs/urql/pull/1570), [#1509](https://github.com/FormidableLabs/urql/pull/1509), [#1600](https://github.com/FormidableLabs/urql/pull/1600), and [#1515](https://github.com/FormidableLabs/urql/pull/1515))
- @urql/[email protected]

## 0.2.0

### Minor 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.2.0",
"version": "0.2.1",
"description": "An exchange for operation retry support in urql",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",
Expand Down Expand Up @@ -56,7 +56,7 @@
"graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0"
},
"dependencies": {
"@urql/core": ">=1.15.0",
"@urql/core": ">=2.1.0",
"wonka": "^4.0.14"
},
"publishConfig": {
Expand Down
Loading