diff --git a/.github/workflows/example-install-only.yml b/.github/workflows/example-install-only.yml index 9765bddcd..a594cb297 100644 --- a/.github/workflows/example-install-only.yml +++ b/.github/workflows/example-install-only.yml @@ -29,7 +29,7 @@ jobs: key: my-cache-${{ runner.os }}-${{ hashFiles('package-lock.json') }} - name: Install Cypress 📥 - run: npm install cypress@15.7.1 --save-dev + run: npm install cypress@15.8.0 --save-dev - name: Cypress tests 🧪 uses: ./ # if copying, replace with cypress-io/github-action@v6 diff --git a/examples/basic-pnpm/package.json b/examples/basic-pnpm/package.json index 1a9ed13dc..6d0de8d5f 100644 --- a/examples/basic-pnpm/package.json +++ b/examples/basic-pnpm/package.json @@ -8,6 +8,6 @@ }, "private": true, "devDependencies": { - "cypress": "15.7.1" + "cypress": "15.8.0" } } diff --git a/examples/basic-pnpm/pnpm-lock.yaml b/examples/basic-pnpm/pnpm-lock.yaml index 9fdbc03cd..3670bc092 100644 --- a/examples/basic-pnpm/pnpm-lock.yaml +++ b/examples/basic-pnpm/pnpm-lock.yaml @@ -9,8 +9,8 @@ importers: .: devDependencies: cypress: - specifier: 15.7.1 - version: 15.7.1 + specifier: 15.8.0 + version: 15.8.0 packages: @@ -173,8 +173,8 @@ packages: resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} engines: {node: '>= 8'} - cypress@15.7.1: - resolution: {integrity: sha512-U3sYnJ+Cnpgr6IPycxsznTg//mGVXfPGeGV+om7VQCyp5XyVkhG4oPr3X3hTq1+OB0Om0O5DxusYmt7cbvwqMQ==} + cypress@15.8.0: + resolution: {integrity: sha512-/k/KT8IIvcxarRSNb5AIhT1Yxx1pXsNIrL96Ht/c0pBOO/XcsjgjD4ZlG16V/08dRmvU/gT7PW8FBz5YV+ahsA==} engines: {node: ^20.1.0 || ^22.0.0 || >=24.0.0} hasBin: true @@ -825,7 +825,7 @@ snapshots: shebang-command: 2.0.0 which: 2.0.2 - cypress@15.7.1: + cypress@15.8.0: dependencies: '@cypress/request': 3.0.9 '@cypress/xvfb': 1.2.4(supports-color@8.1.1) diff --git a/examples/basic/package-lock.json b/examples/basic/package-lock.json index 710867a4c..8f3eda98b 100644 --- a/examples/basic/package-lock.json +++ b/examples/basic/package-lock.json @@ -8,7 +8,7 @@ "name": "example-basic", "version": "1.0.0", "devDependencies": { - "cypress": "15.7.1" + "cypress": "15.8.0" } }, "node_modules/@cypress/request": { @@ -547,9 +547,9 @@ } }, "node_modules/cypress": { - "version": "15.7.1", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.7.1.tgz", - "integrity": "sha512-U3sYnJ+Cnpgr6IPycxsznTg//mGVXfPGeGV+om7VQCyp5XyVkhG4oPr3X3hTq1+OB0Om0O5DxusYmt7cbvwqMQ==", + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.8.0.tgz", + "integrity": "sha512-/k/KT8IIvcxarRSNb5AIhT1Yxx1pXsNIrL96Ht/c0pBOO/XcsjgjD4ZlG16V/08dRmvU/gT7PW8FBz5YV+ahsA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/basic/package.json b/examples/basic/package.json index ddf503904..24a229ebe 100644 --- a/examples/basic/package.json +++ b/examples/basic/package.json @@ -8,6 +8,6 @@ }, "private": true, "devDependencies": { - "cypress": "15.7.1" + "cypress": "15.8.0" } } diff --git a/examples/browser/package-lock.json b/examples/browser/package-lock.json index bb2ede17e..b3645839f 100644 --- a/examples/browser/package-lock.json +++ b/examples/browser/package-lock.json @@ -8,7 +8,7 @@ "name": "example-browser", "version": "1.1.0", "devDependencies": { - "cypress": "15.7.1", + "cypress": "15.8.0", "image-size": "^1.0.2" } }, @@ -548,9 +548,9 @@ } }, "node_modules/cypress": { - "version": "15.7.1", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.7.1.tgz", - "integrity": "sha512-U3sYnJ+Cnpgr6IPycxsznTg//mGVXfPGeGV+om7VQCyp5XyVkhG4oPr3X3hTq1+OB0Om0O5DxusYmt7cbvwqMQ==", + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.8.0.tgz", + "integrity": "sha512-/k/KT8IIvcxarRSNb5AIhT1Yxx1pXsNIrL96Ht/c0pBOO/XcsjgjD4ZlG16V/08dRmvU/gT7PW8FBz5YV+ahsA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/browser/package.json b/examples/browser/package.json index 9e493525c..f0a13f961 100644 --- a/examples/browser/package.json +++ b/examples/browser/package.json @@ -13,7 +13,7 @@ }, "private": true, "devDependencies": { - "cypress": "15.7.1", + "cypress": "15.8.0", "image-size": "^1.0.2" } } diff --git a/examples/component-tests/package-lock.json b/examples/component-tests/package-lock.json index df17731e8..97d05585b 100644 --- a/examples/component-tests/package-lock.json +++ b/examples/component-tests/package-lock.json @@ -15,7 +15,7 @@ "@types/react": "^19.1.10", "@types/react-dom": "^19.1.7", "@vitejs/plugin-react": "^5.0.0", - "cypress": "15.7.1", + "cypress": "15.8.0", "vite": "^7.1.5" } }, @@ -1840,9 +1840,9 @@ "license": "MIT" }, "node_modules/cypress": { - "version": "15.7.1", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.7.1.tgz", - "integrity": "sha512-U3sYnJ+Cnpgr6IPycxsznTg//mGVXfPGeGV+om7VQCyp5XyVkhG4oPr3X3hTq1+OB0Om0O5DxusYmt7cbvwqMQ==", + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.8.0.tgz", + "integrity": "sha512-/k/KT8IIvcxarRSNb5AIhT1Yxx1pXsNIrL96Ht/c0pBOO/XcsjgjD4ZlG16V/08dRmvU/gT7PW8FBz5YV+ahsA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/component-tests/package.json b/examples/component-tests/package.json index e1db7f609..5628d9005 100644 --- a/examples/component-tests/package.json +++ b/examples/component-tests/package.json @@ -17,7 +17,7 @@ "@types/react": "^19.1.10", "@types/react-dom": "^19.1.7", "@vitejs/plugin-react": "^5.0.0", - "cypress": "15.7.1", + "cypress": "15.8.0", "vite": "^7.1.5" } } diff --git a/examples/config/package-lock.json b/examples/config/package-lock.json index a8cc5a73f..0e2ca2fa0 100644 --- a/examples/config/package-lock.json +++ b/examples/config/package-lock.json @@ -8,7 +8,7 @@ "name": "example-config", "version": "1.0.0", "devDependencies": { - "cypress": "15.7.1", + "cypress": "15.8.0", "serve": "14.2.5" } }, @@ -903,9 +903,9 @@ } }, "node_modules/cypress": { - "version": "15.7.1", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.7.1.tgz", - "integrity": "sha512-U3sYnJ+Cnpgr6IPycxsznTg//mGVXfPGeGV+om7VQCyp5XyVkhG4oPr3X3hTq1+OB0Om0O5DxusYmt7cbvwqMQ==", + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.8.0.tgz", + "integrity": "sha512-/k/KT8IIvcxarRSNb5AIhT1Yxx1pXsNIrL96Ht/c0pBOO/XcsjgjD4ZlG16V/08dRmvU/gT7PW8FBz5YV+ahsA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/config/package.json b/examples/config/package.json index 2a6cf1887..7c7137854 100644 --- a/examples/config/package.json +++ b/examples/config/package.json @@ -11,7 +11,7 @@ }, "private": true, "devDependencies": { - "cypress": "15.7.1", + "cypress": "15.8.0", "serve": "14.2.5" } } diff --git a/examples/custom-command/package-lock.json b/examples/custom-command/package-lock.json index ff051cafc..fb334023f 100644 --- a/examples/custom-command/package-lock.json +++ b/examples/custom-command/package-lock.json @@ -8,7 +8,7 @@ "name": "example-custom-command", "version": "1.0.0", "devDependencies": { - "cypress": "15.7.1", + "cypress": "15.8.0", "lodash": "4.17.21" } }, @@ -548,9 +548,9 @@ } }, "node_modules/cypress": { - "version": "15.7.1", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.7.1.tgz", - "integrity": "sha512-U3sYnJ+Cnpgr6IPycxsznTg//mGVXfPGeGV+om7VQCyp5XyVkhG4oPr3X3hTq1+OB0Om0O5DxusYmt7cbvwqMQ==", + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.8.0.tgz", + "integrity": "sha512-/k/KT8IIvcxarRSNb5AIhT1Yxx1pXsNIrL96Ht/c0pBOO/XcsjgjD4ZlG16V/08dRmvU/gT7PW8FBz5YV+ahsA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/custom-command/package.json b/examples/custom-command/package.json index 036427dc0..79db61f1c 100644 --- a/examples/custom-command/package.json +++ b/examples/custom-command/package.json @@ -9,7 +9,7 @@ }, "private": true, "devDependencies": { - "cypress": "15.7.1", + "cypress": "15.8.0", "lodash": "4.17.21" } } diff --git a/examples/env/package-lock.json b/examples/env/package-lock.json index cc9f156f9..08c7f167e 100644 --- a/examples/env/package-lock.json +++ b/examples/env/package-lock.json @@ -8,7 +8,7 @@ "name": "example-env", "version": "1.0.0", "devDependencies": { - "cypress": "15.7.1" + "cypress": "15.8.0" } }, "node_modules/@cypress/request": { @@ -547,9 +547,9 @@ } }, "node_modules/cypress": { - "version": "15.7.1", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.7.1.tgz", - "integrity": "sha512-U3sYnJ+Cnpgr6IPycxsznTg//mGVXfPGeGV+om7VQCyp5XyVkhG4oPr3X3hTq1+OB0Om0O5DxusYmt7cbvwqMQ==", + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.8.0.tgz", + "integrity": "sha512-/k/KT8IIvcxarRSNb5AIhT1Yxx1pXsNIrL96Ht/c0pBOO/XcsjgjD4ZlG16V/08dRmvU/gT7PW8FBz5YV+ahsA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/env/package.json b/examples/env/package.json index f078f733f..3133eb9a6 100644 --- a/examples/env/package.json +++ b/examples/env/package.json @@ -8,6 +8,6 @@ }, "private": true, "devDependencies": { - "cypress": "15.7.1" + "cypress": "15.8.0" } } diff --git a/examples/install-command/package.json b/examples/install-command/package.json index d1ab209c0..16d203e70 100644 --- a/examples/install-command/package.json +++ b/examples/install-command/package.json @@ -7,7 +7,7 @@ }, "private": true, "devDependencies": { - "cypress": "15.7.1" + "cypress": "15.8.0" }, "dependencies": { "arg": "5.0.0", diff --git a/examples/install-command/yarn.lock b/examples/install-command/yarn.lock index d063c59a6..05f0e26c8 100644 --- a/examples/install-command/yarn.lock +++ b/examples/install-command/yarn.lock @@ -296,10 +296,10 @@ cross-spawn@^7.0.0: shebang-command "^2.0.0" which "^2.0.1" -cypress@15.7.1: - version "15.7.1" - resolved "https://registry.yarnpkg.com/cypress/-/cypress-15.7.1.tgz#5ff5101a07b2627809adbaba86a66ff0dc499e88" - integrity sha512-U3sYnJ+Cnpgr6IPycxsznTg//mGVXfPGeGV+om7VQCyp5XyVkhG4oPr3X3hTq1+OB0Om0O5DxusYmt7cbvwqMQ== +cypress@15.8.0: + version "15.8.0" + resolved "https://registry.yarnpkg.com/cypress/-/cypress-15.8.0.tgz#b6d9d0b921eeb4be3b393fb5f974c7588e4da584" + integrity sha512-/k/KT8IIvcxarRSNb5AIhT1Yxx1pXsNIrL96Ht/c0pBOO/XcsjgjD4ZlG16V/08dRmvU/gT7PW8FBz5YV+ahsA== dependencies: "@cypress/request" "^3.0.9" "@cypress/xvfb" "^1.2.4" diff --git a/examples/install-only/package-lock.json b/examples/install-only/package-lock.json index 9c4a6a14d..6859b07cb 100644 --- a/examples/install-only/package-lock.json +++ b/examples/install-only/package-lock.json @@ -12,7 +12,7 @@ "debug": "4.3.6" }, "devDependencies": { - "cypress": "15.7.1" + "cypress": "15.8.0" } }, "node_modules/@cypress/request": { @@ -556,9 +556,9 @@ } }, "node_modules/cypress": { - "version": "15.7.1", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.7.1.tgz", - "integrity": "sha512-U3sYnJ+Cnpgr6IPycxsznTg//mGVXfPGeGV+om7VQCyp5XyVkhG4oPr3X3hTq1+OB0Om0O5DxusYmt7cbvwqMQ==", + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.8.0.tgz", + "integrity": "sha512-/k/KT8IIvcxarRSNb5AIhT1Yxx1pXsNIrL96Ht/c0pBOO/XcsjgjD4ZlG16V/08dRmvU/gT7PW8FBz5YV+ahsA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/install-only/package.json b/examples/install-only/package.json index e247f31a9..28b506c45 100644 --- a/examples/install-only/package.json +++ b/examples/install-only/package.json @@ -11,6 +11,6 @@ "debug": "4.3.6" }, "devDependencies": { - "cypress": "15.7.1" + "cypress": "15.8.0" } } diff --git a/examples/nextjs/package-lock.json b/examples/nextjs/package-lock.json index 8a949c73e..0d05d3cc7 100644 --- a/examples/nextjs/package-lock.json +++ b/examples/nextjs/package-lock.json @@ -14,7 +14,7 @@ }, "devDependencies": { "@tailwindcss/postcss": "^4.1.18", - "cypress": "15.7.1", + "cypress": "15.8.0", "tailwindcss": "^4" } }, @@ -1579,9 +1579,9 @@ } }, "node_modules/cypress": { - "version": "15.7.1", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.7.1.tgz", - "integrity": "sha512-U3sYnJ+Cnpgr6IPycxsznTg//mGVXfPGeGV+om7VQCyp5XyVkhG4oPr3X3hTq1+OB0Om0O5DxusYmt7cbvwqMQ==", + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.8.0.tgz", + "integrity": "sha512-/k/KT8IIvcxarRSNb5AIhT1Yxx1pXsNIrL96Ht/c0pBOO/XcsjgjD4ZlG16V/08dRmvU/gT7PW8FBz5YV+ahsA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/nextjs/package.json b/examples/nextjs/package.json index 901ef2aa3..ddd36af78 100644 --- a/examples/nextjs/package.json +++ b/examples/nextjs/package.json @@ -16,7 +16,7 @@ }, "devDependencies": { "@tailwindcss/postcss": "^4.1.18", - "cypress": "15.7.1", + "cypress": "15.8.0", "tailwindcss": "^4" } } diff --git a/examples/node-versions/package-lock.json b/examples/node-versions/package-lock.json index b056d5a6a..2b1de1535 100644 --- a/examples/node-versions/package-lock.json +++ b/examples/node-versions/package-lock.json @@ -8,7 +8,7 @@ "name": "example-node-versions", "version": "1.0.0", "devDependencies": { - "cypress": "15.7.1" + "cypress": "15.8.0" } }, "node_modules/@cypress/request": { @@ -547,9 +547,9 @@ } }, "node_modules/cypress": { - "version": "15.7.1", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.7.1.tgz", - "integrity": "sha512-U3sYnJ+Cnpgr6IPycxsznTg//mGVXfPGeGV+om7VQCyp5XyVkhG4oPr3X3hTq1+OB0Om0O5DxusYmt7cbvwqMQ==", + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.8.0.tgz", + "integrity": "sha512-/k/KT8IIvcxarRSNb5AIhT1Yxx1pXsNIrL96Ht/c0pBOO/XcsjgjD4ZlG16V/08dRmvU/gT7PW8FBz5YV+ahsA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/node-versions/package.json b/examples/node-versions/package.json index 0b7692476..253b9905f 100644 --- a/examples/node-versions/package.json +++ b/examples/node-versions/package.json @@ -8,6 +8,6 @@ }, "private": true, "devDependencies": { - "cypress": "15.7.1" + "cypress": "15.8.0" } } diff --git a/examples/quiet/package-lock.json b/examples/quiet/package-lock.json index c8b269f74..9f23d4d54 100644 --- a/examples/quiet/package-lock.json +++ b/examples/quiet/package-lock.json @@ -8,7 +8,7 @@ "name": "example-quiet", "version": "1.0.0", "devDependencies": { - "cypress": "15.7.1", + "cypress": "15.8.0", "image-size": "0.8.3" } }, @@ -548,9 +548,9 @@ } }, "node_modules/cypress": { - "version": "15.7.1", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.7.1.tgz", - "integrity": "sha512-U3sYnJ+Cnpgr6IPycxsznTg//mGVXfPGeGV+om7VQCyp5XyVkhG4oPr3X3hTq1+OB0Om0O5DxusYmt7cbvwqMQ==", + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.8.0.tgz", + "integrity": "sha512-/k/KT8IIvcxarRSNb5AIhT1Yxx1pXsNIrL96Ht/c0pBOO/XcsjgjD4ZlG16V/08dRmvU/gT7PW8FBz5YV+ahsA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/quiet/package.json b/examples/quiet/package.json index a31f566b3..1effc009b 100644 --- a/examples/quiet/package.json +++ b/examples/quiet/package.json @@ -9,7 +9,7 @@ }, "private": true, "devDependencies": { - "cypress": "15.7.1", + "cypress": "15.8.0", "image-size": "0.8.3" } } diff --git a/examples/recording/package-lock.json b/examples/recording/package-lock.json index 83789e460..d2662964d 100644 --- a/examples/recording/package-lock.json +++ b/examples/recording/package-lock.json @@ -8,7 +8,7 @@ "name": "example-recording", "version": "1.0.0", "devDependencies": { - "cypress": "15.7.1" + "cypress": "15.8.0" } }, "node_modules/@cypress/request": { @@ -547,9 +547,9 @@ } }, "node_modules/cypress": { - "version": "15.7.1", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.7.1.tgz", - "integrity": "sha512-U3sYnJ+Cnpgr6IPycxsznTg//mGVXfPGeGV+om7VQCyp5XyVkhG4oPr3X3hTq1+OB0Om0O5DxusYmt7cbvwqMQ==", + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.8.0.tgz", + "integrity": "sha512-/k/KT8IIvcxarRSNb5AIhT1Yxx1pXsNIrL96Ht/c0pBOO/XcsjgjD4ZlG16V/08dRmvU/gT7PW8FBz5YV+ahsA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/recording/package.json b/examples/recording/package.json index a91eaa816..3ff32c979 100644 --- a/examples/recording/package.json +++ b/examples/recording/package.json @@ -9,6 +9,6 @@ }, "private": true, "devDependencies": { - "cypress": "15.7.1" + "cypress": "15.8.0" } } diff --git a/examples/start-and-pnpm-workspaces/packages/workspace-1/package.json b/examples/start-and-pnpm-workspaces/packages/workspace-1/package.json index f28d08003..62af3440e 100644 --- a/examples/start-and-pnpm-workspaces/packages/workspace-1/package.json +++ b/examples/start-and-pnpm-workspaces/packages/workspace-1/package.json @@ -10,7 +10,7 @@ }, "private": true, "devDependencies": { - "cypress": "15.7.1", + "cypress": "15.8.0", "serve": "14.2.5" } } diff --git a/examples/start-and-pnpm-workspaces/packages/workspace-2/package.json b/examples/start-and-pnpm-workspaces/packages/workspace-2/package.json index 656f002f7..9000a0e67 100644 --- a/examples/start-and-pnpm-workspaces/packages/workspace-2/package.json +++ b/examples/start-and-pnpm-workspaces/packages/workspace-2/package.json @@ -10,7 +10,7 @@ }, "private": true, "devDependencies": { - "cypress": "15.7.1", + "cypress": "15.8.0", "serve": "14.2.5" } } diff --git a/examples/start-and-pnpm-workspaces/pnpm-lock.yaml b/examples/start-and-pnpm-workspaces/pnpm-lock.yaml index 7377b8eac..5047b11c0 100644 --- a/examples/start-and-pnpm-workspaces/pnpm-lock.yaml +++ b/examples/start-and-pnpm-workspaces/pnpm-lock.yaml @@ -11,8 +11,8 @@ importers: packages/workspace-1: devDependencies: cypress: - specifier: 15.7.1 - version: 15.7.1 + specifier: 15.8.0 + version: 15.8.0 serve: specifier: 14.2.5 version: 14.2.5 @@ -20,8 +20,8 @@ importers: packages/workspace-2: devDependencies: cypress: - specifier: 15.7.1 - version: 15.7.1 + specifier: 15.8.0 + version: 15.8.0 serve: specifier: 14.2.5 version: 14.2.5 @@ -35,8 +35,8 @@ packages: '@cypress/xvfb@1.2.4': resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==} - '@types/node@24.10.1': - resolution: {integrity: sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==} + '@types/node@25.0.3': + resolution: {integrity: sha512-W609buLVRVmeW693xKfzHeIV6nJGGz98uCPfeXI1ELMLXVeKYZ9m15fAMSaUPBHYLGFsVRcMmSCksQOrZV9BYA==} '@types/sinonjs__fake-timers@8.1.1': resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==} @@ -260,8 +260,8 @@ packages: resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} engines: {node: '>= 8'} - cypress@15.7.1: - resolution: {integrity: sha512-U3sYnJ+Cnpgr6IPycxsznTg//mGVXfPGeGV+om7VQCyp5XyVkhG4oPr3X3hTq1+OB0Om0O5DxusYmt7cbvwqMQ==} + cypress@15.8.0: + resolution: {integrity: sha512-/k/KT8IIvcxarRSNb5AIhT1Yxx1pXsNIrL96Ht/c0pBOO/XcsjgjD4ZlG16V/08dRmvU/gT7PW8FBz5YV+ahsA==} engines: {node: ^20.1.0 || ^22.0.0 || >=24.0.0} hasBin: true @@ -930,7 +930,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@types/node@24.10.1': + '@types/node@25.0.3': dependencies: undici-types: 7.16.0 optional: true @@ -943,7 +943,7 @@ snapshots: '@types/yauzl@2.10.3': dependencies: - '@types/node': 24.10.1 + '@types/node': 25.0.3 optional: true '@zeit/schemas@2.36.0': {} @@ -1140,7 +1140,7 @@ snapshots: shebang-command: 2.0.0 which: 2.0.2 - cypress@15.7.1: + cypress@15.8.0: dependencies: '@cypress/request': 3.0.9 '@cypress/xvfb': 1.2.4(supports-color@8.1.1) diff --git a/examples/start-and-yarn-workspaces/workspace-1/package.json b/examples/start-and-yarn-workspaces/workspace-1/package.json index f28d08003..62af3440e 100644 --- a/examples/start-and-yarn-workspaces/workspace-1/package.json +++ b/examples/start-and-yarn-workspaces/workspace-1/package.json @@ -10,7 +10,7 @@ }, "private": true, "devDependencies": { - "cypress": "15.7.1", + "cypress": "15.8.0", "serve": "14.2.5" } } diff --git a/examples/start-and-yarn-workspaces/workspace-2/package.json b/examples/start-and-yarn-workspaces/workspace-2/package.json index 656f002f7..9000a0e67 100644 --- a/examples/start-and-yarn-workspaces/workspace-2/package.json +++ b/examples/start-and-yarn-workspaces/workspace-2/package.json @@ -10,7 +10,7 @@ }, "private": true, "devDependencies": { - "cypress": "15.7.1", + "cypress": "15.8.0", "serve": "14.2.5" } } diff --git a/examples/start-and-yarn-workspaces/yarn.lock b/examples/start-and-yarn-workspaces/yarn.lock index 692f2e951..fb50e21a9 100644 --- a/examples/start-and-yarn-workspaces/yarn.lock +++ b/examples/start-and-yarn-workspaces/yarn.lock @@ -431,10 +431,10 @@ cross-spawn@^7.0.0, cross-spawn@^7.0.3: shebang-command "^2.0.0" which "^2.0.1" -cypress@15.7.1: - version "15.7.1" - resolved "https://registry.yarnpkg.com/cypress/-/cypress-15.7.1.tgz#5ff5101a07b2627809adbaba86a66ff0dc499e88" - integrity sha512-U3sYnJ+Cnpgr6IPycxsznTg//mGVXfPGeGV+om7VQCyp5XyVkhG4oPr3X3hTq1+OB0Om0O5DxusYmt7cbvwqMQ== +cypress@15.8.0: + version "15.8.0" + resolved "https://registry.yarnpkg.com/cypress/-/cypress-15.8.0.tgz#b6d9d0b921eeb4be3b393fb5f974c7588e4da584" + integrity sha512-/k/KT8IIvcxarRSNb5AIhT1Yxx1pXsNIrL96Ht/c0pBOO/XcsjgjD4ZlG16V/08dRmvU/gT7PW8FBz5YV+ahsA== dependencies: "@cypress/request" "^3.0.9" "@cypress/xvfb" "^1.2.4" diff --git a/examples/start/package-lock.json b/examples/start/package-lock.json index f0e4c2630..8418893a3 100644 --- a/examples/start/package-lock.json +++ b/examples/start/package-lock.json @@ -8,7 +8,7 @@ "name": "example-start", "version": "1.0.0", "devDependencies": { - "cypress": "15.7.1", + "cypress": "15.8.0", "serve": "14.2.5" } }, @@ -903,9 +903,9 @@ } }, "node_modules/cypress": { - "version": "15.7.1", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.7.1.tgz", - "integrity": "sha512-U3sYnJ+Cnpgr6IPycxsznTg//mGVXfPGeGV+om7VQCyp5XyVkhG4oPr3X3hTq1+OB0Om0O5DxusYmt7cbvwqMQ==", + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.8.0.tgz", + "integrity": "sha512-/k/KT8IIvcxarRSNb5AIhT1Yxx1pXsNIrL96Ht/c0pBOO/XcsjgjD4ZlG16V/08dRmvU/gT7PW8FBz5YV+ahsA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/start/package.json b/examples/start/package.json index c32a5b273..b72ce75b1 100644 --- a/examples/start/package.json +++ b/examples/start/package.json @@ -11,7 +11,7 @@ }, "private": true, "devDependencies": { - "cypress": "15.7.1", + "cypress": "15.8.0", "serve": "14.2.5" } } diff --git a/examples/wait-on-vite/package-lock.json b/examples/wait-on-vite/package-lock.json index be7b77e82..4d173fee8 100644 --- a/examples/wait-on-vite/package-lock.json +++ b/examples/wait-on-vite/package-lock.json @@ -8,7 +8,7 @@ "name": "example-wait-on-vite", "version": "2.0.0", "devDependencies": { - "cypress": "15.7.1", + "cypress": "15.8.0", "vite": "^7.1.5" } }, @@ -1306,9 +1306,9 @@ } }, "node_modules/cypress": { - "version": "15.7.1", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.7.1.tgz", - "integrity": "sha512-U3sYnJ+Cnpgr6IPycxsznTg//mGVXfPGeGV+om7VQCyp5XyVkhG4oPr3X3hTq1+OB0Om0O5DxusYmt7cbvwqMQ==", + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.8.0.tgz", + "integrity": "sha512-/k/KT8IIvcxarRSNb5AIhT1Yxx1pXsNIrL96Ht/c0pBOO/XcsjgjD4ZlG16V/08dRmvU/gT7PW8FBz5YV+ahsA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/wait-on-vite/package.json b/examples/wait-on-vite/package.json index 8acd80ae2..20946b838 100644 --- a/examples/wait-on-vite/package.json +++ b/examples/wait-on-vite/package.json @@ -10,7 +10,7 @@ }, "private": true, "devDependencies": { - "cypress": "15.7.1", + "cypress": "15.8.0", "vite": "^7.1.5" } } diff --git a/examples/wait-on/package-lock.json b/examples/wait-on/package-lock.json index 67364f00b..163ed5977 100644 --- a/examples/wait-on/package-lock.json +++ b/examples/wait-on/package-lock.json @@ -12,7 +12,7 @@ "debug": "4.3.6" }, "devDependencies": { - "cypress": "15.7.1" + "cypress": "15.8.0" } }, "node_modules/@cypress/request": { @@ -556,9 +556,9 @@ } }, "node_modules/cypress": { - "version": "15.7.1", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.7.1.tgz", - "integrity": "sha512-U3sYnJ+Cnpgr6IPycxsznTg//mGVXfPGeGV+om7VQCyp5XyVkhG4oPr3X3hTq1+OB0Om0O5DxusYmt7cbvwqMQ==", + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.8.0.tgz", + "integrity": "sha512-/k/KT8IIvcxarRSNb5AIhT1Yxx1pXsNIrL96Ht/c0pBOO/XcsjgjD4ZlG16V/08dRmvU/gT7PW8FBz5YV+ahsA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/wait-on/package.json b/examples/wait-on/package.json index b5b9c7e93..033057955 100644 --- a/examples/wait-on/package.json +++ b/examples/wait-on/package.json @@ -20,6 +20,6 @@ "debug": "4.3.6" }, "devDependencies": { - "cypress": "15.7.1" + "cypress": "15.8.0" } } diff --git a/examples/webpack/package-lock.json b/examples/webpack/package-lock.json index 47e4d8d1e..413179aac 100644 --- a/examples/webpack/package-lock.json +++ b/examples/webpack/package-lock.json @@ -8,7 +8,7 @@ "name": "example-webpack", "version": "1.0.0", "devDependencies": { - "cypress": "15.7.1", + "cypress": "15.8.0", "webpack": "^5.99.6", "webpack-cli": "^5.1.4", "webpack-dev-server": "^5.2.1" @@ -1613,9 +1613,9 @@ } }, "node_modules/cypress": { - "version": "15.7.1", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.7.1.tgz", - "integrity": "sha512-U3sYnJ+Cnpgr6IPycxsznTg//mGVXfPGeGV+om7VQCyp5XyVkhG4oPr3X3hTq1+OB0Om0O5DxusYmt7cbvwqMQ==", + "version": "15.8.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-15.8.0.tgz", + "integrity": "sha512-/k/KT8IIvcxarRSNb5AIhT1Yxx1pXsNIrL96Ht/c0pBOO/XcsjgjD4ZlG16V/08dRmvU/gT7PW8FBz5YV+ahsA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/webpack/package.json b/examples/webpack/package.json index 33da33dc2..c499137b3 100644 --- a/examples/webpack/package.json +++ b/examples/webpack/package.json @@ -8,7 +8,7 @@ }, "private": true, "devDependencies": { - "cypress": "15.7.1", + "cypress": "15.8.0", "webpack": "^5.99.6", "webpack-cli": "^5.1.4", "webpack-dev-server": "^5.2.1" diff --git a/examples/yarn-classic/package.json b/examples/yarn-classic/package.json index 488fae255..c312a0000 100644 --- a/examples/yarn-classic/package.json +++ b/examples/yarn-classic/package.json @@ -7,6 +7,6 @@ }, "private": true, "devDependencies": { - "cypress": "15.7.1" + "cypress": "15.8.0" } } diff --git a/examples/yarn-classic/yarn.lock b/examples/yarn-classic/yarn.lock index 37c239533..a9eff333d 100644 --- a/examples/yarn-classic/yarn.lock +++ b/examples/yarn-classic/yarn.lock @@ -293,10 +293,10 @@ cross-spawn@^7.0.0: shebang-command "^2.0.0" which "^2.0.1" -cypress@15.7.1: - version "15.7.1" - resolved "https://registry.yarnpkg.com/cypress/-/cypress-15.7.1.tgz#5ff5101a07b2627809adbaba86a66ff0dc499e88" - integrity sha512-U3sYnJ+Cnpgr6IPycxsznTg//mGVXfPGeGV+om7VQCyp5XyVkhG4oPr3X3hTq1+OB0Om0O5DxusYmt7cbvwqMQ== +cypress@15.8.0: + version "15.8.0" + resolved "https://registry.yarnpkg.com/cypress/-/cypress-15.8.0.tgz#b6d9d0b921eeb4be3b393fb5f974c7588e4da584" + integrity sha512-/k/KT8IIvcxarRSNb5AIhT1Yxx1pXsNIrL96Ht/c0pBOO/XcsjgjD4ZlG16V/08dRmvU/gT7PW8FBz5YV+ahsA== dependencies: "@cypress/request" "^3.0.9" "@cypress/xvfb" "^1.2.4" diff --git a/examples/yarn-modern-pnp/package.json b/examples/yarn-modern-pnp/package.json index 65ea17b8f..c52b1660c 100644 --- a/examples/yarn-modern-pnp/package.json +++ b/examples/yarn-modern-pnp/package.json @@ -8,6 +8,6 @@ "private": true, "packageManager": "yarn@4.12.0", "devDependencies": { - "cypress": "15.7.1" + "cypress": "15.8.0" } } diff --git a/examples/yarn-modern-pnp/yarn.lock b/examples/yarn-modern-pnp/yarn.lock index 7eaa64fd5..2265407cb 100644 --- a/examples/yarn-modern-pnp/yarn.lock +++ b/examples/yarn-modern-pnp/yarn.lock @@ -386,9 +386,9 @@ __metadata: languageName: node linkType: hard -"cypress@npm:15.7.1": - version: 15.7.1 - resolution: "cypress@npm:15.7.1" +"cypress@npm:15.8.0": + version: 15.8.0 + resolution: "cypress@npm:15.8.0" dependencies: "@cypress/request": "npm:^3.0.9" "@cypress/xvfb": "npm:^1.2.4" @@ -434,7 +434,7 @@ __metadata: yauzl: "npm:^2.10.0" bin: cypress: bin/cypress - checksum: 10c0/537d5352c86067455b96fcbc35934820b391413e6d3327204d0936ac14ffb4d69a02290a5007dc532c87976c43b6ebe503d84907768c0daa7d68318907b7ac80 + checksum: 10c0/f0cddee7d2ebfb251db3ca9d6fd3bff489f6fedf84f95f5c74579f515eac0bfadadfb69f2505a9959e911c21a5a5ff8f5667ccb2c28c8f7371ffe7bf7b8625d3 languageName: node linkType: hard @@ -582,7 +582,7 @@ __metadata: version: 0.0.0-use.local resolution: "example-yarn-modern-pnp@workspace:." dependencies: - cypress: "npm:15.7.1" + cypress: "npm:15.8.0" languageName: unknown linkType: soft diff --git a/examples/yarn-modern/package.json b/examples/yarn-modern/package.json index bf83f1beb..a93298209 100644 --- a/examples/yarn-modern/package.json +++ b/examples/yarn-modern/package.json @@ -8,6 +8,6 @@ "private": true, "packageManager": "yarn@4.12.0", "devDependencies": { - "cypress": "15.7.1" + "cypress": "15.8.0" } } diff --git a/examples/yarn-modern/yarn.lock b/examples/yarn-modern/yarn.lock index 3b5ff4621..a8179d323 100644 --- a/examples/yarn-modern/yarn.lock +++ b/examples/yarn-modern/yarn.lock @@ -386,9 +386,9 @@ __metadata: languageName: node linkType: hard -"cypress@npm:15.7.1": - version: 15.7.1 - resolution: "cypress@npm:15.7.1" +"cypress@npm:15.8.0": + version: 15.8.0 + resolution: "cypress@npm:15.8.0" dependencies: "@cypress/request": "npm:^3.0.9" "@cypress/xvfb": "npm:^1.2.4" @@ -434,7 +434,7 @@ __metadata: yauzl: "npm:^2.10.0" bin: cypress: bin/cypress - checksum: 10c0/537d5352c86067455b96fcbc35934820b391413e6d3327204d0936ac14ffb4d69a02290a5007dc532c87976c43b6ebe503d84907768c0daa7d68318907b7ac80 + checksum: 10c0/f0cddee7d2ebfb251db3ca9d6fd3bff489f6fedf84f95f5c74579f515eac0bfadadfb69f2505a9959e911c21a5a5ff8f5667ccb2c28c8f7371ffe7bf7b8625d3 languageName: node linkType: hard @@ -582,7 +582,7 @@ __metadata: version: 0.0.0-use.local resolution: "example-yarn-modern@workspace:." dependencies: - cypress: "npm:15.7.1" + cypress: "npm:15.8.0" languageName: unknown linkType: soft