fix(deps): update rhdh dcm dependencies (minor) - #3809
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
requested review from
a team,
asmasarw,
jkilzi and
mareklibra
as code owners
July 17, 2026 00:52
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #3809 +/- ##
=======================================
Coverage 61.49% 61.49%
=======================================
Files 2534 2534
Lines 101630 101630
Branches 28453 28453
=======================================
Hits 62496 62496
Misses 37301 37301
Partials 1833 1833
*This pull request uses carry forward flags. Click here to find out more. Continue to review full report in Codecov by Harness.
🚀 New features to boost your workflow:
|
renovate
Bot
force-pushed
the
renovate/rhdh-dcm-dependencies-(minor)
branch
15 times, most recently
from
July 18, 2026 13:37
7eddbe5 to
00c7df3
Compare
renovate
Bot
force-pushed
the
renovate/rhdh-dcm-dependencies-(minor)
branch
4 times, most recently
from
July 19, 2026 22:25
ed0e2b5 to
e8ad381
Compare
renovate
Bot
force-pushed
the
renovate/rhdh-dcm-dependencies-(minor)
branch
2 times, most recently
from
July 27, 2026 03:06
314e68c to
bb45858
Compare
Changed Packages
|
renovate
Bot
force-pushed
the
renovate/rhdh-dcm-dependencies-(minor)
branch
2 times, most recently
from
July 30, 2026 22:48
75a4c5f to
11053e0
Compare
Member
|
Similarly to #3926 -- yarn should not be set or upgraded in workspace level, this should only be set in root level. |
renovate
Bot
force-pushed
the
renovate/rhdh-dcm-dependencies-(minor)
branch
2 times, most recently
from
August 13, 2026 13:56
9d1aa58 to
780964a
Compare
renovate
Bot
force-pushed
the
renovate/rhdh-dcm-dependencies-(minor)
branch
5 times, most recently
from
August 13, 2026 17:24
51caf9d to
6208a95
Compare
renovate
Bot
force-pushed
the
renovate/rhdh-dcm-dependencies-(minor)
branch
11 times, most recently
from
August 18, 2026 13:35
ad0598c to
5818f62
Compare
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate
Bot
force-pushed
the
renovate/rhdh-dcm-dependencies-(minor)
branch
from
August 18, 2026 15:12
5818f62 to
56899ae
Compare
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



This PR contains the following updates:
1.60.0→1.62.1^0.14.0→^0.15.06.1.2→6.2.04.15.0→4.18.0Release Notes
microsoft/playwright (@playwright/test)
v1.62.1Compare Source
v1.62.0Compare 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:
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
signaloption that takes anAbortSignal, letting youcancel long-running actions, navigations, waits, and assertions:
Providing a signal does not disable the default timeout; pass
timeout: 0to disable it.🖼️ WebP screenshots
expect(page).toHaveScreenshot() and expect(locator).toHaveScreenshot()
can now store snapshots in the WebP format — just give the snapshot a
.webpname:page.screenshot() and locator.screenshot() also accept
webpas atype,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:
🔁 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:
New APIs
Browser and Context
credentialsincludes the context's virtual WebAuthn Credentials (passkeys) in the storage state, so they can be persisted and re-seeded into later contexts.Actions
scrolloption ("auto"|"none") on actions to opt out of Playwright's automatic scroll-into-view.Network
Evaluation
Command line & MCP
playwright-cli, runnable vianpx playwright mcpandnpx playwright cli.Reporters
mergeFilesreporter option:Announcements
Browser Versions
This version was also tested against the following stable channels:
v1.61.1Compare Source
v1.61.0Compare Source
🔑 WebAuthn passkeys
New Credentials virtual authenticator, available via browserContext.credentials, lets tests register passkeys and answer
navigator.credentials.create()/navigator.credentials.get()ceremonies in the page — no real hardware key required, works in all browsers:You can also let the app register a passkey once in a setup test, read it back with credentials.get(), and seed it into later tests — see Credentials for details.
🗃️ Web Storage
New WebStorage API, available via page.localStorage and page.sessionStorage, reads and writes the page's storage for the current origin:
New APIs
Network
Browser and Screencast
artifactsDirin browserType.connectOverCDP() controls where artifacts such as traces and downloads are stored when attached to an existing browser.cursorin screencast.showActions() controls the cursor decoration rendered for pointer actions.onFramecallback in screencast.start() now receives atimestampof when the frame was presented by the browser.Test runner
trace: new'on-all-retries','retain-on-first-failure'and'retain-on-failure-and-retries'values. See the video modes table for which runs are recorded and kept in each mode.expect.soft.poll(...).process.argvfrom the runner process, handy for reading custom arguments passed after the--separator.AggregateErroras a separate entry.-Gcommand line shorthand for--grep-invert.🛠️ Other improvements
Browser Versions
This version was also tested against the following stable channels:
redhat-developer/rhdh-plugins (@red-hat-developer-hub/backstage-plugin-theme)
v0.15.0Compare Source
Minor Changes
22d09cd: Backstage version bump to v1.52.1v0.14.11Compare Source
Patch Changes
a3302ac: prevent overlapping scrollbars on TechDocs pagesv0.14.10Compare Source
Patch Changes
9342bf0: Inline ThemeConfig types in config.d.ts to avoid importing from the package entry point, which pulls in @mui/material types that crash ts-json-schema-generator ontypeof window.matchMedia.v0.14.9Compare Source
Patch Changes
eed88f3: Fix brokenconfig.d.tsimport path: changeimport { ThemeConfig } from './src'to'./'so the published package resolves correctly during config schema validation.v0.14.8Compare Source
Patch Changes
6a1b1f0: Replace Material UI v4 imports with MUI v5 and add workspace ESLint restrictions to prevent v4 regressions.laverdet/isolated-vm (isolated-vm)
v6.2.0Compare Source
yarnpkg/berry (yarn)
v4.18.0: v4.18.0Compare Source
What's Changed
typescriptpeer for the Volar packages by @zkochan in #7232yarn versionandyarn version applyby @clemyan in #7218js-yamlto v4 by @JounQin in #6768sigstoreto v4 by @mhassan1 in #7208New Contributors
Full Changelog: https://github.com/yarnpkg/berry/compare/@yarnpkg/cli/4.17.1...@yarnpkg/cli/4.18.0
v4.17.1: v4.17.1Compare Source
What's Changed
New Contributors
Full Changelog: https://github.com/yarnpkg/berry/compare/@yarnpkg/cli/4.17.0...@yarnpkg/cli/4.17.1
v4.17.0: v4.17.0Compare Source
What's Changed
New Contributors
Full Changelog: https://github.com/yarnpkg/berry/compare/@yarnpkg/cli/4.16.0...@yarnpkg/cli/4.17.0
v4.16.0: v4.16.0Compare Source
What's Changed
New Contributors
Full Changelog: https://github.com/yarnpkg/berry/compare/@yarnpkg/cli/4.15.0...@yarnpkg/cli/4.16.0
Configuration
📅 Schedule: (UTC)
🚦 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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.