Skip to content

Commit c6fcb30

Browse files
authored
deps: upgrade puppeteer to 24.2.1 (#16341)
1 parent f840c98 commit c6fcb30

File tree

4 files changed

+103
-94
lines changed

4 files changed

+103
-94
lines changed

Diff for: core/test/gather/driver/target-manager-test.js

+11-11
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
import {EventEmitter} from 'events';
88

9-
import {CdpCDPSession} from 'puppeteer-core/lib/cjs/puppeteer/cdp/CDPSession.js';
9+
import {CdpCDPSession} from 'puppeteer-core/lib/esm/puppeteer/cdp/CdpSession.js';
1010

1111
import {TargetManager} from '../../../gather/driver/target-manager.js';
1212
import {createMockCdpSession} from '../mock-driver.js';
@@ -329,12 +329,12 @@ describe('TargetManager', () => {
329329
iframeSession.on('Animation.animationCreated', iframeListener);
330330
targetManager.on('protocolevent', allListener);
331331

332-
// @ts-expect-error - types for _onMessage are wrong.
333-
rootSession._onMessage({method: 'DOM.documentUpdated'});
334-
// @ts-expect-error - types for _onMessage are wrong.
335-
rootSession._onMessage({method: 'Debugger.scriptParsed', params: {script: 'details'}});
336-
// @ts-expect-error - types for _onMessage are wrong.
337-
iframeSession._onMessage({method: 'Animation.animationCreated', params: {id: 'animated'}});
332+
// @ts-expect-error - internal function
333+
rootSession.onMessage({method: 'DOM.documentUpdated'});
334+
// @ts-expect-error - internal function
335+
rootSession.onMessage({method: 'Debugger.scriptParsed', params: {script: 'details'}});
336+
// @ts-expect-error - internal function
337+
iframeSession.onMessage({method: 'Animation.animationCreated', params: {id: 'animated'}});
338338

339339
expect(rootListener).toHaveBeenCalledTimes(1);
340340
expect(rootListener).toHaveBeenCalledWith(undefined);
@@ -381,12 +381,12 @@ describe('TargetManager', () => {
381381
const allListener = fnAny();
382382
targetManager.on('protocolevent', allListener);
383383

384-
// @ts-expect-error - types for _onMessage are wrong.
385-
rootSession._onMessage({method: 'DOM.documentUpdated'});
384+
// @ts-expect-error - internal function
385+
rootSession.onMessage({method: 'DOM.documentUpdated'});
386386
expect(allListener).toHaveBeenCalled();
387387
targetManager.off('protocolevent', allListener);
388-
// @ts-expect-error - types for _onMessage are wrong.
389-
rootSession._onMessage({method: 'DOM.documentUpdated'});
388+
// @ts-expect-error - internal function
389+
rootSession.onMessage({method: 'DOM.documentUpdated'});
390390
expect(allListener).toHaveBeenCalledTimes(1);
391391
});
392392
});

Diff for: core/test/gather/session-test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
import {EventEmitter} from 'events';
88

9-
import {CdpCDPSession} from 'puppeteer-core/lib/cjs/puppeteer/cdp/CDPSession.js';
9+
import {CdpCDPSession} from 'puppeteer-core/lib/esm/puppeteer/cdp/CdpSession.js';
1010

1111
import {ProtocolSession} from '../../gather/session.js';
1212
import {

Diff for: package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@
168168
"pako": "^2.0.3",
169169
"preact": "^10.7.2",
170170
"pretty-json-stringify": "^0.0.2",
171-
"puppeteer": "^24.1.1",
171+
"puppeteer": "^24.2.1",
172172
"resolve": "^1.22.1",
173173
"rollup": "^2.52.7",
174174
"rollup-plugin-polyfill-node": "^0.12.0",
@@ -201,7 +201,7 @@
201201
"metaviewport-parser": "0.3.0",
202202
"open": "^8.4.0",
203203
"parse-cache-control": "1.0.1",
204-
"puppeteer-core": "^24.1.1",
204+
"puppeteer-core": "^24.2.1",
205205
"robots-parser": "^3.0.1",
206206
"semver": "^5.3.0",
207207
"speedline-core": "^1.4.3",

Diff for: yarn.lock

+89-80
Original file line numberDiff line numberDiff line change
@@ -1140,18 +1140,17 @@
11401140
resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570"
11411141
integrity sha1-p3c2C1s5oaLlEG+OhY8v0tBgxXA=
11421142

1143-
"@puppeteer/[email protected].0":
1144-
version "2.7.0"
1145-
resolved "https://registry.yarnpkg.com/@puppeteer/browsers/-/browsers-2.7.0.tgz#dad70b30458f4e0855b2f402055f408823cc67c5"
1146-
integrity sha512-bO61XnTuopsz9kvtfqhVbH6LTM1koxK0IlBR+yuVrM2LB7mk8+5o1w18l5zqd5cs8xlf+ntgambqRqGifMDjog==
1143+
"@puppeteer/[email protected].1":
1144+
version "2.7.1"
1145+
resolved "https://registry.yarnpkg.com/@puppeteer/browsers/-/browsers-2.7.1.tgz#6df07e95d8e22239b77599f3ceaef4041b933e62"
1146+
integrity sha512-MK7rtm8JjaxPN7Mf1JdZIZKPD2Z+W7osvrC1vjpvfOX1K0awDIHYbNi89f7eotp7eMUn2shWnt03HwVbriXtKQ==
11471147
dependencies:
11481148
debug "^4.4.0"
11491149
extract-zip "^2.0.1"
11501150
progress "^2.0.3"
11511151
proxy-agent "^6.5.0"
1152-
semver "^7.6.3"
1153-
tar-fs "^3.0.6"
1154-
unbzip2-stream "^1.4.3"
1152+
semver "^7.7.0"
1153+
tar-fs "^3.0.8"
11551154
yargs "^17.7.2"
11561155

11571156
"@rollup/plugin-inject@^5.0.1":
@@ -2020,27 +2019,33 @@ bare-events@^2.0.0, bare-events@^2.2.0:
20202019
resolved "https://registry.yarnpkg.com/bare-events/-/bare-events-2.2.0.tgz#a7a7263c107daf8b85adf0b64f908503454ab26e"
20212020
integrity sha512-Yyyqff4PIFfSuthCZqLlPISTWHmnQxoPuAvkmgzsJEmG3CesdIv6Xweayl0JkCZJSB2yYIdJyEz97tpxNhgjbg==
20222021

2023-
bare-fs@^2.1.1:
2024-
version "2.1.5"
2025-
resolved "https://registry.yarnpkg.com/bare-fs/-/bare-fs-2.1.5.tgz#55aae5f1c7701a83d7fbe62b0a57cfbee89a1726"
2026-
integrity sha512-5t0nlecX+N2uJqdxe9d18A98cp2u9BETelbjKpiVgQqzzmVNFYWEAjQHqS+2Khgto1vcwhik9cXucaj5ve2WWA==
2022+
bare-fs@^4.0.1:
2023+
version "4.0.1"
2024+
resolved "https://registry.yarnpkg.com/bare-fs/-/bare-fs-4.0.1.tgz#85844f34da819c76754d545323a8b23ed3617c76"
2025+
integrity sha512-ilQs4fm/l9eMfWY2dY0WCIUplSUp7U0CT1vrqMg1MUdeZl4fypu5UP0XcDBK5WBQPJAKP1b7XEodISmekH/CEg==
20272026
dependencies:
20282027
bare-events "^2.0.0"
2029-
bare-os "^2.0.0"
2030-
bare-path "^2.0.0"
2031-
streamx "^2.13.0"
2028+
bare-path "^3.0.0"
2029+
bare-stream "^2.0.0"
20322030

2033-
bare-os@^2.0.0, bare-os@^2.1.0:
2034-
version "2.2.0"
2035-
resolved "https://registry.yarnpkg.com/bare-os/-/bare-os-2.2.0.tgz#24364692984d0bd507621754781b31d7872736b2"
2036-
integrity sha512-hD0rOPfYWOMpVirTACt4/nK8mC55La12K5fY1ij8HAdfQakD62M+H4o4tpfKzVGLgRDTuk3vjA4GqGXXCeFbag==
2031+
bare-os@^3.0.1:
2032+
version "3.4.0"
2033+
resolved "https://registry.yarnpkg.com/bare-os/-/bare-os-3.4.0.tgz#97be31503f3095beb232a6871f0118859832eb0c"
2034+
integrity sha512-9Ous7UlnKbe3fMi7Y+qh0DwAup6A1JkYgPnjvMDNOlmnxNRQvQ/7Nst+OnUQKzk0iAT0m9BisbDVp9gCv8+ETA==
20372035

2038-
bare-path@^2.0.0, bare-path@^2.1.0:
2039-
version "2.1.0"
2040-
resolved "https://registry.yarnpkg.com/bare-path/-/bare-path-2.1.0.tgz#830f17fd39842813ca77d211ebbabe238a88cb4c"
2041-
integrity sha512-DIIg7ts8bdRKwJRJrUMy/PICEaQZaPGZ26lsSx9MJSwIhSrcdHn7/C8W+XmnG/rKi6BaRcz+JO00CjZteybDtw==
2036+
bare-path@^3.0.0:
2037+
version "3.0.0"
2038+
resolved "https://registry.yarnpkg.com/bare-path/-/bare-path-3.0.0.tgz#b59d18130ba52a6af9276db3e96a2e3d3ea52178"
2039+
integrity sha512-tyfW2cQcB5NN8Saijrhqn0Zh7AnFNsnczRcuWODH0eYAXBsJ5gVxAUuNr7tsHSC6IZ77cA0SitzT+s47kot8Mw==
2040+
dependencies:
2041+
bare-os "^3.0.1"
2042+
2043+
bare-stream@^2.0.0:
2044+
version "2.6.5"
2045+
resolved "https://registry.yarnpkg.com/bare-stream/-/bare-stream-2.6.5.tgz#bba8e879674c4c27f7e27805df005c15d7a2ca07"
2046+
integrity sha512-jSmxKJNJmHySi6hC42zlZnq00rga4jjxcgNZjY9N5WlOe/iOoGRtdwGsHzQv2RlH2KOYMwGUXhf2zXd32BA9RA==
20422047
dependencies:
2043-
bare-os "^2.1.0"
2048+
streamx "^2.21.0"
20442049

20452050
base64-js@^1.3.1:
20462051
version "1.5.1"
@@ -2188,7 +2193,7 @@ buffer-from@^1.0.0:
21882193
resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
21892194
integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
21902195

2191-
buffer@^5.1.0, buffer@^5.2.1:
2196+
buffer@^5.1.0:
21922197
version "5.7.1"
21932198
resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0"
21942199
integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==
@@ -2347,13 +2352,13 @@ chrome-launcher@^1.1.2:
23472352
is-wsl "^2.2.0"
23482353
lighthouse-logger "^2.0.1"
23492354

2350-
chromium-bidi@1.1.0:
2351-
version "1.1.0"
2352-
resolved "https://registry.yarnpkg.com/chromium-bidi/-/chromium-bidi-1.1.0.tgz#45e7d050ef512393424b6faa32a0ba67b2194040"
2353-
integrity sha512-HislCEczCuamWm3+55Lig9XKmMF13K+BGKum9rwtDAzgUAHT4h5jNwhDmD4U20VoVUG8ujnv9UZ89qiIf5uF8w==
2355+
chromium-bidi@1.3.0:
2356+
version "1.3.0"
2357+
resolved "https://registry.yarnpkg.com/chromium-bidi/-/chromium-bidi-1.3.0.tgz#59051cae1532444f2642e612f917100ce720a90f"
2358+
integrity sha512-G3x1bkST13kmbL7+dT/oRkNH/7C4UqG+0YQpmySrzXspyOhYgDNc6lhSGpj3cuexvH25WTENhTYq2Tt9JRXtbw==
23542359
dependencies:
2355-
mitt "3.0.1"
2356-
zod "3.24.1"
2360+
mitt "^3.0.1"
2361+
zod "^3.24.1"
23572362

23582363
ci-info@^3.2.0:
23592364
version "3.3.1"
@@ -2930,7 +2935,7 @@ delayed-stream@~1.0.0:
29302935
resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
29312936
integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk=
29322937

2933-
[email protected].1380148, [email protected], devtools-protocol@^0.0.1421213:
2938+
[email protected].1402036, [email protected], devtools-protocol@^0.0.1421213:
29342939
version "0.0.1421213"
29352940
resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.1421213.tgz#7d061c0748f2488fa429aaec3c42d700bb932092"
29362941
integrity sha512-E0JrRYeXiTZXJwFlJ0j8wz8TmM+VwCv128JaSyCEgTmyE54QE/GDhT4w6kS1m+nFKmulHWWrbrO2AHexZgcxFQ==
@@ -3566,6 +3571,11 @@ fast-fifo@^1.1.0, fast-fifo@^1.2.0:
35663571
resolved "https://registry.yarnpkg.com/fast-fifo/-/fast-fifo-1.3.0.tgz#03e381bcbfb29932d7c3afde6e15e83e05ab4d8b"
35673572
integrity sha512-IgfweLvEpwyA4WgiQe9Nx6VV2QkML2NkvZnk1oKnIzXgXdWxuhF7zw4DvLTPZJn6PIUneiAXPF24QmoEqHTjyw==
35683573

3574+
fast-fifo@^1.3.2:
3575+
version "1.3.2"
3576+
resolved "https://registry.yarnpkg.com/fast-fifo/-/fast-fifo-1.3.2.tgz#286e31de96eb96d38a97899815740ba2a4f3640c"
3577+
integrity sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==
3578+
35693579
fast-glob@^2.2.6:
35703580
version "2.2.7"
35713581
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d"
@@ -5342,7 +5352,7 @@ minimist@^1.2.0, minimist@^1.2.5:
53425352
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
53435353
integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==
53445354

5345-
5355+
mitt@^3.0.1:
53465356
version "3.0.1"
53475357
resolved "https://registry.yarnpkg.com/mitt/-/mitt-3.0.1.tgz#ea36cf0cc30403601ae074c8f77b7092cdab36d1"
53485358
integrity sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==
@@ -6027,28 +6037,28 @@ punycode@^2.1.0, punycode@^2.1.1:
60276037
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
60286038
integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
60296039

6030-
puppeteer-core@24.1.1, puppeteer-core@^24.1.1:
6031-
version "24.1.1"
6032-
resolved "https://registry.yarnpkg.com/puppeteer-core/-/puppeteer-core-24.1.1.tgz#cbf5a888168559e66319c0418f877a553c8ed2fa"
6033-
integrity sha512-7FF3gq6bpIsbq3I8mfbodXh3DCzXagoz3l2eGv1cXooYU4g0P4mcHQVHuBD4iSZPXNg8WjzlP5kmRwK9UvwF0A==
6040+
puppeteer-core@24.2.1, puppeteer-core@^24.2.1:
6041+
version "24.2.1"
6042+
resolved "https://registry.yarnpkg.com/puppeteer-core/-/puppeteer-core-24.2.1.tgz#a7a3a82902452094d746e483404767f0e16fed98"
6043+
integrity sha512-bCypUh3WXzETafv1TCFAjIUnI8BiQ/d+XvEfEXDLcIMm9CAvROqnBmbt79yBjwasoDZsgfXnUmIJU7Y27AalVQ==
60346044
dependencies:
6035-
"@puppeteer/browsers" "2.7.0"
6036-
chromium-bidi "1.1.0"
6045+
"@puppeteer/browsers" "2.7.1"
6046+
chromium-bidi "1.3.0"
60376047
debug "^4.4.0"
6038-
devtools-protocol "0.0.1380148"
6048+
devtools-protocol "0.0.1402036"
60396049
typed-query-selector "^2.12.0"
60406050
ws "^8.18.0"
60416051

6042-
puppeteer@^24.1.1:
6043-
version "24.1.1"
6044-
resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-24.1.1.tgz#dadcfbe05b25a54aee7061325631145db568890b"
6045-
integrity sha512-fuhceZ5HZuDXVuaMIRxUuDHfCJLmK0pXh8FlzVQ0/+OApStevxZhU5kAVeYFOEqeCF5OoAyZjcWbdQK27xW/9A==
6052+
puppeteer@^24.2.1:
6053+
version "24.2.1"
6054+
resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-24.2.1.tgz#e2e0370d84b788a12dcfc1cff6a970ce37ecc2e8"
6055+
integrity sha512-Euno62ou0cd0dTkOYTNioSOsFF4VpSnz4ldD38hi9ov9xCNtr8DbhmoJRUx+V9OuPgecueZbKOohRrnrhkbg3Q==
60466056
dependencies:
6047-
"@puppeteer/browsers" "2.7.0"
6048-
chromium-bidi "1.1.0"
6057+
"@puppeteer/browsers" "2.7.1"
6058+
chromium-bidi "1.3.0"
60496059
cosmiconfig "^9.0.0"
6050-
devtools-protocol "0.0.1380148"
6051-
puppeteer-core "24.1.1"
6060+
devtools-protocol "0.0.1402036"
6061+
puppeteer-core "24.2.1"
60526062
typed-query-selector "^2.12.0"
60536063

60546064
q@^1.5.1:
@@ -6435,10 +6445,10 @@ semver@^7.2.1, semver@^7.3.4, semver@^7.3.5, semver@^7.3.7:
64356445
dependencies:
64366446
lru-cache "^6.0.0"
64376447

6438-
semver@^7.6.3:
6439-
version "7.6.3"
6440-
resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143"
6441-
integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==
6448+
semver@^7.7.0:
6449+
version "7.7.1"
6450+
resolved "https://registry.yarnpkg.com/semver/-/semver-7.7.1.tgz#abd5098d82b18c6c81f6074ff2647fd3e7220c9f"
6451+
integrity sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==
64426452

64436453
64446454
version "6.0.0"
@@ -6707,16 +6717,6 @@ stealthy-require@^1.1.1:
67076717
resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b"
67086718
integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=
67096719

6710-
streamx@^2.13.0:
6711-
version "2.16.1"
6712-
resolved "https://registry.yarnpkg.com/streamx/-/streamx-2.16.1.tgz#2b311bd34832f08aa6bb4d6a80297c9caef89614"
6713-
integrity sha512-m9QYj6WygWyWa3H1YY69amr4nVgy61xfjys7xO7kviL5rfIEc2naf+ewFiOA+aEJD7y0JO3h2GoiUv4TDwEGzQ==
6714-
dependencies:
6715-
fast-fifo "^1.1.0"
6716-
queue-tick "^1.0.1"
6717-
optionalDependencies:
6718-
bare-events "^2.2.0"
6719-
67206720
streamx@^2.15.0:
67216721
version "2.15.0"
67226722
resolved "https://registry.yarnpkg.com/streamx/-/streamx-2.15.0.tgz#f58c92e6f726b5390dcabd6dd9094d29a854d698"
@@ -6725,6 +6725,16 @@ streamx@^2.15.0:
67256725
fast-fifo "^1.1.0"
67266726
queue-tick "^1.0.1"
67276727

6728+
streamx@^2.21.0:
6729+
version "2.22.0"
6730+
resolved "https://registry.yarnpkg.com/streamx/-/streamx-2.22.0.tgz#cd7b5e57c95aaef0ff9b2aef7905afa62ec6e4a7"
6731+
integrity sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==
6732+
dependencies:
6733+
fast-fifo "^1.3.2"
6734+
text-decoder "^1.1.0"
6735+
optionalDependencies:
6736+
bare-events "^2.2.0"
6737+
67286738
strict-uri-encode@^1.0.0:
67296739
version "1.1.0"
67306740
resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
@@ -6857,16 +6867,16 @@ tabulator-tables@^4.9.3:
68576867
resolved "https://registry.yarnpkg.com/tabulator-tables/-/tabulator-tables-4.9.3.tgz#89ea8f9bffc11ba9a789369b5165ac82da26f4f0"
68586868
integrity sha512-iwwQqAEGGxlgrBpcmJJvMJrfjGLcCXOB3AOb/DGkXqBy1YKoYA36hIl7qXGp6Jo8dSkzFAlDT6pKLZgyhs9OnQ==
68596869

6860-
tar-fs@^3.0.6:
6861-
version "3.0.6"
6862-
resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-3.0.6.tgz#eaccd3a67d5672f09ca8e8f9c3d2b89fa173f217"
6863-
integrity sha512-iokBDQQkUyeXhgPYaZxmczGPhnhXZ0CmrqI+MOb/WFGS9DW5wnfrLgtjUJBvz50vQ3qfRwJ62QVoCFu8mPVu5w==
6870+
tar-fs@^3.0.8:
6871+
version "3.0.8"
6872+
resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-3.0.8.tgz#8f62012537d5ff89252d01e48690dc4ebed33ab7"
6873+
integrity sha512-ZoROL70jptorGAlgAYiLoBLItEKw/fUxg9BSYK/dF/GAGYFJOJJJMvjPAKDJraCXFwadD456FCuvLWgfhMsPwg==
68646874
dependencies:
68656875
pump "^3.0.0"
68666876
tar-stream "^3.1.5"
68676877
optionalDependencies:
6868-
bare-fs "^2.1.1"
6869-
bare-path "^2.1.0"
6878+
bare-fs "^4.0.1"
6879+
bare-path "^3.0.0"
68706880

68716881
tar-stream@^1.5.0:
68726882
version "1.6.2"
@@ -6932,6 +6942,13 @@ testdouble@^3.18.0:
69326942
stringify-object-es5 "^2.5.0"
69336943
theredoc "^1.0.0"
69346944

6945+
text-decoder@^1.1.0:
6946+
version "1.2.3"
6947+
resolved "https://registry.yarnpkg.com/text-decoder/-/text-decoder-1.2.3.tgz#b19da364d981b2326d5f43099c310cc80d770c65"
6948+
integrity sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==
6949+
dependencies:
6950+
b4a "^1.6.4"
6951+
69356952
text-extensions@^1.0.0:
69366953
version "1.9.0"
69376954
resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.9.0.tgz#1853e45fee39c945ce6f6c36b2d659b5aabc2a26"
@@ -6972,7 +6989,7 @@ through2@^4.0.0:
69726989
dependencies:
69736990
readable-stream "3"
69746991

6975-
through@2, "through@>=2.2.7 <3", through@^2.3.8:
6992+
through@2, "through@>=2.2.7 <3":
69766993
version "2.3.8"
69776994
resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
69786995
integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
@@ -7200,14 +7217,6 @@ unbox-primitive@^1.0.1:
72007217
has-symbols "^1.0.2"
72017218
which-boxed-primitive "^1.0.2"
72027219

7203-
unbzip2-stream@^1.4.3:
7204-
version "1.4.3"
7205-
resolved "https://registry.yarnpkg.com/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz#b0da04c4371311df771cdc215e87f2130991ace7"
7206-
integrity sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==
7207-
dependencies:
7208-
buffer "^5.2.1"
7209-
through "^2.3.8"
7210-
72117220
undici-types@~5.26.4:
72127221
version "5.26.5"
72137222
resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617"
@@ -7634,7 +7643,7 @@ zip-stream@^2.0.1:
76347643
compress-commons "^1.2.0"
76357644
readable-stream "^2.0.0"
76367645

7637-
7638-
version "3.24.1"
7639-
resolved "https://registry.yarnpkg.com/zod/-/zod-3.24.1.tgz#27445c912738c8ad1e9de1bea0359fa44d9d35ee"
7640-
integrity sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==
7646+
zod@^3.24.1:
7647+
version "3.24.2"
7648+
resolved "https://registry.yarnpkg.com/zod/-/zod-3.24.2.tgz#8efa74126287c675e92f46871cfc8d15c34372b3"
7649+
integrity sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==

0 commit comments

Comments
 (0)