Skip to content

chore(deps): update rhdh bulk import dependencies (minor)#3129

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

chore(deps): update rhdh bulk import dependencies (minor)#3129
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/rhdh-bulk-import-dependencies-(minor)

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented May 13, 2026

This PR contains the following updates:

Package Change Age Confidence
@openapitools/openapi-generator-cli 2.31.12.34.0 age confidence
@playwright/test (source) 1.59.11.60.0 age confidence

Release Notes

OpenAPITools/openapi-generator-cli (@​openapitools/openapi-generator-cli)

v2.34.0

Compare Source

Features
  • release: trigger a release (c7caa7e)

v2.33.1

Compare Source

Bug Fixes

v2.33.0

Compare Source

Features
  • release: trigger a release (54abbc6)

v2.32.0

Compare Source

Features
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

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 bulk-import dependencies Pull requests that update a dependency file labels May 13, 2026
@renovate renovate Bot requested a review from rm3l as a code owner May 13, 2026 07:25
@renovate renovate Bot added the team/rhdh label May 13, 2026
@renovate renovate Bot requested review from a team, debsmita1 and its-mitesh-kumar as code owners May 13, 2026 07:25
@rhdh-gh-app
Copy link
Copy Markdown

rhdh-gh-app Bot commented May 13, 2026

Changed Packages

Package Name Package Path Changeset Bump Current Version
app-legacy workspaces/bulk-import/packages/app-legacy none v0.0.3
app workspaces/bulk-import/packages/app none v0.0.1
backend workspaces/bulk-import/packages/backend none v0.0.0
@red-hat-developer-hub/backstage-plugin-bulk-import-backend workspaces/bulk-import/plugins/bulk-import-backend patch v7.3.5
@red-hat-developer-hub/backstage-plugin-bulk-import workspaces/bulk-import/plugins/bulk-import patch v7.3.5

@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 4720a49 to 27162aa Compare May 13, 2026 07:25
@codecov
Copy link
Copy Markdown

codecov Bot commented May 13, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 53.29%. Comparing base (857a8ec) to head (b058fbf).
✅ All tests successful. No failed tests found.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #3129   +/-   ##
=======================================
  Coverage   53.29%   53.29%           
=======================================
  Files        2407     2407           
  Lines       86421    86421           
  Branches    23956    23956           
=======================================
  Hits        46059    46059           
  Misses      38746    38746           
  Partials     1616     1616           
Flag Coverage Δ *Carryforward flag
adoption-insights 83.58% <ø> (ø) Carriedforward from 857a8ec
ai-integrations 70.03% <ø> (ø) Carriedforward from 857a8ec
app-defaults 69.60% <ø> (ø) Carriedforward from 857a8ec
augment 46.39% <ø> (ø) Carriedforward from 857a8ec
bulk-import 72.86% <ø> (ø)
cost-management 16.49% <ø> (ø) Carriedforward from 857a8ec
dcm 32.89% <ø> (ø) Carriedforward from 857a8ec
extensions 61.79% <ø> (ø) Carriedforward from 857a8ec
global-floating-action-button 74.30% <ø> (ø) Carriedforward from 857a8ec
global-header 61.63% <ø> (ø) Carriedforward from 857a8ec
homepage 51.52% <ø> (ø) Carriedforward from 857a8ec
konflux 91.01% <ø> (ø) Carriedforward from 857a8ec
lightspeed 68.33% <ø> (ø) Carriedforward from 857a8ec
mcp-integrations 85.46% <ø> (ø) Carriedforward from 857a8ec
orchestrator 36.51% <ø> (ø) Carriedforward from 857a8ec
quickstart 62.88% <ø> (ø) Carriedforward from 857a8ec
sandbox 79.56% <ø> (ø) Carriedforward from 857a8ec
scorecard 83.84% <ø> (ø) Carriedforward from 857a8ec
theme 64.54% <ø> (ø) Carriedforward from 857a8ec
translations 8.49% <ø> (ø) Carriedforward from 857a8ec
x2a 78.79% <ø> (ø) Carriedforward from 857a8ec

*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 857a8ec...b058fbf. 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.

@renovate renovate Bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 27162aa to 0319a32 Compare May 13, 2026 09:08
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 0319a32 to 82eadcd Compare May 13, 2026 09:09
@renovate renovate Bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 82eadcd to 44fc993 Compare May 13, 2026 10:51
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 44fc993 to f8b1879 Compare May 13, 2026 10:51
@renovate renovate Bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from f8b1879 to 1a4ea55 Compare May 13, 2026 11:36
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 1a4ea55 to b6c7142 Compare May 13, 2026 11:36
@renovate renovate Bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from b6c7142 to efcc5c9 Compare May 13, 2026 12:18
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from efcc5c9 to cc797fe Compare May 13, 2026 12:19
@renovate renovate Bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from cc797fe to c6e10a0 Compare May 13, 2026 13:33
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from c6e10a0 to 6f417bf Compare May 13, 2026 13:34
@renovate renovate Bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 6f417bf to 5a994e1 Compare May 13, 2026 15:01
@renovate renovate Bot changed the title chore(deps): update dependency @openapitools/openapi-generator-cli to v2.32.0 Update dependency @openapitools/openapi-generator-cli to v2.32.0 May 13, 2026
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 5a994e1 to 6c8eaf6 Compare May 13, 2026 15:01
@renovate renovate Bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 6c8eaf6 to 01c3cd5 Compare May 14, 2026 06:53
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 01c3cd5 to 38135d6 Compare May 14, 2026 06:54
@renovate renovate Bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 38135d6 to 35fd207 Compare May 14, 2026 07:36
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 35fd207 to 8849b8a Compare May 14, 2026 07:36
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from a097a24 to a3af7f3 Compare May 15, 2026 12:09
@renovate renovate Bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from a3af7f3 to 20b6ce0 Compare May 15, 2026 12:57
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 20b6ce0 to 5ac44ae Compare May 15, 2026 12:58
@renovate renovate Bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 5ac44ae to 4cd6235 Compare May 15, 2026 14:07
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 4cd6235 to ac5b73d Compare May 15, 2026 14:08
@renovate renovate Bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from ac5b73d to a1ec90d Compare May 15, 2026 15:31
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from a1ec90d to 76af48f Compare May 15, 2026 15:32
@renovate renovate Bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 76af48f to ff5220d Compare May 15, 2026 17:06
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from ff5220d to 6da5ffe Compare May 15, 2026 17:06
@renovate renovate Bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 6da5ffe to d4586a0 Compare May 15, 2026 17:16
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from d4586a0 to e8338eb Compare May 15, 2026 17:16
@renovate renovate Bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from e8338eb to 9cf538c Compare May 15, 2026 18:49
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 9cf538c to bcde1da Compare May 15, 2026 18:49
@renovate renovate Bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from bcde1da to 8d3bf91 Compare May 15, 2026 20:40
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 8d3bf91 to 49f519c Compare May 15, 2026 20:40
@renovate renovate Bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 49f519c to 3df19f9 Compare May 18, 2026 08:03
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 3df19f9 to 20017da Compare May 18, 2026 08:04
@renovate renovate Bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 20017da to 5332e92 Compare May 18, 2026 10:50
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 5332e92 to 8069ff5 Compare May 18, 2026 10:51
@renovate renovate Bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 8069ff5 to 9cd94e0 Compare May 18, 2026 10:58
@rhdh-bot rhdh-bot force-pushed the renovate/rhdh-bulk-import-dependencies-(minor) branch from 9cd94e0 to d4a9dab Compare May 18, 2026 10:59
@sonarqubecloud
Copy link
Copy Markdown

2 similar comments
@sonarqubecloud
Copy link
Copy Markdown

@sonarqubecloud
Copy link
Copy Markdown

@sonarqubecloud
Copy link
Copy Markdown

❌ The last analysis has failed.

See analysis details on SonarQube Cloud

@sonarqubecloud
Copy link
Copy Markdown

2 similar comments
@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

bulk-import dependencies Pull requests that update a dependency file team/rhdh workspace/bulk-import

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants