fix(deps): update npm minor and patch dependencies#207
fix(deps): update npm minor and patch dependencies#207red-hat-konflux[bot] wants to merge 1 commit into
Conversation
6560682 to
857113d
Compare
|
Note Reviews pausedIt looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the Use the following commands to manage reviews:
Use the checkboxes below for quick actions:
WalkthroughBumped multiple dependency and devDependency versions in Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes 🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Comment |
35e9b7f to
3bcd890
Compare
551d65f to
d39038a
Compare
5fa536b to
88e8f23
Compare
9bd2036 to
340f242
Compare
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@package.json`:
- Around line 24-42: The engines declaration in package.json is incompatible
with the PatternFly v6 dependencies; update the "engines" field's "node"
constraint to ">=18.0.0" to match PatternFly v6 requirements, or alternatively
downgrade the PatternFly packages (`@patternfly/react-core`,
`@patternfly/react-table`, `@patternfly/quickstarts` and related PatternFly v6
entries) to v5; locate the "engines" object in package.json and change the
"node" value to ">=18.0.0" (or pin the PatternFly package versions to v5) so the
declared Node version aligns with the installed PatternFly packages.
e8385fe to
afeec24
Compare
afeec24 to
58e2852
Compare
bd7dcc1 to
5d8c1f0
Compare
48660a4 to
7572548
Compare
f154548 to
1afdd2c
Compare
5bac78f to
42bf6c3
Compare
a68b109 to
d71ce8c
Compare
e44bfdc to
e6a7e95
Compare
e6a7e95 to
55f7cb8
Compare
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
This PR contains the following updates:
^4.1.4→^4.1.16^4.1.4→^4.1.14^6.4.0→^6.4.3^6.4.0→^6.4.31.59.0→1.60.0^6.8.3→^6.10.1^1.0.26→^1.1.1^0.9.0→^0.9.2^0.11.1→^0.11.2^9.1.17→^9.1.20^9.1.17→^9.1.20^0.23.0→^0.24.418.3.27→18.3.28^1.13.2→^1.16.12.12.10→2.14.6^2.0.6→^2.0.7>=18→>=18.20.8^6.6.2→^6.8.9^6.30.2→^6.30.3^4.0.0→^4.0.1^9.1.17→^9.1.20^29.4.5→^29.4.9^2.8.1→^2.9.0Release Notes
data-driven-forms/react-forms (@data-driven-forms/pf4-component-mapper)
v4.1.16Compare Source
4.1.16 (2026-04-10)
🧱 Updated Dependencies
v4.1.15Compare Source
4.1.15 (2026-03-09)
🩹 Fixes
🧱 Updated Dependencies
❤️ Thank You
v4.1.14Compare Source
4.1.14 (2026-02-16)
🧱 Updated Dependencies
v4.1.13Compare Source
4.1.13 (2026-02-11)
🚀 Features
🧱 Updated Dependencies
❤️ Thank You
v4.1.12Compare Source
4.1.12 (2026-02-09)
🧱 Updated Dependencies
v4.1.11Compare Source
4.1.11 (2026-02-05)
🚀 Features
🧱 Updated Dependencies
❤️ Thank You
v4.1.10Compare Source
4.1.10 (2026-02-04)
🧱 Updated Dependencies
v4.1.9Compare Source
4.1.9 (2026-02-02)
🧱 Updated Dependencies
v4.1.8Compare Source
4.1.8 (2026-02-02)
🧱 Updated Dependencies
patternfly/patternfly-react (@patternfly/react-core)
v6.4.3Compare Source
v6.4.2Compare Source
microsoft/playwright (@playwright/test)
v1.60.0Compare Source
🌐 HAR recording on Tracing
tracing.startHar() / tracing.stopHar() expose HAR recording as a first-class tracing API, with the same
content,modeandurlFilteroptions asrecordHar. The returned Disposable makes it easy to scope a recording withawait using:🪝 Drop API
New locator.drop() simulates an external drag-and-drop of files or clipboard-like data onto an element. Playwright dispatches
dragenter,dragover, anddropwith a synthetic [DataTransfer] in the page context — works cross-browser and is great for testing upload zones:🎯 Aria snapshots
page.locator('body').boxesoption on locator.ariaSnapshot() / page.ariaSnapshot() appends each element's bounding box as[box=x,y,width,height], useful for AI consumption.🛑 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:
New APIs
Browser, Context and Page
Locators and Assertions
descriptionin page.getByRole() / locator.getByRole() / frame.getByRole() / frameLocator.getByRole() for matching the accessible description.pseudoin expect(locator).toHaveCSS() reads computed styles from::beforeor::after.stylein locator.highlight() applies extra inline CSS to the highlight overlay, plus new page.hideHighlight() to clear all highlights.Network
noDefaultsin 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
line/columnproperties (lineNumber/columnNumberare deprecated).expect(...)matcher failure.workerInfoargument with details about the worker for fixture teardown errors.Test runner
{testFileBaseName}token in testProject.snapshotPathTemplate — file name without extension.workers: 0or negative values.🛠️ Other improvements
npx playwright show-reportaccepts.zipfiles directly — no need to unzip first.repeatEachIndexis shown in the test header when non-zero.Breaking Changes⚠️
Locator.ariaRef()— use the standard locator.ariaSnapshot() pipeline.handleoption onBrowserContext.exposeBindingandPage.exposeBinding.loggeroption onBrowserType.connectandBrowserType.connectOverCDP— use tracing instead.videosPath/videoSize— userecordVideoinstead.Browser Versions
This version was also tested against the following stable channels:
v1.59.1Compare Source
Bug Fixes
codegen,--uiandshowcommands (#39990)RedHatInsights/frontend-components (@redhat-cloud-services/frontend-components-config)
v6.10.1Compare Source
v6.10.0Compare Source
v6.9.2Compare Source
v6.9.1Compare Source
v6.9.0Compare Source
v6.8.4Compare Source
scalprum/scaffolding (@scalprum/core)
v0.9.2Compare Source
storybookjs/test-runner (@storybook/test-runner)
v0.24.4Compare Source
🐛 Bug Fix
Authors: 1
v0.24.3Compare Source
🐛 Bug Fix
Authors: 1
v0.24.2Compare Source
🐛 Bug Fix
Authors: 1
v0.24.1Compare Source
🐛 Bug Fix
Authors: 3
v0.24.0Compare Source
🚀 Enhancement
🐛 Bug Fix
--testTimeoutexamples #579 (@IanVS)Authors: 3
axios/axios (axios)
v1.16.1Compare Source
v1.16.1 — May 13, 2026
This release ships a defence-in-depth fix for prototype pollution in
formDataToJSON, hardens proxy and CI workflows, restores Webpack 4 compatibility for the fetch adapter, and includes several small bug fixes and maintenance improvements.🔒 Security Fixes
formDataToJSONagainst already-pollutedObject.prototypeby walking own properties only, so attacker-controlled keys inherited from a poisoned prototype cannot propagate through deserialization. (#7413)🐛 Bug Fixes
fromDataURIregex to match RFC 2397 more strictly, fixing edge cases indata:URL handling. (#10829)ProgressEventpayloads emitted by some environments during XHR upload, preventing crashes whenloaded/totalare missing or invalid. (#10868)parseRevivercontext.sourceoptional in the type definitions to align with the ES2023 specification. (#10837)URLobject asconfig.url(originally #10866) due to regressions; this support will be reintroduced in a later release once the underlying issues are addressed. (#10874)🔧 Maintenance & Chores
toJSONObjectwith aWeakSet, improving performance and memory behaviour on large nested structures. (#10832)composeSignalsto use a clearer early-return structure, simplifying the cancellation/abort composition path. (#10844)AGENTS.mdand related contributor-guide updates for both human and AI agents, plus post-release documentation improvements. (#10835, #10841)ejectexample to reference the correct instance, and corrected the Buzzoid sponsor description in the README. (#10836, #10853, #10856)@commitlint/clifrom 20.5.0 to 20.5.2. (#10846)🌟 New Contributors
We are thrilled to welcome our new contributors. Thank you for helping improve axios:
Full Changelog
v1.16.0Compare Source
This release adds support for the QUERY HTTP method and a new
ECONNREFUSEDerror constant, lands a substantial wave of HTTP, fetch, and XHR adapter bug fixes around redirects, aborts, headers, and timeouts, and welcomes 23 new contributors.v1.15.2Compare Source
This release delivers prototype-pollution hardening for the Node HTTP adapter, adds an opt-in
allowedSocketPathsallowlist to mitigate SSRF via Unix domain sockets, fixes a keep-alive socket memory leak, and ships supply-chain hardening across CI and security docs.v1.15.1Compare Source
This release ships a coordinated set of security hardening fixes across headers, body/redirect limits, multipart handling, and XSRF/prototype-pollution vectors, alongside a broad sweep of bug fixes, test migrations, and threat-model documentation updates.
v1.15.0Compare Source
Bug Fixes
Features
Contributors to this release
PRs
1.2.6 (2023-01-28)
Bug Fixes
CommonRequestHeadersList&CommonResponseHeadersListtypes to be private in commonJS; (#5503) (5a3d0a3)Contributors to this release
PRs
1.2.5 (2023-01-26)
Bug Fixes
Contributors to this release
PRs
1.2.4 (2023-01-22)
Bug Fixes
RawAxiosRequestConfigback toAxiosRequestConfig; (#5486) (2a71f49)AxiosRequestConfiggeneric; (#5478) (9bce81b)Contributors to this release
PRs
1.2.3 (2023-01-10)
Bug Fixes
Contributors to this release
PRs
[1.2.2] - 2022-12-29
Fixed
Chores
Contributors to this release
[1.2.1] - 2022-12-05
Changed
Fixed
Refactors
Chores
Contributors to this release
PRs
[1.2.0] - 2022-11-10
Changed
Fixed
Refactors
Chores
Contributors to this release
PRs
[1.1.3] - 2022-10-15
Added
Fixed
Chores
Contributors to this release
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.
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.