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 #2448

Merged
merged 1 commit into from
May 24, 2022
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/heavy-rabbits-beam.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/moody-brooms-refuse.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/spotty-ligers-play.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/thin-worms-unite.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/two-masks-draw.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/wise-parents-yawn.md

This file was deleted.

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

## 4.4.1

### Patch Changes

- Switch `isFragmentHeuristicallyMatching()` to always return `true` for writes, so that we give every fragment a chance to be applied and to write to the cache, by [@kitten](https://github.com/kitten) (See [#2455](https://github.com/FormidableLabs/urql/pull/2455))
- ⚠️ Fix default storage persisting data after `clear()` was called on it, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#2458](https://github.com/FormidableLabs/urql/pull/2458))
- Updated dependencies (See [#2446](https://github.com/FormidableLabs/urql/pull/2446), [#2456](https://github.com/FormidableLabs/urql/pull/2456), and [#2457](https://github.com/FormidableLabs/urql/pull/2457))
- @urql/[email protected]

## 4.4.0

### Minor 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.4.0",
"version": "4.4.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 @@ -65,7 +65,7 @@
"preset": "../../scripts/jest/preset"
},
"dependencies": {
"@urql/core": ">=2.3.6",
"@urql/core": ">=2.5.0",
"wonka": "^4.0.14"
},
"peerDependencies": {
Expand Down
12 changes: 12 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @urql/core

## 2.5.0

### Minor Changes

- Add `Accept` header to GraphQL HTTP requests. This complies to the specification but doesn't go as far as sending `Content-Type` which would throw a lot of APIs off. Instead, we'll now be sending an accept header for `application/graphql+json, application/json` to indicate that we comply with the GraphQL over HTTP protocol.
This also fixes headers merging to allow overriding `Accept` and `Content-Type` regardless of the user options' casing, by [@kitten](https://github.com/kitten) (See [#2457](https://github.com/FormidableLabs/urql/pull/2457))

### Patch Changes

- Support aborting in `withPromise` cases, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#2446](https://github.com/FormidableLabs/urql/pull/2446))
- Passthrough responses with content type of `text/*` as error messages, by [@kitten](https://github.com/kitten) (See [#2456](https://github.com/FormidableLabs/urql/pull/2456))

## 2.4.4

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

## 2.0.0

### Major Changes

- Reimplement Svelte with functional-only API.
We've gotten plenty of feedback and issues from the Svelte community about our prior
Svelte bindings. These bindings favoured a Store singleton to read and write to,
and a separate signal to start an operation.
Svelte usually however calls for a lot more flexibility, so we're returning the
API to a functional-only API again that serves to only create stores, which is more
similar to the original implementation, by [@jonathanstanley](https://github.com/jonathanstanley) (See [#2370](https://github.com/FormidableLabs/urql/pull/2370))

### Patch Changes

- Updated dependencies (See [#2446](https://github.com/FormidableLabs/urql/pull/2446), [#2456](https://github.com/FormidableLabs/urql/pull/2456), and [#2457](https://github.com/FormidableLabs/urql/pull/2457))
- @urql/[email protected]

## 1.3.3

### 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": "1.3.3",
"version": "2.0.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": "^2.3.6",
"@urql/core": "^2.5.0",
"wonka": "^4.0.14"
},
"devDependencies": {
Expand Down