Skip to content

chore(deps): update all non-major dependencies - #1526

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch
Open

chore(deps): update all non-major dependencies#1526
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all-minor-patch

Conversation

@renovate

@renovate renovate Bot commented Sep 7, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@antfu/eslint-config ^9.3.0^9.5.1 age confidence
clickable-path ^0.1.0^0.1.1 age confidence
confbox ^0.2.4^0.3.1 age confidence
eslint (source) ^10.9.1^10.10.0 age confidence
eslint-plugin-jsdoc 64.3.264.3.6 age confidence
knip (source) ^6.33.0^6.34.0 age confidence
pkg-types ^2.3.1^2.3.2 age confidence
rc9 ^3.0.1^3.1.0 age confidence
tinyexec ^1.3.0^1.3.1 age confidence
tsdown (source) ^0.22.14^0.23.0 age confidence
undici (source) ^8.10.0^8.10.2 age confidence
vue-router (source) ^5.3.0^5.3.1 age confidence
vue-router (source) 5.3.05.3.1 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

antfu/eslint-config (@​antfu/eslint-config)

v9.5.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v9.5.0

Compare Source

   🚀 Features
    View changes on GitHub

v9.4.1

Compare Source

   🚀 Features
  • pnpm: Enforce new-line style for pnpm-workspace.yaml  -  by @​antfu (ab400)
    View changes on GitHub

v9.4.0

Compare Source

   🚀 Features
    View changes on GitHub
danielroe/clickable-path (clickable-path)

v0.1.1

Compare Source

v0.1.1 is the next minor release.

👉 Changelog

compare changes

🚀 Enhancements
  • add generic hyperlink() export (#​25)
🤖 CI
  • add explicit permissions (#​21)
❤️ Contributors
eslint/eslint (eslint)

v10.10.0

Compare Source

gajus/eslint-plugin-jsdoc (eslint-plugin-jsdoc)

v64.3.6

Compare Source

Bug Fixes
  • no-unnecessarry-type-assertion: avoid treating as redundant object annotations which clarify method argument types (342b6f6)
  • no-unnecessary-type-assertion: handle array literal annotations whose element type is a literal or union of literals narrowing element type (543b24f)

v64.3.5

Compare Source

Bug Fixes
  • no-unnecessary-type-assertion: don't flag array-to-tuple assertions; add preferConstToLiteralTuples (8546f77), closes #​1756

v64.3.4

Compare Source

Bug Fixes
  • require-asterisk-prefix: avoid crashing on custom languages (8f78214)

v64.3.3

Compare Source

Bug Fixes
  • convert-to-jsdoc-comments: handle "any" context and avoid extra line break when there is already multiline text; fixes #​1747 (ca2668b)
  • no-blank-block-descriptions: strip out initial line breaks when text is present (with or without tags); fixes #​1748 (0ad1ae2)
webpro-nl/knip (knip)

v6.34.0: Release 6.34.0

Compare Source

unjs/rc9 (rc9)

v3.1.0

Compare Source

compare changes

🚀 Enhancements
  • Create target directory when writing config (#​185)
  • Export userConfigDir (#​186)
🏡 Chore
❤️ Contributors
tinylibs/tinyexec (tinyexec)

v1.3.1

Compare Source

What's Changed

  • chore(deps-dev): bump the development-dependencies group across 1 directory with 4 updates by @​dependabot[bot] in #​163
  • chore(deps-dev): bump the development-dependencies group with 2 updates by @​dependabot[bot] in #​165
  • fix: resolve node_modules/.bin from nodeOptions.cwd instead of current process cwd by @​iiroj in #​166
  • chore(deps-dev): bump the development-dependencies group with 4 updates by @​dependabot[bot] in #​167
  • chore(deps-dev): bump the development-dependencies group with 3 updates by @​dependabot[bot] in #​171

Full Changelog: tinylibs/tinyexec@1.3.0...1.3.1

rolldown/tsdown (tsdown)

v0.23.0

Compare Source

   🧭 Migration Guide

Most users can upgrade directly. Before upgrading, run one final build with tsdown@0.22.14 and resolve all deprecation warnings.

  • config:
    • bundle: falseunbundle: true; bundle: true can be removed
    • outExtensionoutExtensions
    • publicDir / --public-dircopy / --copy
    • removeNodeProtocol: truenodeProtocol: 'strip'
    • injectStylecss.inject
  • deps:
    • inlineOnly / deps.onlyAllowBundledeps.onlyBundle
    • skipNodeModulesBundle: truedeps.neverBundle: true
    • resolveDepSubpath now defaults to false; set it to true to preserve the previous behavior
  • dts:
    • Select a generator with dts.generator, for example { generator: 'oxc' }
    • dts.cjsReexport was removed; dual-format builds now generate CJS declarations in a separate pass
  • attw:
    • The default profile changed from strict to esm-only; set profile: 'strict' to preserve the previous checks
  • programmatic API:
    • build() now returns { bundles, watch }; replace const bundles = await build() with const { bundles } = await build()
  • requirements:
    • Node.js 25 is no longer supported; use ^22.18.0, ^24.11.0, or >=26.0.0
    • The packages no longer publish legacy types and typesVersions fallbacks; use TypeScript’s bundler, node16, or nodenext module resolution
   🚨 Breaking Changes
   🚀 Features
   🐞 Bug Fixes
   🏎 Performance
    View changes on GitHub
nodejs/undici (undici)

v8.10.2

Compare Source

⚠️ Security fixes
High severity
  • GHSA-vp8m-p9jh-q5pm: cache and deduplication interceptors could use caller-controlled request metadata instead of the authoritative dispatcher origin, enabling cross-origin cache poisoning and data disclosure. Undici now derives interceptor identities from the dispatcher origin and bypasses origin-dependent interceptors when no authoritative origin exists. Fixed by caf6194d.
  • GHSA-w293-vg96-wgc3: BalancedPool could drop function-valued connection options while cloning its configuration, including custom TLS certificate validation callbacks. Undici now preserves connect and legacy tls options when creating upstreams. Fixed by 8f5868fb.
  • GHSA-rfgv-xxqx-mfg5: a WebSocket server could select a subprotocol when none was requested, causing an uncaught TypeError that could terminate the process. Undici now rejects the handshake with protocol error 1002. Fixed by 66e12816.
Medium severity
  • GHSA-3wwx-pv8p-q78v: a malformed permessage-deflate payload exceeding the configured decompression limit could emit an unhandled zlib error and terminate the process. Undici now destroys the inflater after reaching the limit. Fixed by 4411a238.
  • GHSA-rx4f-c7p8-82vq: an unclean WebSocketStream close could create an unobserved rejected promise when its writable stream was locked, potentially terminating the process. Undici now propagates the failure through the retained writable stream controller. Fixed by 662d0ea6.
  • GHSA-2jfj-6hjv-fm6j: shared caches could store and replay responses containing Set-Cookie, disclosing one user's cookies to another caller. Undici now excludes these responses from shared caches, including existing entries and revalidation paths. Fixed by cb75bbb3.
  • GHSA-3xpg-4rpp-hhhm: the decompression interceptor did not bound decoded output, allowing compressed responses to consume excessive memory. Undici now limits every decompression stage to 64 MiB by default and supports a configurable maxSize. Fixed by 7aac7f12.
  • GHSA-pmjh-fq2x-6v4x: a terminal retry failure after response headers were exposed could orphan the original response body, causing consumers to hang indefinitely. Undici now propagates the terminal error to the exposed body. Fixed by e905b5b8.
Low severity
  • GHSA-8436-99hf-9mmv: cache interceptors could store and replay responses to unsafe HTTP methods such as POST or DELETE. Undici now restricts cache reads and writes to safe methods while preserving invalidation by successful unsafe requests. Fixed by 2be07bf9.
  • GHSA-2gqq-gqf2-x968: the dump interceptor could treat an oversized chunked response as successfully truncated when no Content-Length was present. Undici now enforces maxSize against received bytes and aborts oversized responses. Fixed by 6d583124.
  • GHSA-r53p-7pc4-xj5r: the retry interceptor could concatenate a resumed response with inconsistent framing into downstream output, enabling response splitting or corruption. Undici now validates Content-Range against the original response framing before resuming. Fixed by 0160a719.
What's Changed
New Contributors

Full Changelog: nodejs/undici@v8.10.1...v8.10.2

v8.10.1

Compare Source

vuejs/router (vue-router)

v5.3.1

Compare Source

   🐞 Bug Fixes
  • experimental: Handle non-string params for isActive  -  by @​posva (92cfd)
    View changes on GitHub

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "on Monday"
  • 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

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot requested a review from danielroe as a code owner September 7, 2026 03:58
@socket-security

socket-security Bot commented Sep 7, 2026

Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Addedconfbox@​0.3.11001001009080
Addedrc9@​3.1.0991001008780
Updatedtsdown@​0.22.14 ⏵ 0.23.09810088 +198 +1100
Addedpkg-types@​2.3.210010010089100
Updatedclickable-path@​0.1.0 ⏵ 0.1.190 +610099 +190 +2100
Updatedvue-router@​5.3.0 ⏵ 5.3.1911009795 +2100
Addedtinyexec@​1.3.110010010092100
Addedundici@​8.10.29310010097100
Updatedknip@​6.33.0 ⏵ 6.34.099 +110095 +196100
Updated@​antfu/​eslint-config@​9.3.0 ⏵ 9.5.19610010096 +4100
Updatedeslint@​10.9.1 ⏵ 10.10.097 +110010097 +2100

View full report

@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 7404d51 to 29c562e Compare September 7, 2026 08:35
@renovate
renovate Bot force-pushed the renovate/all-minor-patch branch from 29c562e to 57abd70 Compare September 7, 2026 10:30
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