Skip to content

chore(deps): update misc - #66

Open
red-hat-konflux-kflux-prd-rh02[bot] wants to merge 1 commit into
masterfrom
konflux/mintmaker/master/misc
Open

chore(deps): update misc#66
red-hat-konflux-kflux-prd-rh02[bot] wants to merge 1 commit into
masterfrom
konflux/mintmaker/master/misc

Conversation

@red-hat-konflux-kflux-prd-rh02

@red-hat-konflux-kflux-prd-rh02 red-hat-konflux-kflux-prd-rh02 Bot commented Aug 1, 2026

Copy link
Copy Markdown

This PR contains the following updates:

Package Change Age Confidence
@types/node (source) 22.19.122.20.1 age confidence
fast-uri 4.0.04.1.1 age confidence
http-proxy-middleware 4.1.14.2.0 age confidence
i18next-cli 1.66.21.67.3 age confidence
shell-quote 1.8.41.10.0 age confidence
vite (source) 8.0.168.1.5 age confidence
yarn (source) 4.13.04.17.1 age confidence

Release Notes

fastify/fast-uri (fast-uri)

v4.1.1

Compare Source

⚠️ Security Release

Fix for GHSA-v2hh-gcrm-f6hx

Full Changelog: fastify/fast-uri@v4.1.0...v4.1.1

v4.1.0

Compare Source

What's Changed

  • fix: normalize percent-encoding in query and fragment (RFC 3986 §6.2.2) by @​spokodev in #​183
  • fix: preserve trailing empty path segment in removeDotSegments (RFC 3986 §5.2.4) by @​spokodev in #​185

Full Changelog: fastify/fast-uri@v4.0.1...v4.1.0

v4.0.1

Compare Source

⚠️ Security Release

What's Changed

New Contributors

Full Changelog: fastify/fast-uri@v4.0.0...v4.0.1

chimurai/http-proxy-middleware (http-proxy-middleware)

v4.2.0

Compare Source

  • feat(types): export OnProxyEvent type
  • feat(debug-proxy-errors-plugin): diagnostic message for POST + bodyParser + ECONNRESET error
  • chore(package.json): update to httpxy v0.5.4
i18next/i18next-cli (i18next-cli)

v1.67.3

Compare Source

  • feat(lint): new opt-in lint.checkPunctuationConcatenation flags punctuation glued
    onto a translation, e.g. <label><Trans>Email</Trans>:</label> or
    <div>- <Trans>item</Trans></div>. Punctuation spacing and form differ across
    languages (French needs a narrow no-break space before :, CJK uses fullwidth ,
    RTL reorders), so it belongs inside the translation or in semantic markup. Accepts
    the same values as checkConcatenation ('warn' / 'error' / 'off' / boolean)
    and defaults to 'off', since keeping punctuation out of a translation is often
    deliberate. Individual occurrences can be suppressed with the
    i18next-instrument-ignore directive
    (#​275).

v1.67.2

Compare Source

  • fix(lint): broaden the checkConcatenation JSX detection to flag any ≥2 adjacent
    translation units rendered as direct siblings — a <Trans> component or a
    {t(...)} expression. This now catches <Trans>…</Trans>{t('…')},
    {t('a')}{t('b')} and two <Trans> separated only by whitespace, in addition to
    the previous "<Trans> … text … <Trans>" case. Single translations next to
    plain literal text or punctuation are still not flagged
    (#​275).

v1.67.1

Compare Source

  • feat(lint): lint.checkConcatenation now accepts a severity level in addition to
    a boolean: 'error' reports concatenation issues as errors so the lint command
    exits non-zero (fails CI), 'warn' (or true, the default) reports them as
    non-failing warnings, and 'off' (or false) disables the check. Previously the
    concatenation check could only warn; making it fail the build required a custom
    plugin (#​275).

v1.67.0

Compare Source

  • feat(lint): detect string concatenation involving translated strings, an i18n
    anti-pattern that breaks in languages which reorder or inflect the pieces. The
    linter now flags JavaScript concatenation where an operand is a t() call
    (e.g. t('greeting') + ', ' + name) and sentences split across multiple
    <Trans> components joined by literal text
    (e.g. <p><Trans>…</Trans> and <Trans>…</Trans></p>). It deliberately does not
    flag t() used only as a nested call argument (e.g. arr.indexOf(t('x')) + 1)
    or concatenation inside t() arguments (e.g. t('prefix.' + suffix)). Enabled
    by default; disable with lint.checkConcatenation: false
    (#​275).
  • feat(lint): lint issues now carry an optional severity ('error' | 'warning').
    Concatenation issues are reported as warnings — they are printed but do not
    fail the run (the lint command exits non-zero only when there are errors), so
    adding this check does not break existing CI pipelines. Hardcoded-string and
    interpolation issues remain errors. Plugins may set severity on the issues
    they emit (defaults to 'error' when omitted).
ljharb/shell-quote (shell-quote)

v1.10.0

Compare Source

Merged
  • [New] parse: add opt-in splitUnquoted option for shell field-splitting of unquoted expansions #1
Commits
  • [Fix] parse: match nested ${...} braces so nested parameter expansion is consumed as one substitution c0842c8
  • [Tests] parse: pin single-quote literalness and unmatched-quote handling a0d03e3
  • [readme] remove the space in js code fences so evalmd evaluates them 2116fa3
  • [Tests] quote: pin conservative escaping of =, @, ^, ,, :, ! (#​11) 1c36f3f
  • [readme] document that quote outputs POSIX quoting, not cmd.exe/PowerShell 100e96e
  • [readme] document parse's supported parameter-expansion subset e1c75cd
  • [Fix] parse: a backslash inside single quotes must not escape the closing quote 5d460a3
  • [readme] fix stale example outputs 2de86f5
  • [Tests] quote: pin that a backslash with whitespace is not doubled in single quotes (#​14) 190e236
  • [readme] quote: use output verbatim; do not re-quote it (#​11) 1b36468
  • [Refactor] parse: fix swapped SINGLE_QUOTE/DOUBLE_QUOTE variable names 801af5c
  • [types] fix an error TS v6 ignores but v7 fails on 59bbf8b
  • [Dev Deps] update @arethetypeswrong/cli, evalmd a04d475
  • [Dev Deps] update @arethetypeswrong/ci, eslint d390f9a
  • [Tests] quote: the tilde test escapes every ~, not just a leading one (#​9) 617d119

v1.9.0

Compare Source

Commits
  • [New] add types dca6e21
  • [Dev Deps] update eslint 9aa9e8f
  • [Fix] parse: finalize tokens in linear time (GHSA-395f-4hp3-45gv) 7ff5488
  • [actions] update workflows 75e8497
  • [actions] Windows + node 4/6/7: pin eslint to 9 before install, since npm 2/3 cannot stage eslint 10@types/esrecurse 3fb739d
  • [actions] retry npm install on Windows to survive npm 2/3 staging-rename flake abe0163
  • [actions] Windows + node 5/7: install deps with a modern node b4bafa2
  • [Fix] quote: escape leading ~ to prevent shell tilde-expansion 7a76c1a
  • [Dev Deps] update auto-changelog, tape 7184b44
  • [Dev Deps] apparently jackspeak is no longer in the graph 9ba368a
vitejs/vite (vite)

v8.1.5

Compare Source

Bug Fixes
  • bundled-dev: avoid duplicated buildEnd (#​22931) (8100320)
  • client: overlay error message format align rolldown (#​22869) (5a72b87)
  • deps: update all non-major dependencies (#​22921) (fef682d)
  • deps: update rolldown-related dependencies (#​22922) (3c345e4)
  • module-runner: don't crash stack-trace source mapping when globalThis.Buffer is absent (#​22945) (f8b38e3)
  • optimizer: respect importer module format for dynamic import interop with CJS deps (#​22951) (6c08c39)
  • ssr: scope switch-case declarations to the switch, not the function (#​22893) (b59a73f)
Documentation
Tests

v8.1.4

Compare Source

Features
Bug Fixes
Documentation
Miscellaneous Chores
Code Refactoring
Tests
Build System

v8.1.3

Compare Source

Bug Fixes

v8.1.2

Compare Source

Bug Fixes

v8.1.1

Compare Source

Features
Bug Fixes
Miscellaneous Chores
Code Refactoring
  • css: remove lightningcss null byte bug workaround (#​22822) (2dafd3b)
  • use pre-defined environments variable to avoid duplicate Object.values calls (#​22790) (1113acf)
Tests
  • enable "manual chunk path" test and remove "worker.format error" test (#​22824) (c088511)

v8.1.0

Compare Source

Features
Bug Fixes
Code Refactoring
yarnpkg/berry (yarn)

v4.17.1: v4.17.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/yarnpkg/berry/compare/@yarnpkg/cli/4.17.0...@​yarnpkg/cli/4.17.1

v4.17.0: v4.17.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/yarnpkg/berry/compare/@yarnpkg/cli/4.16.0...@​yarnpkg/cli/4.17.0

v4.16.0: v4.16.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/yarnpkg/berry/compare/@yarnpkg/cli/4.15.0...@​yarnpkg/cli/4.16.0

v4.15.0: v4.15.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/yarnpkg/berry/compare/@yarnpkg/cli/4.14.1...@​yarnpkg/cli/4.15.0

v4.14.1: v4.14.1

Compare Source

What's Changed

  • fix: Widen EBADF fstat version gate to include Node 24.15+ by @​rfoel in #​7104

New Contributors

Full Changelog: https://github.com/yarnpkg/berry/compare/@yarnpkg/cli/4.14.0...@​yarnpkg/cli/4.14.1

v4.14.0: v4.14.0

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/yarnpkg/berry/compare/@yarnpkg/cli/4.13.0...@​yarnpkg/cli/4.14.0


Configuration

📅 Schedule: (in timezone UTC)

  • Branch creation
    • "before 7am"
  • 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.

Signed-off-by: red-hat-konflux-kflux-prd-rh02 <190377777+red-hat-konflux-kflux-prd-rh02[bot]@users.noreply.github.com>
@openshift-ci
openshift-ci Bot requested review from matejvasek and twoGiants August 1, 2026 04:07
@openshift-ci

openshift-ci Bot commented Aug 1, 2026

Copy link
Copy Markdown

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: red-hat-konflux-kflux-prd-rh02[bot]
Once this PR has been reviewed and has the lgtm label, please assign cragsmann for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-ci openshift-ci Bot added the needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. label Aug 1, 2026
@openshift-ci

openshift-ci Bot commented Aug 1, 2026

Copy link
Copy Markdown

Hi @red-hat-konflux-kflux-prd-rh02[bot]. Thanks for your PR.

I'm waiting for a openshift member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work.

Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants