Skip to content

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

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#207
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 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.60.0 age confidence devDependencies minor
@redhat-cloud-services/frontend-components-config (source) ^6.8.3^6.10.1 age confidence devDependencies minor
@redhat-cloud-services/tsc-transform-imports (source) ^1.0.26^1.1.1 age confidence devDependencies minor
@scalprum/core ^0.9.0^0.9.2 age confidence dependencies patch
@scalprum/react-core ^0.11.1^0.11.2 age confidence dependencies patch
@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.4 age confidence devDependencies minor
@types/react (source) 18.3.2718.3.28 age confidence devDependencies patch
axios (source) ^1.13.2^1.16.1 age confidence dependencies minor
msw (source) 2.12.102.14.6 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.9.0 age confidence dependencies minor

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

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

Compare Source

v6.10.0

Compare Source

v6.9.2

Compare Source

v6.9.1

Compare Source

v6.9.0

Compare Source

v6.8.4

Compare Source

scalprum/scaffolding (@​scalprum/core)

v0.9.2

Compare Source

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

v0.24.4

Compare Source

🐛 Bug Fix
Authors: 1

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

Compare 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

  • Prototype Pollution Defence-in-Depth: Hardened formDataToJSON against already-polluted Object.prototype by walking own properties only, so attacker-controlled keys inherited from a poisoned prototype cannot propagate through deserialization. (#​7413)
  • Proxy Cleartext Leak: Fixed an issue where HTTPS request data could be transmitted in cleartext to an HTTP proxy under certain configurations. (#​10858)
  • CI Cache Removal: Removed all GitHub Actions caches as a defence-in-depth measure against cache poisoning vectors in the build pipeline. (#​10882)

🐛 Bug Fixes

  • Data URI Parsing: Updated the fromDataURI regex to match RFC 2397 more strictly, fixing edge cases in data: URL handling. (#​10829)
  • Unicode Headers: Preserved Unicode header values when running through request interceptors, so non-ASCII header content is no longer corrupted before dispatch. (#​10850)
  • XHR Upload Progress: Guarded against malformed ProgressEvent payloads emitted by some environments during XHR upload, preventing crashes when loaded / total are missing or invalid. (#​10868)
  • Webpack 4 Fetch Adapter: Fixed an "unexpected token" error caused by syntax in the fetch adapter that Webpack 4 could not parse, restoring compatibility for legacy bundler users. (#​10864)
  • Type Definitions: Made parseReviver context.source optional in the type definitions to align with the ES2023 specification. (#​10837)
  • URL Object Support Reverted: Reverted the change that allowed passing a URL object as config.url (originally #​10866) due to regressions; this support will be reintroduced in a later release once the underlying issues are addressed. (#​10874)

🔧 Maintenance & Chores

  • Cycle Detection Refactor: Replaced the array-based cycle tracker in toJSONObject with a WeakSet, improving performance and memory behaviour on large nested structures. (#​10832)
  • composeSignals Cleanup: Refactored composeSignals to use a clearer early-return structure, simplifying the cancellation/abort composition path. (#​10844)
  • AI Readiness & Repo Docs: Added AGENTS.md and related contributor-guide updates for both human and AI agents, plus post-release documentation improvements. (#​10835, #​10841)
  • Docs Improvements: Clarified the GET request example, fixed the interceptor eject example to reference the correct instance, and corrected the Buzzoid sponsor description in the README. (#​10836, #​10853, #​10856)
  • Sponsorship Tooling: Fixed empty sponsor arrays in the sponsor processing script, added the ability to inject additional sponsors, updated the sponsorship link, and added a Twicsy advertisement entry. (#​10843, #​10859, #​10869)
  • Dependencies: Bumped @commitlint/cli from 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.0

Compare Source

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.

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.

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
  • chore: add sideEffects false to package.json #​5025
Contributors to this release
PRs

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

[1.1.3] - 2022-10-15

Added
  • Added custom params serializer support #​5113
Fixed
  • Fixed top-level export to keep them in-line with static properties #​5109
  • Stopped including null values to query string. #​5108
  • Restored proxy config backwards compatibility with 0.x #​5097
  • Added back AxiosHeaders in AxiosHeaderValue #​5103
  • Pin CDN install instructions to a specific version #​5060
  • Handling of array values fixed for AxiosHeaders #​5085
Chores
  • docs: match badge style, add link to them #​5046
  • chore: fixing comments typo #​5054
  • chore: update issue template #​5061
  • chore: added progress capturing section to the docs; #​5084
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.


  • 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 template structure with missing critical sections like issue link, screenshots guidance, reviewer notes, and checklist. Add RHCLOUD issue link, clarify N/A for screenshots (non-visual change), document any testing requirements, and complete the pre-merge checklist with accessibility and testing confirmations.
✅ 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 5 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 5 times, most recently from e44bfdc to e6a7e95 Compare May 4, 2026 19:26
@red-hat-konflux red-hat-konflux Bot force-pushed the konflux/mintmaker/master/npm-minor-and-patch-dependencies branch from e6a7e95 to 55f7cb8 Compare May 7, 2026 13:33
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
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