Update dependency @node-minify/core to v11 #325

Open
renovate-bot wants to merge 1 commit from renovate/node-minify-core-11.x into develop
Collaborator

This PR contains the following updates:

Package Type Update Change
@node-minify/core (source) devDependencies major ^10.5.0^11.0.0

Release Notes

srod/node-minify (@​node-minify/core)

v11.0.0

Compare Source

Major Changes
  • 1a1be73: v11: cleanup major release.
Breaking changes
  • Minimum Node.js is now 22: engines.node moved from >=20.0.0 to >=22.0.0 across all packages. Node 20 reached end-of-life on 2026-04-30 and is no longer covered by CI (the test matrix runs 22.x and 24.x). Upgrade to Node 22 or later.
  • Removed 5 deprecated compressor packages: @node-minify/babel-minify, @node-minify/uglify-es, @node-minify/yui, @node-minify/sqwish, @node-minify/crass. Use the recommended replacements (terser/oxc/swc/esbuild for JS, lightningcss/cssnano for CSS).
  • Removed @node-minify/run: internal Java/process-spawn helper, no longer used by any compressor.
  • Removed deprecated type aliases from @node-minify/types: CompressorReturnType (use CompressorResult) and MinifyOptions (use Settings).
  • Google Closure Compiler now uses the google-closure-compiler npm API instead of invoking the Java JAR through @node-minify/run. Same flags and output. Note: the npm package still bundles google-closure-compiler-java, so Java may still be invoked under the hood — this change removes node-minify's custom Java plumbing, not Java itself.
New features
  • Compressor support tiers: shared status registry in @node-minify/utils (recommended / supported / legacy / removed), surfaced in CLI help and the GitHub Action.
  • node-minify doctor: read-only CLI command covering every v11 break. Scans package.json, source imports, compressor: values and workflow YAML for removed/legacy compressors, the removed @node-minify/run package, the removed CompressorReturnType/MinifyOptions type aliases, and engines.node ranges that still allow Node below 22. Exits non-zero on errors so it can gate CI.
  • CLI and Action fail early when a removed compressor is requested, pointing at the replacement.
  • GCC runtime controls: configurable buffer limit (kills the child process when stdout/stderr exceeds it) plus hardened process/timeout/error handling.
Migration

See the v11 migration guide, or run npx --package=@node-minify/cli -- node-minify doctor in your project.

Patch Changes

Published Packages

  • @node-minify/benchmark@11.0.0
  • @node-minify/clean-css@11.0.0
  • @node-minify/cli@11.0.0
  • @node-minify/core@11.0.0
  • @node-minify/cssnano@11.0.0
  • @node-minify/csso@11.0.0
  • @node-minify/esbuild@11.0.0
  • @node-minify/google-closure-compiler@11.0.0
  • @node-minify/html-minifier@11.0.0
  • @node-minify/imagemin@11.0.0
  • @node-minify/jsonminify@11.0.0
  • @node-minify/lightningcss@11.0.0
  • @node-minify/minify-html@11.0.0
  • @node-minify/no-compress@11.0.0
  • @node-minify/oxc@11.0.0
  • @node-minify/sharp@11.0.0
  • @node-minify/svgo@11.0.0
  • @node-minify/swc@11.0.0
  • @node-minify/terser@11.0.0
  • @node-minify/types@11.0.0
  • @node-minify/uglify-js@11.0.0
  • @node-minify/utils@11.0.0

See individual package CHANGELOGs for details.


Configuration

📅 Schedule: (UTC)

  • 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 is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate CLI.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@node-minify/core](https://github.com/srod/node-minify/tree/main/packages/core#readme) ([source](https://github.com/srod/node-minify)) | devDependencies | major | [`^10.5.0` → `^11.0.0`](https://renovatebot.com/diffs/npm/@node-minify%2fcore/10.5.0/11.0.0) | --- ### Release Notes <details> <summary>srod/node-minify (@&#8203;node-minify/core)</summary> ### [`v11.0.0`](https://github.com/srod/node-minify/releases/tag/v11.0.0) [Compare Source](https://github.com/srod/node-minify/compare/v10.5.0...v11.0.0) ##### Major Changes - [`1a1be73`](https://github.com/srod/node-minify/commit/1a1be73): v11: cleanup major release. ##### Breaking changes - **Minimum Node.js is now 22**: `engines.node` moved from `>=20.0.0` to `>=22.0.0` across all packages. Node 20 reached end-of-life on 2026-04-30 and is no longer covered by CI (the test matrix runs 22.x and 24.x). Upgrade to Node 22 or later. - **Removed 5 deprecated compressor packages**: `@node-minify/babel-minify`, `@node-minify/uglify-es`, `@node-minify/yui`, `@node-minify/sqwish`, `@node-minify/crass`. Use the recommended replacements (terser/oxc/swc/esbuild for JS, lightningcss/cssnano for CSS). - **Removed `@node-minify/run`**: internal Java/process-spawn helper, no longer used by any compressor. - **Removed deprecated type aliases** from `@node-minify/types`: `CompressorReturnType` (use `CompressorResult`) and `MinifyOptions` (use `Settings`). - **Google Closure Compiler now uses the `google-closure-compiler` npm API** instead of invoking the Java JAR through `@node-minify/run`. Same flags and output. Note: the npm package still bundles `google-closure-compiler-java`, so Java may still be invoked under the hood — this change removes node-minify's custom Java plumbing, not Java itself. ##### New features - **Compressor support tiers**: shared status registry in `@node-minify/utils` (`recommended` / `supported` / `legacy` / `removed`), surfaced in CLI help and the GitHub Action. - **`node-minify doctor`**: read-only CLI command covering every v11 break. Scans `package.json`, source imports, `compressor:` values and workflow YAML for removed/legacy compressors, the removed `@node-minify/run` package, the removed `CompressorReturnType`/`MinifyOptions` type aliases, and `engines.node` ranges that still allow Node below 22. Exits non-zero on errors so it can gate CI. - **CLI and Action fail early** when a removed compressor is requested, pointing at the replacement. - **GCC runtime controls**: configurable `buffer` limit (kills the child process when stdout/stderr exceeds it) plus hardened process/timeout/error handling. ##### Migration See the [v11 migration guide](https://github.com/srod/node-minify/blob/main/docs/src/content/docs/guides/v11-migration.md), or run `npx --package=@node-minify/cli -- node-minify doctor` in your project. ##### Patch Changes - [@&#8203;node-minify/utils](https://github.com/node-minify/utils)@11.0.0 *** #### Published Packages - `@node-minify/benchmark@11.0.0` - `@node-minify/clean-css@11.0.0` - `@node-minify/cli@11.0.0` - `@node-minify/core@11.0.0` - `@node-minify/cssnano@11.0.0` - `@node-minify/csso@11.0.0` - `@node-minify/esbuild@11.0.0` - `@node-minify/google-closure-compiler@11.0.0` - `@node-minify/html-minifier@11.0.0` - `@node-minify/imagemin@11.0.0` - `@node-minify/jsonminify@11.0.0` - `@node-minify/lightningcss@11.0.0` - `@node-minify/minify-html@11.0.0` - `@node-minify/no-compress@11.0.0` - `@node-minify/oxc@11.0.0` - `@node-minify/sharp@11.0.0` - `@node-minify/svgo@11.0.0` - `@node-minify/swc@11.0.0` - `@node-minify/terser@11.0.0` - `@node-minify/types@11.0.0` - `@node-minify/uglify-js@11.0.0` - `@node-minify/utils@11.0.0` See individual package CHANGELOGs for details. </details> --- ### Configuration 📅 **Schedule**: (UTC) - 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 is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate CLI](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0NC41Ni4yIiwidXBkYXRlZEluVmVyIjoiNDQuNTYuMiIsInRhcmdldEJyYW5jaCI6ImRldmVsb3AiLCJsYWJlbHMiOltdfQ==-->
Update dependency @node-minify/core to v11
All checks were successful
Build and Deploy Website / Build Website (push) Has been skipped
Build and Deploy Website / Deploy Website (push) Has been skipped
Build and Deploy Website / Build Dev Website (push) Successful in 1m51s
Build and Deploy Website / Deploy Dev Website (push) Has been skipped
326e4d6bab
All checks were successful
Build and Deploy Website / Build Website (push) Has been skipped
Build and Deploy Website / Deploy Website (push) Has been skipped
Build and Deploy Website / Build Dev Website (push) Successful in 1m51s
Build and Deploy Website / Deploy Dev Website (push) Has been skipped
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/node-minify-core-11.x:renovate/node-minify-core-11.x
git switch renovate/node-minify-core-11.x

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch develop
git merge --no-ff renovate/node-minify-core-11.x
git switch renovate/node-minify-core-11.x
git rebase develop
git switch develop
git merge --ff-only renovate/node-minify-core-11.x
git switch renovate/node-minify-core-11.x
git rebase develop
git switch develop
git merge --no-ff renovate/node-minify-core-11.x
git switch develop
git merge --squash renovate/node-minify-core-11.x
git switch develop
git merge --ff-only renovate/node-minify-core-11.x
git switch develop
git merge renovate/node-minify-core-11.x
git push origin develop
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
samuel-p/sp-codes.de!325
No description provided.