Skip to content

Commit 4011fcf

Browse files
renovate[bot]ardatangithub-actions[bot]
committed
fix(deps): update all non-major dependencies (#7020)
* fix(deps): update all non-major dependencies * Fixes * chore(dependencies): updated changesets for modified dependencies * More fixes * lets go --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Arda TANRIKULU <ardatanrikulu@gmail.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 805e42d commit 4011fcf

File tree

8 files changed

+105
-83
lines changed

8 files changed

+105
-83
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@graphql-tools/executor-urql-exchange": patch
3+
---
4+
dependencies updates:
5+
- Added dependency [`@whatwg-node/promise-helpers@^1.2.4` ↗︎](https://www.npmjs.com/package/@whatwg-node/promise-helpers/v/1.2.4) (to `dependencies`)

.changeset/rotten-turtles-serve.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@graphql-tools/executor-urql-exchange': patch
3+
---
4+
5+
Fix sync execution for urql exchange

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"clean-dist": "rimraf \"packages/**/dist\" && rimraf \".bob\"",
3535
"lint": "cross-env \"ESLINT_USE_FLAT_CONFIG=false\" eslint --ext .ts .",
3636
"postbuild": "tsx scripts/postbuild.ts",
37-
"postinstall": "patch-package",
37+
"postinstall": "patch-package && husky install",
3838
"prerelease": "yarn build",
3939
"prettier": "prettier --cache --ignore-path .gitignore --ignore-path .prettierignore --write --list-different .",
4040
"prettier:check": "prettier --cache --ignore-path .gitignore --ignore-path .prettierignore --check .",
@@ -59,7 +59,7 @@
5959
"@typescript-eslint/parser": "8.26.1",
6060
"babel-jest": "29.7.0",
6161
"bob-the-bundler": "7.0.1",
62-
"bun": "^1.1.43",
62+
"bun": "1.2.5",
6363
"chalk": "5.4.1",
6464
"concurrently": "9.1.2",
6565
"cross-env": "7.0.3",

packages/executors/apollo-link/src/index.ts

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,16 @@ function createApolloRequestHandler(executor: Executor): apolloImport.RequestHan
2525
if (disposed) return;
2626

2727
if (isAsyncIterable(results)) {
28+
const asyncIterator = results[Symbol.asyncIterator]();
2829
dispose = () => {
29-
results[Symbol.asyncIterator]().return?.();
30+
asyncIterator.return?.();
3031
};
31-
for await (const result of results) {
32-
observer.next(result);
32+
try {
33+
for await (const result of { [Symbol.asyncIterator]: () => asyncIterator }) {
34+
observer.next(result);
35+
}
36+
} catch (e) {
37+
observer.error(e);
3338
}
3439
} else {
3540
observer.next(results);

packages/executors/urql-exchange/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
},
5050
"dependencies": {
5151
"@graphql-tools/utils": "^10.8.4",
52+
"@whatwg-node/promise-helpers": "^1.2.4",
5253
"tslib": "^2.4.0"
5354
},
5455
"devDependencies": {

packages/executors/urql-exchange/src/index.ts

Lines changed: 27 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { OperationTypeNode } from 'graphql';
22
import { filter, make, merge, mergeMap, pipe, share, Source, takeUntil } from 'wonka';
3-
import { ExecutionRequest, Executor, fakePromise, isAsyncIterable } from '@graphql-tools/utils';
3+
import { ExecutionRequest, Executor, isAsyncIterable } from '@graphql-tools/utils';
44
import {
55
AnyVariables,
66
Exchange,
@@ -13,6 +13,7 @@ import {
1313
OperationContext,
1414
OperationResult,
1515
} from '@urql/core';
16+
import { handleMaybePromise } from '@whatwg-node/promise-helpers';
1617

1718
export function executorExchange(executor: Executor): Exchange {
1819
function makeYogaSource<TData extends Record<string, any>>(
@@ -37,9 +38,10 @@ export function executorExchange(executor: Executor): Exchange {
3738
};
3839
return make<OperationResult<TData>>(observer => {
3940
let ended = false;
40-
fakePromise()
41-
.then(() => executor(executionRequest))
42-
.then(result => {
41+
let iterator: AsyncIterator<ExecutionResult>;
42+
handleMaybePromise(
43+
() => executor(executionRequest),
44+
result => {
4345
if (ended || !result) {
4446
return;
4547
}
@@ -49,8 +51,15 @@ export function executorExchange(executor: Executor): Exchange {
4951
} else {
5052
let prevResult: OperationResult<TData, AnyVariables> | null = null;
5153

52-
return fakePromise().then(async () => {
53-
for await (const value of result) {
54+
iterator = result[Symbol.asyncIterator]() as AsyncIterator<ExecutionResult>;
55+
function iterate() {
56+
if (ended) {
57+
return;
58+
}
59+
return iterator.next().then(({ value, done }) => {
60+
if (done) {
61+
return;
62+
}
5463
if (value) {
5564
if (prevResult && value.incremental) {
5665
prevResult = mergeResultPatch(prevResult, value as ExecutionResult);
@@ -59,22 +68,23 @@ export function executorExchange(executor: Executor): Exchange {
5968
}
6069
observer.next(prevResult);
6170
}
62-
if (ended) {
63-
break;
64-
}
65-
}
66-
observer.complete();
67-
});
71+
return iterate();
72+
});
73+
}
74+
return handleMaybePromise(
75+
() => iterate(),
76+
() => observer.complete(),
77+
);
6878
}
69-
})
70-
.catch(error => {
79+
},
80+
error => {
7181
observer.next(makeErrorResult(operation, error));
72-
})
73-
.finally(() => {
7482
ended = true;
7583
observer.complete();
76-
});
84+
},
85+
);
7786
return () => {
87+
iterator?.return?.();
7888
ended = true;
7989
};
8090
});

packages/executors/urql-exchange/tests/urql-exchange.spec.ts

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
import { setTimeout } from 'timers/promises';
2-
import { createSchema, createYoga, DisposableSymbols } from 'graphql-yoga';
2+
import { createSchema, createYoga } from 'graphql-yoga';
33
import { pipe, toObservable } from 'wonka';
44
import { buildHTTPExecutor } from '@graphql-tools/executor-http';
55
import { ExecutionResult } from '@graphql-tools/utils';
66
import { createClient } from '@urql/core';
7+
import { AsyncDisposableStack } from '@whatwg-node/disposablestack';
78
import { testIf } from '../../../testing/utils.js';
89
import { executorExchange } from '../src/index.js';
910

1011
describe('URQL Yoga Exchange', () => {
12+
const asyncDisposableStack = new AsyncDisposableStack();
1113
const yoga = createYoga({
1214
logging: false,
1315
maskedErrors: false,
@@ -26,10 +28,10 @@ describe('URQL Yoga Exchange', () => {
2628
`,
2729
resolvers: {
2830
Query: {
29-
hello: () => 'Hello Urql Client!',
31+
hello: async () => 'Hello Urql Client!',
3032
},
3133
Mutation: {
32-
readFile: (_, args: { file: File }) => args.file.text(),
34+
readFile: async (_, args: { file: File }) => args.file.text(),
3335
},
3436
Subscription: {
3537
alphabet: {
@@ -48,19 +50,21 @@ describe('URQL Yoga Exchange', () => {
4850
},
4951
}),
5052
});
53+
asyncDisposableStack.use(yoga);
5154

5255
const executor = buildHTTPExecutor({
5356
endpoint: 'http://localhost:4000/graphql',
5457
fetch: yoga.fetch,
5558
File: yoga.fetchAPI.File,
5659
FormData: yoga.fetchAPI.FormData,
5760
});
61+
asyncDisposableStack.use(executor);
5862
const client = createClient({
5963
url: 'http://localhost:4000/graphql',
6064
exchanges: [executorExchange(executor)],
6165
});
6266

63-
afterAll(() => executor[DisposableSymbols.asyncDispose]());
67+
afterAll(() => asyncDisposableStack.disposeAsync());
6468

6569
it('should handle queries correctly', async () => {
6670
const result = await client
@@ -117,7 +121,7 @@ describe('URQL Yoga Exchange', () => {
117121
expect(i).toBe(3);
118122
},
119123
);
120-
testIf(!globalThis.Bun)('should handle file uploads correctly', async () => {
124+
test('should handle file uploads correctly', async () => {
121125
const query = /* GraphQL */ `
122126
mutation readFile($file: File!) {
123127
readFile(file: $file)

yarn.lock

Lines changed: 48 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -1267,7 +1267,7 @@
12671267
dependencies:
12681268
tslib "^2.4.0"
12691269

1270-
"@envelop/core@5.2.3", "@envelop/core@^5.1.0", "@envelop/core@^5.2.3":
1270+
"@envelop/core@5.2.3", "@envelop/core@^5.2.3":
12711271
version "5.2.3"
12721272
resolved "https://registry.yarnpkg.com/@envelop/core/-/core-5.2.3.tgz#ede1dd20b4397c7465ae2190e718829303bcef00"
12731273
integrity sha512-KfoGlYD/XXQSc3BkM1/k15+JQbkQ4ateHazeZoWl9P71FsLTDXSjGy6j7QqfhpIDSbxNISqhPMfZHYSbDFOofQ==
@@ -1545,87 +1545,90 @@
15451545
dependencies:
15461546
giscus "^1.6.0"
15471547

1548-
"@graphql-tools/batch-delegate@^9.0.31":
1549-
version "9.0.31"
1550-
resolved "https://registry.yarnpkg.com/@graphql-tools/batch-delegate/-/batch-delegate-9.0.31.tgz#18e051d975e04931024e5d0456dfd0e6ff48f9fd"
1551-
integrity sha512-/ZPdyBPYvdsZsB9MOuHKysRtsZwwbiPO3XqnmorzJnUmBPMjy7vKpVJ9gq7TzCBToeGYfu4nibbdzZEMT39waw==
1548+
"@graphql-tools/batch-delegate@^9.0.32":
1549+
version "9.0.32"
1550+
resolved "https://registry.yarnpkg.com/@graphql-tools/batch-delegate/-/batch-delegate-9.0.32.tgz#3ceb3c00fca685bf869cde721a1ff0a6dc5811e3"
1551+
integrity sha512-Zhgh+OnEx2LEk8XdfWKfwRzlsrjUSyyvOqytAJdcgVTrL9cf0+UqGwuPWNU4r0VyReqstJc7I/UYZE7389psxQ==
15521552
dependencies:
1553-
"@graphql-tools/delegate" "^10.2.13"
1553+
"@graphql-tools/delegate" "^10.2.14"
15541554
"@graphql-tools/utils" "^10.8.1"
1555+
"@whatwg-node/promise-helpers" "^1.0.0"
15551556
dataloader "^2.2.3"
15561557
tslib "^2.8.1"
15571558

1558-
"@graphql-tools/batch-execute@^9.0.12":
1559-
version "9.0.12"
1560-
resolved "https://registry.yarnpkg.com/@graphql-tools/batch-execute/-/batch-execute-9.0.12.tgz#807e393ec6560247eeefb0338a02779a2e7175ab"
1561-
integrity sha512-AUKU/KLez9LvBFh8Uur4h5n2cKrHnBFADKyHWMP7/dAuG6vzFES047bYsKQR2oWhzO26ucQMVBm9GGw1+VCv8A==
1559+
"@graphql-tools/batch-execute@^9.0.13":
1560+
version "9.0.13"
1561+
resolved "https://registry.yarnpkg.com/@graphql-tools/batch-execute/-/batch-execute-9.0.13.tgz#f103c334af6df82efc629f7331e2e97e0822f842"
1562+
integrity sha512-CgxmfhMv/QYsZMKhmMOMLM5pt/8VaH/fbgebn/9eHQ5nik3qC5U3GD/mHh6Udxz29Rt0UdmHPH2Wo29+pIgsLg==
15621563
dependencies:
15631564
"@graphql-tools/utils" "^10.8.1"
1565+
"@whatwg-node/promise-helpers" "^1.0.0"
15641566
dataloader "^2.2.3"
15651567
tslib "^2.8.1"
15661568

1567-
"@graphql-tools/delegate@^10.1.2", "@graphql-tools/delegate@^10.2.13":
1568-
version "10.2.13"
1569-
resolved "https://registry.yarnpkg.com/@graphql-tools/delegate/-/delegate-10.2.13.tgz#7017f233c32ae62b9aa3fbd3af4e27c8075b6d27"
1570-
integrity sha512-FpxbNZ5OA3LYlU1CFMlHvNLyBgSKlDu/D1kffVbd4PhY82F6YnKKobAwwwA8ar8BhGOIf+XGw3+ybZa0hZs7WA==
1569+
"@graphql-tools/delegate@^10.1.2", "@graphql-tools/delegate@^10.2.14":
1570+
version "10.2.14"
1571+
resolved "https://registry.yarnpkg.com/@graphql-tools/delegate/-/delegate-10.2.14.tgz#cda471a770546203663ff01f52436f83b26b1467"
1572+
integrity sha512-s0m5ArQQS66IXnKjegIpNkevt9Md5LhDL55xwFSHttJYgo31PT5N6Z/PWvaOj7OKuGZLzua4rJOAzdfA9YRlhA==
15711573
dependencies:
1572-
"@graphql-tools/batch-execute" "^9.0.12"
1574+
"@graphql-tools/batch-execute" "^9.0.13"
15731575
"@graphql-tools/executor" "^1.3.10"
15741576
"@graphql-tools/schema" "^10.0.11"
15751577
"@graphql-tools/utils" "^10.8.1"
15761578
"@repeaterjs/repeater" "^3.0.6"
1579+
"@whatwg-node/promise-helpers" "^1.0.0"
15771580
dataloader "^2.2.3"
15781581
dset "^3.1.2"
15791582
tslib "^2.8.1"
15801583

1581-
"@graphql-tools/executor-common@^0.0.3":
1582-
version "0.0.3"
1583-
resolved "https://registry.yarnpkg.com/@graphql-tools/executor-common/-/executor-common-0.0.3.tgz#f8a25a7d8f3f9cb21935817bc99f2bf84e6b870b"
1584-
integrity sha512-DKp6Ut4WXVB6FJIey2ajacQO1yTv4sbLtvTRxdytCunFFWFSF3NNtfGWoULE6pNBAVYUY4a981u+X0A70mK1ew==
1584+
"@graphql-tools/executor-common@^0.0.4":
1585+
version "0.0.4"
1586+
resolved "https://registry.yarnpkg.com/@graphql-tools/executor-common/-/executor-common-0.0.4.tgz#763603a6d7a22bb09d67ce682e84a0d730ff2bf9"
1587+
integrity sha512-SEH/OWR+sHbknqZyROCFHcRrbZeUAyjCsgpVWCRjqjqRbiJiXq6TxNIIOmpXgkrXWW/2Ev4Wms6YSGJXjdCs6Q==
15851588
dependencies:
1586-
"@envelop/core" "^5.1.0"
1589+
"@envelop/core" "^5.2.3"
15871590
"@graphql-tools/utils" "^10.8.1"
15881591

15891592
"@graphql-tools/executor-graphql-ws@^2.0.1":
1590-
version "2.0.3"
1591-
resolved "https://registry.yarnpkg.com/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-2.0.3.tgz#894cafea1ad622932d6d27476f59c0a6b6320e5a"
1592-
integrity sha512-IIhENlCZ/5MdpoRSOM30z4hlBT4uOT1J2n6VI67/N1PI2zjxu7RWXlG2ZvmHl83XlVHu3yce5vE02RpS7Y+c4g==
1593+
version "2.0.4"
1594+
resolved "https://registry.yarnpkg.com/@graphql-tools/executor-graphql-ws/-/executor-graphql-ws-2.0.4.tgz#30ab9f318796b5942929809564c2383e92663496"
1595+
integrity sha512-FRNAFqHPOaiGqtc4GcXzGTOpJx01BK3CPtblTaUE90aauZIYU/P3/3z8TvakHL6k05dVq78nNxBBhgTA2hnFOA==
15931596
dependencies:
1594-
"@graphql-tools/executor-common" "^0.0.3"
1597+
"@graphql-tools/executor-common" "^0.0.4"
15951598
"@graphql-tools/utils" "^10.8.1"
1596-
"@whatwg-node/disposablestack" "^0.0.5"
1599+
"@whatwg-node/disposablestack" "^0.0.6"
15971600
graphql-ws "^6.0.3"
15981601
isomorphic-ws "^5.0.0"
15991602
tslib "^2.8.1"
16001603
ws "^8.17.1"
16011604

16021605
"@graphql-tools/executor-http@^1.1.9":
1603-
version "1.2.8"
1604-
resolved "https://registry.yarnpkg.com/@graphql-tools/executor-http/-/executor-http-1.2.8.tgz#e00784960224c7b5262775e5d4fd137a15eb25e7"
1605-
integrity sha512-hrlNqBm7M13HEVouNeJ8D9aPNMtoq8YlbiDdkQYq4LbNOTMpuFB13fRR9+6158l3VHKSHm9pRXDWFwfVZ3r1Xg==
1606+
version "1.3.0"
1607+
resolved "https://registry.yarnpkg.com/@graphql-tools/executor-http/-/executor-http-1.3.0.tgz#9bee620732c83796f10ac23616281cc24a97c10d"
1608+
integrity sha512-0NVrpUTvPRuvD5txm494xBJuxIHStYAuL9y6cURrJ0YCX6TpwmVhY8jFFAs67GAEDgVuOTq/BxRDoKMo6j0EAg==
16061609
dependencies:
1607-
"@graphql-tools/executor-common" "^0.0.3"
1610+
"@graphql-tools/executor-common" "^0.0.4"
16081611
"@graphql-tools/utils" "^10.8.1"
16091612
"@repeaterjs/repeater" "^3.0.4"
1610-
"@whatwg-node/disposablestack" "^0.0.5"
1613+
"@whatwg-node/disposablestack" "^0.0.6"
16111614
"@whatwg-node/fetch" "^0.10.4"
1612-
extract-files "^11.0.0"
1615+
"@whatwg-node/promise-helpers" "^1.0.0"
16131616
meros "^1.2.1"
16141617
tslib "^2.8.1"
1615-
value-or-promise "^1.0.12"
16161618

16171619
"@graphql-tools/stitch@^9.3.4":
1618-
version "9.4.18"
1619-
resolved "https://registry.yarnpkg.com/@graphql-tools/stitch/-/stitch-9.4.18.tgz#2b5f44c57f3e87af341b9e22dc0fc289da5343e5"
1620-
integrity sha512-s7SnpPRSpTth6JJ9ygC/gYBqUwuBPniT+5+VvS7S0WTClC5xNL/UwiGjM+b4nhGAtHNWJOM8CbPYLOVBEvusGA==
1620+
version "9.4.19"
1621+
resolved "https://registry.yarnpkg.com/@graphql-tools/stitch/-/stitch-9.4.19.tgz#609a3d6904e94a1adb17540d367a4cab05308c22"
1622+
integrity sha512-xYxTTEEfkyQ651fJACF6SvratbQoYKiysUP8Zhz7u58Cfsvu3MsyzaUqyDap1XTJmmw8Pq9/7JeIBc/tt/4kIw==
16211623
dependencies:
1622-
"@graphql-tools/batch-delegate" "^9.0.31"
1623-
"@graphql-tools/delegate" "^10.2.13"
1624+
"@graphql-tools/batch-delegate" "^9.0.32"
1625+
"@graphql-tools/delegate" "^10.2.14"
16241626
"@graphql-tools/executor" "^1.3.10"
16251627
"@graphql-tools/merge" "^9.0.12"
16261628
"@graphql-tools/schema" "^10.0.11"
16271629
"@graphql-tools/utils" "^10.8.1"
1628-
"@graphql-tools/wrap" "^10.0.31"
1630+
"@graphql-tools/wrap" "^10.0.32"
1631+
"@whatwg-node/promise-helpers" "^1.0.0"
16291632
tslib "^2.8.1"
16301633

16311634
"@graphql-tools/utils@^8.5.2":
@@ -1635,14 +1638,15 @@
16351638
dependencies:
16361639
tslib "^2.4.0"
16371640

1638-
"@graphql-tools/wrap@^10.0.16", "@graphql-tools/wrap@^10.0.31":
1639-
version "10.0.31"
1640-
resolved "https://registry.yarnpkg.com/@graphql-tools/wrap/-/wrap-10.0.31.tgz#2cc33a0596808228cf681f96aed9fe04a6f58207"
1641-
integrity sha512-W4sPLcvc4ZAPLpHifZQJQabL6WoXyzUWMh4n/NwI8mXAJrU4JAKKbJqONS8WC31i0gN+VCkBaSwssgbtbUz1Qw==
1641+
"@graphql-tools/wrap@^10.0.16", "@graphql-tools/wrap@^10.0.32":
1642+
version "10.0.32"
1643+
resolved "https://registry.yarnpkg.com/@graphql-tools/wrap/-/wrap-10.0.32.tgz#7b1e66f409aaa4a8bbe3faf7490ab4bc9142e39f"
1644+
integrity sha512-IQRzsmT5Q/NJW9zS+Vz9KClGckbJ7Qz71pDhENuk/pQAY9RLMM58Z+3AtXJFfXg0pCA9m6IZ8nu54UrrbY1jfQ==
16421645
dependencies:
1643-
"@graphql-tools/delegate" "^10.2.13"
1646+
"@graphql-tools/delegate" "^10.2.14"
16441647
"@graphql-tools/schema" "^10.0.11"
16451648
"@graphql-tools/utils" "^10.8.1"
1649+
"@whatwg-node/promise-helpers" "^1.0.0"
16461650
tslib "^2.8.1"
16471651

16481652
"@graphql-typed-document-node/core@^3.1.1", "@graphql-typed-document-node/core@^3.2.0":
@@ -3767,13 +3771,6 @@
37673771
"@webassemblyjs/ast" "1.14.1"
37683772
"@xtuc/long" "4.2.2"
37693773

3770-
"@whatwg-node/disposablestack@^0.0.5":
3771-
version "0.0.5"
3772-
resolved "https://registry.yarnpkg.com/@whatwg-node/disposablestack/-/disposablestack-0.0.5.tgz#cd646b1ef60a36972e018ab21f412a3539c6deec"
3773-
integrity sha512-9lXugdknoIequO4OYvIjhygvfSEgnO8oASLqLelnDhkRjgBZhc39shC3QSlZuyDO9bgYSIVa2cHAiN+St3ty4w==
3774-
dependencies:
3775-
tslib "^2.6.3"
3776-
37773774
"@whatwg-node/disposablestack@^0.0.6":
37783775
version "0.0.6"
37793776
resolved "https://registry.yarnpkg.com/@whatwg-node/disposablestack/-/disposablestack-0.0.6.tgz#2064a1425ea66194def6df0c7a1851b6939c82bb"
@@ -4423,7 +4420,7 @@ buffer-from@^1.0.0:
44234420
resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
44244421
integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
44254422

4426-
bun@^1.1.43:
4423+
bun@1.2.5:
44274424
version "1.2.5"
44284425
resolved "https://registry.yarnpkg.com/bun/-/bun-1.2.5.tgz#1e8e7a12ca98ebeba232590a1a5fbbc4633f3ab4"
44294426
integrity sha512-fbQLt+DPiGUrPKdmsHRRT7cQAlfjdxPVFvLZrsUPmKiTdv+pU50ypdx9yRJluknSbyaZchFVV7Lx2KXikXKX2Q==
@@ -12058,11 +12055,6 @@ v8-to-istanbul@^9.0.1:
1205812055
"@types/istanbul-lib-coverage" "^2.0.1"
1205912056
convert-source-map "^2.0.0"
1206012057

12061-
value-or-promise@^1.0.12:
12062-
version "1.0.12"
12063-
resolved "https://registry.yarnpkg.com/value-or-promise/-/value-or-promise-1.0.12.tgz#0e5abfeec70148c78460a849f6b003ea7986f15c"
12064-
integrity sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==
12065-
1206612058
vary@~1.1.2:
1206712059
version "1.1.2"
1206812060
resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"

0 commit comments

Comments
 (0)