Skip to content

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

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

fix(deps): update npm minor and patch dependencies#207
red-hat-konflux[bot] wants to merge 1 commit intomasterfrom
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 Dec 5, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@data-driven-forms/pf4-component-mapper (source) ^4.1.4^4.1.16 age confidence dependencies patch
@data-driven-forms/react-form-renderer (source) ^4.1.4^4.1.14 age confidence dependencies patch
@patternfly/react-core ^6.4.0^6.4.3 age confidence dependencies patch
@patternfly/react-table (source) ^6.4.0^6.4.3 age confidence dependencies patch
@playwright/test (source) 1.59.01.59.1 age confidence devDependencies patch
@redhat-cloud-services/frontend-components-config (source) ^6.8.3^6.9.2 age confidence devDependencies minor
@redhat-cloud-services/tsc-transform-imports (source) ^1.0.26^1.1.1 age confidence devDependencies minor
@storybook/addon-docs (source) ^9.1.17^9.1.20 age confidence devDependencies patch
@storybook/react-webpack5 (source) ^9.1.17^9.1.20 age confidence devDependencies patch
@storybook/test-runner ^0.23.0^0.24.3 age confidence devDependencies minor
@types/react (source) 18.3.2718.3.28 age confidence devDependencies patch
axios (source) ^1.13.2^1.16.0 age confidence dependencies minor
msw (source) 2.12.102.14.2 age confidence devDependencies minor
msw-storybook-addon (source) ^2.0.6^2.0.7 age confidence devDependencies patch
node (source) >=18>=18.20.8 age confidence engines minor
react-intl (source) ^6.6.2^6.8.9 age confidence dependencies patch
react-router-dom (source) ^6.30.2^6.30.3 age confidence dependencies patch
remark-gfm ^4.0.0^4.0.1 age confidence devDependencies patch
storybook (source) ^9.1.17^9.1.20 age confidence devDependencies patch
ts-jest (source) ^29.4.5^29.4.9 age confidence devDependencies patch
yaml (source) ^2.8.1^2.8.4 age confidence dependencies patch

Release Notes

data-driven-forms/react-forms (@​data-driven-forms/pf4-component-mapper)

v4.1.16

Compare Source

4.1.16 (2026-04-10)

🧱 Updated Dependencies

v4.1.15

Compare Source

4.1.15 (2026-03-09)

🩹 Fixes
  • wizard: show submit button correctly (c7f896f1)
🧱 Updated Dependencies
❤️ Thank You
  • LightOfHeaven1994

v4.1.14

Compare Source

4.1.14 (2026-02-16)

🧱 Updated Dependencies

v4.1.13

Compare Source

4.1.13 (2026-02-11)

🚀 Features
🧱 Updated Dependencies
❤️ Thank You

v4.1.12

Compare Source

4.1.12 (2026-02-09)

🧱 Updated Dependencies

v4.1.11

Compare Source

4.1.11 (2026-02-05)

🚀 Features
  • pf: migrate PF mapper to TS (e22ef36b)
🧱 Updated Dependencies
❤️ Thank You

v4.1.10

Compare Source

4.1.10 (2026-02-04)

🧱 Updated Dependencies

v4.1.9

Compare Source

4.1.9 (2026-02-02)

🧱 Updated Dependencies

v4.1.8

Compare Source

4.1.8 (2026-02-02)

🧱 Updated Dependencies
patternfly/patternfly-react (@​patternfly/react-core)

v6.4.3

Compare Source

v6.4.2

Compare Source

microsoft/playwright (@​playwright/test)

v1.59.1

Compare Source

Bug Fixes
  • [Windows] Reverted hiding console window when spawning browser processes, which caused regressions including broken codegen, --ui and show commands (#​39990)
RedHatInsights/frontend-components (@​redhat-cloud-services/frontend-components-config)

v6.9.2

Compare Source

v6.9.1

Compare Source

v6.9.0

Compare Source

v6.8.4

Compare Source

storybookjs/test-runner (@​storybook/test-runner)

v0.24.3

Compare Source

🐛 Bug Fix
Authors: 1

v0.24.2

Compare Source

🐛 Bug Fix
Authors: 1

v0.24.1

Compare Source

🐛 Bug Fix
Authors: 3

v0.24.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
Authors: 3

axios/axios (axios)

v1.16.0

Compare Source

v1.16.0 — May 2, 2026

This release adds support for the QUERY HTTP method and a new ECONNREFUSED error constant, lands a substantial wave of HTTP, fetch, and XHR adapter bug fixes around redirects, aborts, headers, and timeouts, and welcomes 23 new contributors.

⚠️ Notable Changes

A handful of fixes in this release are either security-adjacent or change observable behaviour. Please review before upgrading:

  • Fetch adapter now enforces maxBodyLength and maxContentLength. These limits were silently ignored on the fetch adapter prior to 1.16.0 — anyone relying on them as a safety net (DoS protection, accidental large uploads) had no protection. (#​10795)
  • Proxy requests now preserve user-supplied Host headers. Previously, the proxy path could overwrite a custom Host. Virtual-host-style routing through a proxy will now behave correctly. (#​10822)
  • Basic auth credentials embedded in URLs are now URL-decoded. If you have percent-encoded credentials in a URL (e.g. https://user:p%40ss@host), the decoded value is what now goes on the wire. (#​10825)
  • parseProtocol now strictly requires a colon in the protocol separator. Strings that loosely parsed as protocols before may no longer match. (#​10729)
  • Deprecated unescape() replaced with modern UTF-8 encoding. Non-ASCII URL handling is now spec-correct; consumers depending on legacy unescape() quirks may see different output bytes. (#​7378)
  • transformRequest input typing change was reverted. The typing change introduced in #​10745 was reverted in #​10810 after follow-up review — net behavior is unchanged from 1.15.2. (#​10745, #​10810)

🚀 New Features

  • QUERY HTTP Method: Added support for the QUERY HTTP method across adapters and type definitions. (#​10802)
  • ECONNREFUSED Error Constant: Exposed ECONNREFUSED as a constant on AxiosError so callers can match connection-refused failures without comparing string literals (closes #​6485). (#​10680)
  • Encode Helper Export: Exported the internal encode helper from buildURL so userland param serializers can reuse the same encoding logic that axios uses internally. (#​6897)

🐛 Bug Fixes

  • HTTP Adapter — Redirects & Headers: Cleared stale headers when a redirect targets a no-proxy host, fixed the redirect listener chain so listeners no longer stack across hops, restored the missing requestDetails argument on beforeRedirect, preserved user-supplied Host headers when forwarding through a proxy, and properly URL-decoded basic auth credentials. (#​10794, #​10800, #​6241, #​10822, #​10825)
  • HTTP Adapter — Streams & Timeouts: Preserved the partial response object on AxiosError when a stream is aborted after headers arrive, honoured the timeout option during the connect phase when redirects are disabled, and resolved an unsettled-promise hang when an aborted request was combined with compression and maxRedirects: 0. (#​10708, #​10819, #​7149)
  • Fetch Adapter: Enforced maxBodyLength / maxContentLength in the fetch adapter, set the User-Agent header to match the HTTP adapter, preserved the original abort reason instead of replacing it with a generic error, and deferred global access so importing the module no longer throws a TypeError in restricted environments. (#​10795, #​10772, #​10806, #​7260)
  • XHR Adapter: Unsubscribed the cancelToken and AbortSignal listeners on the error, timeout, and abort code paths to prevent leaked subscriptions. (#​10787)
  • Error Handling: Attached the parsed response to AxiosError when JSON.parse fails inside dispatchRequest, prevented settle from emitting undefined error codes, and tightened the parseProtocol regex to require a colon in the protocol separator. (#​10724, #​7276, #​10729)
  • Types & Exports: Aligned the CommonJS CancelToken typings with the ESM build, fixed a compiler error caused by RawAxiosHeaders, and re-exported create from the package index. (#​7414, #​6389, #​6460)
  • UTF-8 Encoding: Replaced the deprecated unescape() call with a modern UTF-8 encoding implementation. (#​7378)
  • Misc Cleanup: Resolved a batch of small inconsistencies and gadget-level issues across the codebase. (#​10833)

🔧 Maintenance & Chores

  • Refactor — ES6 Modernisation: Modernised the utils module and XHR adapter to use ES6 features, and tidied the multipart boundary error message. (#​10588, #​7419)
  • Tests: Hardened the HTTP test server lifecycle to fix flaky FormData EPIPE failures, fixed Win32 platform support for the pipe tests, and corrected an incorrect test assumption. (#​10820, #​10791, #​10796)
  • Docs: Documented paramsSerializer.encode for strict RFC 3986 query encoding, updated the parseReviver TypeScript definitions and configuration docs for ES2023, added timeout guidance to the README's first async example, and expanded notes around the recent type changes. (#​10821, #​10782, #​10759, #​10804)
  • Reverted: Reverted the transformRequest input typing change from #​10745 after follow-up review. (#​10745, #​10810)
  • Dependencies: Bumped actions/setup-node, the github-actions group, and postcss (in /docs) to their latest versions. (#​10785, #​10813, #​10814)
  • Release: Updated changelog and packages, and prepared the 1.16.0 release. (#​10790, #​10834)

🌟 New Contributors

We are thrilled to welcome our new contributors. Thank you for helping improve axios:

Full Changelog

v1.15.2

Compare Source

This release delivers prototype-pollution hardening for the Node HTTP adapter, adds an opt-in allowedSocketPaths allowlist 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.1

Compare 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.

🔒 Security Fixes

  • Header Injection Hardening: Tightened validation and sanitisation across request header construction to close the header-injection attack surface. (#​10749)
  • CRLF Stripping in Multipart Headers: Correctly strips CR/LF from multipart header values to prevent injection via field names and filenames. (#​10758)
  • Prototype Pollution / Auth Bypass: Replaced unsafe in checks with hasOwnProperty to prevent authentication bypass via prototype pollution on config objects, with additional regression tests. (#​10761, #​10760)
  • withXSRFToken Truthy Bypass: Short-circuits on any truthy non-boolean value, so an ambiguous config no longer silently leaks the XSRF token cross-origin. (#​10762)
  • maxBodyLength With Zero Redirects: Enforces maxBodyLength even when maxRedirects is set to 0, closing a bypass path for oversized request bodies. (#​10753)
  • Streamed Response maxContentLength Bypass: Applies maxContentLength to streamed responses that previously bypassed the cap. (#​10754)
  • Follow-up CVE Completion: Completes an earlier incomplete CVE fix to fully close the regression window. (#​10755)

🚀 New Features

  • AI-Based Docs Translations: Initial scaffold for AI-assisted translations of the documentation site. (#​10705)
  • Location Request Header Type: Adds Location to CommonRequestHeadersList for accurate typing of redirect-aware requests. (#​7528)

🐛 Bug Fixes

  • FormData Handling: Removes Content-Type when no boundary is present on FormData fetch requests, supports multi-select fields, cancels request.body instead of the source stream on fetch abort, and fixes a recursion bug in form-data serialisation. (#​7314, #​10676, #​10702, #​10726)
  • HTTP Adapter: Handles socket-only request errors without leaking keep-alive listeners. (#​10576)
  • Progress Events: Clamps loaded to total for computable upload/download progress events. (#​7458)
  • Types: Aligns runWhen type with the runtime behaviour in InterceptorManager and makes response header keys case-insensitive. (#​7529, #​10677)
  • buildFullPath: Uses strict equality in the base/relative URL check. (#​7252)
  • AxiosURLSearchParams Regex: Improves the regex used for param serialisation to avoid edge-case mismatches. (#​10736)
  • Resilient Value Parsing: Parses out header/config values instead of throwing on malformed input. (#​10687)
  • Docs Artefact Cleanup: Removes the docs content that was incorrectly committed. (#​10727)

🔧 Maintenance & Chores

  • Threat Model & Security Docs: Ongoing refinement of THREATMODEL.md, including Hopper security update, TLS and tag-replay wording, mitigation descriptions, decompression-bomb guidance, and further cleanup. (#​10672, #​10715, #​10718, #​10722, #​10763, #​10765)
  • Test Coverage & Migration: Expanded shouldBypassProxy coverage for wildcard/IPv6/edge cases, documented and tested AxiosError.status, and migrated progressEventReducer tests to Vitest. (#​10723, #​10725, #​10741)
  • Type Refactor: Uses TypeScript utility types to deduplicate literal unions. (#​7520)
  • Repo & CI: Adds CODEOWNERS, switches v1.x releases to an ephemeral release branch, and removes orphaned Bower support. (#​10739, #​10738, #​10746)
  • Changelog Backfill: Added missing version entries to the changelog. (#​10704)
  • Dependencies: Bumped follow-redirects (1.15.111.16.0) in root and docs, axios (1.14.01.15.0) in docs, and a group of 5 development dependencies. (#​10717, #​10716, #​10684, #​10709)

🌟 New Contributors

We are thrilled to welcome our new contributors. Thank you for helping improve axios:

Full Changelog

v1.15.0

Compare Source

Bug Fixes
Features
  • fomdata: added support for spec-compliant FormData & Blob types; (#​5316) (6ac574e)
Contributors to this release
PRs

⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459

1.2.6 (2023-01-28)

Bug Fixes
  • headers: added missed Authorization accessor; (#​5502) (342c0ba)
  • types: fixed CommonRequestHeadersList & CommonResponseHeadersList types to be private in commonJS; (#​5503) (5a3d0a3)
Contributors to this release
PRs

⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459

1.2.5 (2023-01-26)

Bug Fixes
  • types: fixed AxiosHeaders to handle spread syntax by making all methods non-enumerable; (#​5499) (580f1e8)
Contributors to this release
PRs

⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459

1.2.4 (2023-01-22)

Bug Fixes
Contributors to this release
PRs

⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459

1.2.3 (2023-01-10)

Bug Fixes
  • types: fixed AxiosRequestConfig header interface by refactoring it to RawAxiosRequestConfig; (#​5420) (0811963)
Contributors to this release
PRs

⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459

[1.2.2] - 2022-12-29

Fixed
Chores
  • chore(ci): set conventional-changelog header config #​5406
  • chore(ci): fix automatic contributors resolving #​5403
  • chore(ci): improved logging for the contributors list generator #​5398
  • chore(ci): fix release action #​5397
  • chore(ci): fix version bump script by adding bump argument for target version #​5393
  • chore(deps): bump decode-uri-component from 0.2.0 to 0.2.2 #​5342
  • chore(ci): GitHub Actions Release script #​5384
  • chore(ci): release scripts #​5364
Contributors to this release

[1.2.1] - 2022-12-05

Changed
  • feat(exports): export mergeConfig #​5151
Fixed
  • fix(CancelledError): include config #​4922
  • fix(general): removing multiple/trailing/leading whitespace #​5022
  • fix(headers): decompression for responses without Content-Length header #​5306
  • fix(webWorker): exception to sending form data in web worker #​5139
Refactors
  • refactor(types): AxiosProgressEvent.event type to any #​5308
  • refactor(types): add missing types for static AxiosError.from method #​4956
Chores
  • chore(docs): remove README link to non-existent upgrade guide #​5307
  • chore(docs): typo in issue template name #​5159
Contributors to this release
PRs

⚠️ Critical vulnerability fix. See https://security.snyk.io/vuln/SNYK-JS-AXIOS-6032459

[1.2.0] - 2022-11-10

Changed
  • changed: refactored module exports #​5162
  • change: re-added support for loading Axios with require('axios').default #​5225
Fixed
  • fix: improve AxiosHeaders class #​5224
  • fix: TypeScript type definitions for commonjs #​5196
  • fix: type definition of use method on AxiosInterceptorManager to match the the README #​5071
  • fix: __dirname is not defined in the sandbox #​5269
  • fix: AxiosError.toJSON method to avoid circular references #​5247
  • fix: Z_BUF_ERROR when content-encoding is set but the response body is empty #​5250
Refactors
  • refactor: allowing adapters to be loaded by name #​5277
Chores
  • chore: force CI restart #​5243
  • chore: update ECOSYSTEM.md #​5077
  • chore: update get/index.html #​5116
  • chore: update Sandbox UI/UX #​5205
  • chore:(actions): remove git credentials after checkout #​5235
  • chore(actions): bump actions/dependency-review-action from 2 to 3 #​5266
  • chore(packages): bump loader-utils from 1.4.1 to 1.4.2 #​5295
  • chore(packages): bump engine.io from 6.2.0 to 6.2.1 #​5294
  • chore(packages): bump socket.io-parser from 4.0.4 to 4.0.5 #​5241
  • chore(packages): bump loader-utils from 1.4.0 to 1.4.1 #​5245
  • chore(docs): update Resources links in README #​5119
  • chore(docs): update the link for JSON url #​5265
  • chore(docs): fix broken links #​5218
  • chore(docs): update and rename UPGRADE_GUIDE.md to MIGRATION_GUIDE.md #​5170
  • chore(docs): typo fix line #​856 and #​920 #​5194
  • chore(docs): typo fix #​800 #​5193
  • chore(docs): fix typos #​5184
  • chore(docs): fix punctuation in README.md #​5197
  • chore(docs): update readme in the Handling Errors section - issue reference #​5260 #​5261
  • chore: remove \b from filename #​5207
  • chore(docs): update CHANGELOG.md [#​5137](https://redirect.github.com

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 force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch from 6560682 to 857113d Compare January 5, 2026 20:40
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Jan 5, 2026

Note

Reviews paused

It 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 reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review

Walkthrough

Bumped multiple dependency and devDependency versions in package.json (data-driven-forms, PatternFly, axios, react-intl, react-router-dom, yaml, Playwright, Red Hat frontend packages, tsc-transform-imports, ts-jest, type defs). No packages added/removed, and no script or public API changes.

Changes

Cohort / File(s) Summary
Dependency Version Updates
package.json
Updated dependency/devDependency versions: @data-driven-forms/pf4-component-mapper ^4.1.4→^4.1.12, @data-driven-forms/react-form-renderer ^4.1.4→^4.1.11, @patternfly/react-core ^6.4.0→^6.4.1, @patternfly/react-table ^6.4.0→^6.4.1, axios ^1.13.2→^1.13.5, react-intl ^6.6.2→^6.8.9, react-router-dom ^6.30.2→^6.30.3, yaml ^2.8.1→^2.8.2, @playwright/test ^1.56.1→^1.58.2, @redhat-cloud-services/frontend-components-config ^6.7.4→^6.7.51, @redhat-cloud-services/tsc-transform-imports ^1.0.26→^1.0.53, ts-jest ^29.4.5→^29.4.6, @types/react 18.3.27→18.3.28. No script or public API changes.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

🚥 Pre-merge checks | ✅ 2 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Description check ⚠️ Warning PR description lacks required sections: missing 2-3 sentence summary, no RHCLOUD ticket link, no checklist completion status, and contains auto-generated dependency update table instead of clear narrative. Rewrite description following the template: add concise summary of changes and why, include RHCLOUD-XXXXX link, confirm checklist items (accessibility, build/lint/test pass, no unrelated changes), and optionally document any dependency compatibility concerns.
✅ Passed checks (2 passed)
Check name Status Explanation
Title check ✅ Passed The PR title accurately describes the primary change: updating npm dependencies to their minor and patch versions.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch konflux/mintmaker/master/npm-minor-and-patch-dependencies

Comment @coderabbitai help to get the list of available commands and usage tips.

@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch 8 times, most recently from 35e9b7f to 3bcd890 Compare January 8, 2026 00:39
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch 4 times, most recently from 551d65f to d39038a Compare January 20, 2026 20:37
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch 5 times, most recently from 5fa536b to 88e8f23 Compare January 28, 2026 00:37
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch 2 times, most recently from 9bd2036 to 340f242 Compare January 31, 2026 00:45
Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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.

Comment thread package.json Outdated
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch 7 times, most recently from e8385fe to afeec24 Compare February 8, 2026 16:45
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch from afeec24 to 58e2852 Compare February 9, 2026 20:40
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch 7 times, most recently from bd7dcc1 to 5d8c1f0 Compare March 21, 2026 17:16
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch 4 times, most recently from 48660a4 to 7572548 Compare April 1, 2026 21:16
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch 6 times, most recently from f154548 to 1afdd2c Compare April 10, 2026 17:40
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch 3 times, most recently from 5bac78f to 42bf6c3 Compare April 19, 2026 21:17
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch 5 times, most recently from a68b109 to d71ce8c Compare April 24, 2026 21:25
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch 3 times, most recently from ec3f784 to 54d047f Compare May 2, 2026 13:28
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 54d047f to e44bfdc Compare May 2, 2026 21:33
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