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

Merged
merged 1 commit into from
Feb 25, 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/pretty-dingos-argue.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/serious-queens-suffer.md

This file was deleted.

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

## 2.4.3

### Patch Changes

- Prevent ignored characters in GraphQL queries from being replaced inside strings and block strings. Previously we accepted sanitizing strings via regular expressions causing duplicate hashes as acceptable, since it'd only be caused when a string wasn't extracted into variables. This is fixed now however, by [@kitten](https://github.com/kitten) (See [#2295](https://github.com/FormidableLabs/urql/pull/2295))

## 2.4.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": "2.4.2",
"version": "2.4.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/react-urql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# urql

## 2.2.0

### Minor Changes

- Revert to the previous `useQuery` implementation, `use-sync-external-store` seems to be causing some unexpected timing issues, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#2308](https://github.com/FormidableLabs/urql/pull/2308))

### Patch Changes

- Updated dependencies (See [#2295](https://github.com/FormidableLabs/urql/pull/2295))
- @urql/core@2.4.3

## 2.1.3

### 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": "2.1.3",
"version": "2.2.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": "^2.4.1",
"@urql/core": "^2.4.3",
"wonka": "^4.0.14"
}
}