Releases: cypress-io/circleci-orb
Releases · cypress-io/circleci-orb
v3.1.1
What's Changed
- chore: update release docs by @emilyrohrbough in #421
- fix: correct cypress/run tests default value for working-directory param by @emilyrohrbough in #422
Full Changelog: v3.1.0...v3.1.1
v3.1.0
NOTE: this was a release mistake and 3.1.0 and 3.0.1 are the same release.
What's Changed
- docs: update CONTRIBUTING guide to include publishing steps by @jordanpowell88 in #412
- chore: turn enable PR comments off on publish by @jordanpowell88 in #411
- V3 docs edits by @jaffrepaul in #413
- Configure Renovate by @renovate in #410
- chore(deps): update orb-tools orb to 11.6 by @renovate in #415
- chore(deps): pin dependencies by @renovate in #414
- Update edge example by @emilyrohrbough in #420
New Contributors
- @emilyrohrbough made their first contribution in #420
Full Changelog: v3.0.0...v3.1.0
v3.0.1
What's Changed
- docs: update CONTRIBUTING guide to include publishing steps by @jordanpowell88 in #412
- chore: turn enable PR comments off on publish by @jordanpowell88 in #411
- V3 docs edits by @jaffrepaul in #413
- Configure Renovate by @renovate in #410
- chore(deps): update orb-tools orb to 11.6 by @renovate in #415
- chore(deps): pin dependencies by @renovate in #414
- Update edge example by @emilyrohrbough in #420
New Contributors
- @emilyrohrbough made their first contribution in #420
Full Changelog: v3.0.0...v3.0.1
v3.0.0
BREAKING CHANGE - V3
What's Changed
- A single cypress/run job that can be in parallel
- A simplified API
- Improved caching
- Improved Executors
Full Changelog: v2.2.0...v3.0.0
v2.2.0 - update orb node image, ts-node version, and node-types version
Merge pull request #381 from cypress-io/update-version-220
v2.1.0 - add new executors for base and browsers
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
This release of the CircleCI Orb makes the orb compatible with Cypress v10
v1.29.0 Add env parameter
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
Because Cypress v7 requires at least Node 12
v1.27.0 pass the working_directory to the build command
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