Skip to content

chore(deps): update rhdh adoption insights dependencies (minor)#2835

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

chore(deps): update rhdh adoption insights dependencies (minor)#2835
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/rhdh-adoption-insights-dependencies-(minor)

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Apr 20, 2026

This PR contains the following updates:

Package Change Age Confidence
@playwright/test (source) 1.58.21.60.0 age confidence
@red-hat-developer-hub/backstage-plugin-theme (source) ^0.12.0^0.14.0 age confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.60.0

Compare Source

🌐 HAR recording on Tracing

tracing.startHar() / tracing.stopHar() expose HAR recording as a first-class tracing API, with the same content, mode and urlFilter options as recordHar. The returned Disposable makes it easy to scope a recording with await using:

await using har = await context.tracing.startHar('trace.har');
const page = await context.newPage();
await page.goto('https://playwright.dev');
// HAR is finalized when `har` goes out of scope.

🪝 Drop API

New locator.drop() simulates an external drag-and-drop of files or clipboard-like data onto an element. Playwright dispatches dragenter, dragover, and drop with a synthetic [DataTransfer] in the page context — works cross-browser and is great for testing upload zones:

await page.locator('#dropzone').drop({
  files: { name: 'note.txt', mimeType: 'text/plain', buffer: Buffer.from('hello') },
});

await page.locator('#dropzone').drop({
  data: {
    'text/plain': 'hello world',
    'text/uri-list': 'https://example.com',
  },
});

🎯 Aria snapshots

🛑 test.abort()

New test.abort() aborts the currently running test from a fixture, hook, or route handler with an optional message. Use it when you have detected an unrecoverable misuse and want to fail the test right away:

test('does not publish to the shared page', async ({ page }) => {
  await page.route('**/publish', route => {
    test.abort('Tests must not publish to the shared page. Use the `clone` option.');
    return route.abort();
  });
  // ...
});

New APIs

Browser, Context and Page
Locators and Assertions
Network
  • webSocketRoute.protocols() returns the WebSocket subprotocols requested by the page.
  • New option noDefaults in browserType.connectOverCDP() disables Playwright's default overrides on the default context (download behavior, focus emulation, media emulation), so attaching to a user's daily-driver browser doesn't disturb its state.
Errors and Reporting
Test runner
  • New {testFileBaseName} token in testProject.snapshotPathTemplate — file name without extension.
  • Test runner now errors when a config tries to override a non-option fixture, and rejects workers: 0 or negative values.

🛠️ Other improvements

  • HTML reporter:
    • npx playwright show-report accepts .zip files directly — no need to unzip first.
    • Steps that contain attachments inside nested children show an indicator on the parent step.
    • The repeatEachIndex is shown in the test header when non-zero.
  • Trace Viewer adds a pretty-print toggle for JSON / form request and response bodies in the network details panel.

Breaking Changes ⚠️

  • Removed long-deprecated APIs:
    • Locator.ariaRef() — use the standard locator.ariaSnapshot() pipeline.
    • handle option on BrowserContext.exposeBinding and Page.exposeBinding.
    • logger option on BrowserType.connect and BrowserType.connectOverCDP — use tracing instead.
    • Context options videosPath / videoSize — use recordVideo instead.

Browser Versions

  • Chromium 148.0.7778.96
  • Mozilla Firefox 150.0.2
  • WebKit 26.4

This version was also tested against the following stable channels:

  • Google Chrome 147
  • Microsoft Edge 147

v1.59.1

Compare Source

v1.59.0

Compare Source

redhat-developer/rhdh-plugins (@​red-hat-developer-hub/backstage-plugin-theme)

v0.14.7

Compare Source

Patch Changes
  • 4d80582: fix(RHDHBUGS-2291): use &.Mui-selected syntax for MuiBottomNavigationAction to resolve CSS specificity console warning

v0.14.5

Compare Source

Patch Changes
  • 82cc47d: Fixed the background color of myGroup sidebar submenu in light theme

v0.14.4

Compare Source

Patch Changes

v0.14.3

Compare Source

Patch Changes
  • 54b7c9e: style the active sidebar nav link (a[aria-current="page"]) so selected colors match the resolved navigation shell

v0.14.2

Compare Source

Patch Changes
  • ee1def6: Align the navigation sidebar with merged palette.navigation and rhdh.general colors, including submenu rows and selected/active BackstageSidebarItem states. Add rhdh.general.pageInsetBackgroundColor so the page inset shell can use its own color (defaults match the previous app bar fill; falls back to appBarBackgroundColor when unset). Main content area remains on mainSectionBackgroundColor.

v0.14.1

Compare Source

Patch Changes
  • 8d1eee2: Add missing font css reference so that the Red Hat font is used again.

v0.14.0

Compare Source

Minor Changes
  • 0b7c442: Add and export RHDH logo components as LogoFull and LogoIcon
  • 0b7c442: Backstage version bump to v1.49.2

v0.13.0

Compare Source

Minor Changes

v0.12.3

Compare Source

v0.12.2

Compare Source

v0.12.1

Compare Source

Patch Changes
  • 29042bc: Fixing the inconsitent edges of filter section on catalog page

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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 adoption-insights dependencies Pull requests that update a dependency file team/rhdh labels Apr 20, 2026
@renovate renovate Bot requested a review from rohitkrai03 as a code owner April 20, 2026 12:02
@renovate renovate Bot requested review from a team, Eswaraiahsapram and karthikjeeyar as code owners April 20, 2026 12:02
@renovate renovate Bot added the team/rhdh label Apr 20, 2026
@rhdh-gh-app
Copy link
Copy Markdown

rhdh-gh-app Bot commented Apr 20, 2026

Changed Packages

Package Name Package Path Changeset Bump Current Version
app-legacy workspaces/adoption-insights/packages/app-legacy none v0.0.0
app workspaces/adoption-insights/packages/app none v0.0.0
@red-hat-developer-hub/backstage-plugin-adoption-insights workspaces/adoption-insights/plugins/adoption-insights patch v0.8.2

@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from f92140a to 5cb4054 Compare April 20, 2026 12:03
@renovate renovate Bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 5cb4054 to ca7d343 Compare April 20, 2026 12:08
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from ca7d343 to 83c8da5 Compare April 20, 2026 12:08
@renovate renovate Bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 83c8da5 to e17351a Compare April 20, 2026 12:44
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from e17351a to a86ad07 Compare April 20, 2026 12:44
@renovate renovate Bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from a86ad07 to 45c681e Compare April 20, 2026 13:29
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 45c681e to 1b00920 Compare April 20, 2026 13:29
@renovate renovate Bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 1b00920 to 131d417 Compare April 20, 2026 13:41
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 131d417 to 4c0aaf6 Compare April 20, 2026 13:41
@renovate renovate Bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 4c0aaf6 to 690ce77 Compare April 20, 2026 16:15
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 690ce77 to 0df33f0 Compare April 20, 2026 16:15
@renovate renovate Bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 0df33f0 to 7271590 Compare April 20, 2026 18:13
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 7271590 to 9f6b750 Compare April 20, 2026 18:13
@renovate renovate Bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 9f6b750 to 97ae667 Compare April 21, 2026 09:03
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 97ae667 to 3f25553 Compare April 21, 2026 09:04
@renovate renovate Bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 3f25553 to c670fac Compare April 21, 2026 09:13
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from c670fac to 75cfb36 Compare April 21, 2026 09:14
@renovate renovate Bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 75cfb36 to e9e9a81 Compare April 21, 2026 13:24
@renovate renovate Bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 1ae31fe to 5cf6d63 Compare April 22, 2026 14:10
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 5cf6d63 to e83c618 Compare April 22, 2026 14:11
@renovate renovate Bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from e83c618 to 665035d Compare April 22, 2026 14:32
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 665035d to e3a13f6 Compare April 22, 2026 14:32
@renovate renovate Bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from e3a13f6 to 3398979 Compare April 22, 2026 18:34
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 3398979 to 2891f25 Compare April 22, 2026 18:34
@renovate renovate Bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 2891f25 to b1ea3a4 Compare April 23, 2026 00:43
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from b1ea3a4 to 4ff5ecf Compare April 23, 2026 00:43
@renovate renovate Bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 4ff5ecf to c3fa253 Compare April 23, 2026 05:47
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from c3fa253 to fa386f7 Compare April 23, 2026 05:48
@renovate renovate Bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from fa386f7 to 7028c77 Compare April 23, 2026 05:57
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 7028c77 to cd6b060 Compare April 23, 2026 05:58
@renovate renovate Bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from cd6b060 to 07ef34d Compare April 23, 2026 06:47
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 07ef34d to dc96a17 Compare April 23, 2026 06:47
@renovate renovate Bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from dc96a17 to 0848c01 Compare April 23, 2026 09:35
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 0848c01 to 6edba4a Compare April 23, 2026 09:36
@renovate renovate Bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 6edba4a to 01cfac5 Compare April 23, 2026 09:57
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from 01cfac5 to f267b75 Compare April 23, 2026 09:57
@renovate renovate Bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from f267b75 to f5f9b25 Compare April 23, 2026 10:08
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-adoption-insights-dependencies-(minor) branch from f5f9b25 to be7995c Compare April 23, 2026 10:08
@sonarqubecloud
Copy link
Copy Markdown

@codecov
Copy link
Copy Markdown

codecov Bot commented Apr 29, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 53.29%. Comparing base (3d8b160) to head (2a88000).
✅ All tests successful. No failed tests found.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #2835   +/-   ##
=======================================
  Coverage   53.29%   53.29%           
=======================================
  Files        2407     2407           
  Lines       86420    86420           
  Branches    23954    23954           
=======================================
  Hits        46057    46057           
+ Misses      40036    40035    -1     
- Partials      327      328    +1     
Flag Coverage Δ *Carryforward flag
adoption-insights 83.58% <ø> (ø)
ai-integrations 70.03% <ø> (ø) Carriedforward from 3d8b160
app-defaults 69.60% <ø> (ø) Carriedforward from 3d8b160
augment 46.39% <ø> (ø) Carriedforward from 3d8b160
bulk-import 72.86% <ø> (ø) Carriedforward from 3d8b160
cost-management 16.49% <ø> (ø) Carriedforward from 3d8b160
dcm 32.85% <ø> (ø) Carriedforward from 3d8b160
extensions 61.79% <ø> (ø) Carriedforward from 3d8b160
global-floating-action-button 74.30% <ø> (ø) Carriedforward from 3d8b160
global-header 61.63% <ø> (ø) Carriedforward from 3d8b160
homepage 51.52% <ø> (ø) Carriedforward from 3d8b160
konflux 91.01% <ø> (ø) Carriedforward from 3d8b160
lightspeed 68.33% <ø> (ø) Carriedforward from 3d8b160
mcp-integrations 85.46% <ø> (ø) Carriedforward from 3d8b160
orchestrator 36.51% <ø> (ø) Carriedforward from 3d8b160
quickstart 62.88% <ø> (ø) Carriedforward from 3d8b160
sandbox 79.49% <ø> (ø) Carriedforward from 3d8b160
scorecard 83.84% <ø> (ø) Carriedforward from 3d8b160
theme 64.54% <ø> (ø) Carriedforward from 3d8b160
translations 8.49% <ø> (ø) Carriedforward from 3d8b160
x2a 78.79% <ø> (ø) Carriedforward from 3d8b160

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


Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 3d8b160...2a88000. 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.

@sonarqubecloud
Copy link
Copy Markdown

5 similar comments
@sonarqubecloud
Copy link
Copy Markdown

@sonarqubecloud
Copy link
Copy Markdown

@sonarqubecloud
Copy link
Copy Markdown

@sonarqubecloud
Copy link
Copy Markdown

@sonarqubecloud
Copy link
Copy Markdown

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@sonarqubecloud
Copy link
Copy Markdown

sonarqubecloud Bot commented Jun 1, 2026

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

Labels

dependencies Pull requests that update a dependency file team/rhdh workspace/adoption-insights

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant