Skip to content

Commit

Permalink
Merge pull request #7753 from cypress-io/v5.0-release
Browse files Browse the repository at this point in the history
feat: v5.0 release
  • Loading branch information
jennifer-shehane committed Aug 13, 2020
2 parents 14e13f3 + 4aedd98 commit de175d9
Show file tree
Hide file tree
Showing 262 changed files with 14,836 additions and 4,510 deletions.
2 changes: 1 addition & 1 deletion .eslintignore
Expand Up @@ -26,7 +26,7 @@ packages/server/lib/scaffold/plugins/index.js
packages/server/lib/scaffold/support/index.js
packages/server/lib/scaffold/support/commands.js
packages/server/test/support/fixtures/projects/e2e/cypress/integration/stdout_exit_early_failing_spec.js
packages/server/test/support/fixtures/projects/e2e/cypress/integration/browserify_typescript_failing_spec.ts
packages/server/test/support/fixtures/projects/e2e/cypress/integration/typescript_syntax_error_spec.ts

**/.projects
**/*.d.ts
Expand Down
3 changes: 2 additions & 1 deletion .eslintrc.json
Expand Up @@ -6,7 +6,8 @@
"plugin:@cypress/dev/general"
],
"rules": {
"prefer-spread": "off"
"prefer-spread": "off",
"prefer-rest-params": "off"
},
"settings": {
"react": {
Expand Down
2 changes: 1 addition & 1 deletion .node-version
@@ -1 +1 @@
12.8.1
12.14.1
2 changes: 1 addition & 1 deletion appveyor.yml
Expand Up @@ -7,7 +7,7 @@ branches:
# https://www.appveyor.com/docs/lang/nodejs-iojs/
environment:
# use matching version of Node.js
nodejs_version: "12.8.1"
nodejs_version: "12.14.1"
# encode secure variables which will NOT be used
# in pull requests
# https://www.appveyor.com/docs/build-configuration/#secure-variables
Expand Down

4 comments on commit de175d9

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on de175d9 Aug 13, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the linux x64 version of the Test Runner.

You can install this pre-release platform-specific build using instructions at https://on.cypress.io/installing-cypress#Install-pre-release-version.

You will need to use custom CYPRESS_INSTALL_BINARY url and install Cypress using an url instead of the version.

export CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/5.0.0/linux-x64/circle-develop-de175d910d02c8d082b05883885c8a7aa1fb27b7-421035/cypress.zip
npm install https://cdn.cypress.io/beta/npm/5.0.0/circle-develop-de175d910d02c8d082b05883885c8a7aa1fb27b7-421023/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on de175d9 Aug 13, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AppVeyor has built the win32 x64 version of the Test Runner.

You can install this pre-release platform-specific build using instructions at https://on.cypress.io/installing-cypress#Install-pre-release-version.

You will need to use custom CYPRESS_INSTALL_BINARY url and install Cypress using an url instead of the version.

Instructions are included below, depending on the shell you are using.

In Command Prompt (cmd.exe):

set CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/5.0.0/win32-x64/appveyor-develop-de175d910d02c8d082b05883885c8a7aa1fb27b7-34641512/cypress.zip
npm install https://cdn.cypress.io/beta/npm/5.0.0/appveyor-develop-de175d910d02c8d082b05883885c8a7aa1fb27b7-34641512/cypress.tgz

In PowerShell:

$env:CYPRESS_INSTALL_BINARY = https://cdn.cypress.io/beta/binary/5.0.0/win32-x64/appveyor-develop-de175d910d02c8d082b05883885c8a7aa1fb27b7-34641512/cypress.zip
npm install https://cdn.cypress.io/beta/npm/5.0.0/appveyor-develop-de175d910d02c8d082b05883885c8a7aa1fb27b7-34641512/cypress.tgz

In Git Bash:

export CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/5.0.0/win32-x64/appveyor-develop-de175d910d02c8d082b05883885c8a7aa1fb27b7-34641512/cypress.zip
npm install https://cdn.cypress.io/beta/npm/5.0.0/appveyor-develop-de175d910d02c8d082b05883885c8a7aa1fb27b7-34641512/cypress.tgz

Using cross-env:

If the above commands do not work for you, you can also try using cross-env:

npm i -g cross-env
cross-env CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/5.0.0/win32-x64/appveyor-develop-de175d910d02c8d082b05883885c8a7aa1fb27b7-34641512/cypress.zip npm install https://cdn.cypress.io/beta/npm/5.0.0/appveyor-develop-de175d910d02c8d082b05883885c8a7aa1fb27b7-34641512/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on de175d9 Aug 13, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AppVeyor has built the win32 ia32 version of the Test Runner.

You can install this pre-release platform-specific build using instructions at https://on.cypress.io/installing-cypress#Install-pre-release-version.

You will need to use custom CYPRESS_INSTALL_BINARY url and install Cypress using an url instead of the version.

Instructions are included below, depending on the shell you are using.

In Command Prompt (cmd.exe):

set CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/5.0.0/win32-ia32/appveyor-develop-de175d910d02c8d082b05883885c8a7aa1fb27b7-34641512/cypress.zip
npm install https://cdn.cypress.io/beta/npm/5.0.0/appveyor-develop-de175d910d02c8d082b05883885c8a7aa1fb27b7-34641512/cypress.tgz

In PowerShell:

$env:CYPRESS_INSTALL_BINARY = https://cdn.cypress.io/beta/binary/5.0.0/win32-ia32/appveyor-develop-de175d910d02c8d082b05883885c8a7aa1fb27b7-34641512/cypress.zip
npm install https://cdn.cypress.io/beta/npm/5.0.0/appveyor-develop-de175d910d02c8d082b05883885c8a7aa1fb27b7-34641512/cypress.tgz

In Git Bash:

export CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/5.0.0/win32-ia32/appveyor-develop-de175d910d02c8d082b05883885c8a7aa1fb27b7-34641512/cypress.zip
npm install https://cdn.cypress.io/beta/npm/5.0.0/appveyor-develop-de175d910d02c8d082b05883885c8a7aa1fb27b7-34641512/cypress.tgz

Using cross-env:

If the above commands do not work for you, you can also try using cross-env:

npm i -g cross-env
cross-env CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/5.0.0/win32-ia32/appveyor-develop-de175d910d02c8d082b05883885c8a7aa1fb27b7-34641512/cypress.zip npm install https://cdn.cypress.io/beta/npm/5.0.0/appveyor-develop-de175d910d02c8d082b05883885c8a7aa1fb27b7-34641512/cypress.tgz

@cypress-bot
Copy link
Contributor

@cypress-bot cypress-bot bot commented on de175d9 Aug 13, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Circle has built the darwin x64 version of the Test Runner.

You can install this pre-release platform-specific build using instructions at https://on.cypress.io/installing-cypress#Install-pre-release-version.

You will need to use custom CYPRESS_INSTALL_BINARY url and install Cypress using an url instead of the version.

export CYPRESS_INSTALL_BINARY=https://cdn.cypress.io/beta/binary/5.0.0/darwin-x64/circle-develop-de175d910d02c8d082b05883885c8a7aa1fb27b7-421054/cypress.zip
npm install https://cdn.cypress.io/beta/npm/5.0.0/circle-develop-de175d910d02c8d082b05883885c8a7aa1fb27b7-421049/cypress.tgz

Please sign in to comment.