diff --git a/.github/workflows/example-install-only.yml b/.github/workflows/example-install-only.yml index dceea7ae1..a3343a0df 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@14.3.3 --save-dev + run: npm install cypress@14.4.0 --save-dev - name: Cypress tests 🧪 uses: ./ diff --git a/examples/basic-pnpm/package.json b/examples/basic-pnpm/package.json index 24d2be3b2..da02dfe6c 100644 --- a/examples/basic-pnpm/package.json +++ b/examples/basic-pnpm/package.json @@ -8,6 +8,6 @@ }, "private": true, "devDependencies": { - "cypress": "14.3.3" + "cypress": "14.4.0" } } diff --git a/examples/basic-pnpm/pnpm-lock.yaml b/examples/basic-pnpm/pnpm-lock.yaml index 127a297d4..5f9f58668 100644 --- a/examples/basic-pnpm/pnpm-lock.yaml +++ b/examples/basic-pnpm/pnpm-lock.yaml @@ -9,8 +9,8 @@ importers: .: devDependencies: cypress: - specifier: 14.3.3 - version: 14.3.3 + specifier: 14.4.0 + version: 14.4.0 packages: @@ -177,8 +177,8 @@ packages: resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} engines: {node: '>= 8'} - cypress@14.3.3: - resolution: {integrity: sha512-1Rz7zc9iqLww6BysaESqUhtIuaFHS7nL3wREovAKYsNhLTfX3TbcBWHWgEz70YimH2NkSOsm4oIcJJ9HYHOlew==} + cypress@14.4.0: + resolution: {integrity: sha512-/I59Fqxo7fqdiDi3IM2QKA65gZ7+PVejXg404/I8ZSq+NOnrmw+2pnMUJzpoNyg7KABcEBmgpkfAqhV98p7wJA==} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true @@ -821,7 +821,7 @@ snapshots: shebang-command: 2.0.0 which: 2.0.2 - cypress@14.3.3: + cypress@14.4.0: dependencies: '@cypress/request': 3.0.8 '@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 61f92554e..ad5d5d415 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": "14.3.3" + "cypress": "14.4.0" } }, "node_modules/@cypress/request": { @@ -555,9 +555,9 @@ } }, "node_modules/cypress": { - "version": "14.3.3", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.3.3.tgz", - "integrity": "sha512-1Rz7zc9iqLww6BysaESqUhtIuaFHS7nL3wREovAKYsNhLTfX3TbcBWHWgEz70YimH2NkSOsm4oIcJJ9HYHOlew==", + "version": "14.4.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.4.0.tgz", + "integrity": "sha512-/I59Fqxo7fqdiDi3IM2QKA65gZ7+PVejXg404/I8ZSq+NOnrmw+2pnMUJzpoNyg7KABcEBmgpkfAqhV98p7wJA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/basic/package.json b/examples/basic/package.json index fbab4b174..bb160567a 100644 --- a/examples/basic/package.json +++ b/examples/basic/package.json @@ -8,6 +8,6 @@ }, "private": true, "devDependencies": { - "cypress": "14.3.3" + "cypress": "14.4.0" } } diff --git a/examples/browser/package-lock.json b/examples/browser/package-lock.json index dd941d600..2c5f6b588 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": "14.3.3", + "cypress": "14.4.0", "image-size": "^1.0.2" } }, @@ -556,9 +556,9 @@ } }, "node_modules/cypress": { - "version": "14.3.3", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.3.3.tgz", - "integrity": "sha512-1Rz7zc9iqLww6BysaESqUhtIuaFHS7nL3wREovAKYsNhLTfX3TbcBWHWgEz70YimH2NkSOsm4oIcJJ9HYHOlew==", + "version": "14.4.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.4.0.tgz", + "integrity": "sha512-/I59Fqxo7fqdiDi3IM2QKA65gZ7+PVejXg404/I8ZSq+NOnrmw+2pnMUJzpoNyg7KABcEBmgpkfAqhV98p7wJA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/browser/package.json b/examples/browser/package.json index a5c4c46c1..2e43688f2 100644 --- a/examples/browser/package.json +++ b/examples/browser/package.json @@ -13,7 +13,7 @@ }, "private": true, "devDependencies": { - "cypress": "14.3.3", + "cypress": "14.4.0", "image-size": "^1.0.2" } } diff --git a/examples/component-tests/package-lock.json b/examples/component-tests/package-lock.json index 643f2dfe4..4066e8632 100644 --- a/examples/component-tests/package-lock.json +++ b/examples/component-tests/package-lock.json @@ -15,7 +15,7 @@ "@types/react": "^19.0.10", "@types/react-dom": "^19.0.4", "@vitejs/plugin-react": "^4.3.4", - "cypress": "14.3.3", + "cypress": "14.4.0", "vite": "^6.3.4" } }, @@ -1802,9 +1802,9 @@ "license": "MIT" }, "node_modules/cypress": { - "version": "14.3.3", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.3.3.tgz", - "integrity": "sha512-1Rz7zc9iqLww6BysaESqUhtIuaFHS7nL3wREovAKYsNhLTfX3TbcBWHWgEz70YimH2NkSOsm4oIcJJ9HYHOlew==", + "version": "14.4.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.4.0.tgz", + "integrity": "sha512-/I59Fqxo7fqdiDi3IM2QKA65gZ7+PVejXg404/I8ZSq+NOnrmw+2pnMUJzpoNyg7KABcEBmgpkfAqhV98p7wJA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/component-tests/package.json b/examples/component-tests/package.json index 3b167c68a..82bfc938f 100644 --- a/examples/component-tests/package.json +++ b/examples/component-tests/package.json @@ -17,7 +17,7 @@ "@types/react": "^19.0.10", "@types/react-dom": "^19.0.4", "@vitejs/plugin-react": "^4.3.4", - "cypress": "14.3.3", + "cypress": "14.4.0", "vite": "^6.3.4" } } diff --git a/examples/config/package-lock.json b/examples/config/package-lock.json index 74e8196b9..0e2cfde6a 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": "14.3.3", + "cypress": "14.4.0", "serve": "14.2.4" } }, @@ -910,9 +910,9 @@ } }, "node_modules/cypress": { - "version": "14.3.3", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.3.3.tgz", - "integrity": "sha512-1Rz7zc9iqLww6BysaESqUhtIuaFHS7nL3wREovAKYsNhLTfX3TbcBWHWgEz70YimH2NkSOsm4oIcJJ9HYHOlew==", + "version": "14.4.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.4.0.tgz", + "integrity": "sha512-/I59Fqxo7fqdiDi3IM2QKA65gZ7+PVejXg404/I8ZSq+NOnrmw+2pnMUJzpoNyg7KABcEBmgpkfAqhV98p7wJA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/config/package.json b/examples/config/package.json index 18656f971..60768268c 100644 --- a/examples/config/package.json +++ b/examples/config/package.json @@ -11,7 +11,7 @@ }, "private": true, "devDependencies": { - "cypress": "14.3.3", + "cypress": "14.4.0", "serve": "14.2.4" } } diff --git a/examples/custom-command/package-lock.json b/examples/custom-command/package-lock.json index 7fb4aeafc..f3ff8f149 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": "14.3.3", + "cypress": "14.4.0", "lodash": "4.17.21" } }, @@ -556,9 +556,9 @@ } }, "node_modules/cypress": { - "version": "14.3.3", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.3.3.tgz", - "integrity": "sha512-1Rz7zc9iqLww6BysaESqUhtIuaFHS7nL3wREovAKYsNhLTfX3TbcBWHWgEz70YimH2NkSOsm4oIcJJ9HYHOlew==", + "version": "14.4.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.4.0.tgz", + "integrity": "sha512-/I59Fqxo7fqdiDi3IM2QKA65gZ7+PVejXg404/I8ZSq+NOnrmw+2pnMUJzpoNyg7KABcEBmgpkfAqhV98p7wJA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/custom-command/package.json b/examples/custom-command/package.json index bcca84750..6bfc53ff9 100644 --- a/examples/custom-command/package.json +++ b/examples/custom-command/package.json @@ -9,7 +9,7 @@ }, "private": true, "devDependencies": { - "cypress": "14.3.3", + "cypress": "14.4.0", "lodash": "4.17.21" } } diff --git a/examples/env/package-lock.json b/examples/env/package-lock.json index ad00ae9b8..489342875 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": "14.3.3" + "cypress": "14.4.0" } }, "node_modules/@cypress/request": { @@ -555,9 +555,9 @@ } }, "node_modules/cypress": { - "version": "14.3.3", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.3.3.tgz", - "integrity": "sha512-1Rz7zc9iqLww6BysaESqUhtIuaFHS7nL3wREovAKYsNhLTfX3TbcBWHWgEz70YimH2NkSOsm4oIcJJ9HYHOlew==", + "version": "14.4.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.4.0.tgz", + "integrity": "sha512-/I59Fqxo7fqdiDi3IM2QKA65gZ7+PVejXg404/I8ZSq+NOnrmw+2pnMUJzpoNyg7KABcEBmgpkfAqhV98p7wJA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/env/package.json b/examples/env/package.json index 4e3989256..cf0952f42 100644 --- a/examples/env/package.json +++ b/examples/env/package.json @@ -8,6 +8,6 @@ }, "private": true, "devDependencies": { - "cypress": "14.3.3" + "cypress": "14.4.0" } } diff --git a/examples/install-command/package.json b/examples/install-command/package.json index 0c01d196e..573a31762 100644 --- a/examples/install-command/package.json +++ b/examples/install-command/package.json @@ -7,7 +7,7 @@ }, "private": true, "devDependencies": { - "cypress": "14.3.3" + "cypress": "14.4.0" }, "dependencies": { "arg": "5.0.0", diff --git a/examples/install-command/yarn.lock b/examples/install-command/yarn.lock index 41810cac9..0a3b07dcb 100644 --- a/examples/install-command/yarn.lock +++ b/examples/install-command/yarn.lock @@ -301,10 +301,10 @@ cross-spawn@^7.0.0: shebang-command "^2.0.0" which "^2.0.1" -cypress@14.3.3: - version "14.3.3" - resolved "https://registry.yarnpkg.com/cypress/-/cypress-14.3.3.tgz#cbf7fbc79fd139ba55ea51a6d1ee3d9018a59ce2" - integrity sha512-1Rz7zc9iqLww6BysaESqUhtIuaFHS7nL3wREovAKYsNhLTfX3TbcBWHWgEz70YimH2NkSOsm4oIcJJ9HYHOlew== +cypress@14.4.0: + version "14.4.0" + resolved "https://registry.yarnpkg.com/cypress/-/cypress-14.4.0.tgz#db7d108400c9481a161f047f1cc34b43b05c48f3" + integrity sha512-/I59Fqxo7fqdiDi3IM2QKA65gZ7+PVejXg404/I8ZSq+NOnrmw+2pnMUJzpoNyg7KABcEBmgpkfAqhV98p7wJA== dependencies: "@cypress/request" "^3.0.8" "@cypress/xvfb" "^1.2.4" diff --git a/examples/install-only/package-lock.json b/examples/install-only/package-lock.json index 4bd655909..c03857b45 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": "14.3.3" + "cypress": "14.4.0" } }, "node_modules/@cypress/request": { @@ -564,9 +564,9 @@ } }, "node_modules/cypress": { - "version": "14.3.3", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.3.3.tgz", - "integrity": "sha512-1Rz7zc9iqLww6BysaESqUhtIuaFHS7nL3wREovAKYsNhLTfX3TbcBWHWgEz70YimH2NkSOsm4oIcJJ9HYHOlew==", + "version": "14.4.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.4.0.tgz", + "integrity": "sha512-/I59Fqxo7fqdiDi3IM2QKA65gZ7+PVejXg404/I8ZSq+NOnrmw+2pnMUJzpoNyg7KABcEBmgpkfAqhV98p7wJA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/install-only/package.json b/examples/install-only/package.json index b80bdc190..c33183086 100644 --- a/examples/install-only/package.json +++ b/examples/install-only/package.json @@ -11,6 +11,6 @@ "debug": "4.3.6" }, "devDependencies": { - "cypress": "14.3.3" + "cypress": "14.4.0" } } diff --git a/examples/nextjs/package-lock.json b/examples/nextjs/package-lock.json index 987d4d7af..ae8b8d805 100644 --- a/examples/nextjs/package-lock.json +++ b/examples/nextjs/package-lock.json @@ -13,7 +13,7 @@ "react-dom": "^19.0.0" }, "devDependencies": { - "cypress": "14.3.3", + "cypress": "14.4.0", "postcss": "^8.5.3", "tailwindcss": "^3.4.17" } @@ -1529,9 +1529,9 @@ } }, "node_modules/cypress": { - "version": "14.3.3", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.3.3.tgz", - "integrity": "sha512-1Rz7zc9iqLww6BysaESqUhtIuaFHS7nL3wREovAKYsNhLTfX3TbcBWHWgEz70YimH2NkSOsm4oIcJJ9HYHOlew==", + "version": "14.4.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.4.0.tgz", + "integrity": "sha512-/I59Fqxo7fqdiDi3IM2QKA65gZ7+PVejXg404/I8ZSq+NOnrmw+2pnMUJzpoNyg7KABcEBmgpkfAqhV98p7wJA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/nextjs/package.json b/examples/nextjs/package.json index 5a8dd3fc7..75f742ba1 100644 --- a/examples/nextjs/package.json +++ b/examples/nextjs/package.json @@ -15,7 +15,7 @@ "react-dom": "^19.0.0" }, "devDependencies": { - "cypress": "14.3.3", + "cypress": "14.4.0", "postcss": "^8.5.3", "tailwindcss": "^3.4.17" } diff --git a/examples/node-versions/package-lock.json b/examples/node-versions/package-lock.json index f0d4b2600..e8e0f0eab 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": "14.3.3" + "cypress": "14.4.0" } }, "node_modules/@cypress/request": { @@ -555,9 +555,9 @@ } }, "node_modules/cypress": { - "version": "14.3.3", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.3.3.tgz", - "integrity": "sha512-1Rz7zc9iqLww6BysaESqUhtIuaFHS7nL3wREovAKYsNhLTfX3TbcBWHWgEz70YimH2NkSOsm4oIcJJ9HYHOlew==", + "version": "14.4.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.4.0.tgz", + "integrity": "sha512-/I59Fqxo7fqdiDi3IM2QKA65gZ7+PVejXg404/I8ZSq+NOnrmw+2pnMUJzpoNyg7KABcEBmgpkfAqhV98p7wJA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/node-versions/package.json b/examples/node-versions/package.json index 4d6b88d38..4f8a08e43 100644 --- a/examples/node-versions/package.json +++ b/examples/node-versions/package.json @@ -8,6 +8,6 @@ }, "private": true, "devDependencies": { - "cypress": "14.3.3" + "cypress": "14.4.0" } } diff --git a/examples/quiet/package-lock.json b/examples/quiet/package-lock.json index 761c54cb3..af3df3c43 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": "14.3.3", + "cypress": "14.4.0", "image-size": "0.8.3" } }, @@ -556,9 +556,9 @@ } }, "node_modules/cypress": { - "version": "14.3.3", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.3.3.tgz", - "integrity": "sha512-1Rz7zc9iqLww6BysaESqUhtIuaFHS7nL3wREovAKYsNhLTfX3TbcBWHWgEz70YimH2NkSOsm4oIcJJ9HYHOlew==", + "version": "14.4.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.4.0.tgz", + "integrity": "sha512-/I59Fqxo7fqdiDi3IM2QKA65gZ7+PVejXg404/I8ZSq+NOnrmw+2pnMUJzpoNyg7KABcEBmgpkfAqhV98p7wJA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/quiet/package.json b/examples/quiet/package.json index 770211c75..1c32e2098 100644 --- a/examples/quiet/package.json +++ b/examples/quiet/package.json @@ -9,7 +9,7 @@ }, "private": true, "devDependencies": { - "cypress": "14.3.3", + "cypress": "14.4.0", "image-size": "0.8.3" } } diff --git a/examples/recording/package-lock.json b/examples/recording/package-lock.json index 86b005dff..e7390dec5 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": "14.3.3" + "cypress": "14.4.0" } }, "node_modules/@cypress/request": { @@ -555,9 +555,9 @@ } }, "node_modules/cypress": { - "version": "14.3.3", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.3.3.tgz", - "integrity": "sha512-1Rz7zc9iqLww6BysaESqUhtIuaFHS7nL3wREovAKYsNhLTfX3TbcBWHWgEz70YimH2NkSOsm4oIcJJ9HYHOlew==", + "version": "14.4.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.4.0.tgz", + "integrity": "sha512-/I59Fqxo7fqdiDi3IM2QKA65gZ7+PVejXg404/I8ZSq+NOnrmw+2pnMUJzpoNyg7KABcEBmgpkfAqhV98p7wJA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/recording/package.json b/examples/recording/package.json index a1a54a829..059121869 100644 --- a/examples/recording/package.json +++ b/examples/recording/package.json @@ -9,6 +9,6 @@ }, "private": true, "devDependencies": { - "cypress": "14.3.3" + "cypress": "14.4.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 1692c4f0c..51708eec6 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": "14.3.3", + "cypress": "14.4.0", "serve": "14.2.4" } } 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 0347f959e..7b567e963 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": "14.3.3", + "cypress": "14.4.0", "serve": "14.2.4" } } diff --git a/examples/start-and-pnpm-workspaces/pnpm-lock.yaml b/examples/start-and-pnpm-workspaces/pnpm-lock.yaml index 73946af9b..b355c8905 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: 14.3.3 - version: 14.3.3 + specifier: 14.4.0 + version: 14.4.0 serve: specifier: 14.2.4 version: 14.2.4 @@ -20,8 +20,8 @@ importers: packages/workspace-2: devDependencies: cypress: - specifier: 14.3.3 - version: 14.3.3 + specifier: 14.4.0 + version: 14.4.0 serve: specifier: 14.2.4 version: 14.2.4 @@ -35,8 +35,8 @@ packages: '@cypress/xvfb@1.2.4': resolution: {integrity: sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==} - '@types/node@22.15.14': - resolution: {integrity: sha512-BL1eyu/XWsFGTtDWOYULQEs4KR0qdtYfCxYAUYRoB7JP7h9ETYLgQTww6kH8Sj2C0pFGgrpM0XKv6/kbIzYJ1g==} + '@types/node@22.15.20': + resolution: {integrity: sha512-A6BohGFRGHAscJsTslDCA9JG7qSJr/DWUvrvY8yi9IgnGtMxCyat7vvQ//MFa0DnLsyuS3wYTpLdw4Hf+Q5JXw==} '@types/sinonjs__fake-timers@8.1.1': resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==} @@ -264,8 +264,8 @@ packages: resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} engines: {node: '>= 8'} - cypress@14.3.3: - resolution: {integrity: sha512-1Rz7zc9iqLww6BysaESqUhtIuaFHS7nL3wREovAKYsNhLTfX3TbcBWHWgEz70YimH2NkSOsm4oIcJJ9HYHOlew==} + cypress@14.4.0: + resolution: {integrity: sha512-/I59Fqxo7fqdiDi3IM2QKA65gZ7+PVejXg404/I8ZSq+NOnrmw+2pnMUJzpoNyg7KABcEBmgpkfAqhV98p7wJA==} engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} hasBin: true @@ -292,8 +292,8 @@ packages: supports-color: optional: true - debug@4.4.0: - resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} + debug@4.4.1: + resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} engines: {node: '>=6.0'} peerDependencies: supports-color: '*' @@ -718,8 +718,8 @@ packages: safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - semver@7.7.1: - resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==} + semver@7.7.2: + resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} engines: {node: '>=10'} hasBin: true @@ -931,7 +931,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@types/node@22.15.14': + '@types/node@22.15.20': dependencies: undici-types: 6.21.0 optional: true @@ -942,7 +942,7 @@ snapshots: '@types/yauzl@2.10.3': dependencies: - '@types/node': 22.15.14 + '@types/node': 22.15.20 optional: true '@zeit/schemas@2.36.0': {} @@ -1146,7 +1146,7 @@ snapshots: shebang-command: 2.0.0 which: 2.0.2 - cypress@14.3.3: + cypress@14.4.0: dependencies: '@cypress/request': 3.0.8 '@cypress/xvfb': 1.2.4(supports-color@8.1.1) @@ -1165,7 +1165,7 @@ snapshots: commander: 6.2.1 common-tags: 1.8.2 dayjs: 1.11.13 - debug: 4.4.0(supports-color@8.1.1) + debug: 4.4.1(supports-color@8.1.1) enquirer: 2.4.1 eventemitter2: 6.4.7 execa: 4.1.0 @@ -1185,7 +1185,7 @@ snapshots: process: 0.11.10 proxy-from-env: 1.0.0 request-progress: 3.0.0 - semver: 7.7.1 + semver: 7.7.2 supports-color: 8.1.1 tmp: 0.2.3 tree-kill: 1.2.2 @@ -1208,7 +1208,7 @@ snapshots: optionalDependencies: supports-color: 8.1.1 - debug@4.4.0(supports-color@8.1.1): + debug@4.4.1(supports-color@8.1.1): dependencies: ms: 2.1.3 optionalDependencies: @@ -1295,7 +1295,7 @@ snapshots: extract-zip@2.0.1(supports-color@8.1.1): dependencies: - debug: 4.4.0(supports-color@8.1.1) + debug: 4.4.1(supports-color@8.1.1) get-stream: 5.2.0 yauzl: 2.10.0 optionalDependencies: @@ -1604,7 +1604,7 @@ snapshots: safer-buffer@2.1.2: {} - semver@7.7.1: {} + semver@7.7.2: {} serve-handler@6.1.6: dependencies: diff --git a/examples/start-and-yarn-workspaces/workspace-1/package.json b/examples/start-and-yarn-workspaces/workspace-1/package.json index 1692c4f0c..51708eec6 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": "14.3.3", + "cypress": "14.4.0", "serve": "14.2.4" } } diff --git a/examples/start-and-yarn-workspaces/workspace-2/package.json b/examples/start-and-yarn-workspaces/workspace-2/package.json index 0347f959e..7b567e963 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": "14.3.3", + "cypress": "14.4.0", "serve": "14.2.4" } } diff --git a/examples/start-and-yarn-workspaces/yarn.lock b/examples/start-and-yarn-workspaces/yarn.lock index 02f0b77da..711141cbf 100644 --- a/examples/start-and-yarn-workspaces/yarn.lock +++ b/examples/start-and-yarn-workspaces/yarn.lock @@ -439,10 +439,10 @@ cross-spawn@^7.0.0, cross-spawn@^7.0.3: shebang-command "^2.0.0" which "^2.0.1" -cypress@14.3.3: - version "14.3.3" - resolved "https://registry.yarnpkg.com/cypress/-/cypress-14.3.3.tgz#cbf7fbc79fd139ba55ea51a6d1ee3d9018a59ce2" - integrity sha512-1Rz7zc9iqLww6BysaESqUhtIuaFHS7nL3wREovAKYsNhLTfX3TbcBWHWgEz70YimH2NkSOsm4oIcJJ9HYHOlew== +cypress@14.4.0: + version "14.4.0" + resolved "https://registry.yarnpkg.com/cypress/-/cypress-14.4.0.tgz#db7d108400c9481a161f047f1cc34b43b05c48f3" + integrity sha512-/I59Fqxo7fqdiDi3IM2QKA65gZ7+PVejXg404/I8ZSq+NOnrmw+2pnMUJzpoNyg7KABcEBmgpkfAqhV98p7wJA== dependencies: "@cypress/request" "^3.0.8" "@cypress/xvfb" "^1.2.4" diff --git a/examples/start/package-lock.json b/examples/start/package-lock.json index 9846f2f69..daf52bfc5 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": "14.3.3", + "cypress": "14.4.0", "serve": "14.2.4" } }, @@ -910,9 +910,9 @@ } }, "node_modules/cypress": { - "version": "14.3.3", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.3.3.tgz", - "integrity": "sha512-1Rz7zc9iqLww6BysaESqUhtIuaFHS7nL3wREovAKYsNhLTfX3TbcBWHWgEz70YimH2NkSOsm4oIcJJ9HYHOlew==", + "version": "14.4.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.4.0.tgz", + "integrity": "sha512-/I59Fqxo7fqdiDi3IM2QKA65gZ7+PVejXg404/I8ZSq+NOnrmw+2pnMUJzpoNyg7KABcEBmgpkfAqhV98p7wJA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/start/package.json b/examples/start/package.json index 8e749a446..22f713507 100644 --- a/examples/start/package.json +++ b/examples/start/package.json @@ -11,7 +11,7 @@ }, "private": true, "devDependencies": { - "cypress": "14.3.3", + "cypress": "14.4.0", "serve": "14.2.4" } } diff --git a/examples/wait-on-vite/package-lock.json b/examples/wait-on-vite/package-lock.json index 6489171df..cf71258d5 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": "14.3.3", + "cypress": "14.4.0", "vite": "^6.3.4" } }, @@ -1303,9 +1303,9 @@ } }, "node_modules/cypress": { - "version": "14.3.3", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.3.3.tgz", - "integrity": "sha512-1Rz7zc9iqLww6BysaESqUhtIuaFHS7nL3wREovAKYsNhLTfX3TbcBWHWgEz70YimH2NkSOsm4oIcJJ9HYHOlew==", + "version": "14.4.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.4.0.tgz", + "integrity": "sha512-/I59Fqxo7fqdiDi3IM2QKA65gZ7+PVejXg404/I8ZSq+NOnrmw+2pnMUJzpoNyg7KABcEBmgpkfAqhV98p7wJA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/wait-on-vite/package.json b/examples/wait-on-vite/package.json index 8f5d1531e..3b8a6b5b6 100644 --- a/examples/wait-on-vite/package.json +++ b/examples/wait-on-vite/package.json @@ -10,7 +10,7 @@ }, "private": true, "devDependencies": { - "cypress": "14.3.3", + "cypress": "14.4.0", "vite": "^6.3.4" } } diff --git a/examples/wait-on/package-lock.json b/examples/wait-on/package-lock.json index 72d85cbd1..e48fba475 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": "14.3.3" + "cypress": "14.4.0" } }, "node_modules/@cypress/request": { @@ -564,9 +564,9 @@ } }, "node_modules/cypress": { - "version": "14.3.3", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.3.3.tgz", - "integrity": "sha512-1Rz7zc9iqLww6BysaESqUhtIuaFHS7nL3wREovAKYsNhLTfX3TbcBWHWgEz70YimH2NkSOsm4oIcJJ9HYHOlew==", + "version": "14.4.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.4.0.tgz", + "integrity": "sha512-/I59Fqxo7fqdiDi3IM2QKA65gZ7+PVejXg404/I8ZSq+NOnrmw+2pnMUJzpoNyg7KABcEBmgpkfAqhV98p7wJA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/wait-on/package.json b/examples/wait-on/package.json index aff1fa9ab..80e75093b 100644 --- a/examples/wait-on/package.json +++ b/examples/wait-on/package.json @@ -20,6 +20,6 @@ "debug": "4.3.6" }, "devDependencies": { - "cypress": "14.3.3" + "cypress": "14.4.0" } } diff --git a/examples/webpack/package-lock.json b/examples/webpack/package-lock.json index 4caa3c86e..fe440c602 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": "14.3.3", + "cypress": "14.4.0", "webpack": "^5.99.6", "webpack-cli": "^5.1.4", "webpack-dev-server": "^5.2.1" @@ -1621,9 +1621,9 @@ } }, "node_modules/cypress": { - "version": "14.3.3", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.3.3.tgz", - "integrity": "sha512-1Rz7zc9iqLww6BysaESqUhtIuaFHS7nL3wREovAKYsNhLTfX3TbcBWHWgEz70YimH2NkSOsm4oIcJJ9HYHOlew==", + "version": "14.4.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-14.4.0.tgz", + "integrity": "sha512-/I59Fqxo7fqdiDi3IM2QKA65gZ7+PVejXg404/I8ZSq+NOnrmw+2pnMUJzpoNyg7KABcEBmgpkfAqhV98p7wJA==", "dev": true, "hasInstallScript": true, "license": "MIT", diff --git a/examples/webpack/package.json b/examples/webpack/package.json index 5d31864c0..707e340cb 100644 --- a/examples/webpack/package.json +++ b/examples/webpack/package.json @@ -8,7 +8,7 @@ }, "private": true, "devDependencies": { - "cypress": "14.3.3", + "cypress": "14.4.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 a25840d3a..ed8f07a32 100644 --- a/examples/yarn-classic/package.json +++ b/examples/yarn-classic/package.json @@ -7,6 +7,6 @@ }, "private": true, "devDependencies": { - "cypress": "14.3.3" + "cypress": "14.4.0" } } diff --git a/examples/yarn-classic/yarn.lock b/examples/yarn-classic/yarn.lock index d5ad52d36..7422a3903 100644 --- a/examples/yarn-classic/yarn.lock +++ b/examples/yarn-classic/yarn.lock @@ -298,10 +298,10 @@ cross-spawn@^7.0.0: shebang-command "^2.0.0" which "^2.0.1" -cypress@14.3.3: - version "14.3.3" - resolved "https://registry.yarnpkg.com/cypress/-/cypress-14.3.3.tgz#cbf7fbc79fd139ba55ea51a6d1ee3d9018a59ce2" - integrity sha512-1Rz7zc9iqLww6BysaESqUhtIuaFHS7nL3wREovAKYsNhLTfX3TbcBWHWgEz70YimH2NkSOsm4oIcJJ9HYHOlew== +cypress@14.4.0: + version "14.4.0" + resolved "https://registry.yarnpkg.com/cypress/-/cypress-14.4.0.tgz#db7d108400c9481a161f047f1cc34b43b05c48f3" + integrity sha512-/I59Fqxo7fqdiDi3IM2QKA65gZ7+PVejXg404/I8ZSq+NOnrmw+2pnMUJzpoNyg7KABcEBmgpkfAqhV98p7wJA== dependencies: "@cypress/request" "^3.0.8" "@cypress/xvfb" "^1.2.4" diff --git a/examples/yarn-modern-pnp/package.json b/examples/yarn-modern-pnp/package.json index a665b879e..0116ea6b5 100644 --- a/examples/yarn-modern-pnp/package.json +++ b/examples/yarn-modern-pnp/package.json @@ -8,6 +8,6 @@ "private": true, "packageManager": "yarn@4.9.1", "devDependencies": { - "cypress": "14.3.3" + "cypress": "14.4.0" } } diff --git a/examples/yarn-modern-pnp/yarn.lock b/examples/yarn-modern-pnp/yarn.lock index e72601f24..8bf636d9a 100644 --- a/examples/yarn-modern-pnp/yarn.lock +++ b/examples/yarn-modern-pnp/yarn.lock @@ -393,9 +393,9 @@ __metadata: languageName: node linkType: hard -"cypress@npm:14.3.3": - version: 14.3.3 - resolution: "cypress@npm:14.3.3" +"cypress@npm:14.4.0": + version: 14.4.0 + resolution: "cypress@npm:14.4.0" dependencies: "@cypress/request": "npm:^3.0.8" "@cypress/xvfb": "npm:^1.2.4" @@ -442,7 +442,7 @@ __metadata: yauzl: "npm:^2.10.0" bin: cypress: bin/cypress - checksum: 10c0/b802fd1c29069037cf72d59fdfdb79c8b4779e5dd1fa58ea67c8b520fd66e64e204db9d03817950519779af081b925416ffd5ec23f7dcbf6ac52a9da1af5cfec + checksum: 10c0/bca4d04b3245dab4e7c57f36014f4b9b6920caba7b7c7b602c1bdd4e467fd3f9eeec0ca18ea82c3cdfa5aa5c2e396060fea2bd2c63325bc45bd7895c501f4a0b languageName: node linkType: hard @@ -578,7 +578,7 @@ __metadata: version: 0.0.0-use.local resolution: "example-yarn-modern-pnp@workspace:." dependencies: - cypress: "npm:14.3.3" + cypress: "npm:14.4.0" languageName: unknown linkType: soft diff --git a/examples/yarn-modern/package.json b/examples/yarn-modern/package.json index bd1682b1c..558673562 100644 --- a/examples/yarn-modern/package.json +++ b/examples/yarn-modern/package.json @@ -8,6 +8,6 @@ "private": true, "packageManager": "yarn@4.9.1", "devDependencies": { - "cypress": "14.3.3" + "cypress": "14.4.0" } } diff --git a/examples/yarn-modern/yarn.lock b/examples/yarn-modern/yarn.lock index 5d160b73a..de4a356ae 100644 --- a/examples/yarn-modern/yarn.lock +++ b/examples/yarn-modern/yarn.lock @@ -393,9 +393,9 @@ __metadata: languageName: node linkType: hard -"cypress@npm:14.3.3": - version: 14.3.3 - resolution: "cypress@npm:14.3.3" +"cypress@npm:14.4.0": + version: 14.4.0 + resolution: "cypress@npm:14.4.0" dependencies: "@cypress/request": "npm:^3.0.8" "@cypress/xvfb": "npm:^1.2.4" @@ -442,7 +442,7 @@ __metadata: yauzl: "npm:^2.10.0" bin: cypress: bin/cypress - checksum: 10c0/b802fd1c29069037cf72d59fdfdb79c8b4779e5dd1fa58ea67c8b520fd66e64e204db9d03817950519779af081b925416ffd5ec23f7dcbf6ac52a9da1af5cfec + checksum: 10c0/bca4d04b3245dab4e7c57f36014f4b9b6920caba7b7c7b602c1bdd4e467fd3f9eeec0ca18ea82c3cdfa5aa5c2e396060fea2bd2c63325bc45bd7895c501f4a0b languageName: node linkType: hard @@ -578,7 +578,7 @@ __metadata: version: 0.0.0-use.local resolution: "example-yarn-modern@workspace:." dependencies: - cypress: "npm:14.3.3" + cypress: "npm:14.4.0" languageName: unknown linkType: soft