Skip to content

fix(deps): update npm minor and patch dependencies#289

Open
red-hat-konflux[bot] wants to merge 1 commit into
masterfrom
konflux/mintmaker/master/npm-minor-and-patch-dependencies
Open

fix(deps): update npm minor and patch dependencies#289
red-hat-konflux[bot] wants to merge 1 commit into
masterfrom
konflux/mintmaker/master/npm-minor-and-patch-dependencies

Conversation

@red-hat-konflux
Copy link
Copy Markdown
Contributor

@red-hat-konflux red-hat-konflux Bot commented Mar 17, 2026

This PR contains the following updates:

Package Change Age Confidence
@babel/preset-env (source) 7.29.27.29.5 age confidence
@patternfly/react-code-editor (source) ^6.4.1^6.4.3 age confidence
@patternfly/react-core ^6.4.1^6.4.3 age confidence
@playwright/test (source) 1.59.11.60.0 age confidence
@redhat-cloud-services/frontend-components (source) ^7.0.45^7.4.3 age confidence
@redhat-cloud-services/frontend-components-config (source) ^6.7.54^6.10.2 age confidence
@redhat-cloud-services/frontend-components-notifications (source) ^6.3.1^6.6.3 age confidence
@redhat-cloud-services/tsc-transform-imports (source) ^1.0.56^1.1.2 age confidence
@types/react (source) ^18.3.28^18.3.29 age confidence
css-loader ^7.1.2^7.1.4 age confidence
cypress (source) ^15.0.0^15.15.0 age confidence
jotai ^2.18.1^2.20.0 age confidence
mini-css-extract-plugin ^2.9.2^2.10.2 age confidence
react-grid-layout (source) ^2.2.2^2.2.3 age confidence
sass-loader ^16.0.4^16.0.8 age confidence
swc-loader ^0.2.6^0.2.7 age confidence

Release Notes

babel/babel (@​babel/preset-env)

v7.29.5

Compare Source

v7.29.5 (2026-05-05)

🏠 Internal
  • babel-preset-env
    • Update @babel/* dependencies

v7.29.3

Compare Source

v7.29.3 (2026-04-30)

👓 Spec Compliance
🐛 Bug Fix
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators
  • babel-register
  • babel-compat-data, babel-plugin-bugfix-safari-rest-destructuring-rhs-array, babel-preset-env
💅 Polish
📝 Documentation
🏃‍♀️ Performance
  • babel-helper-import-to-platform-api, babel-plugin-proposal-import-wasm-source, babel-plugin-transform-json-modules
Committers: 4
patternfly/patternfly-react (@​patternfly/react-code-editor)

v6.4.3

Compare Source

v6.4.2

Compare Source

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
RedHatInsights/frontend-components (@​redhat-cloud-services/frontend-components)

v7.4.3

Compare Source

v7.4.2

Compare Source

v7.4.1

Compare Source

v7.4.0

Compare Source

cypress-io/cypress (cypress)

v15.15.0

Compare Source

Changelog: https://docs.cypress.io/app/references/changelog#15-15-0

v15.14.2

Compare Source

Changelog: https://docs.cypress.io/app/references/changelog#15-14-2

v15.14.1

Compare Source

Changelog: https://docs.cypress.io/app/references/changelog#15-14-1

pmndrs/jotai (jotai)

v2.20.0

Compare Source

This release improves performance in high-throughput scenarios. Huge kudos to @​dmaskasky!

What's Changed

Full Changelog: pmndrs/jotai@v2.19.1...v2.20.0

webpack/sass-loader (sass-loader)

v16.0.8

Compare Source


Configuration

📅 Schedule: 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 becomes conflicted, 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

To execute skipped test pipelines write comment /ok-to-test.


Documentation

Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.

@red-hat-konflux red-hat-konflux Bot requested a review from a team as a code owner March 17, 2026 14:36
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch from f2c204e to 2a0c7b5 Compare March 18, 2026 17:44
@red-hat-konflux red-hat-konflux Bot changed the title chore(deps): update npm minor and patch dependencies fix(deps): update npm minor and patch dependencies Mar 18, 2026
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch 6 times, most recently from bcf0000 to 9c4bee8 Compare March 25, 2026 13:55
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch 5 times, most recently from 16e2e6a to 6aba245 Compare April 1, 2026 21:53
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch 3 times, most recently from a5a9141 to 7bae9e2 Compare April 7, 2026 21:53
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch 4 times, most recently from b5c2a3a to 685cc30 Compare April 16, 2026 21:47
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch 6 times, most recently from 8c2a4b8 to f90de5d Compare April 24, 2026 14:10
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch 3 times, most recently from f730ed9 to d9c6e4f Compare May 1, 2026 01:57
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch 9 times, most recently from 6e9815b to 69e9e0b Compare May 12, 2026 21:32
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch from 69e9e0b to a30ee77 Compare May 18, 2026 10:45
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch from a30ee77 to aa380d5 Compare May 19, 2026 22:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants