codeceptjs / ui

Web UI for CodeceptJS
https://codecept.io
MIT License
82 stars 28 forks source link

build(deps-dev): bump testcafe from 1.20.1 to 3.6.2 #283

Closed dependabot[bot] closed 2 months ago

dependabot[bot] commented 3 months ago

Bumps testcafe from 1.20.1 to 3.6.2.

Release notes

Sourced from testcafe's releases.

v3.6.2 (2024-07-02)

Bug Fixes

  • [Native Automation] TestCafe incorrectly uploads files in Chrome v125 and up. (#8198)
  • TestCafe dependencies include the vulnerable endpoint-utils package (#8207). The updated version includes the address package instead.

v3.6.2-rc.1

What’s Changed

v3.6.1 (2024-06-10)

Bug Fixes

  • TestCafe incorrectly calculates the dimensions of multi-line elements. (#8179)
  • TestCafe incorrectly executes the resizeWindow method if you maximize the target window first. (#8157)

v3.6.1-rc.1

What’s Changed

v3.6.0

TestCafe v3.6.0 Released

The TestCafe v3.6.0 update includes two minor changes and a number of bug fixes.

New method: t.getCurrentCDPSession

The t.getCurrentCDPSession method allows native automation users to examine and control the CDP connection between TestCafe and the browser.

Use the method to obtain the Chrome DevTools Protocol object for the current session. The CDP object exposes properties and methods that pertain to the CDP connection between TestCafe and the active browser window.

fixture `Get current CDP session`
    .page('https://devexpress.github.io/testcafe/example');

test(Get current CDP session, async t => { const mainWindowId = await t.testRun.activeWindowId;

</tr></table>

... (truncated)

Changelog

Sourced from testcafe's changelog.

v3.6.2 (2024-07-02)

Bug Fixes

  • [Native Automation] TestCafe incorrectly uploads files in Chrome v125 and up. (#8198)
  • TestCafe dependencies include the vulnerable endpoint-utils package (#8207). The updated version includes the address package instead.

v3.6.1 (2024-06-10)

Bug Fixes

  • TestCafe incorrectly calculates the dimensions of multi-line elements. (#8179)
  • TestCafe incorrectly executes the resizeWindow method if you maximize the target window first. (#8157)

TestCafe v3.6.0 Released

The TestCafe v3.6.0 update includes two minor changes and a number of bug fixes.

New method: t.getCurrentCDPSession

The t.getCurrentCDPSession method allows native automation users to examine and control the CDP connection between TestCafe and the browser.

Use the method to obtain the Chrome DevTools Protocol object for the current session. The CDP object exposes properties and methods that pertain to the CDP connection between TestCafe and the active browser window.

fixture `Get current CDP session`
    .page('https://devexpress.github.io/testcafe/example');

test(Get current CDP session, async t => { const mainWindowId = await t.testRun.activeWindowId;

let clientCDP = await t.getCurrentCDPSession();

await t.expect(clientCDP.webSocketUrl).contains(mainWindowId);

}

Headless browser connection

TestCafe v3.6.0 takes advantage of the recent Chromium headless mode upgrade. The new headless mode offers better reliability and higher emulation accuracy.

The headless mode upgrade may cause unexpected changes to your tests' behavior. Take note of the following changes:

  • Headless Chromium now automatically upgrades insecure HTTP requests to HTTPS.
  • Headless Chromium does not always honor the --window-size flag. This behavior is a known Chromium bug.

Bug Fixes

  1. [Native automation] TestCafe does not execute the maximizeWindow() method in beforeEach hooks (#8117)
  2. If TestCafe launch options include --esm, the framework crashes on launch in environments with Node.JS v20 and up (#8132)

... (truncated)

Commits
Maintainer changes

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


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 2 months ago

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.