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

chore(deps): update all devdependencies (major) #11637

Merged
merged 2 commits into from
Mar 18, 2024
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
32 changes: 16 additions & 16 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -176,12 +176,12 @@
"ts-api-utils": "1.3.0",
"ts-jest": "29.1.2",
"ts-jest-resolver": "2.0.1",
"ts-morph": "21.0.1",
"ts-morph": "22.0.0",
"ts-node": "10.9.2",
"typedoc": "0.25.0",
"typescript": "5.4.2",
"wait-for-observables": "1.0.3",
"web-streams-polyfill": "3.3.3",
"web-streams-polyfill": "4.0.0",
"whatwg-fetch": "3.6.20"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion src/link/http/__tests__/HttpLink.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import gql from "graphql-tag";
import fetchMock from "fetch-mock";
import { ASTNode, print, stripIgnoredCharacters } from "graphql";
import { TextDecoder } from "util";
import { ReadableStream } from "web-streams-polyfill/ponyfill/es2018";
import { ReadableStream } from "web-streams-polyfill";
import { Readable } from "stream";

import {
Expand Down
2 changes: 1 addition & 1 deletion src/link/http/__tests__/responseIterator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { itAsync, subscribeAndCount } from "../../../testing";
import type { Observable } from "zen-observable-ts";
import { ObservableQuery } from "../../../core";
import { TextEncoder, TextDecoder } from "util";
import { ReadableStream } from "web-streams-polyfill/ponyfill/es2018";
import { ReadableStream } from "web-streams-polyfill";
import { Readable } from "stream";

var Blob = require("blob-polyfill").Blob;
Expand Down
2 changes: 1 addition & 1 deletion src/link/http/__tests__/responseIteratorNoAsyncIterator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { HttpLink } from "../HttpLink";
import { itAsync, subscribeAndCount } from "../../../testing";
import type { Observable } from "zen-observable-ts";
import { TextEncoder, TextDecoder } from "util";
import { ReadableStream } from "web-streams-polyfill/ponyfill/es2018";
import { ReadableStream } from "web-streams-polyfill";
import { Readable } from "stream";

// As of Jest 26 there is no way to mock/unmock a module that is used indirectly
Expand Down
Loading