Skip to content

Commit a7ef92c

Browse files
chore(deps): update all non-major dependencies (#6019)
* chore(deps): update all non-major dependencies * Fix CI * Fix benchmarks * Use the same version --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Arda TANRIKULU <[email protected]>
1 parent 5b611ef commit a7ef92c

File tree

9 files changed

+84
-81
lines changed

9 files changed

+84
-81
lines changed

.github/workflows/benchmark.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,9 @@ jobs:
2929
run: yarn build
3030
- name: Setup K6
3131
run: |
32-
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys C5AD17C747E3415A3642D57D77C6C491D6AC1D69
33-
echo "deb https://dl.k6.io/deb stable main" | sudo tee /etc/apt/sources.list.d/k6.list
32+
wget https://github.com/grafana/k6/releases/download/v0.37.0/k6-v0.37.0-linux-amd64.deb
3433
sudo apt-get update
35-
sudo apt-get install k6=0.37.0
34+
sudo apt-get install ./k6-v0.37.0-linux-amd64.deb
3635
- name: GraphQL API
3736
working-directory: ./benchmark/federation
3837
run: |

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"@theguild/prettier-config": "2.0.6",
5353
"@types/debug": "4.1.12",
5454
"@types/jest": "29.5.12",
55-
"@types/node": "20.11.30",
55+
"@types/node": "20.12.2",
5656
"@typescript-eslint/eslint-plugin": "7.3.1",
5757
"@typescript-eslint/parser": "7.3.1",
5858
"babel-jest": "29.7.0",
@@ -74,7 +74,7 @@
7474
"lint-staged": "15.2.2",
7575
"patch-package": "8.0.0",
7676
"prettier": "3.2.5",
77-
"prettier-plugin-tailwindcss": "0.5.12",
77+
"prettier-plugin-tailwindcss": "0.5.13",
7878
"ts-jest": "29.1.2",
7979
"ts-node": "10.9.2",
8080
"typedoc": "0.25.12",

packages/executors/apollo-link/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"tslib": "^2.3.1"
5757
},
5858
"devDependencies": {
59-
"@apollo/client": "3.9.9"
59+
"@apollo/client": "3.9.10"
6060
},
6161
"publishConfig": {
6262
"directory": "dist",

packages/graphql-tag-pluck/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"@vue/compiler-sfc": "3.4.21",
6868
"astrojs-compiler-sync": "^0.3.3",
6969
"svelte": "4.2.12",
70-
"svelte2tsx": "0.7.5"
70+
"svelte2tsx": "0.7.6"
7171
},
7272
"publishConfig": {
7373
"directory": "dist",

packages/links/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"tslib": "^2.4.0"
6060
},
6161
"devDependencies": {
62-
"@apollo/client": "3.9.9",
62+
"@apollo/client": "3.9.10",
6363
"@types/apollo-upload-client": "17.0.5",
6464
"graphql-upload": "16.0.2"
6565
},

packages/loaders/url/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,16 +68,16 @@
6868
"devDependencies": {
6969
"@envelop/core": "5.0.0",
7070
"@envelop/live-query": "7.0.0",
71-
"@graphql-yoga/plugin-defer-stream": "3.2.0",
71+
"@graphql-yoga/plugin-defer-stream": "3.3.0",
7272
"@types/express": "4.17.21",
7373
"@types/extract-files": "8.1.3",
7474
"@types/valid-url": "1.0.7",
7575
"babel-loader": "9.1.3",
7676
"express": "4.19.2",
77-
"graphql-sse": "2.5.2",
77+
"graphql-sse": "2.5.3",
7878
"graphql-upload": "16.0.2",
79-
"graphql-yoga": "5.2.0",
80-
"puppeteer": "22.6.1",
79+
"graphql-yoga": "5.3.0",
80+
"puppeteer": "22.6.2",
8181
"subscriptions-transport-ws": "0.11.0",
8282
"webpack": "5.91.0"
8383
},

packages/loaders/url/tests/yoga-compat.spec.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,16 @@ import { InMemoryLiveQueryStore } from '@n1ru4l/in-memory-live-query-store';
1111
import { SubscriptionProtocol, UrlLoader } from '../src';
1212
import { assertAsyncIterable, sleep } from './test-utils';
1313

14+
if (!globalThis.DOMException) {
15+
// @ts-expect-error DOMException is not defined in NodeJS 16
16+
globalThis.DOMException = class DOMException extends Error {
17+
constructor(message: string, name: string) {
18+
super(message);
19+
this.name = name;
20+
}
21+
};
22+
}
23+
1424
describe('Yoga Compatibility', () => {
1525
jest.setTimeout(10000);
1626
const loader = new UrlLoader();

website/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
},
1818
"devDependencies": {
1919
"@theguild/tailwind-config": "0.3.2",
20-
"@types/node": "20.11.30",
21-
"@types/react": "18.2.70",
20+
"@types/node": "20.12.2",
21+
"@types/react": "18.2.73",
2222
"typescript": "5.4.3"
2323
}
2424
}

yarn.lock

Lines changed: 61 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030
resolved "https://registry.yarnpkg.com/@apollo/cache-control-types/-/cache-control-types-1.0.2.tgz#f42ed3563acc7f1f50617d65d208483977adc68e"
3131
integrity sha512-Por80co1eUm4ATsvjCOoS/tIR8PHxqVjsA6z76I6Vw0rFn4cgyVElQcmQDIZiYsy41k8e5xkrMRECkM2WR8pNw==
3232

33-
"@apollo/[email protected].9", "@apollo/client@^3.7.0", "@apollo/client@~3.2.5 || ~3.3.0 || ~3.4.0 || ~3.5.0 || ~3.6.0 || ~3.7.0 || ~3.8.0 || ~3.9.0":
34-
version "3.9.9"
35-
resolved "https://registry.yarnpkg.com/@apollo/client/-/client-3.9.9.tgz#38f983a1ad24e2687abfced0a9c1c3bef8d32616"
36-
integrity sha512-/sMecU/M0WK9knrguts1lSLV8xFKzIgOMVb4mi6MOxgJXjliDB8PvOtmXhTqh2cVMMR4TzXgOnb+af/690zlQw==
33+
"@apollo/[email protected].10", "@apollo/client@^3.7.0", "@apollo/client@~3.2.5 || ~3.3.0 || ~3.4.0 || ~3.5.0 || ~3.6.0 || ~3.7.0 || ~3.8.0 || ~3.9.0":
34+
version "3.9.10"
35+
resolved "https://registry.yarnpkg.com/@apollo/client/-/client-3.9.10.tgz#f381f67f3559cb5f5b66ce9183f84f49616acbe4"
36+
integrity sha512-w8i/Lk1P0vvWZF0Xb00XPonn79/0rgRJ1vopBlVudVuy9QP29/NZXK0rI2xJIN6VrKuEqJZaVGJC+7k23I2sfA==
3737
dependencies:
3838
"@graphql-typed-document-node/core" "^3.1.1"
3939
"@wry/caches" "^1.0.0"
@@ -219,9 +219,9 @@
219219
node-fetch "^2.6.1"
220220

221221
"@astrojs/compiler@^2.3.4":
222-
version "2.7.0"
223-
resolved "https://registry.yarnpkg.com/@astrojs/compiler/-/compiler-2.7.0.tgz#023799f2fefd2aa8579ea6f802226387e5922f74"
224-
integrity sha512-XpC8MAaWjD1ff6/IfkRq/5k1EFj6zhCNqXRd5J43SVJEBj/Bsmizkm8N0xOYscGcDFQkRgEw6/eKnI5x/1l6aA==
222+
version "2.7.1"
223+
resolved "https://registry.yarnpkg.com/@astrojs/compiler/-/compiler-2.7.1.tgz#a7ab59a1c87b9e6e9c6adb34bb2ca3aaa8b9d14c"
224+
integrity sha512-/POejAYuj8WEw7ZI0J8JBvevjfp9jQ9Wmu/Bg52RiNwGXkMV7JnYpsenVfHvvf1G7R5sXHGKlTcxlQWhoUTiGQ==
225225

226226
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.24.1", "@babel/code-frame@^7.24.2":
227227
version "7.24.2"
@@ -1686,10 +1686,10 @@
16861686
dependencies:
16871687
tslib "^2.5.2"
16881688

1689-
"@graphql-yoga/plugin-defer-stream@3.2.0":
1690-
version "3.2.0"
1691-
resolved "https://registry.yarnpkg.com/@graphql-yoga/plugin-defer-stream/-/plugin-defer-stream-3.2.0.tgz#181e55e7f13edfad50b36bd372d9fbf5d4cd8e0c"
1692-
integrity sha512-TO6gJMNTlX17CGzJWG593O9rkneA+3jyY6sYpT+nNbZK/9VPB5Are/P/FFQ9iO7F3t90WTp1DMhlPgVnXlIBwg==
1689+
"@graphql-yoga/plugin-defer-stream@3.3.0":
1690+
version "3.3.0"
1691+
resolved "https://registry.yarnpkg.com/@graphql-yoga/plugin-defer-stream/-/plugin-defer-stream-3.3.0.tgz#9126257548e90dd1340afe62b044d97669ebb025"
1692+
integrity sha512-R6pvnTV/m+CJApquqOV9fVMigTCmRNC55UP7XMRwBwM/flZs3dT18V9vh43fUhWw+tR2AfEr46I3dvy0hhtB3w==
16931693
dependencies:
16941694
"@graphql-tools/utils" "^10.0.0"
16951695

@@ -2966,10 +2966,10 @@
29662966
"@types/node" "*"
29672967
form-data "^3.0.0"
29682968

2969-
"@types/node@*", "@types/node@20.11.30":
2970-
version "20.11.30"
2971-
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.11.30.tgz#9c33467fc23167a347e73834f788f4b9f399d66f"
2972-
integrity sha512-dHM6ZxwlmuZaRmUPfv1p+KrdD1Dci04FbdEm/9wEMouFqxYoFl5aMkt0VMAUtYRQDyYvD41WJLukhq/ha3YuTw==
2969+
"@types/node@*", "@types/node@20.12.2":
2970+
version "20.12.2"
2971+
resolved "https://registry.yarnpkg.com/@types/node/-/node-20.12.2.tgz#9facdd11102f38b21b4ebedd9d7999663343d72e"
2972+
integrity sha512-zQ0NYO87hyN6Xrclcqp7f8ZbXNbRfoGWNcMvHTPQp9UUrwI0mI7XBz+cu7/W6/VClYo2g63B0cjull/srU7LgQ==
29732973
dependencies:
29742974
undici-types "~5.26.4"
29752975

@@ -3003,13 +3003,12 @@
30033003
resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc"
30043004
integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==
30053005

3006-
"@types/[email protected].70":
3007-
version "18.2.70"
3008-
resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.70.tgz#89a37f9e0a6a4931f4259c598f40fd44dd6abf71"
3009-
integrity sha512-hjlM2hho2vqklPhopNkXkdkeq6Lv8WSZTpr7956zY+3WS5cfYUewtCzsJLsbW5dEv3lfSeQ4W14ZFeKC437JRQ==
3006+
"@types/[email protected].73":
3007+
version "18.2.73"
3008+
resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.73.tgz#0579548ad122660d99e00499d22e33b81e73ed94"
3009+
integrity sha512-XcGdod0Jjv84HOC7N5ziY3x+qL0AfmubvKOZ9hJjJ2yd5EE+KYjWhdOjt387e9HPheHkdggF9atTifMRtyAaRA==
30103010
dependencies:
30113011
"@types/prop-types" "*"
3012-
"@types/scheduler" "*"
30133012
csstype "^3.0.2"
30143013

30153014
@@ -3025,11 +3024,6 @@
30253024
resolved "https://registry.yarnpkg.com/@types/relay-runtime/-/relay-runtime-11.0.2.tgz#3e7a1371c13ee731288c751a53e7392c6afff2b5"
30263025
integrity sha512-GDw27MCYF45medCb0Ug08EPJVHA/K0yNKZ4N4LOGMaclUnLmzZJz9w6ja6pZMhBT84PQ9wsPZbHRPyXl57Am1Q==
30273026

3028-
"@types/scheduler@*":
3029-
version "0.16.2"
3030-
resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39"
3031-
integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==
3032-
30333027
"@types/semver@^7.5.0":
30343028
version "7.5.0"
30353029
resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.0.tgz#591c1ce3a702c45ee15f47a42ade72c2fd78978a"
@@ -3387,7 +3381,7 @@
33873381
resolved "https://registry.yarnpkg.com/@whatwg-node/events/-/events-0.1.0.tgz#1e7b4e4fd0d149b247ec0132b1030fe522282295"
33883382
integrity sha512-PnnAP/o6QkgAdjcExKugzl5ZUqPVcv9lvgGz/to3Xe5Du/P5Zw6MzB8P8mI/B4mplYOYsr6AkXkb4plG0ydCow==
33893383

3390-
"@whatwg-node/fetch@^0.9.0", "@whatwg-node/fetch@^0.9.7":
3384+
"@whatwg-node/fetch@^0.9.0", "@whatwg-node/fetch@^0.9.17":
33913385
version "0.9.17"
33923386
resolved "https://registry.yarnpkg.com/@whatwg-node/fetch/-/fetch-0.9.17.tgz#10e4ea2392926c8d41ff57e3156857e885317d3f"
33933387
integrity sha512-TDYP3CpCrxwxpiNY0UMNf096H5Ihf67BK1iKGegQl5u9SlpEDYrvnV71gWBGJm+Xm31qOy8ATgma9rm8Pe7/5Q==
@@ -3406,12 +3400,12 @@
34063400
fast-querystring "^1.1.1"
34073401
tslib "^2.3.1"
34083402

3409-
"@whatwg-node/server@^0.9.1":
3410-
version "0.9.1"
3411-
resolved "https://registry.yarnpkg.com/@whatwg-node/server/-/server-0.9.1.tgz#1c69c47768e1aef14de53deba468a411413bbcbf"
3412-
integrity sha512-Zq0FWafIlJzYyyAL7UwzsEhqSMzvKci/XqIFKpC4V031PxKKPBmZSP1mXCew5eZFW8Z5Sj6bZNi2CIsHd062ug==
3403+
"@whatwg-node/server@^0.9.32":
3404+
version "0.9.32"
3405+
resolved "https://registry.yarnpkg.com/@whatwg-node/server/-/server-0.9.32.tgz#e266afd5bd25fa4e4bf1c980a3cb3b18bc972bf4"
3406+
integrity sha512-PRTRE8ZhObwYx9yRoUdxYkrhCoDk2vyDA5BtaG+NAqEmU1wwbwlXUpaeRRrPuGaM7ScbIkueU25A0GJIRQzccw==
34133407
dependencies:
3414-
"@whatwg-node/fetch" "^0.9.7"
3408+
"@whatwg-node/fetch" "^0.9.17"
34153409
tslib "^2.3.1"
34163410

34173411
"@wry/caches@^1.0.0":
@@ -4358,10 +4352,10 @@ chrome-trace-event@^1.0.2:
43584352
resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac"
43594353
integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==
43604354

4361-
4362-
version "0.5.14"
4363-
resolved "https://registry.yarnpkg.com/chromium-bidi/-/chromium-bidi-0.5.14.tgz#0edd73fe91bdb3c7a1d6c890e5c68520cbf97eb9"
4364-
integrity sha512-zm4mX61/U4KXs+S/0WIBHpOWqtpW6FPv1i7n4UZqDDc5LOQ9/Y1MAnB95nO7i/lFFuijLjpe1XMdNcqDqwlH5w==
4355+
4356+
version "0.5.16"
4357+
resolved "https://registry.yarnpkg.com/chromium-bidi/-/chromium-bidi-0.5.16.tgz#345d04fee80d24729486f87d0f4c1c32f317a59d"
4358+
integrity sha512-IT5lnR44h/qZQ4GaCHvBxYIl4cQL2i9UvFyYeRyVdcpY04hx5H720HQfe/7Oz7ndxaYVLQFGpCO71J4X2Ye/Gw==
43654359
dependencies:
43664360
mitt "3.0.1"
43674361
urlpattern-polyfill "10.0.0"
@@ -6638,10 +6632,10 @@ [email protected]:
66386632
dependencies:
66396633
tslib "^2.5.0"
66406634

6641-
6642-
version "2.5.2"
6643-
resolved "https://registry.yarnpkg.com/graphql-sse/-/graphql-sse-2.5.2.tgz#5dcd16c9ad7e1fd844d3163de51fcbcc681bbb23"
6644-
integrity sha512-KCTl7HpD12xQrbXGdLrc1BL0ybfB6M83lxRO1mqT31pvOY01ZuWgiJKTY8+NAX8sgEMPVrnXXOXh9LqYDgNI+g==
6635+
6636+
version "2.5.3"
6637+
resolved "https://registry.yarnpkg.com/graphql-sse/-/graphql-sse-2.5.3.tgz#c3557803f2db306d8ac87fd3bc089b6d4bac8353"
6638+
integrity sha512-5IcFW3e7fPOG7oFkK1v3X1wWtCJArQKB/H1UJeNotjy7a/9EYA5K+EiHJF1BiDSVNx7y64bd0FlDETrNBSvIHQ==
66456639

66466640
66476641
version "2.0.0"
@@ -6676,23 +6670,23 @@ [email protected]:
66766670
object-path "^0.11.8"
66776671

66786672
graphql-ws@^5.14.0:
6679-
version "5.15.0"
6680-
resolved "https://registry.yarnpkg.com/graphql-ws/-/graphql-ws-5.15.0.tgz#2db79e1b42468a8363bf5ca6168d076e2f8fdebc"
6681-
integrity sha512-xWGAtm3fig9TIhSaNsg0FaDZ8Pyn/3re3RFlP4rhQcmjRDIPpk1EhRuNB+YSJtLzttyuToaDiNhwT1OMoGnJnw==
6673+
version "5.16.0"
6674+
resolved "https://registry.yarnpkg.com/graphql-ws/-/graphql-ws-5.16.0.tgz#849efe02f384b4332109329be01d74c345842729"
6675+
integrity sha512-Ju2RCU2dQMgSKtArPbEtsK5gNLnsQyTNIo/T7cZNp96niC1x0KdJNZV0TIoilceBPQwfb5itrGl8pkFeOUMl4A==
66826676

6683-
graphql-yoga@5.2.0, graphql-yoga@^5.0.0:
6684-
version "5.2.0"
6685-
resolved "https://registry.yarnpkg.com/graphql-yoga/-/graphql-yoga-5.2.0.tgz#7f8ffc032269adada8024f8772895125f8448182"
6686-
integrity sha512-wazpTEK0B6fSgcGge1EDpP69Oet5Gdp4VmzhqKJD7Uu9S1tP9vUR7AoeuWcrURoCWP2WTv/3dWTQWVt9RxmB1Q==
6677+
graphql-yoga@5.3.0, graphql-yoga@^5.0.0:
6678+
version "5.3.0"
6679+
resolved "https://registry.yarnpkg.com/graphql-yoga/-/graphql-yoga-5.3.0.tgz#7d8a3be48ac7cca6cf5e627351a58dbc802453d2"
6680+
integrity sha512-6mXoGE5AMN6YNugJvjBFIQ0dFUiOMloN0dAzLL8GFt4iJ5WlWRgjdzGHod2zZz7yWQokEVD42DHgrc7NY3Dm0w==
66876681
dependencies:
66886682
"@envelop/core" "^5.0.0"
6689-
"@graphql-tools/executor" "^1.2.2"
6683+
"@graphql-tools/executor" "^1.2.5"
66906684
"@graphql-tools/schema" "^10.0.0"
66916685
"@graphql-tools/utils" "^10.1.0"
66926686
"@graphql-yoga/logger" "^2.0.0"
66936687
"@graphql-yoga/subscription" "^5.0.0"
6694-
"@whatwg-node/fetch" "^0.9.7"
6695-
"@whatwg-node/server" "^0.9.1"
6688+
"@whatwg-node/fetch" "^0.9.17"
6689+
"@whatwg-node/server" "^0.9.32"
66966690
dset "^3.1.1"
66976691
lru-cache "^10.0.0"
66986692
tslib "^2.5.2"
@@ -10502,10 +10496,10 @@ prettier-plugin-sh@^0.14.0:
1050210496
mvdan-sh "^0.10.1"
1050310497
sh-syntax "^0.4.1"
1050410498

10505-
10506-
version "0.5.12"
10507-
resolved "https://registry.yarnpkg.com/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.5.12.tgz#655999849344548ecf4d9b47a051ed856f041c72"
10508-
integrity sha512-o74kiDBVE73oHW+pdkFSluHBL3cYEvru5YgEqNkBMFF7Cjv+w1vI565lTlfoJT4VLWDe0FMtZ7FkE/7a4pMXSQ==
10499+
10500+
version "0.5.13"
10501+
resolved "https://registry.yarnpkg.com/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.5.13.tgz#ee3c1e07848c90abdd1edde36a09366327e31e26"
10502+
integrity sha512-2tPWHCFNC+WRjAC4SIWQNSOdcL1NNkydXim8w7TDqlZi+/ulZYz2OouAI6qMtkggnPt7lGamboj6LcTMwcCvoQ==
1050910503

1051010504
1051110505
version "3.2.5"
@@ -10618,26 +10612,26 @@ punycode@^2.1.0:
1061810612
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
1061910613
integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
1062010614

10621-
10622-
version "22.6.1"
10623-
resolved "https://registry.yarnpkg.com/puppeteer-core/-/puppeteer-core-22.6.1.tgz#a6e7922a86fe9fdd3cdcbf73076332d8aefa1435"
10624-
integrity sha512-rShSd0xtyDSEJYys5nnzQnnwtrafQWg/lWCppyjZIIbYadWP8B1u0XJD/Oe+Xgw8v1hLHX0loNoA0ItRmNLnBg==
10615+
10616+
version "22.6.2"
10617+
resolved "https://registry.yarnpkg.com/puppeteer-core/-/puppeteer-core-22.6.2.tgz#1222c5777162265f88da74d847409be48aec47b4"
10618+
integrity sha512-Sws/9V2/7nFrn3MSsRPHn1pXJMIFn6FWHhoMFMUBXQwVvcBstRIa9yW8sFfxePzb56W1xNfSYzPRnyAd0+qRVQ==
1062510619
dependencies:
1062610620
"@puppeteer/browsers" "2.2.0"
10627-
chromium-bidi "0.5.14"
10621+
chromium-bidi "0.5.16"
1062810622
debug "4.3.4"
1062910623
devtools-protocol "0.0.1262051"
1063010624
ws "8.16.0"
1063110625

10632-
10633-
version "22.6.1"
10634-
resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-22.6.1.tgz#070c2463d71f3a26fd07aeb8e38a8d0289345513"
10635-
integrity sha512-736QHNKtPD4tPeFbIn73E4l0CWsLzvRFlm0JsLG/VsyM8Eh0FRFNmMp+M3+GSMwdmYxqOVpTgzB6VQDxWxu8xQ==
10626+
10627+
version "22.6.2"
10628+
resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-22.6.2.tgz#ef2ebeb963c2a25f8c52c40672a0b6c25dcd6086"
10629+
integrity sha512-3GMAJ9adPUSdIHGuYV1b1RqRB6D2UScjnq779uZsvpAP6HOWw2+9ezZiUZaAXVST+Ku7KWsxOjkctEvRasJClA==
1063610630
dependencies:
1063710631
"@puppeteer/browsers" "2.2.0"
1063810632
cosmiconfig "9.0.0"
1063910633
devtools-protocol "0.0.1262051"
10640-
puppeteer-core "22.6.1"
10634+
puppeteer-core "22.6.2"
1064110635

1064210636
pure-rand@^6.0.0:
1064310637
version "6.0.0"
@@ -11877,10 +11871,10 @@ supports-preserve-symlinks-flag@^1.0.0:
1187711871
resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
1187811872
integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
1187911873

11880-
11881-
version "0.7.5"
11882-
resolved "https://registry.yarnpkg.com/svelte2tsx/-/svelte2tsx-0.7.5.tgz#95010af1842a6459a4a8129957b5b92ecfcb8889"
11883-
integrity sha512-+y8z4YLGsCYN8yjkqPXrqg6yKa73IZfU2WC3MVxiM0YU2/HbGZ1Tiq1ceKCOhMQVBFWjOgC/C465wN/ux6FsDQ==
11874+
11875+
version "0.7.6"
11876+
resolved "https://registry.yarnpkg.com/svelte2tsx/-/svelte2tsx-0.7.6.tgz#006f2958c64e119d6b6b040c6acf6949eaeb6dd7"
11877+
integrity sha512-awHvYsakyiGjRqqSOhb2F+qJ6lUT9klQe0UQofAcdHNaKKeDHA8kEZ8zYKGG3BiDPurKYMGvH5/lZ+jeIoG7yQ==
1188411878
dependencies:
1188511879
dedent-js "^1.0.1"
1188611880
pascal-case "^3.1.1"

0 commit comments

Comments
 (0)