From bd9dda317ed2d4fbffc808ba6cdcd27823b2a13b Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Fri, 29 Sep 2023 15:52:42 +0200 Subject: [PATCH] chore(deps): update cypress to 13.3.0 (#1042) --- .github/workflows/example-install-only.yml | 2 +- examples/basic-pnpm/package.json | 2 +- examples/basic-pnpm/pnpm-lock.yaml | 8 ++++---- examples/basic/package-lock.json | 8 ++++---- examples/basic/package.json | 2 +- examples/browser/package-lock.json | 8 ++++---- examples/browser/package.json | 2 +- examples/component-tests/package-lock.json | 8 ++++---- examples/component-tests/package.json | 2 +- examples/config/package-lock.json | 8 ++++---- examples/config/package.json | 2 +- examples/custom-command/package-lock.json | 8 ++++---- examples/custom-command/package.json | 2 +- examples/env/package-lock.json | 8 ++++---- examples/env/package.json | 2 +- examples/install-command/package.json | 2 +- examples/install-command/yarn.lock | 8 ++++---- examples/install-only/package-lock.json | 8 ++++---- examples/install-only/package.json | 2 +- examples/nextjs/package-lock.json | 8 ++++---- examples/nextjs/package.json | 2 +- examples/node-versions/package-lock.json | 8 ++++---- examples/node-versions/package.json | 2 +- examples/quiet/package-lock.json | 8 ++++---- examples/quiet/package.json | 2 +- examples/recording/package-lock.json | 8 ++++---- examples/recording/package.json | 2 +- .../start-and-yarn-workspaces/workspace-1/package.json | 2 +- .../start-and-yarn-workspaces/workspace-2/package.json | 2 +- examples/start-and-yarn-workspaces/yarn.lock | 8 ++++---- examples/start/package-lock.json | 8 ++++---- examples/start/package.json | 2 +- examples/wait-on-vite/package-lock.json | 8 ++++---- examples/wait-on-vite/package.json | 2 +- examples/wait-on/package-lock.json | 8 ++++---- examples/wait-on/package.json | 2 +- examples/webpack/package-lock.json | 8 ++++---- examples/webpack/package.json | 2 +- examples/yarn-classic/package.json | 2 +- examples/yarn-classic/yarn.lock | 8 ++++---- examples/yarn-modern-pnp/package.json | 2 +- examples/yarn-modern-pnp/yarn.lock | 10 +++++----- examples/yarn-modern/package.json | 2 +- examples/yarn-modern/yarn.lock | 10 +++++----- 44 files changed, 109 insertions(+), 109 deletions(-) diff --git a/.github/workflows/example-install-only.yml b/.github/workflows/example-install-only.yml index 3671694ef..c32397e79 100644 --- a/.github/workflows/example-install-only.yml +++ b/.github/workflows/example-install-only.yml @@ -30,7 +30,7 @@ jobs: key: my-cache-${{ runner.os }}-${{ hashFiles('package-lock.json') }} - name: Install Cypress 📥 - run: npm i cypress@13.2.0 + run: npm i cypress@13.3.0 - name: Cypress tests 🧪 uses: ./ diff --git a/examples/basic-pnpm/package.json b/examples/basic-pnpm/package.json index 7c067fc6a..cf1e7b632 100644 --- a/examples/basic-pnpm/package.json +++ b/examples/basic-pnpm/package.json @@ -8,6 +8,6 @@ }, "private": true, "devDependencies": { - "cypress": "13.2.0" + "cypress": "13.3.0" } } diff --git a/examples/basic-pnpm/pnpm-lock.yaml b/examples/basic-pnpm/pnpm-lock.yaml index 7ff26b678..02ad41862 100644 --- a/examples/basic-pnpm/pnpm-lock.yaml +++ b/examples/basic-pnpm/pnpm-lock.yaml @@ -6,8 +6,8 @@ settings: devDependencies: cypress: - specifier: 13.2.0 - version: 13.2.0 + specifier: 13.3.0 + version: 13.3.0 packages: @@ -296,8 +296,8 @@ packages: which: 2.0.2 dev: true - /cypress@13.2.0: - resolution: {integrity: sha512-AvDQxBydE771GTq0TR4ZUBvv9m9ffXuB/ueEtpDF/6gOcvFR96amgwSJP16Yhqw6VhmwqspT5nAGzoxxB+D89g==} + /cypress@13.3.0: + resolution: {integrity: sha512-mpI8qcTwLGiA4zEQvTC/U1xGUezVV4V8HQCOYjlEOrVmU1etVvxOjkCXHGwrlYdZU/EPmUiWfsO3yt1o+Q2bgw==} engines: {node: ^16.0.0 || ^18.0.0 || >=20.0.0} hasBin: true requiresBuild: true diff --git a/examples/basic/package-lock.json b/examples/basic/package-lock.json index 5ffa675fd..60d7269f3 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": "13.2.0" + "cypress": "13.3.0" } }, "node_modules/@colors/colors": { @@ -544,9 +544,9 @@ } }, "node_modules/cypress": { - "version": "13.2.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.2.0.tgz", - "integrity": "sha512-AvDQxBydE771GTq0TR4ZUBvv9m9ffXuB/ueEtpDF/6gOcvFR96amgwSJP16Yhqw6VhmwqspT5nAGzoxxB+D89g==", + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.3.0.tgz", + "integrity": "sha512-mpI8qcTwLGiA4zEQvTC/U1xGUezVV4V8HQCOYjlEOrVmU1etVvxOjkCXHGwrlYdZU/EPmUiWfsO3yt1o+Q2bgw==", "dev": true, "hasInstallScript": true, "dependencies": { diff --git a/examples/basic/package.json b/examples/basic/package.json index 2534c38fc..e41ecd9e0 100644 --- a/examples/basic/package.json +++ b/examples/basic/package.json @@ -8,6 +8,6 @@ }, "private": true, "devDependencies": { - "cypress": "13.2.0" + "cypress": "13.3.0" } } diff --git a/examples/browser/package-lock.json b/examples/browser/package-lock.json index 1cbb13e2c..e443ee4b2 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": "13.2.0", + "cypress": "13.3.0", "image-size": "^1.0.2" } }, @@ -545,9 +545,9 @@ } }, "node_modules/cypress": { - "version": "13.2.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.2.0.tgz", - "integrity": "sha512-AvDQxBydE771GTq0TR4ZUBvv9m9ffXuB/ueEtpDF/6gOcvFR96amgwSJP16Yhqw6VhmwqspT5nAGzoxxB+D89g==", + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.3.0.tgz", + "integrity": "sha512-mpI8qcTwLGiA4zEQvTC/U1xGUezVV4V8HQCOYjlEOrVmU1etVvxOjkCXHGwrlYdZU/EPmUiWfsO3yt1o+Q2bgw==", "dev": true, "hasInstallScript": true, "dependencies": { diff --git a/examples/browser/package.json b/examples/browser/package.json index bc7e479ee..873b5ba22 100644 --- a/examples/browser/package.json +++ b/examples/browser/package.json @@ -13,7 +13,7 @@ }, "private": true, "devDependencies": { - "cypress": "13.2.0", + "cypress": "13.3.0", "image-size": "^1.0.2" } } diff --git a/examples/component-tests/package-lock.json b/examples/component-tests/package-lock.json index a6f55fcb8..e186e8927 100644 --- a/examples/component-tests/package-lock.json +++ b/examples/component-tests/package-lock.json @@ -15,7 +15,7 @@ "@types/react": "^18.2.15", "@types/react-dom": "^18.2.7", "@vitejs/plugin-react": "^4.0.3", - "cypress": "13.2.0", + "cypress": "13.3.0", "vite": "^4.4.5" } }, @@ -1394,9 +1394,9 @@ "dev": true }, "node_modules/cypress": { - "version": "13.2.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.2.0.tgz", - "integrity": "sha512-AvDQxBydE771GTq0TR4ZUBvv9m9ffXuB/ueEtpDF/6gOcvFR96amgwSJP16Yhqw6VhmwqspT5nAGzoxxB+D89g==", + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.3.0.tgz", + "integrity": "sha512-mpI8qcTwLGiA4zEQvTC/U1xGUezVV4V8HQCOYjlEOrVmU1etVvxOjkCXHGwrlYdZU/EPmUiWfsO3yt1o+Q2bgw==", "dev": true, "hasInstallScript": true, "dependencies": { diff --git a/examples/component-tests/package.json b/examples/component-tests/package.json index efdcff668..6747a7b66 100644 --- a/examples/component-tests/package.json +++ b/examples/component-tests/package.json @@ -17,7 +17,7 @@ "@types/react": "^18.2.15", "@types/react-dom": "^18.2.7", "@vitejs/plugin-react": "^4.0.3", - "cypress": "13.2.0", + "cypress": "13.3.0", "vite": "^4.4.5" } } diff --git a/examples/config/package-lock.json b/examples/config/package-lock.json index 4e9d4d6c6..4ea41febb 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": "13.2.0", + "cypress": "13.3.0", "serve": "14.2.1", "start-server-and-test": "2.0.0" } @@ -932,9 +932,9 @@ } }, "node_modules/cypress": { - "version": "13.2.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.2.0.tgz", - "integrity": "sha512-AvDQxBydE771GTq0TR4ZUBvv9m9ffXuB/ueEtpDF/6gOcvFR96amgwSJP16Yhqw6VhmwqspT5nAGzoxxB+D89g==", + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.3.0.tgz", + "integrity": "sha512-mpI8qcTwLGiA4zEQvTC/U1xGUezVV4V8HQCOYjlEOrVmU1etVvxOjkCXHGwrlYdZU/EPmUiWfsO3yt1o+Q2bgw==", "dev": true, "hasInstallScript": true, "dependencies": { diff --git a/examples/config/package.json b/examples/config/package.json index 9b48816e2..695265b9f 100644 --- a/examples/config/package.json +++ b/examples/config/package.json @@ -12,7 +12,7 @@ }, "private": true, "devDependencies": { - "cypress": "13.2.0", + "cypress": "13.3.0", "serve": "14.2.1", "start-server-and-test": "2.0.0" } diff --git a/examples/custom-command/package-lock.json b/examples/custom-command/package-lock.json index 9e1afc12e..df2781d90 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": "13.2.0", + "cypress": "13.3.0", "lodash": "4.17.21" } }, @@ -545,9 +545,9 @@ } }, "node_modules/cypress": { - "version": "13.2.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.2.0.tgz", - "integrity": "sha512-AvDQxBydE771GTq0TR4ZUBvv9m9ffXuB/ueEtpDF/6gOcvFR96amgwSJP16Yhqw6VhmwqspT5nAGzoxxB+D89g==", + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.3.0.tgz", + "integrity": "sha512-mpI8qcTwLGiA4zEQvTC/U1xGUezVV4V8HQCOYjlEOrVmU1etVvxOjkCXHGwrlYdZU/EPmUiWfsO3yt1o+Q2bgw==", "dev": true, "hasInstallScript": true, "dependencies": { diff --git a/examples/custom-command/package.json b/examples/custom-command/package.json index 6110d5b68..e7291fa8e 100644 --- a/examples/custom-command/package.json +++ b/examples/custom-command/package.json @@ -9,7 +9,7 @@ }, "private": true, "devDependencies": { - "cypress": "13.2.0", + "cypress": "13.3.0", "lodash": "4.17.21" } } diff --git a/examples/env/package-lock.json b/examples/env/package-lock.json index 60a956423..be69aca49 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": "13.2.0" + "cypress": "13.3.0" } }, "node_modules/@colors/colors": { @@ -544,9 +544,9 @@ } }, "node_modules/cypress": { - "version": "13.2.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.2.0.tgz", - "integrity": "sha512-AvDQxBydE771GTq0TR4ZUBvv9m9ffXuB/ueEtpDF/6gOcvFR96amgwSJP16Yhqw6VhmwqspT5nAGzoxxB+D89g==", + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.3.0.tgz", + "integrity": "sha512-mpI8qcTwLGiA4zEQvTC/U1xGUezVV4V8HQCOYjlEOrVmU1etVvxOjkCXHGwrlYdZU/EPmUiWfsO3yt1o+Q2bgw==", "dev": true, "hasInstallScript": true, "dependencies": { diff --git a/examples/env/package.json b/examples/env/package.json index 8653f2c4a..134863fc0 100644 --- a/examples/env/package.json +++ b/examples/env/package.json @@ -8,6 +8,6 @@ }, "private": true, "devDependencies": { - "cypress": "13.2.0" + "cypress": "13.3.0" } } diff --git a/examples/install-command/package.json b/examples/install-command/package.json index 476222fac..67886f3c8 100644 --- a/examples/install-command/package.json +++ b/examples/install-command/package.json @@ -7,7 +7,7 @@ }, "private": true, "devDependencies": { - "cypress": "13.2.0" + "cypress": "13.3.0" }, "dependencies": { "arg": "5.0.0", diff --git a/examples/install-command/yarn.lock b/examples/install-command/yarn.lock index 6e139ea15..3b43d264b 100644 --- a/examples/install-command/yarn.lock +++ b/examples/install-command/yarn.lock @@ -316,10 +316,10 @@ cross-spawn@^7.0.0: shebang-command "^2.0.0" which "^2.0.1" -cypress@13.2.0: - version "13.2.0" - resolved "https://registry.yarnpkg.com/cypress/-/cypress-13.2.0.tgz#10f73d06a0764764ffbb903a31e96e2118dcfc1d" - integrity sha512-AvDQxBydE771GTq0TR4ZUBvv9m9ffXuB/ueEtpDF/6gOcvFR96amgwSJP16Yhqw6VhmwqspT5nAGzoxxB+D89g== +cypress@13.3.0: + version "13.3.0" + resolved "https://registry.yarnpkg.com/cypress/-/cypress-13.3.0.tgz#d00104661b337d662c5a4280a051ee59f8aa1e31" + integrity sha512-mpI8qcTwLGiA4zEQvTC/U1xGUezVV4V8HQCOYjlEOrVmU1etVvxOjkCXHGwrlYdZU/EPmUiWfsO3yt1o+Q2bgw== dependencies: "@cypress/request" "^3.0.0" "@cypress/xvfb" "^1.2.4" diff --git a/examples/install-only/package-lock.json b/examples/install-only/package-lock.json index 0d36e9ab2..9afba4287 100644 --- a/examples/install-only/package-lock.json +++ b/examples/install-only/package-lock.json @@ -12,7 +12,7 @@ "debug": "4.3.4" }, "devDependencies": { - "cypress": "13.2.0" + "cypress": "13.3.0" } }, "node_modules/@colors/colors": { @@ -553,9 +553,9 @@ } }, "node_modules/cypress": { - "version": "13.2.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.2.0.tgz", - "integrity": "sha512-AvDQxBydE771GTq0TR4ZUBvv9m9ffXuB/ueEtpDF/6gOcvFR96amgwSJP16Yhqw6VhmwqspT5nAGzoxxB+D89g==", + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.3.0.tgz", + "integrity": "sha512-mpI8qcTwLGiA4zEQvTC/U1xGUezVV4V8HQCOYjlEOrVmU1etVvxOjkCXHGwrlYdZU/EPmUiWfsO3yt1o+Q2bgw==", "dev": true, "hasInstallScript": true, "dependencies": { diff --git a/examples/install-only/package.json b/examples/install-only/package.json index 5c700a3a7..956593317 100644 --- a/examples/install-only/package.json +++ b/examples/install-only/package.json @@ -11,6 +11,6 @@ "debug": "4.3.4" }, "devDependencies": { - "cypress": "13.2.0" + "cypress": "13.3.0" } } diff --git a/examples/nextjs/package-lock.json b/examples/nextjs/package-lock.json index 25a349ad0..2e274b156 100644 --- a/examples/nextjs/package-lock.json +++ b/examples/nextjs/package-lock.json @@ -13,7 +13,7 @@ "react-dom": "18.2.0" }, "devDependencies": { - "cypress": "13.2.0" + "cypress": "13.3.0" } }, "node_modules/@colors/colors": { @@ -732,9 +732,9 @@ } }, "node_modules/cypress": { - "version": "13.2.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.2.0.tgz", - "integrity": "sha512-AvDQxBydE771GTq0TR4ZUBvv9m9ffXuB/ueEtpDF/6gOcvFR96amgwSJP16Yhqw6VhmwqspT5nAGzoxxB+D89g==", + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.3.0.tgz", + "integrity": "sha512-mpI8qcTwLGiA4zEQvTC/U1xGUezVV4V8HQCOYjlEOrVmU1etVvxOjkCXHGwrlYdZU/EPmUiWfsO3yt1o+Q2bgw==", "dev": true, "hasInstallScript": true, "dependencies": { diff --git a/examples/nextjs/package.json b/examples/nextjs/package.json index 4bc4b14b2..ef5916e53 100644 --- a/examples/nextjs/package.json +++ b/examples/nextjs/package.json @@ -15,6 +15,6 @@ "react-dom": "18.2.0" }, "devDependencies": { - "cypress": "13.2.0" + "cypress": "13.3.0" } } diff --git a/examples/node-versions/package-lock.json b/examples/node-versions/package-lock.json index d0ff09a9c..00f19f7d4 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": "13.2.0" + "cypress": "13.3.0" } }, "node_modules/@colors/colors": { @@ -544,9 +544,9 @@ } }, "node_modules/cypress": { - "version": "13.2.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.2.0.tgz", - "integrity": "sha512-AvDQxBydE771GTq0TR4ZUBvv9m9ffXuB/ueEtpDF/6gOcvFR96amgwSJP16Yhqw6VhmwqspT5nAGzoxxB+D89g==", + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.3.0.tgz", + "integrity": "sha512-mpI8qcTwLGiA4zEQvTC/U1xGUezVV4V8HQCOYjlEOrVmU1etVvxOjkCXHGwrlYdZU/EPmUiWfsO3yt1o+Q2bgw==", "dev": true, "hasInstallScript": true, "dependencies": { diff --git a/examples/node-versions/package.json b/examples/node-versions/package.json index 21994fa71..8b0d4e645 100644 --- a/examples/node-versions/package.json +++ b/examples/node-versions/package.json @@ -8,6 +8,6 @@ }, "private": true, "devDependencies": { - "cypress": "13.2.0" + "cypress": "13.3.0" } } diff --git a/examples/quiet/package-lock.json b/examples/quiet/package-lock.json index 941d2a837..41b1f3498 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": "13.2.0", + "cypress": "13.3.0", "image-size": "0.8.3" } }, @@ -545,9 +545,9 @@ } }, "node_modules/cypress": { - "version": "13.2.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.2.0.tgz", - "integrity": "sha512-AvDQxBydE771GTq0TR4ZUBvv9m9ffXuB/ueEtpDF/6gOcvFR96amgwSJP16Yhqw6VhmwqspT5nAGzoxxB+D89g==", + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.3.0.tgz", + "integrity": "sha512-mpI8qcTwLGiA4zEQvTC/U1xGUezVV4V8HQCOYjlEOrVmU1etVvxOjkCXHGwrlYdZU/EPmUiWfsO3yt1o+Q2bgw==", "dev": true, "hasInstallScript": true, "dependencies": { diff --git a/examples/quiet/package.json b/examples/quiet/package.json index 6ab0b5056..f541aef3d 100644 --- a/examples/quiet/package.json +++ b/examples/quiet/package.json @@ -9,7 +9,7 @@ }, "private": true, "devDependencies": { - "cypress": "13.2.0", + "cypress": "13.3.0", "image-size": "0.8.3" } } diff --git a/examples/recording/package-lock.json b/examples/recording/package-lock.json index 7ae0d9892..9f11a8b59 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": "13.2.0" + "cypress": "13.3.0" } }, "node_modules/@colors/colors": { @@ -544,9 +544,9 @@ } }, "node_modules/cypress": { - "version": "13.2.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.2.0.tgz", - "integrity": "sha512-AvDQxBydE771GTq0TR4ZUBvv9m9ffXuB/ueEtpDF/6gOcvFR96amgwSJP16Yhqw6VhmwqspT5nAGzoxxB+D89g==", + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.3.0.tgz", + "integrity": "sha512-mpI8qcTwLGiA4zEQvTC/U1xGUezVV4V8HQCOYjlEOrVmU1etVvxOjkCXHGwrlYdZU/EPmUiWfsO3yt1o+Q2bgw==", "dev": true, "hasInstallScript": true, "dependencies": { diff --git a/examples/recording/package.json b/examples/recording/package.json index ff116a842..a66a1e7eb 100644 --- a/examples/recording/package.json +++ b/examples/recording/package.json @@ -9,6 +9,6 @@ }, "private": true, "devDependencies": { - "cypress": "13.2.0" + "cypress": "13.3.0" } } diff --git a/examples/start-and-yarn-workspaces/workspace-1/package.json b/examples/start-and-yarn-workspaces/workspace-1/package.json index 353e83981..0fa5129b9 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": "13.2.0", + "cypress": "13.3.0", "serve": "14.2.1" } } diff --git a/examples/start-and-yarn-workspaces/workspace-2/package.json b/examples/start-and-yarn-workspaces/workspace-2/package.json index f7d5bb7ae..d3ff8221b 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": "13.2.0", + "cypress": "13.3.0", "serve": "14.2.1" } } diff --git a/examples/start-and-yarn-workspaces/yarn.lock b/examples/start-and-yarn-workspaces/yarn.lock index efc775cdf..25539dbfb 100644 --- a/examples/start-and-yarn-workspaces/yarn.lock +++ b/examples/start-and-yarn-workspaces/yarn.lock @@ -436,10 +436,10 @@ cross-spawn@^7.0.0, cross-spawn@^7.0.3: shebang-command "^2.0.0" which "^2.0.1" -cypress@13.2.0: - version "13.2.0" - resolved "https://registry.yarnpkg.com/cypress/-/cypress-13.2.0.tgz#10f73d06a0764764ffbb903a31e96e2118dcfc1d" - integrity sha512-AvDQxBydE771GTq0TR4ZUBvv9m9ffXuB/ueEtpDF/6gOcvFR96amgwSJP16Yhqw6VhmwqspT5nAGzoxxB+D89g== +cypress@13.3.0: + version "13.3.0" + resolved "https://registry.yarnpkg.com/cypress/-/cypress-13.3.0.tgz#d00104661b337d662c5a4280a051ee59f8aa1e31" + integrity sha512-mpI8qcTwLGiA4zEQvTC/U1xGUezVV4V8HQCOYjlEOrVmU1etVvxOjkCXHGwrlYdZU/EPmUiWfsO3yt1o+Q2bgw== dependencies: "@cypress/request" "^3.0.0" "@cypress/xvfb" "^1.2.4" diff --git a/examples/start/package-lock.json b/examples/start/package-lock.json index 8c4e2e4bb..25c876665 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": "13.2.0", + "cypress": "13.3.0", "serve": "14.2.1" } }, @@ -871,9 +871,9 @@ } }, "node_modules/cypress": { - "version": "13.2.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.2.0.tgz", - "integrity": "sha512-AvDQxBydE771GTq0TR4ZUBvv9m9ffXuB/ueEtpDF/6gOcvFR96amgwSJP16Yhqw6VhmwqspT5nAGzoxxB+D89g==", + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.3.0.tgz", + "integrity": "sha512-mpI8qcTwLGiA4zEQvTC/U1xGUezVV4V8HQCOYjlEOrVmU1etVvxOjkCXHGwrlYdZU/EPmUiWfsO3yt1o+Q2bgw==", "dev": true, "hasInstallScript": true, "dependencies": { diff --git a/examples/start/package.json b/examples/start/package.json index 7febf733a..7ceaf596a 100644 --- a/examples/start/package.json +++ b/examples/start/package.json @@ -11,7 +11,7 @@ }, "private": true, "devDependencies": { - "cypress": "13.2.0", + "cypress": "13.3.0", "serve": "14.2.1" } } diff --git a/examples/wait-on-vite/package-lock.json b/examples/wait-on-vite/package-lock.json index f90e11852..379dab8f5 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": "13.2.0", + "cypress": "13.3.0", "vite": "^4.3.9" } }, @@ -897,9 +897,9 @@ } }, "node_modules/cypress": { - "version": "13.2.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.2.0.tgz", - "integrity": "sha512-AvDQxBydE771GTq0TR4ZUBvv9m9ffXuB/ueEtpDF/6gOcvFR96amgwSJP16Yhqw6VhmwqspT5nAGzoxxB+D89g==", + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.3.0.tgz", + "integrity": "sha512-mpI8qcTwLGiA4zEQvTC/U1xGUezVV4V8HQCOYjlEOrVmU1etVvxOjkCXHGwrlYdZU/EPmUiWfsO3yt1o+Q2bgw==", "dev": true, "hasInstallScript": true, "dependencies": { diff --git a/examples/wait-on-vite/package.json b/examples/wait-on-vite/package.json index 0337a6994..3e0d2ec0a 100644 --- a/examples/wait-on-vite/package.json +++ b/examples/wait-on-vite/package.json @@ -10,7 +10,7 @@ }, "private": true, "devDependencies": { - "cypress": "13.2.0", + "cypress": "13.3.0", "vite": "^4.3.9" } } diff --git a/examples/wait-on/package-lock.json b/examples/wait-on/package-lock.json index fd8c0fb39..b76e814eb 100644 --- a/examples/wait-on/package-lock.json +++ b/examples/wait-on/package-lock.json @@ -12,7 +12,7 @@ "debug": "4.3.4" }, "devDependencies": { - "cypress": "13.2.0" + "cypress": "13.3.0" } }, "node_modules/@colors/colors": { @@ -553,9 +553,9 @@ } }, "node_modules/cypress": { - "version": "13.2.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.2.0.tgz", - "integrity": "sha512-AvDQxBydE771GTq0TR4ZUBvv9m9ffXuB/ueEtpDF/6gOcvFR96amgwSJP16Yhqw6VhmwqspT5nAGzoxxB+D89g==", + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.3.0.tgz", + "integrity": "sha512-mpI8qcTwLGiA4zEQvTC/U1xGUezVV4V8HQCOYjlEOrVmU1etVvxOjkCXHGwrlYdZU/EPmUiWfsO3yt1o+Q2bgw==", "dev": true, "hasInstallScript": true, "dependencies": { diff --git a/examples/wait-on/package.json b/examples/wait-on/package.json index 98c14f35c..973bbccf9 100644 --- a/examples/wait-on/package.json +++ b/examples/wait-on/package.json @@ -20,6 +20,6 @@ "debug": "4.3.4" }, "devDependencies": { - "cypress": "13.2.0" + "cypress": "13.3.0" } } diff --git a/examples/webpack/package-lock.json b/examples/webpack/package-lock.json index 82e253466..0f4f995c7 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": "13.2.0", + "cypress": "13.3.0", "webpack": "5.81.0", "webpack-cli": "5.0.2", "webpack-dev-server": "4.13.3" @@ -1436,9 +1436,9 @@ } }, "node_modules/cypress": { - "version": "13.2.0", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.2.0.tgz", - "integrity": "sha512-AvDQxBydE771GTq0TR4ZUBvv9m9ffXuB/ueEtpDF/6gOcvFR96amgwSJP16Yhqw6VhmwqspT5nAGzoxxB+D89g==", + "version": "13.3.0", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.3.0.tgz", + "integrity": "sha512-mpI8qcTwLGiA4zEQvTC/U1xGUezVV4V8HQCOYjlEOrVmU1etVvxOjkCXHGwrlYdZU/EPmUiWfsO3yt1o+Q2bgw==", "dev": true, "hasInstallScript": true, "dependencies": { diff --git a/examples/webpack/package.json b/examples/webpack/package.json index 2a29fa0c8..7d5a81092 100644 --- a/examples/webpack/package.json +++ b/examples/webpack/package.json @@ -8,7 +8,7 @@ }, "private": true, "devDependencies": { - "cypress": "13.2.0", + "cypress": "13.3.0", "webpack": "5.81.0", "webpack-cli": "5.0.2", "webpack-dev-server": "4.13.3" diff --git a/examples/yarn-classic/package.json b/examples/yarn-classic/package.json index 45ae62cff..8d94113af 100644 --- a/examples/yarn-classic/package.json +++ b/examples/yarn-classic/package.json @@ -7,6 +7,6 @@ }, "private": true, "devDependencies": { - "cypress": "13.2.0" + "cypress": "13.3.0" } } diff --git a/examples/yarn-classic/yarn.lock b/examples/yarn-classic/yarn.lock index 51bbc6f27..94dfe39ca 100644 --- a/examples/yarn-classic/yarn.lock +++ b/examples/yarn-classic/yarn.lock @@ -311,10 +311,10 @@ cross-spawn@^7.0.0: shebang-command "^2.0.0" which "^2.0.1" -cypress@13.2.0: - version "13.2.0" - resolved "https://registry.yarnpkg.com/cypress/-/cypress-13.2.0.tgz#10f73d06a0764764ffbb903a31e96e2118dcfc1d" - integrity sha512-AvDQxBydE771GTq0TR4ZUBvv9m9ffXuB/ueEtpDF/6gOcvFR96amgwSJP16Yhqw6VhmwqspT5nAGzoxxB+D89g== +cypress@13.3.0: + version "13.3.0" + resolved "https://registry.yarnpkg.com/cypress/-/cypress-13.3.0.tgz#d00104661b337d662c5a4280a051ee59f8aa1e31" + integrity sha512-mpI8qcTwLGiA4zEQvTC/U1xGUezVV4V8HQCOYjlEOrVmU1etVvxOjkCXHGwrlYdZU/EPmUiWfsO3yt1o+Q2bgw== dependencies: "@cypress/request" "^3.0.0" "@cypress/xvfb" "^1.2.4" diff --git a/examples/yarn-modern-pnp/package.json b/examples/yarn-modern-pnp/package.json index 017b9182c..3a9c737bd 100644 --- a/examples/yarn-modern-pnp/package.json +++ b/examples/yarn-modern-pnp/package.json @@ -8,6 +8,6 @@ "private": true, "packageManager": "yarn@3.6.3", "devDependencies": { - "cypress": "13.2.0" + "cypress": "13.3.0" } } diff --git a/examples/yarn-modern-pnp/yarn.lock b/examples/yarn-modern-pnp/yarn.lock index 9a930e5a6..51d3a6445 100644 --- a/examples/yarn-modern-pnp/yarn.lock +++ b/examples/yarn-modern-pnp/yarn.lock @@ -414,9 +414,9 @@ __metadata: languageName: node linkType: hard -"cypress@npm:13.2.0": - version: 13.2.0 - resolution: "cypress@npm:13.2.0" +"cypress@npm:13.3.0": + version: 13.3.0 + resolution: "cypress@npm:13.3.0" dependencies: "@cypress/request": ^3.0.0 "@cypress/xvfb": ^1.2.4 @@ -463,7 +463,7 @@ __metadata: yauzl: ^2.10.0 bin: cypress: bin/cypress - checksum: 7647814f07626bd63e7b8dc4d066179fa40bf492c588bbc2626d983a2baab6cb77c29958dc92442f277e0a8e94866decc51c4de306021739c47e32baf5970219 + checksum: 6ad11bd6aabccfaf8be78afff0e854c9c8ccc935704c41efe4d8e9412ccfcb652f23791931c3aa26fc41068eeeb739a51563308670c9dada91cb272d08227caf languageName: node linkType: hard @@ -565,7 +565,7 @@ __metadata: version: 0.0.0-use.local resolution: "example-yarn-modern-pnp@workspace:." dependencies: - cypress: 13.2.0 + cypress: 13.3.0 languageName: unknown linkType: soft diff --git a/examples/yarn-modern/package.json b/examples/yarn-modern/package.json index 297b870a8..08921b3f3 100644 --- a/examples/yarn-modern/package.json +++ b/examples/yarn-modern/package.json @@ -8,6 +8,6 @@ "private": true, "packageManager": "yarn@3.6.3", "devDependencies": { - "cypress": "13.2.0" + "cypress": "13.3.0" } } diff --git a/examples/yarn-modern/yarn.lock b/examples/yarn-modern/yarn.lock index 77511da19..dc9952ba6 100644 --- a/examples/yarn-modern/yarn.lock +++ b/examples/yarn-modern/yarn.lock @@ -414,9 +414,9 @@ __metadata: languageName: node linkType: hard -"cypress@npm:13.2.0": - version: 13.2.0 - resolution: "cypress@npm:13.2.0" +"cypress@npm:13.3.0": + version: 13.3.0 + resolution: "cypress@npm:13.3.0" dependencies: "@cypress/request": ^3.0.0 "@cypress/xvfb": ^1.2.4 @@ -463,7 +463,7 @@ __metadata: yauzl: ^2.10.0 bin: cypress: bin/cypress - checksum: 7647814f07626bd63e7b8dc4d066179fa40bf492c588bbc2626d983a2baab6cb77c29958dc92442f277e0a8e94866decc51c4de306021739c47e32baf5970219 + checksum: 6ad11bd6aabccfaf8be78afff0e854c9c8ccc935704c41efe4d8e9412ccfcb652f23791931c3aa26fc41068eeeb739a51563308670c9dada91cb272d08227caf languageName: node linkType: hard @@ -565,7 +565,7 @@ __metadata: version: 0.0.0-use.local resolution: "example-yarn-modern@workspace:." dependencies: - cypress: 13.2.0 + cypress: 13.3.0 languageName: unknown linkType: soft