Build(deps-dev): bump cypress from 9.2.0 to 9.2.1 #207

Merged
argoyle merged 1 commits from dependabot-npm_and_yarn-cypress-9.2.1 into master 2022-01-13 06:14:57 +00:00
argoyle commented 2022-01-13 04:40:40 +00:00 (Migrated from gitlab.com)

Bumps cypress from 9.2.0 to 9.2.1.

Release notes

Sourced from cypress's releases.

9.2.1

Released 1/10/2022

Bugfixes:

  • Fixed a regression in 9.2.0 to keep Cypress open after each spec finishes when the --headed --no-exit flags are passed to cypress run. Fixes #19485.
  • Improve heuristic for verifying when the --openssl-legacy-provider option should be passed to the plugins' child process when the system Node version is v17+. This prevents Cypress from crashing when a user has Node 17 installed which was built with OpenSSL v1. Fixes #19320.
  • Correctly cast the CYPRESS_VERIFY_TIMEOUT environment variable as a number so Cypress will no longer throw TypeError: Expected the timeout option to be a non-negative integer. Fixes #19476.

Dependency Updates:

Commits
  • d227420 release 9.2.1 [skip ci]
  • 5d1dce6 Merge master to dev
  • 4818a21 fix: update cli-table dependency to fix broken colors.js (#19622)
  • 3f85a04 Merge branch 'master' into develop
  • 6304fd7 fix: check resolvedNodePath for Next.js 12 guard (#19604)
  • 642ec41 fix: retrieve 'exit' from config instead of options (#19567)
  • 59e42af fix: Improve heuristic for --openssl-legacy-provider (#19320) (#19522)
  • a81fa26 fix: surface openSSL unhandled rejection errors that occur within plugin code...
  • df5687c fix: Inability to download with redirects through a proxy (#19310)
  • 85813e7 chore: Update yarn.lock (#19573)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by ryanthemanuel, a new releaser for cypress since your current version.



Dependabot commands
You can trigger Dependabot actions by commenting on this MR
  • $dependabot rebase will rebase this MR
  • $dependabot recreate will recreate this MR rewriting all the manual changes and resolving conflicts
Bumps [cypress](https://github.com/cypress-io/cypress) from 9.2.0 to 9.2.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/cypress-io/cypress/releases">cypress's releases</a>.</em></p> <blockquote> <h2>9.2.1</h2> <p><em>Released 1/10/2022</em></p> <p><strong>Bugfixes:</strong></p> <ul> <li>Fixed a regression in <a href="https://docs.cypress.io/guides/references/changelog#9-2-0">9.2.0</a> to keep Cypress open after each spec finishes when the <code>--headed --no-exit</code> flags are passed to <code>cypress run</code>. Fixes <a href="https://github.com/cypress-io/cypress/issues/19485">#19485</a>.</li> <li>Improve heuristic for verifying when the <code>--openssl-legacy-provider</code> option should be passed to the plugins' child process when the system Node version is v17+. This prevents Cypress from crashing when a user has Node 17 installed which was built with OpenSSL v1. Fixes <a href="https://github.com/cypress-io/cypress/issues/19320">#19320</a>.</li> <li>Correctly cast the <code>CYPRESS_VERIFY_TIMEOUT</code> environment variable as a number so Cypress will no longer throw <code>TypeError: Expected the timeout option to be a non-negative integer</code>. Fixes <a href="https://github.com/cypress-io/cypress/issues/19476">#19476</a>.</li> </ul> <p><strong>Dependency Updates:</strong></p> <ul> <li>Update pinned resolution of <code>cli-table3</code> from <code>~0.6.0</code> to <code>~0.6.1</code> to avoid problems with the bug introduced in the <a href="https://github.com/Marak/colors.js/issues/285">colors.js v1.4.44-liberty-2 release</a>. Addresses <a href="https://github.com/cypress-io/cypress/issues/19624">#19624</a>.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/cypress-io/cypress/commit/d22742031e4d999a97cc39c8c8a90b48e2785a8f"><code>d227420</code></a> release 9.2.1 [skip ci]</li> <li><a href="https://github.com/cypress-io/cypress/commit/5d1dce61e0641ceaaf1fd0b8153182869459715f"><code>5d1dce6</code></a> Merge master to dev</li> <li><a href="https://github.com/cypress-io/cypress/commit/4818a214658707151cd34b6f6495b0d259e0adc0"><code>4818a21</code></a> fix: update cli-table dependency to fix broken colors.js (<a href="https://github.com/cypress-io/cypress/issues/19622">#19622</a>)</li> <li><a href="https://github.com/cypress-io/cypress/commit/3f85a049ef482251e85631cc45c2fd8a8bd08fb7"><code>3f85a04</code></a> Merge branch 'master' into develop</li> <li><a href="https://github.com/cypress-io/cypress/commit/6304fd7548a0a3fee90fc8a9ba449ab81e7a7a0c"><code>6304fd7</code></a> fix: check resolvedNodePath for Next.js 12 guard (<a href="https://github.com/cypress-io/cypress/issues/19604">#19604</a>)</li> <li><a href="https://github.com/cypress-io/cypress/commit/642ec4140641fa4040ac9e109eeb1a4057f7e69c"><code>642ec41</code></a> fix: retrieve 'exit' from config instead of options (<a href="https://github.com/cypress-io/cypress/issues/19567">#19567</a>)</li> <li><a href="https://github.com/cypress-io/cypress/commit/59e42afd23ccdc94f9debaf05c5fe0019a088cba"><code>59e42af</code></a> fix: Improve heuristic for --openssl-legacy-provider (<a href="https://github.com/cypress-io/cypress/issues/19320">#19320</a>) (<a href="https://github.com/cypress-io/cypress/issues/19522">#19522</a>)</li> <li><a href="https://github.com/cypress-io/cypress/commit/a81fa26c8922c2558372d414e391afe3dc2440a6"><code>a81fa26</code></a> fix: surface openSSL unhandled rejection errors that occur within plugin code...</li> <li><a href="https://github.com/cypress-io/cypress/commit/df5687c65d82e0591256df2dea727e5680baeb82"><code>df5687c</code></a> fix: Inability to download with redirects through a proxy (<a href="https://github.com/cypress-io/cypress/issues/19310">#19310</a>)</li> <li><a href="https://github.com/cypress-io/cypress/commit/85813e7d1b3c947dcdb4b764933978749d87e784"><code>85813e7</code></a> chore: Update yarn.lock (<a href="https://github.com/cypress-io/cypress/issues/19573">#19573</a>)</li> <li>Additional commits viewable in <a href="https://github.com/cypress-io/cypress/compare/v9.2.0...v9.2.1">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~ryanthemanuel">ryanthemanuel</a>, a new releaser for cypress since your current version.</p> </details> <br /> --- <details> <summary>Dependabot commands</summary> <br /> You can trigger Dependabot actions by commenting on this MR - `$dependabot rebase` will rebase this MR - `$dependabot recreate` will recreate this MR rewriting all the manual changes and resolving conflicts </details>
argoyle commented 2022-01-13 06:14:57 +00:00 (Migrated from gitlab.com)

mentioned in commit a4f33b326a

mentioned in commit a4f33b326a41a0f12190da3bc181bfc0dba5b81b
argoyle (Migrated from gitlab.com) merged commit a4f33b326a into master 2022-01-13 06:14:58 +00:00
Sign in to join this conversation.