Skip to content

chore(deps): update dependency @playwright/test to v1.63.0 - #4658

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/rhdh-boost-dependencies-(minor)
Open

chore(deps): update dependency @playwright/test to v1.63.0#4658
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/rhdh-boost-dependencies-(minor)

Conversation

@renovate

@renovate renovate Bot commented Sep 9, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@playwright/test (source) 1.61.11.63.0 age confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.63.0

Compare Source

v1.62.1

Compare Source

v1.62.0

Compare Source

🧱 New component testing model

Component testing moves to a stories and galleries model.
A story wraps your component in one specific scenario — hard-coded props, mock data, providers — and a

gallery page that you serve renders stories on demand. The new fixtures.mount() fixture navigates
to the gallery, mounts a story by id, and returns a Locator scoped to the story's root element:

test('click should expand', async ({ mount }) => {
  const component = await mount('components/Expandable/Stateful');
  await component.getByRole('button').click();
  await expect(component.getByTestId('expanded')).toHaveValue('true');
});

Pass a story type as a template argument to type-check its props, and use update(props) /
unmount() on the returned locator to re-render or tear down within a test.

🛑 Cancel operations with AbortSignal

Most operations and web-first assertions now accept a signal option that takes an
AbortSignal, letting you
cancel long-running actions, navigations, waits, and assertions:

const controller = new AbortController();
setTimeout(() => controller.abort(), 1000);

await page.getByRole('button', { name: 'Submit' }).click({ signal: controller.signal });
await expect(page.getByText('Done')).toBeVisible({ signal: controller.signal });

Providing a signal does not disable the default timeout; pass timeout: 0 to disable it.

🖼️ WebP screenshots

expect(page).toHaveScreenshot() and expect(locator).toHaveScreenshot()
can now store snapshots in the WebP format — just give the snapshot a .webp name:

// Visual comparisons store the golden snapshot as lossless WebP.
await expect(page).toHaveScreenshot('homepage.webp');

// Standalone screenshots can trade quality for size with lossy WebP.
await page.screenshot({ path: 'homepage.webp', quality: 50 });

page.screenshot() and locator.screenshot() also accept webp as a type,
where quality 100 (the default) is lossless and lower values use lossy compression.

🧩 Custom test filtering with Reporter.preprocess()

New reporter.preprocess() hook runs after the configuration is resolved and before
reporter.onBegin(), letting a reporter mark individual tests as skipped, excluded,
fixed, or failing through a TestRun object:

class MyReporter {
  async preprocess({ config, suite, testRun }) {
    for (const test of suite.allTests()) {
      if (shouldSkip(test))
        testRun.skip(test);
    }
  }
}
🔁 Isolated retries

New testConfig.retryStrategy controls when failed tests are retried. The default
'immediate' retries as soon as a worker is free; 'isolated' runs all retries at the end,
one by one in a single worker, to minimize interference with the rest of the suite:

// playwright.config.ts
export default defineConfig({
  retries: 2,
  retryStrategy: 'isolated',
});
New APIs
Browser and Context
  • New option credentials includes the context's virtual WebAuthn Credentials (passkeys) in the storage state, so they can be persisted and re-seeded into later contexts.
Actions
  • New scroll option ("auto" | "none") on actions to opt out of Playwright's automatic scroll-into-view.
Network
Evaluation
Command line & MCP
Reporters
  • The HTML report's Merge files grouping — previously only a UI toggle — can now be enabled from the config with the new mergeFiles reporter option:
// playwright.config.ts
export default defineConfig({
  reporter: [['html', { mergeFiles: true }]],
});
Announcements
  • ⚠️ Debian 11 is not supported anymore.
Browser Versions
  • Chromium 151.0.7922.34
  • Mozilla Firefox 153.0
  • WebKit 26.5

This version was also tested against the following stable channels:

  • Google Chrome 151
  • Microsoft Edge 151

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added boost dependencies Pull requests that update a dependency file labels Sep 9, 2026
@fullsend-ai-review

fullsend-ai-review Bot commented Sep 9, 2026

Copy link
Copy Markdown

🤖 Review · ❌ Terminated · Started 5:30 PM UTC · Ended 5:32 PM UTC

Commit: 1438229 · View workflow run →

@codecov

codecov Bot commented Sep 9, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 62.60%. Comparing base (f3dbf1b) to head (d7f6bdb).
✅ All tests successful. No failed tests found.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #4658   +/-   ##
=======================================
  Coverage   62.60%   62.60%           
=======================================
  Files        2634     2634           
  Lines      105191   105191           
  Branches    29515    29515           
=======================================
  Hits        65855    65855           
  Misses      38784    38784           
  Partials      552      552           
Flag Coverage Δ *Carryforward flag
adoption-insights 84.77% <ø> (ø) Carriedforward from f3dbf1b
ai-integrations 78.80% <ø> (ø) Carriedforward from f3dbf1b
app-defaults 53.07% <ø> (ø) Carriedforward from f3dbf1b
augment 46.67% <ø> (ø) Carriedforward from f3dbf1b
boost 82.94% <ø> (ø)
bulk-import 73.12% <ø> (ø) Carriedforward from f3dbf1b
cost-management 13.35% <ø> (ø) Carriedforward from f3dbf1b
dcm 73.47% <ø> (ø) Carriedforward from f3dbf1b
e2e-adoption-insights 60.00% <ø> (ø) Carriedforward from f3dbf1b
e2e-extensions 62.31% <ø> (ø) Carriedforward from f3dbf1b
e2e-global-header 50.35% <ø> (ø) Carriedforward from f3dbf1b
e2e-homepage 61.11% <ø> (ø) Carriedforward from f3dbf1b
e2e-intelligent-assistant 46.74% <ø> (ø) Carriedforward from f3dbf1b
e2e-orchestrator 49.52% <ø> (ø) Carriedforward from f3dbf1b
e2e-orchestrator-plugin 49.51% <ø> (ø) Carriedforward from f3dbf1b
e2e-quickstart 55.21% <ø> (ø) Carriedforward from f3dbf1b
e2e-scorecard 50.16% <ø> (ø) Carriedforward from f3dbf1b
e2e-theme 16.36% <ø> (ø) Carriedforward from f3dbf1b
extensions 57.37% <ø> (ø) Carriedforward from f3dbf1b
global-floating-action-button 71.18% <ø> (ø) Carriedforward from f3dbf1b
global-header 68.09% <ø> (ø) Carriedforward from f3dbf1b
homepage 48.39% <ø> (ø) Carriedforward from f3dbf1b
install-dynamic-plugins 71.94% <ø> (ø) Carriedforward from f3dbf1b
intelligent-assistant 76.51% <ø> (ø) Carriedforward from f3dbf1b
konflux 91.98% <ø> (ø) Carriedforward from f3dbf1b
lightspeed 69.02% <ø> (ø) Carriedforward from f3dbf1b
mcp-integrations 84.46% <ø> (ø) Carriedforward from f3dbf1b
orchestrator 71.65% <ø> (ø) Carriedforward from f3dbf1b
quickstart 63.74% <ø> (ø) Carriedforward from f3dbf1b
sandbox 79.56% <ø> (ø) Carriedforward from f3dbf1b
scorecard 88.26% <ø> (ø) Carriedforward from f3dbf1b
theme 87.91% <ø> (ø) Carriedforward from f3dbf1b
translations 5.12% <ø> (ø) Carriedforward from f3dbf1b
x2a 77.18% <ø> (ø) Carriedforward from f3dbf1b

*This pull request uses carry forward flags. Click here to find out more.


Continue to review full report in Codecov by Harness.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update f3dbf1b...d7f6bdb. Read the comment docs.

🚀 New features to boost your workflow:
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@fullsend-ai-review

Copy link
Copy Markdown

🤖 Finished Review · ❌ Failure (validation failed after 2 iteration(s)) · Started 5:30 PM UTC · Completed 5:32 PM UTC

Commit: 1438229 · View workflow run →

Runtime: claude · Model: opus → claude-opus-5

@renovate
renovate Bot force-pushed the renovate/rhdh-boost-dependencies-(minor) branch from 1438229 to 65c9ea6 Compare September 9, 2026 18:11
@fullsend-ai-review

fullsend-ai-review Bot commented Sep 9, 2026

Copy link
Copy Markdown

🤖 Review · ❌ Terminated · Started 6:13 PM UTC · Ended 6:15 PM UTC

Commit: 65c9ea6 · View workflow run →

@fullsend-ai-review

Copy link
Copy Markdown

🤖 Finished Review · ❌ Failure (validation failed after 2 iteration(s)) · Started 6:13 PM UTC · Completed 6:15 PM UTC

Commit: 65c9ea6 · View workflow run →

Runtime: claude · Model: opus → claude-opus-5

@renovate
renovate Bot force-pushed the renovate/rhdh-boost-dependencies-(minor) branch from 65c9ea6 to a159edd Compare September 9, 2026 18:18
@fullsend-ai-review

fullsend-ai-review Bot commented Sep 9, 2026

Copy link
Copy Markdown

🤖 Finished Review · ❌ Failure (validation failed after 2 iteration(s)) · Started 6:19 PM UTC · Completed 6:21 PM UTC

Commit: a159edd · View workflow run →

Runtime: claude · Model: opus → claude-opus-5

@renovate
renovate Bot force-pushed the renovate/rhdh-boost-dependencies-(minor) branch from a159edd to f60cf47 Compare September 9, 2026 18:27
@fullsend-ai-review

fullsend-ai-review Bot commented Sep 9, 2026

Copy link
Copy Markdown

🤖 Finished Review · ❌ Failure (validation failed after 2 iteration(s)) · Started 6:28 PM UTC · Completed 6:30 PM UTC

Commit: f60cf47 · View workflow run →

Runtime: claude · Model: opus → claude-opus-5

@renovate
renovate Bot force-pushed the renovate/rhdh-boost-dependencies-(minor) branch from f60cf47 to 3ae9188 Compare September 9, 2026 18:44
@fullsend-ai-review

fullsend-ai-review Bot commented Sep 9, 2026

Copy link
Copy Markdown

🤖 Review · ❌ Terminated · Started 6:45 PM UTC · Ended 6:47 PM UTC

Commit: 3ae9188 · View workflow run →

@fullsend-ai-review

Copy link
Copy Markdown

🤖 Finished Review · ❌ Failure (validation failed after 2 iteration(s)) · Started 6:45 PM UTC · Completed 6:47 PM UTC

Commit: 3ae9188 · View workflow run →

Runtime: claude · Model: opus → claude-opus-5

@renovate
renovate Bot force-pushed the renovate/rhdh-boost-dependencies-(minor) branch from 3ae9188 to 952a7b7 Compare September 9, 2026 18:50
@fullsend-ai-review

fullsend-ai-review Bot commented Sep 9, 2026

Copy link
Copy Markdown

🤖 Finished Review · ❌ Failure (validation failed after 2 iteration(s)) · Started 6:52 PM UTC · Completed 6:54 PM UTC

Commit: 952a7b7 · View workflow run →

Runtime: claude · Model: opus → claude-opus-5

@renovate
renovate Bot force-pushed the renovate/rhdh-boost-dependencies-(minor) branch from 952a7b7 to 708cbfe Compare September 9, 2026 19:01
@fullsend-ai-review

fullsend-ai-review Bot commented Sep 9, 2026

Copy link
Copy Markdown

🤖 Finished Review · ❌ Failure (validation failed after 2 iteration(s)) · Started 7:03 PM UTC · Completed 7:05 PM UTC

Commit: 708cbfe · View workflow run →

Runtime: claude · Model: opus → claude-opus-5

@renovate
renovate Bot force-pushed the renovate/rhdh-boost-dependencies-(minor) branch from 708cbfe to 3702e10 Compare September 9, 2026 19:13
@fullsend-ai-review

fullsend-ai-review Bot commented Sep 9, 2026

Copy link
Copy Markdown

🤖 Finished Review · ❌ Failure (validation failed after 2 iteration(s)) · Started 7:14 PM UTC · Completed 7:16 PM UTC

Commit: 3702e10 · View workflow run →

Runtime: claude · Model: opus → claude-opus-5

@renovate
renovate Bot force-pushed the renovate/rhdh-boost-dependencies-(minor) branch from 3702e10 to 5c96c3d Compare September 9, 2026 19:21
@fullsend-ai-review

fullsend-ai-review Bot commented Sep 9, 2026

Copy link
Copy Markdown

🤖 Finished Review · ❌ Failure (validation failed after 2 iteration(s)) · Started 7:22 PM UTC · Completed 7:24 PM UTC

Commit: 5c96c3d · View workflow run →

Runtime: claude · Model: opus → claude-opus-5

@renovate
renovate Bot force-pushed the renovate/rhdh-boost-dependencies-(minor) branch from d2ae5d9 to 86b2862 Compare September 9, 2026 21:56
@fullsend-ai-review

fullsend-ai-review Bot commented Sep 9, 2026

Copy link
Copy Markdown

🤖 Finished Review · ❌ Failure (validation failed after 2 iteration(s)) · Started 9:57 PM UTC · Completed 9:59 PM UTC

Commit: 86b2862 · View workflow run →

Runtime: claude · Model: opus → claude-opus-5

@renovate
renovate Bot force-pushed the renovate/rhdh-boost-dependencies-(minor) branch from 86b2862 to 3308b2e Compare September 10, 2026 01:48
@fullsend-ai-review

fullsend-ai-review Bot commented Sep 10, 2026

Copy link
Copy Markdown

🤖 Review · ❌ Terminated · Started 1:49 AM UTC · Ended 1:51 AM UTC

Commit: 3308b2e · View workflow run →

@fullsend-ai-review

Copy link
Copy Markdown

🤖 Finished Review · ❌ Failure (validation failed after 2 iteration(s)) · Started 1:49 AM UTC · Completed 1:51 AM UTC

Commit: 3308b2e · View workflow run →

Runtime: claude · Model: opus → claude-opus-5

@renovate
renovate Bot force-pushed the renovate/rhdh-boost-dependencies-(minor) branch from 3308b2e to cae9f24 Compare September 10, 2026 04:46
@fullsend-ai-review

fullsend-ai-review Bot commented Sep 10, 2026

Copy link
Copy Markdown

🤖 Review · ❌ Terminated · Started 4:47 AM UTC · Ended 4:49 AM UTC

Commit: cae9f24 · View workflow run →

@fullsend-ai-review

Copy link
Copy Markdown

🤖 Finished Review · ❌ Failure (validation failed after 2 iteration(s)) · Started 4:47 AM UTC · Completed 4:49 AM UTC

Commit: cae9f24 · View workflow run →

Runtime: claude · Model: opus → claude-opus-5

@renovate
renovate Bot force-pushed the renovate/rhdh-boost-dependencies-(minor) branch from cae9f24 to 28fc9ca Compare September 10, 2026 07:43
@fullsend-ai-review

fullsend-ai-review Bot commented Sep 10, 2026

Copy link
Copy Markdown

🤖 Review · ❌ Terminated · Started 7:44 AM UTC · Ended 7:46 AM UTC

Commit: 28fc9ca · View workflow run →

@fullsend-ai-review

Copy link
Copy Markdown

🤖 Finished Review · ❌ Failure (validation failed after 2 iteration(s)) · Started 7:44 AM UTC · Completed 7:46 AM UTC

Commit: 28fc9ca · View workflow run →

Runtime: claude · Model: opus → claude-opus-5

@renovate
renovate Bot force-pushed the renovate/rhdh-boost-dependencies-(minor) branch from 28fc9ca to 73f4116 Compare September 10, 2026 11:37
@fullsend-ai-review

fullsend-ai-review Bot commented Sep 10, 2026

Copy link
Copy Markdown

🤖 Finished Review · ✅ Success · Started 11:39 AM UTC · Completed 11:45 AM UTC

Commit: 73f4116 · View workflow run →

Runtime: claude · Model: opus → claude-opus-4-6 · Cost: $1.21

@fullsend-ai-review

fullsend-ai-review Bot commented Sep 10, 2026

Copy link
Copy Markdown

Review — approve

Verdict: ✅ Approve

Summary

Automated Renovate bot dependency update bumping @playwright/test from 1.61.1 to 1.63.0 in the boost workspace. This is a dev-only dependency used for end-to-end testing (yarn test:e2e).

Analysis

Correctness — The version bump is consistent across package.json and yarn.lock. The lockfile properly updates all transitive dependencies (playwright-core 1.61.1 → 1.63.0, playwright 1.61.1 → 1.63.0). The removal of fsevents@2.3.2 (and its patch entry) is correct: Playwright 1.63.0 dropped its optional fsevents dependency, so the now-unreferenced 2.3.2 entry is properly cleaned up. The remaining fsevents@2.3.3 (referenced by other packages via ^2.3.3 and ~2.3.2) is retained.

Security — No concerns. @playwright/test is a dev dependency that does not ship to production. The Playwright 1.62.0 and 1.63.0 release notes describe new features (component testing model, AbortSignal support, WebP screenshots, isolated retries) with no security advisories.

Intent & coherence — Well-scoped automated dependency update. Only the boost workspace is affected, matching the Renovate configuration. The PR title and body accurately describe the change.

Style & conventions — The exact version pinning (no caret/tilde) for @playwright/test is consistent with the existing convention in package.json.

Documentation — No documentation changes required for a dev dependency bump.

Cross-repo contracts — No impact. This is a workspace-scoped dev dependency with no downstream consumers.

No findings at or above the reporting threshold.


Labels: Automated dev dependency update in boost workspace

Previous run

Looks good to me

Previous run (2)

Looks good to me

fullsend-ai-review[bot]

This comment was marked as outdated.

@fullsend-ai-review fullsend-ai-review Bot added the ready-for-merge All reviewers approved — ready to merge label Sep 10, 2026
@renovate
renovate Bot force-pushed the renovate/rhdh-boost-dependencies-(minor) branch from 73f4116 to 95d3e83 Compare September 10, 2026 11:52
@fullsend-ai-review

fullsend-ai-review Bot commented Sep 10, 2026

Copy link
Copy Markdown

🤖 Review · ❌ Terminated · Started 11:53 AM UTC · Ended 12:01 PM UTC

Commit: 95d3e83 · View workflow run →

fullsend-ai-review[bot]

This comment was marked as outdated.

@fullsend-ai-review fullsend-ai-review Bot added ready-for-merge All reviewers approved — ready to merge and removed ready-for-merge All reviewers approved — ready to merge labels Sep 10, 2026
@fullsend-ai-review

Copy link
Copy Markdown

🤖 Finished Review · ✅ Success · Started 11:53 AM UTC · Completed 12:01 PM UTC

Commit: 95d3e83 · View workflow run →

Runtime: claude · Model: opus → claude-opus-4-6 · Cost: $1.19

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate
renovate Bot force-pushed the renovate/rhdh-boost-dependencies-(minor) branch from 95d3e83 to d7f6bdb Compare September 10, 2026 13:01
@fullsend-ai-review

fullsend-ai-review Bot commented Sep 10, 2026

Copy link
Copy Markdown

🤖 Review · ❌ Terminated · Started 1:02 PM UTC · Ended 1:07 PM UTC

Commit: d7f6bdb · View workflow run →

@sonarqubecloud

Copy link
Copy Markdown

@fullsend-ai-review fullsend-ai-review Bot added ready-for-merge All reviewers approved — ready to merge and removed ready-for-merge All reviewers approved — ready to merge labels Sep 10, 2026
@fullsend-ai-review

Copy link
Copy Markdown

🤖 Finished Review · ✅ Success · Started 1:02 PM UTC · Completed 1:07 PM UTC

Commit: d7f6bdb · View workflow run →

Runtime: claude · Model: opus → claude-opus-4-6 · Cost: $0.76

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

boost dependencies Pull requests that update a dependency file ready-for-merge All reviewers approved — ready to merge

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants