Skip to content

Releases: cypress-io/circleci-orb

v3.1.1

05 Apr 13:59
v3.1.1
b6b2a0d
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.1.0...v3.1.1

v3.1.0

04 Apr 19:26
v3.1.0
0a50447
Compare
Choose a tag to compare

NOTE: this was a release mistake and 3.1.0 and 3.0.1 are the same release.

What's Changed

New Contributors

Full Changelog: v3.0.0...v3.1.0

v3.0.1

04 Apr 19:18
v3.0.1
0a50447
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3.0.0...v3.0.1

v3.0.0

28 Feb 15:44
497d7d5
Compare
Choose a tag to compare

BREAKING CHANGE - V3

What's Changed

  • A single cypress/run job that can be in parallel
  • A simplified API
  • Improved caching
  • Improved Executors

#391

Full Changelog: v2.2.0...v3.0.0

v2.2.0 - update orb node image, ts-node version, and node-types version

07 Sep 17:59
6dfca27
Compare
Choose a tag to compare
Merge pull request #381 from cypress-io/update-version-220

v2.1.0 - add new executors for base and browsers

20 Jul 15:34
d0e76b6
Compare
Choose a tag to compare

This release adds executors for:

  • cypress/base:14-14.2-slim
  • cypress/browsers:node16.14.0-chrome99-ff97
  • cypress/browsers:node16.14.2-slim-chrome100-ff99-edge

v2.0.0 - Cypress v10 Compatibility

01 Jun 20:39
Compare
Choose a tag to compare

This release of the CircleCI Orb makes the orb compatible with Cypress v10

v1.29.0 Add env parameter

03 Aug 15:23
Compare
Choose a tag to compare

To be passed to --env CLI argument

version: 2.1
orbs:
  cypress: cypress-io/cypress@1
workflows:
  build:
    jobs:
      - cypress/run:
          env: userName=Joe,apiKey=1234567890
```

v1.28.0 Set the default executor to Node 12.19.0

26 Apr 15:35
Compare
Choose a tag to compare

Because Cypress v7 requires at least Node 12

v1.27.0 pass the working_directory to the build command

20 Jan 23:06
Compare
Choose a tag to compare

Before:

workflows:
  test:
    jobs:
      - cypress/install:
          executor: node-12
          working_directory: packages/myapp1
          build: cd packages/myapp1 && npm run build

After

workflows:
  test:
    jobs:
      - cypress/install:
          executor: node-12
          working_directory: packages/myapp1
          build: npm run build