Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.

Version Packages (#3240)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

Changed files
+21 -19
.changeset
examples
with-apq
with-defer-stream-directives
with-graphcache-pagination
with-graphcache-updates
with-multipart
with-next
with-pagination
with-react
with-react-native
with-refresh-auth
with-retry
with-svelte
with-vue3
packages
-5
.changeset/famous-snakes-double.md
···
-
---
-
'@urql/core': patch
-
---
-
-
Return `AbortController` invocation to previous behaviour where it used to be more forceful. It will now properly abort outside of when our generator yields results, and hence now also cancels requests again that have already delivered headers but are currently awaiting a response body.
+1 -1
examples/with-apq/package.json
···
"start": "vite"
},
"dependencies": {
-
"@urql/core": "^4.0.8",
+
"@urql/core": "^4.0.9",
"@urql/exchange-persisted-fetch": "^1.3.0",
"graphql": "^16.6.0",
"react": "^18.2.0",
+1 -1
examples/with-defer-stream-directives/package.json
···
},
"dependencies": {
"@graphql-yoga/plugin-defer-stream": "^1.7.1",
-
"@urql/core": "^4.0.8",
+
"@urql/core": "^4.0.9",
"@urql/exchange-graphcache": "^6.1.1",
"graphql": "17.0.0-alpha.2",
"react": "^18.2.0",
+1 -1
examples/with-graphcache-pagination/package.json
···
"start": "vite"
},
"dependencies": {
-
"@urql/core": "^4.0.8",
+
"@urql/core": "^4.0.9",
"@urql/exchange-graphcache": "^6.1.1",
"graphql": "^16.6.0",
"react": "^18.2.0",
+1 -1
examples/with-graphcache-updates/package.json
···
"start": "vite"
},
"dependencies": {
-
"@urql/core": "^4.0.8",
+
"@urql/core": "^4.0.9",
"@urql/exchange-auth": "^2.1.4",
"@urql/exchange-graphcache": "^6.1.1",
"graphql": "^16.6.0",
+1 -1
examples/with-multipart/package.json
···
"start": "vite"
},
"dependencies": {
-
"@urql/core": "^4.0.8",
+
"@urql/core": "^4.0.9",
"graphql": "^16.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
+1 -1
examples/with-next/package.json
···
"version": "0.0.0",
"private": true,
"dependencies": {
-
"@urql/core": "^4.0.8",
+
"@urql/core": "^4.0.9",
"graphql": "^16.6.0",
"next": "13.2.4",
"next-urql": "^5.0.1",
+1 -1
examples/with-pagination/package.json
···
"start": "vite"
},
"dependencies": {
-
"@urql/core": "^4.0.8",
+
"@urql/core": "^4.0.9",
"graphql": "^16.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
+1 -1
examples/with-react-native/package.json
···
"start": "react-native start"
},
"dependencies": {
-
"@urql/core": "^4.0.8",
+
"@urql/core": "^4.0.9",
"graphql": "^16.6.0",
"react": "18.2.0",
"react-native": "0.71.4",
+1 -1
examples/with-react/package.json
···
"start": "vite"
},
"dependencies": {
-
"@urql/core": "^4.0.8",
+
"@urql/core": "^4.0.9",
"graphql": "^16.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
+1 -1
examples/with-refresh-auth/package.json
···
"start": "vite"
},
"dependencies": {
-
"@urql/core": "^4.0.8",
+
"@urql/core": "^4.0.9",
"@urql/exchange-auth": "^2.1.4",
"graphql": "^16.6.0",
"react": "^18.2.0",
+1 -1
examples/with-retry/package.json
···
"start": "vite"
},
"dependencies": {
-
"@urql/core": "^4.0.8",
+
"@urql/core": "^4.0.9",
"@urql/exchange-retry": "^1.2.0",
"graphql": "^16.6.0",
"react": "^18.2.0",
+1 -1
examples/with-svelte/package.json
···
"serve": "vite preview"
},
"dependencies": {
-
"@urql/core": "^4.0.8",
+
"@urql/core": "^4.0.9",
"@urql/svelte": "^4.0.2",
"graphql": "^16.6.0",
"svelte": "^3.57.0"
+1 -1
examples/with-vue3/package.json
···
"serve": "vite preview"
},
"dependencies": {
-
"@urql/core": "^4.0.8",
+
"@urql/core": "^4.0.9",
"@urql/vue": "^1.1.2",
"graphql": "^16.6.0",
"vue": "^3.2.47"
+7
packages/core/CHANGELOG.md
···
# @urql/core
+
## 4.0.9
+
+
### Patch Changes
+
+
- Return `AbortController` invocation to previous behaviour where it used to be more forceful. It will now properly abort outside of when our generator yields results, and hence now also cancels requests again that have already delivered headers but are currently awaiting a response body
+
Submitted by [@kitten](https://github.com/kitten) (See [#3239](https://github.com/urql-graphql/urql/pull/3239))
+
## 4.0.8
### Patch Changes
+1 -1
packages/core/package.json
···
{
"name": "@urql/core",
-
"version": "4.0.8",
+
"version": "4.0.9",
"description": "The shared core for the highly customizable and versatile GraphQL client",
"sideEffects": false,
"homepage": "https://formidable.com/open-source/urql/docs/",