Skip to content

Releases: percy/percy-cypress

v3.1.3-beta.0

13 Jun 13:29
cc25de3
Compare
Choose a tag to compare
v3.1.3-beta.0 Pre-release
Pre-release

What's Changed

New Contributors

Full Changelog: v3.1.2...v3.1.3-beta.0

v3.1.2

16 Jun 19:19
Compare
Choose a tag to compare

🐛 Bug Fixes

  • 🐛⬆️ Upgrade to Cypress 10.x (#512) @Robdel12 (Fix webpack bundling issues)

🏗 Maintenance

  • 🧹 Fix stale issue label & dependabot GH actions (#393) @Robdel12
  • 📝 Update snapshot options docs in README (#385) @Robdel12

⬆️⬇️ Dependency Updates

v3.1.1

22 Jul 18:32
Compare
Choose a tag to compare

🐛 Bug Fixes

  • 🐛 Increase timeout to 1.5x the asset discovery timeout (30s) (#380) @Robdel12

🏗 Maintenance

v3.1.0

14 Apr 17:03
Compare
Choose a tag to compare

✨ Enhancements

  • ✨ Disable Percy when Cypress is in interactive mode (#321) @Robdel12

🏗 Maintenance

v3.0.0

01 Apr 20:19
c88a549
Compare
Choose a tag to compare

💥 Breaking Changes

See the readme for updated install and usage instructions.

Upgrading from v2

If you're upgrading from v2, make sure you read the upgrade guides: https://github.com/percy/percy-cypress#upgrading

v3.0.0-beta.0

29 Mar 18:06
Compare
Choose a tag to compare
v3.0.0-beta.0 Pre-release
Pre-release

💥 Breaking Changes

v2.0.0

02 Aug 20:36
Compare
Choose a tag to compare

What is this?

v2.0.0 of the @percy/cypress brings major improvements to the reliability of the SDK. If you were experiencing issues with the health check failing (like #104), this should solve those problems.

Upgrading

With this change, you will now need to import this new task into your projects plugins (cypress/plugins/index.js) file. Without that, the SDK will not work.

/// In cypress/plugins/index.js
let percyHealthCheck = require('@percy/cypress/task')

module.exports = (on, config) => {
  // `on` is used to hook into various events Cypress emits
  // `config` is the resolved Cypress config
  on("task", percyHealthCheck);
};