Skip to content

chore(deps): update node-based dev tools#92

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/node-based-dev-tools
Open

chore(deps): update node-based dev tools#92
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/node-based-dev-tools

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Apr 1, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@lerna-lite/cli (source) 4.10.55.2.1 age confidence
@lerna-lite/publish (source) 4.10.55.2.1 age confidence
@lerna-lite/version (source) 4.10.55.2.1 age confidence
jsdom 27.4.029.1.1 age confidence
publint (source) 0.3.160.3.21 age confidence
tsdown (source) 0.18.40.22.0 age confidence

Release Notes

lerna-lite/lerna-lite (@​lerna-lite/cli)

v5.2.1

Compare Source

Note: Version bump only for package @​lerna-lite/cli

v5.2.0

Compare Source

Features

v5.1.0

Compare Source

Features

v5.0.0

Compare Source

[!NOTE]
Please visit the v5.0.0 release for more details about the migration.

⚠ BREAKING CHANGES
  • use native import.meta.dirname/filename (#​1302)
  • build: use module --nodenext instead of bundler/esnext (#​1301)
  • bump NodeJS requirement to Node v22.17 (#​1299)
  • remove deprecated code --remove-package-fields (#​1295)
Code Refactoring

v4.11.5

Compare Source

Note: Version bump only for package @​lerna-lite/cli

v4.11.4

Compare Source

Note: Version bump only for package @​lerna-lite/cli

v4.11.3

Compare Source

Note: Version bump only for package @​lerna-lite/cli

v4.11.2

Compare Source

Note: Version bump only for package @​lerna-lite/cli

v4.11.0

Compare Source

✨ Features
lerna-lite/lerna-lite (@​lerna-lite/publish)

v5.2.1

Compare Source

Bug Fixes

v5.2.0

Compare Source

Features

v5.1.0

Compare Source

Note: Version bump only for package @​lerna-lite/publish

v5.0.0

Compare Source

[!NOTE]
Please visit the v5.0.0 release for more details about the migration.

⚠ BREAKING CHANGES
  • use native import.meta.dirname/filename (#​1302)
  • bump NodeJS requirement to Node v22.17 (#​1299)
  • remove deprecated code --remove-package-fields (#​1295)
  • core: replace tinyrainbow with native util.styleText() (#​1293)
Bug Fixes
Code Refactoring

v4.11.5

Compare Source

Bug Fixes

v4.11.4

Compare Source

Bug Fixes

v4.11.3

Compare Source

Bug Fixes

v4.11.2

Compare Source

Bug Fixes

v4.11.1

Compare Source

🐞 Bug Fixes

v4.11.0

Compare Source

Note: Version bump only for package @​lerna-lite/publish

lerna-lite/lerna-lite (@​lerna-lite/version)

v5.2.1

Compare Source

Bug Fixes

v5.2.0

Compare Source

Features

v5.1.0

Compare Source

Bug Fixes

v5.0.0

Compare Source

[!NOTE]
Please visit the v5.0.0 release for more details about the migration.

⚠ BREAKING CHANGES
  • use native import.meta.dirname/filename (#​1302)
  • bump NodeJS requirement to Node v22.17 (#​1299)
  • drop conventional-changelog legacy API for local preset file (#​1296)
  • core: replace tinyrainbow with native util.styleText() (#​1293)
Bug Fixes
Code Refactoring

v4.11.5

Compare Source

Bug Fixes

v4.11.4

Compare Source

Bug Fixes

v4.11.3

Compare Source

Note: Version bump only for package @​lerna-lite/version

v4.11.2

Compare Source

Bug Fixes

v4.11.1

Compare Source

🐞 Bug Fixes

v4.11.0

Compare Source

✨ Features
jsdom/jsdom (jsdom)

v29.1.1

Compare Source

v29.1.0

Compare Source

v29.0.2

Compare Source

  • Significantly improved and sped up getComputedStyle(). Computed value rules are now applied across a broader set of properties, and include fixes related to inheritance, defaulting keywords, custom properties, and color-related values such as currentcolor and system colors. (@​asamuzaK)
  • Fixed CSS 'background' and 'border' shorthand parsing. (@​asamuzaK)

v29.0.1

Compare Source

v29.0.0

Compare Source

Breaking changes:

  • Node.js v22.13.0+ is now the minimum supported v22 version (was v22.12.0+).

Other changes:

  • Overhauled the CSSOM implementation, replacing the @acemir/cssom and cssstyle dependencies with fresh internal implementations built on webidl2js wrappers and the css-tree parser. Serialization, parsing, and API behavior is improved in various ways, especially around edge cases.
  • Added CSSCounterStyleRule and CSSNamespaceRule to jsdom Windows.
  • Added cssMediaRule.matches and cssSupportsRule.matches getters.
  • Added proper media query parsing in MediaList, using css-tree instead of naive comma-splitting. Invalid queries become "not all" per spec.
  • Added cssKeyframeRule.keyText getter/setter validation.
  • Added cssStyleRule.selectorText setter validation: invalid selectors are now rejected.
  • Added styleSheet.ownerNode, styleSheet.href, and styleSheet.title.
  • Added bad port blocking per the fetch specification, preventing fetches to commonly-abused ports.
  • Improved Document initialization performance by lazily initializing the CSS selector engine, avoiding ~0.5 ms of overhead per Document. (thypon)
  • Fixed a memory leak when stylesheets were removed from the document.
  • Fixed CSSStyleDeclaration modifications to properly trigger custom element reactions.
  • Fixed nested @media rule parsing.
  • Fixed CSSStyleSheet's "disallow modification" flag not being checked in all mutation methods.
  • Fixed XMLHttpRequest's response getter returning parsed JSON during the LOADING state instead of null.
  • Fixed getComputedStyle() crashing in XHTML documents when stylesheets contained at-rules such as @page or @font-face.
  • Fixed a potential hang in synchronous XMLHttpRequest caused by a race condition with the worker thread's idle timeout.

v28.1.0

Compare Source

  • Added blob.text(), blob.arrayBuffer(), and blob.bytes() methods.
  • Improved getComputedStyle() to account for CSS specificity when multiple rules apply. (asamuzaK)
  • Improved synchronous XMLHttpRequest performance by using a persistent worker thread, avoiding ~400ms of setup overhead on every synchronous request after the first one.
  • Improved performance of node.getRootNode(), node.isConnected, and event.dispatchEvent() by caching the root node of document-connected trees.
  • Fixed getComputedStyle() to correctly handle !important priority. (asamuzaK)
  • Fixed document.getElementById() to return the first element in tree order when multiple elements share the same ID.
  • Fixed <svg> elements to no longer incorrectly proxy event handlers to the Window.
  • Fixed FileReader event timing and fileReader.result state to more closely follow the spec.
  • Fixed a potential hang when synchronous XMLHttpRequest encountered dispatch errors.
  • Fixed compatibility with environments where Node.js's built-in fetch() has been used before importing jsdom, by working around undici v6/v7 incompatibilities.

v28.0.0

Compare Source

  • Overhauled resource loading customization. See the new README for details on the new API.
  • Added MIME type sniffing to <iframe> and <frame> loads.
  • Regression: WebSockets are no longer correctly throttled to one connection per origin. This is a result of the bug at nodejs/undici#4743.
  • Fixed decoding of the query components of <a> and <area> elements in non-UTF-8 documents.
  • Fixed XMLHttpRequest fetches and WebSocket upgrade requests to be interceptable by the new customizable resource loading. (Except synchronous XMLHttpRequests.)
  • Fixed the referrer of a document to be set correctly when redirects are involved; it is now the initiating page, not the last hop in the redirect chain.
  • Fixed correctness bugs when passing ArrayBuffers or typed arrays to various APIs, where they would not correctly snapshot the data.
  • Fixed require("url").parse() deprecation warning when using WebSockets.
  • Fixed <iframe>, <frame>, and <img> (when canvas is installed) to fire load events, not error events, on non-OK HTTP responses.
  • Fixed many small issues in XMLHttpRequest.
publint/publint (publint)

v0.3.21

Compare Source

Patch Changes
  • Suggest adding "sideEffects": false when bundler-oriented package fields or conditions are detected and the field is missing. (#​228)

v0.3.20

Compare Source

Patch Changes
  • Suggest adding engines.node when it is missing from detected Node.js packages (#​226)

  • Loosen "breaking change" wording in lint messages (7bb3f4f)

v0.3.19

Compare Source

Patch Changes
  • Add NESTED_PACKAGE_JSON_FIELD_IGNORED to warn when published nested package.json files define "exports" or "imports", which Node.js ignores outside the package root. (#​224)

  • Fix internal browser directory traversal logic (#​224)

v0.3.18

Compare Source

Patch Changes
  • Fix deprecated subpath mapping check crash and make getPkgPathValue from publint/utils return undefined if the path is invalid (ad2aa9c)

v0.3.17

Compare Source

Patch Changes
rolldown/tsdown (tsdown)

v0.22.0

Compare Source

   🚨 Breaking Changes
  • Drop Node.js < 22.18.0 support, make unrun optional, add tsx config loader  -  by @​sxzz (a1042)
  • dts: Auto-enable dts when tsconfig declaration is true  -  by @​sxzz in #​872 (085f0)
  • publint: Use pkg from publint results, require publint v0.3.8+  -  by @​sxzz (413bb)
   🚀 Features
   🐞 Bug Fixes

🔄 Migration Guide

Node.js version

Upgrade to Node.js 22.18.0 or later. Bun and Deno remain supported (experimental).

unrun is no longer bundled

If your environment relies on the unrun config loader (i.e. you're on a Node version without native TypeScript support and use the default auto loader), install it manually:

npm i -D unrun

# or, alternatively, the new tsx loader:
npm i -D tsx

If you use Node.js 22.18.0+ with native TypeScript support, no change is needed — the auto loader will pick native.

dts auto-enabled from tsconfig

If your tsconfig.json has compilerOptions.declaration: true but you do not want tsdown to emit .d.ts files, opt out explicitly:

// tsdown.config.ts
export default defineConfig({
  dts: false,
})
exports.bin auto-detection

Any entry chunk containing a shebang (e.g. #!/usr/bin/env node) now causes tsdown to write a bin field in package.json automatically. The semantics differ slightly from explicit bin: true:

Value Single shebang Multiple shebangs No shebangs
(unset) Auto-set bin Warn, skip Silent
true Auto-set bin Throw Warn
false No bin No bin No bin

To opt out entirely:

export default defineConfig({
  exports: { bin: false },
})
Links

v0.21.10

Compare Source

   🚀 Features
    View changes on GitHub

v0.21.9

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.21.8

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.21.7

Compare Source

   🚀 Features
  • Add module option for attw and publint to allow passing imported modules directly  -  by @​sxzz (31e90)
   🐞 Bug Fixes
  • deps: Add skipNodeModulesBundle dep subpath e2e tests and fix docs  -  by @​sxzz (deff7)
    View changes on GitHub

v0.21.6

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.21.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.21.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
  • exports: Preserve CRLF line endings in package.json  -  by @​sxzz (a4d4e)
    View changes on GitHub

v0.21.3

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.21.2

Compare Source

   🚨 Breaking Changes
  • exe: Add exe.outDir for separate executable output dir, defaults to build  -  by @​sxzz (d49ef)

Note: Executable is still an experimental feature and does not follow SemVer. Breaking changes may occur in any release.

   🚀 Features
   🐞 Bug Fixes
  • css: Skip data URIs and external URLs in CSS url() rebasing  -  by @​sxzz (13907)
    View changes on GitHub

v0.21.1

Compare Source

   🚨 Breaking Changes

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, on day 1 of the month (* 0-3 1 * *)
  • 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 a team as a code owner April 1, 2026 01:48
@renovate renovate Bot added the dependencies Update dependencies label Apr 1, 2026
@renovate renovate Bot force-pushed the renovate/node-based-dev-tools branch 3 times, most recently from 2bdfb03 to dcaebc3 Compare April 7, 2026 05:38
@renovate renovate Bot force-pushed the renovate/node-based-dev-tools branch 2 times, most recently from 7429f32 to 9cfc6db Compare April 13, 2026 18:42
@renovate renovate Bot force-pushed the renovate/node-based-dev-tools branch 3 times, most recently from f03d103 to 0080504 Compare April 22, 2026 21:44
@renovate renovate Bot force-pushed the renovate/node-based-dev-tools branch 5 times, most recently from 800905e to cfe04a2 Compare May 1, 2026 14:55
@renovate renovate Bot force-pushed the renovate/node-based-dev-tools branch 3 times, most recently from b92556a to e34ffa8 Compare May 8, 2026 12:47
@renovate renovate Bot force-pushed the renovate/node-based-dev-tools branch from e34ffa8 to cefc6d6 Compare May 12, 2026 14:50
@renovate renovate Bot force-pushed the renovate/node-based-dev-tools branch from cefc6d6 to 2092c76 Compare May 13, 2026 02:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Update dependencies

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants