Skip to content

Commit

Permalink
Bump urql from 4.0.6 to 4.0.7 in /integration (99designs#2995)
Browse files Browse the repository at this point in the history
* Bump urql from 4.0.6 to 4.0.7 in /integration

Bumps [urql](https://github.com/urql-graphql/urql/tree/HEAD/packages/react-urql) from 4.0.6 to 4.0.7.
- [Release notes](https://github.com/urql-graphql/urql/releases)
- [Changelog](https://github.com/urql-graphql/urql/blob/main/packages/react-urql/CHANGELOG.md)
- [Commits](https://github.com/urql-graphql/urql/commits/[email protected]/packages/react-urql)

---
updated-dependencies:
- dependency-name: urql
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* chore: remove dedupExchange as it was removed and logic moved into a (99designs#2998)

client.

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Roman Dmytrenko <[email protected]>
  • Loading branch information
dependabot[bot] and erka committed Apr 9, 2024
1 parent 8ab3164 commit f3b3468
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 27 deletions.
46 changes: 23 additions & 23 deletions integration/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion integration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"graphql-sse": "^2.5.3",
"graphql-ws": "^5.16.0",
"typescript": "^5.4.4",
"urql": "^4.0.6",
"urql": "^4.0.7",
"vite": "^5.2.8",
"vitest": "^1.4.0"
}
Expand Down
4 changes: 1 addition & 3 deletions integration/src/__test__/integration.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
Observable,
Operation,
} from '@apollo/client/core';
import {HttpLink} from '@apollo/client/link/http';
import { HttpLink } from '@apollo/client/link/http';

import { print } from "graphql";
import { GraphQLWsLink } from "@apollo/client/link/subscriptions";
Expand All @@ -35,7 +35,6 @@ import {
import {
cacheExchange,
Client,
dedupExchange,
subscriptionExchange,
} from "urql";
import { isFragmentReady, useFragment } from "../generated";
Expand Down Expand Up @@ -370,7 +369,6 @@ describe("URQL SSE client", () => {
const client = new Client({
url: uri,
exchanges: [
dedupExchange,
cacheExchange,
subscriptionExchange({
enableAllOperations: true,
Expand Down

0 comments on commit f3b3468

Please sign in to comment.