chore: Bump the npm_and_yarn group across 2 directories with 2 updates
Bumps the npm_and_yarn group with 2 updates in the / directory: playwright and happy-dom. Bumps the npm_and_yarn group with 1 update in the /packages/snaps-sandbox directory: happy-dom.
Updates playwright from 1.49.1 to 1.55.1
Release notes
Sourced from playwright's releases.
v1.55.1
Highlights
microsoft/playwright#37479 - [Bug]: Upgrade Chromium to 140.0.7339.186. microsoft/playwright#37147 - [Regression]: Internal error: step id not found. microsoft/playwright#37146 - [Regression]: HTML reporter displays a broken chip link when there are no projects. microsoft/playwright#37137 - Revert "fix(a11y): track inert elements as hidden". microsoft/playwright#37532 - chore: do not use -k option
Browser Versions
- Chromium 140.0.7339.186
- Mozilla Firefox 141.0
- WebKit 26.0
This version was also tested against the following stable channels:
- Google Chrome 139
- Microsoft Edge 139
v1.55.0
New APIs
- New Property testStepInfo.titlePath Returns the full title path starting from the test file, including test and step titles.
Codegen
- Automatic
toBeVisible()assertions: Codegen can now generate automatictoBeVisible()assertions for common UI interactions. This feature can be enabled in the Codegen settings UI.Breaking Changes
- ⚠️ Dropped support for Chromium extension manifest v2.
Miscellaneous
- Added support for Debian 13 "Trixie".
Browser Versions
- Chromium 140.0.7339.16
- Mozilla Firefox 141.0
- WebKit 26.0
This version was also tested against the following stable channels:
- Google Chrome 139
- Microsoft Edge 139
v1.54.2
Highlights
microsoft/playwright#36714 - [Regression]: Codegen is not able to launch in Administrator Terminal on Windows (ProtocolError: Protocol error) microsoft/playwright#36828 - [Regression]: Playwright Codegen keeps spamming with selected option microsoft/playwright#36810 - [Regression]: Starting Codegen with target language doesn't work anymore
Browser Versions
... (truncated)
Commits
ae51df7chore: mark v1.55.1 (#37530)86dde29feat(chromium): roll to r1193 (#37529)86328bcchore: do not use -k option (#37532)63799bacherry-pick(#37214): docs: fix method names in release notes21e29a4cherry-pick(#37153): fix(html): don't display a chip with empty content with ...ba62e6acherry-pick(#37149): fix(test): attaching in boxed fixture25bb073cherry-pick(#37137): Revert "fix(a11y): track inert elements as hidden (#36947)"f992162chore: mark v1.55.0 (#37121)4a92ea0cherry-pick(#37113): docs: add release-notes for v1.55aa05507cherry-pick(#37114): test: move browser._launchServer in child process- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by playwright-bot, a new releaser for playwright since your current version.
Updates happy-dom from 17.4.4 to 20.0.2
Release notes
Sourced from happy-dom's releases.
v20.0.2
:construction_worker_man: Patch fixes
- Adds frozen intrinsics flag to workers in
@happy-dom/server-renderer- By@capricorn86in task #1934v20.0.1
:construction_worker_man: Patch fixes
- Adds warning for environment with unfrozen intrinsics (builtins) when JavaScript evaluation is enabled- By
@capricorn86in task #1932
- A security advisory has been reported showing that the recommended preventive measure of running Node.js with
--disallow-code-generation-from-stringswasn't enough to protect against attackers escaping the VM context and accessing process-level functions. Big thanks to@cristianstaicufor reporting this!- The documentation for how to run Happy DOM with JavaScript evaluation enabled in a safer way has been updated. Read more about it in the Wiki
v20.0.0
I avoid making breaking changes as much as possible in Happy DOM. When I have to make a breaking change, I try to keep it as minimal as possible. This could be a breaking change that impacts many projects, and I am truly sorry if you are negatively affected by this.
:bomb: Breaking Changes
- Due to security risks, JavaScript evaluation is now disabled by default - By
@capricorn86in task #1930
- A security advisory (GHSA-37j7-fg3j-429f) has been reported that shows a security vulnerability where it's possible to escape the VM context and get access to process level functionality. Big thanks to
@Mas0nShifor reporting this!- Due to this security risk, JavaScript evaluation is now disabled by default to prevent that consumers accidentally executes untrusted code without taking precautions
- JavaScript evaluation can be enabled by setting enableJavaScriptEvaluation to "true". Read more about how to enable this in a safer way in the Wiki
v19.0.2
:construction_worker_man: Patch fixes
- Fixes issue related to CSS pseudo selector
:scopethat didn't work correctly for direct descendants to root - By@capricorn86in task #1620v19.0.1
:construction_worker_man: Patch fixes
- Fixes issue with sending in URLs as string in
@happy-dom/server-rendererconfig using CLI - By@capricorn86in task #1908v19.0.0
:bomb: Breaking Changes
- Removes support for CommonJS - By
@capricorn86in task #1730
- Support for CommonJS is no longer needed as Node.js v18 is deprecated and v20 and above supports loading ES modules from CommonJS using
require()- Updates Jest to v30 in the
@happy-dom/jest-environmentpackage - By@capricorn86in task #1730- Makes Jest packages peer dependencies to make it easier to align versions with the project using
@happy-dom/jest-environment- By@capricorn86in task #1730:art: Features
- Adds a new package called
@happy-dom/server-renderer- By@capricorn86in task #1730
- This package provides a simple way to statically render (SSG) or server-side render (SSR) your client-side application
- Read more in the Wiki under Server-Renderer
- Adds support for
import.metato the ESM compiler - By@capricorn86in task #1730- Adds support for the CSS pseudo selector
:scope- By@capricorn86in task #1620- Improves support for
MediaList- By@capricorn86in task #1730- Adds support for
CSSKeywordValue,CSSStyleValue,StylePropertyMap,StylePropertyMap,StylePropertyMapReadOnly- By@capricorn86in task #1730- Improves debug information in the ESM compiler - By
@capricorn86in task #1730- Adds validation of browser settings when creating a new
Browserinstance - By@capricorn86in task #1730- Adds support for the browser setting navigation.beforeContentCallback which makes it possible to inject event listeners or logic before content is loaded to the document when navigating a browser frame - By
@capricorn86in task #1730- Adds support for the browser setting fetch.requestHeaders which provides with a declarative and simple way to add request headers - By
@capricorn86in task #1730- Adds support for setting an object to timer.preventTimerLoops which makes it possible to define different settings for
setTimeout()andrequestAnimationFrame()- By@capricorn86in task #1730- Adds support for the browser setting viewport which makes it possible to define a default viewport size - By
@capricorn86in task #1730
... (truncated)
Commits
f4bd4ebfix: #0 Adds frozen intrinsics flag to server-renderer workers (#1934)f45d92efix: #0 Adds warning for environemnt with unfrozen builtins (#1932)819d15bBREAKING CHANGE: #0 Changes JavaScript evaluation to be disabled by default...c80a08ffix: #1620 Fixes issue related to CSS pseudo selector :scope (#1911)220df23fix: #1908 Fixes issue with sending in URLs as string in server-renderer co...9849f8bchore: #1906 Fixes failing unit test caused by package version (#1907)48d174echore: #1904 Updates conventional commit package (#1905)275efe5BREAKING CHANGE: #1620 Release v18.0.0cf74f5ffix: #1841 Addresses an issue where an error occurred if the Element ID was...bfd0fffchore: #1154 Fixes failing unit test (#1843)- Additional commits viewable in compare view
Updates happy-dom from 17.6.3 to 20.0.10
Release notes
Sourced from happy-dom's releases.
v20.0.2
:construction_worker_man: Patch fixes
- Adds frozen intrinsics flag to workers in
@happy-dom/server-renderer- By@capricorn86in task #1934v20.0.1
:construction_worker_man: Patch fixes
- Adds warning for environment with unfrozen intrinsics (builtins) when JavaScript evaluation is enabled- By
@capricorn86in task #1932
- A security advisory has been reported showing that the recommended preventive measure of running Node.js with
--disallow-code-generation-from-stringswasn't enough to protect against attackers escaping the VM context and accessing process-level functions. Big thanks to@cristianstaicufor reporting this!- The documentation for how to run Happy DOM with JavaScript evaluation enabled in a safer way has been updated. Read more about it in the Wiki
v20.0.0
I avoid making breaking changes as much as possible in Happy DOM. When I have to make a breaking change, I try to keep it as minimal as possible. This could be a breaking change that impacts many projects, and I am truly sorry if you are negatively affected by this.
:bomb: Breaking Changes
- Due to security risks, JavaScript evaluation is now disabled by default - By
@capricorn86in task #1930
- A security advisory (GHSA-37j7-fg3j-429f) has been reported that shows a security vulnerability where it's possible to escape the VM context and get access to process level functionality. Big thanks to
@Mas0nShifor reporting this!- Due to this security risk, JavaScript evaluation is now disabled by default to prevent that consumers accidentally executes untrusted code without taking precautions
- JavaScript evaluation can be enabled by setting enableJavaScriptEvaluation to "true". Read more about how to enable this in a safer way in the Wiki
v19.0.2
:construction_worker_man: Patch fixes
- Fixes issue related to CSS pseudo selector
:scopethat didn't work correctly for direct descendants to root - By@capricorn86in task #1620v19.0.1
:construction_worker_man: Patch fixes
- Fixes issue with sending in URLs as string in
@happy-dom/server-rendererconfig using CLI - By@capricorn86in task #1908v19.0.0
:bomb: Breaking Changes
- Removes support for CommonJS - By
@capricorn86in task #1730
- Support for CommonJS is no longer needed as Node.js v18 is deprecated and v20 and above supports loading ES modules from CommonJS using
require()- Updates Jest to v30 in the
@happy-dom/jest-environmentpackage - By@capricorn86in task #1730- Makes Jest packages peer dependencies to make it easier to align versions with the project using
@happy-dom/jest-environment- By@capricorn86in task #1730:art: Features
- Adds a new package called
@happy-dom/server-renderer- By@capricorn86in task #1730
- This package provides a simple way to statically render (SSG) or server-side render (SSR) your client-side application
- Read more in the Wiki under Server-Renderer
- Adds support for
import.metato the ESM compiler - By@capricorn86in task #1730- Adds support for the CSS pseudo selector
:scope- By@capricorn86in task #1620- Improves support for
MediaList- By@capricorn86in task #1730- Adds support for
CSSKeywordValue,CSSStyleValue,StylePropertyMap,StylePropertyMap,StylePropertyMapReadOnly- By@capricorn86in task #1730- Improves debug information in the ESM compiler - By
@capricorn86in task #1730- Adds validation of browser settings when creating a new
Browserinstance - By@capricorn86in task #1730- Adds support for the browser setting navigation.beforeContentCallback which makes it possible to inject event listeners or logic before content is loaded to the document when navigating a browser frame - By
@capricorn86in task #1730- Adds support for the browser setting fetch.requestHeaders which provides with a declarative and simple way to add request headers - By
@capricorn86in task #1730- Adds support for setting an object to timer.preventTimerLoops which makes it possible to define different settings for
setTimeout()andrequestAnimationFrame()- By@capricorn86in task #1730- Adds support for the browser setting viewport which makes it possible to define a default viewport size - By
@capricorn86in task #1730
... (truncated)
Commits
f4bd4ebfix: #0 Adds frozen intrinsics flag to server-renderer workers (#1934)f45d92efix: #0 Adds warning for environemnt with unfrozen builtins (#1932)819d15bBREAKING CHANGE: #0 Changes JavaScript evaluation to be disabled by default...c80a08ffix: #1620 Fixes issue related to CSS pseudo selector :scope (#1911)220df23fix: #1908 Fixes issue with sending in URLs as string in server-renderer co...9849f8bchore: #1906 Fixes failing unit test caused by package version (#1907)48d174echore: #1904 Updates conventional commit package (#1905)275efe5BREAKING CHANGE: #1620 Release v18.0.0cf74f5ffix: #1841 Addresses an issue where an error occurred if the Element ID was...bfd0fffchore: #1154 Fixes failing unit test (#1843)- Additional commits viewable in compare view
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 rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency -
@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) -
@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) -
@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) -
@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency -
@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions You can disable automated security fix PRs for this repo from the Security Alerts page.
[!NOTE] Upgrade playwright in root to 1.55.1 and happy-dom in snaps-sandbox to 20.0.10, updating lockfile and transitive deps.
- Dependencies:
- Root (
package.json): Upgradeplaywrightto~1.55.1(updatesplaywright-core).- Sandbox (
packages/snaps-sandbox/package.json): Upgradehappy-domto^20.0.10.- Lockfile (
yarn.lock): Align versions and transitive deps for above upgrades, including additions like@types/node@^20,@types/whatwg-mimetype,undici-types@~6.21.0, and removal/replacement of priorwebidl-conversions@^7entries.Written by Cursor Bugbot for commit 7d6f3d14dd1e788e1e87e2f790b99e81eec3bbad. This will update automatically on new commits. Configure here.
Review the following changes in direct dependencies. Learn more about Socket for GitHub.
| Diff | Package | Supply Chain Security |
Vulnerability | Quality | Maintenance | License |
|---|---|---|---|---|---|---|
| happy-dom@17.4.4 ⏵ 20.0.8 | ||||||
| playwright@1.49.1 ⏵ 1.55.1 |
[!WARNING] MetaMask internal reviewing guidelines:
- Do not ignore-all
- Each alert has instructions on how to review if you don't know what it means. If lost, ask your Security Liaison or the supply-chain group
- Copy-paste ignore lines for specific packages or a group of one kind with a note on what research you did to deem it safe.
@SocketSecurity ignore npm/PACKAGE@VERSION
| Action | Severity | Alert (click "▶" to expand/collapse) |
|---|---|---|
| Warn |
|