Skip to content

Commit edf43d1

Browse files
guntherjheoghanmurray
authored andcommitted
Update vitest to 1.6.1 to address security vulnerability CVE-2025-24964
1 parent 5daf37f commit edf43d1

File tree

10 files changed

+81
-52
lines changed

10 files changed

+81
-52
lines changed

packages/all/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@
5151
],
5252
"devDependencies": {
5353
"puppeteer": "^20.9.0",
54+
"typescript": "^5.4.5",
5455
"vite": "^5.3.1",
5556
"vite-plugin-dts": "^3.9.1",
56-
"vitest": "^1.4.0",
57-
"typescript": "^5.4.5"
57+
"vitest": "^1.6.1"
5858
},
5959
"dependencies": {
60-
"@rrweb/types": "^2.0.0-alpha.18",
6160
"@rrweb/packer": "^2.0.0-alpha.18",
61+
"@rrweb/types": "^2.0.0-alpha.18",
6262
"rrweb": "^2.0.0-alpha.18"
6363
},
6464
"browserslist": [

packages/all/tsconfig.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
{
22
"extends": "../../tsconfig.base.json",
3-
"include": ["src"],
3+
"include": [
4+
"src"
5+
],
46
"compilerOptions": {
57
"rootDir": "src",
68
"tsBuildInfoFile": "./tsconfig.tsbuildinfo"
79
},
810
"references": [
911
{
10-
"path": "../types"
12+
"path": "../packer"
1113
},
1214
{
13-
"path": "../packer"
15+
"path": "../types"
1416
},
1517
{
1618
"path": "../rrweb"

packages/packer/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,14 @@
7272
"package.json"
7373
],
7474
"devDependencies": {
75+
"typescript": "^5.4.5",
7576
"vite": "^5.3.1",
7677
"vite-plugin-dts": "^3.9.1",
77-
"vitest": "^1.4.0",
78-
"typescript": "^5.4.5"
78+
"vitest": "^1.6.1"
7979
},
8080
"dependencies": {
81-
"fflate": "^0.4.4",
82-
"@rrweb/types": "^2.0.0-alpha.18"
81+
"@rrweb/types": "^2.0.0-alpha.18",
82+
"fflate": "^0.4.4"
8383
},
8484
"browserslist": [
8585
"supports es6-class"

packages/plugins/rrweb-plugin-console-record/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@
4646
},
4747
"homepage": "https://github.com/rrweb-io/rrweb#readme",
4848
"devDependencies": {
49+
"puppeteer": "^20.9.0",
4950
"rrweb": "^2.0.0-alpha.18",
5051
"typescript": "^5.4.5",
5152
"vite": "^5.3.1",
5253
"vite-plugin-dts": "^3.9.1",
53-
"vitest": "^1.4.0",
54-
"puppeteer": "^20.9.0"
54+
"vitest": "^1.6.1"
5555
},
5656
"peerDependencies": {
5757
"rrweb": "^2.0.0-alpha.18",

packages/record/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@
5050
],
5151
"devDependencies": {
5252
"puppeteer": "^20.9.0",
53+
"typescript": "^5.4.5",
5354
"vite": "^5.3.1",
5455
"vite-plugin-dts": "^3.9.1",
55-
"vitest": "^1.4.0",
56-
"typescript": "^5.4.5"
56+
"vitest": "^1.6.1"
5757
},
5858
"dependencies": {
5959
"@rrweb/types": "^2.0.0-alpha.18",

packages/replay/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@
5151
],
5252
"devDependencies": {
5353
"puppeteer": "^20.9.0",
54+
"typescript": "^5.4.5",
5455
"vite": "^5.3.1",
5556
"vite-plugin-dts": "^3.9.1",
56-
"vitest": "^1.4.0",
57-
"typescript": "^5.4.5"
57+
"vitest": "^1.6.1"
5858
},
5959
"dependencies": {
6060
"@rrweb/types": "^2.0.0-alpha.18",

packages/rrdom-nodejs/package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,13 @@
4747
"eslint": "^8.15.0",
4848
"vite": "^5.3.1",
4949
"vite-plugin-dts": "^3.9.1",
50-
"vitest": "^1.4.0",
51-
"typescript": "^5.4.5"
50+
"vitest": "^1.6.1"
5251
},
5352
"dependencies": {
53+
"@rrweb/types": "^2.0.0-alpha.18",
5454
"cssom": "^0.5.0",
5555
"cssstyle": "^2.3.0",
5656
"nwsapi": "2.2.0",
57-
"rrdom": "^2.0.0-alpha.18",
58-
"@rrweb/types": "^2.0.0-alpha.18"
57+
"rrdom": "^2.0.0-alpha.18"
5958
}
6059
}

packages/rrdom-nodejs/tsconfig.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
{
22
"extends": "../../tsconfig.base.json",
3-
"include": ["src"],
3+
"include": [
4+
"src"
5+
],
46
"compilerOptions": {
57
"rootDir": "src",
68
"tsBuildInfoFile": "./tsconfig.tsbuildinfo"
79
},
810
"references": [
911
{
10-
"path": "../rrdom"
12+
"path": "../types"
1113
},
1214
{
13-
"path": "../types"
15+
"path": "../rrdom"
1416
}
1517
]
1618
}

packages/rrweb-snapshot/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"typescript": "^5.4.5",
6666
"vite": "^5.3.1",
6767
"vite-plugin-dts": "^3.9.1",
68-
"vitest": "^1.4.0"
68+
"vitest": "^1.6.1"
6969
},
7070
"dependencies": {
7171
"postcss": "^8.4.38"

yarn.lock

Lines changed: 54 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -3437,44 +3437,44 @@
34373437
"@types/babel__core" "^7.20.5"
34383438
react-refresh "^0.14.2"
34393439

3440-
"@vitest/expect@1.6.0":
3441-
version "1.6.0"
3442-
resolved "https://registry.yarnpkg.com/@vitest/expect/-/expect-1.6.0.tgz#0b3ba0914f738508464983f4d811bc122b51fb30"
3443-
integrity sha512-ixEvFVQjycy/oNgHjqsL6AZCDduC+tflRluaHIzKIsdbzkLn2U/iBnVeJwB6HsIjQBdfMR8Z0tRxKUsvFJEeWQ==
3440+
"@vitest/expect@1.6.1":
3441+
version "1.6.1"
3442+
resolved "https://registry.yarnpkg.com/@vitest/expect/-/expect-1.6.1.tgz#b90c213f587514a99ac0bf84f88cff9042b0f14d"
3443+
integrity sha512-jXL+9+ZNIJKruofqXuuTClf44eSpcHlgj3CiuNihUF3Ioujtmc0zIa3UJOW5RjDK1YLBJZnWBlPuqhYycLioog==
34443444
dependencies:
3445-
"@vitest/spy" "1.6.0"
3446-
"@vitest/utils" "1.6.0"
3445+
"@vitest/spy" "1.6.1"
3446+
"@vitest/utils" "1.6.1"
34473447
chai "^4.3.10"
34483448

3449-
"@vitest/runner@1.6.0":
3450-
version "1.6.0"
3451-
resolved "https://registry.yarnpkg.com/@vitest/runner/-/runner-1.6.0.tgz#a6de49a96cb33b0e3ba0d9064a3e8d6ce2f08825"
3452-
integrity sha512-P4xgwPjwesuBiHisAVz/LSSZtDjOTPYZVmNAnpHHSR6ONrf8eCJOFRvUwdHn30F5M1fxhqtl7QZQUk2dprIXAg==
3449+
"@vitest/runner@1.6.1":
3450+
version "1.6.1"
3451+
resolved "https://registry.yarnpkg.com/@vitest/runner/-/runner-1.6.1.tgz#10f5857c3e376218d58c2bfacfea1161e27e117f"
3452+
integrity sha512-3nSnYXkVkf3mXFfE7vVyPmi3Sazhb/2cfZGGs0JRzFsPFvAMBEcrweV1V1GsrstdXeKCTXlJbvnQwGWgEIHmOA==
34533453
dependencies:
3454-
"@vitest/utils" "1.6.0"
3454+
"@vitest/utils" "1.6.1"
34553455
p-limit "^5.0.0"
34563456
pathe "^1.1.1"
34573457

3458-
"@vitest/snapshot@1.6.0":
3459-
version "1.6.0"
3460-
resolved "https://registry.yarnpkg.com/@vitest/snapshot/-/snapshot-1.6.0.tgz#deb7e4498a5299c1198136f56e6e0f692e6af470"
3461-
integrity sha512-+Hx43f8Chus+DCmygqqfetcAZrDJwvTj0ymqjQq4CvmpKFSTVteEOBzCusu1x2tt4OJcvBflyHUE0DZSLgEMtQ==
3458+
"@vitest/snapshot@1.6.1":
3459+
version "1.6.1"
3460+
resolved "https://registry.yarnpkg.com/@vitest/snapshot/-/snapshot-1.6.1.tgz#90414451a634bb36cd539ccb29ae0d048a8c0479"
3461+
integrity sha512-WvidQuWAzU2p95u8GAKlRMqMyN1yOJkGHnx3M1PL9Raf7AQ1kwLKg04ADlCa3+OXUZE7BceOhVZiuWAbzCKcUQ==
34623462
dependencies:
34633463
magic-string "^0.30.5"
34643464
pathe "^1.1.1"
34653465
pretty-format "^29.7.0"
34663466

3467-
"@vitest/spy@1.6.0":
3468-
version "1.6.0"
3469-
resolved "https://registry.yarnpkg.com/@vitest/spy/-/spy-1.6.0.tgz#362cbd42ccdb03f1613798fde99799649516906d"
3470-
integrity sha512-leUTap6B/cqi/bQkXUu6bQV5TZPx7pmMBKBQiI0rJA8c3pB56ZsaTbREnF7CJfmvAS4V2cXIBAh/3rVwrrCYgw==
3467+
"@vitest/spy@1.6.1":
3468+
version "1.6.1"
3469+
resolved "https://registry.yarnpkg.com/@vitest/spy/-/spy-1.6.1.tgz#33376be38a5ed1ecd829eb986edaecc3e798c95d"
3470+
integrity sha512-MGcMmpGkZebsMZhbQKkAf9CX5zGvjkBTqf8Zx3ApYWXr3wG+QvEu2eXWfnIIWYSJExIp4V9FCKDEeygzkYrXMw==
34713471
dependencies:
34723472
tinyspy "^2.2.0"
34733473

3474-
"@vitest/utils@1.6.0":
3475-
version "1.6.0"
3476-
resolved "https://registry.yarnpkg.com/@vitest/utils/-/utils-1.6.0.tgz#5c5675ca7d6f546a7b4337de9ae882e6c57896a1"
3477-
integrity sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==
3474+
"@vitest/utils@1.6.1":
3475+
version "1.6.1"
3476+
resolved "https://registry.yarnpkg.com/@vitest/utils/-/utils-1.6.1.tgz#6d2f36cb6d866f2bbf59da854a324d6bf8040f17"
3477+
integrity sha512-jOrrUvXM4Av9ZWiG1EajNto0u96kWAhJ1LmPmJhXXQx/32MecEKd10pOLYgS2BQx1TgkGhloPU1ArDW2vvaY6g==
34783478
dependencies:
34793479
diff-sequences "^29.6.3"
34803480
estree-walker "^3.0.3"
@@ -10795,10 +10795,10 @@ vary@~1.1.2:
1079510795
resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
1079610796
integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==
1079710797

10798-
vite-node@1.6.0:
10799-
version "1.6.0"
10800-
resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-1.6.0.tgz#2c7e61129bfecc759478fa592754fd9704aaba7f"
10801-
integrity sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==
10798+
vite-node@1.6.1:
10799+
version "1.6.1"
10800+
resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-1.6.1.tgz#fff3ef309296ea03ceaa6ca4bb660922f5416c57"
10801+
integrity sha512-YAXkfvGtuTzwWbDSACdJSg4A4DZiAqckWe90Zapc/sEX3XvHcw1NdurM/6od8J207tSDqNbSsgdCacBgvJKFuA==
1080210802
dependencies:
1080310803
cac "^6.7.14"
1080410804
debug "^4.3.4"
@@ -10871,7 +10871,7 @@ vitefu@^0.2.5:
1087110871
resolved "https://registry.yarnpkg.com/vitefu/-/vitefu-0.2.5.tgz#c1b93c377fbdd3e5ddd69840ea3aa70b40d90969"
1087210872
integrity sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==
1087310873

10874-
vitest@^1.4.0, vitest@^1.6.0:
10874+
vitest@^1.6.0:
1087510875
version "1.6.0"
1087610876
resolved "https://registry.yarnpkg.com/vitest/-/vitest-1.6.0.tgz#9d5ad4752a3c451be919e412c597126cffb9892f"
1087710877
integrity sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==
@@ -10897,6 +10897,32 @@ vitest@^1.4.0, vitest@^1.6.0:
1089710897
vite-node "1.6.0"
1089810898
why-is-node-running "^2.2.2"
1089910899

10900+
vitest@^1.6.1:
10901+
version "1.6.1"
10902+
resolved "https://registry.yarnpkg.com/vitest/-/vitest-1.6.1.tgz#b4a3097adf8f79ac18bc2e2e0024c534a7a78d2f"
10903+
integrity sha512-Ljb1cnSJSivGN0LqXd/zmDbWEM0RNNg2t1QW/XUhYl/qPqyu7CsqeWtqQXHVaJsecLPuDoak2oJcZN2QoRIOag==
10904+
dependencies:
10905+
"@vitest/expect" "1.6.1"
10906+
"@vitest/runner" "1.6.1"
10907+
"@vitest/snapshot" "1.6.1"
10908+
"@vitest/spy" "1.6.1"
10909+
"@vitest/utils" "1.6.1"
10910+
acorn-walk "^8.3.2"
10911+
chai "^4.3.10"
10912+
debug "^4.3.4"
10913+
execa "^8.0.1"
10914+
local-pkg "^0.5.0"
10915+
magic-string "^0.30.5"
10916+
pathe "^1.1.1"
10917+
picocolors "^1.0.0"
10918+
std-env "^3.5.0"
10919+
strip-literal "^2.0.0"
10920+
tinybench "^2.5.1"
10921+
tinypool "^0.8.3"
10922+
vite "^5.0.0"
10923+
vite-node "1.6.1"
10924+
why-is-node-running "^2.2.2"
10925+
1090010926
vue-template-compiler@^2.7.14:
1090110927
version "2.7.16"
1090210928
resolved "https://registry.yarnpkg.com/vue-template-compiler/-/vue-template-compiler-2.7.16.tgz#c81b2d47753264c77ac03b9966a46637482bb03b"

0 commit comments

Comments
 (0)