Skip to content

chore(deps): update dependency html-loader to v5#48

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/html-loader-5.x
Open

chore(deps): update dependency html-loader to v5#48
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/html-loader-5.x

Conversation

@renovate

@renovate renovate Bot commented Jun 14, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
html-loader 2.1.25.1.0 age confidence

Release Notes

webpack-contrib/html-loader (html-loader)

v5.1.0

Compare Source

Features

v5.0.0

Compare Source

⚠ BREAKING CHANGES

v4.2.0

Compare Source

Features

v4.1.0

Compare Source

Features
4.0.0 (2022-06-15)
⚠ BREAKING CHANGES
  • minimum supported Node.js version is 14.15.0
  • update parse5 to 7.0.0
Bug Fixes

v4.0.0

Compare Source

Features
4.0.0 (2022-06-15)
⚠ BREAKING CHANGES
  • minimum supported Node.js version is 14.15.0
  • update parse5 to 7.0.0
Bug Fixes

v3.1.2

Compare Source

Fix

  • broken release

v3.1.1

Compare Source

v3.1.0

Compare Source

Features
4.0.0 (2022-06-15)
⚠ BREAKING CHANGES
  • minimum supported Node.js version is 14.15.0
  • update parse5 to 7.0.0
Bug Fixes

v3.0.1

Compare Source

Features
  • add possibility to extend default minimize options (#​414) (0fa36af)
3.0.1 (2021-11-02)
Bug Fixes

v3.0.0

Compare Source

Features
  • add possibility to extend default minimize options (#​414) (0fa36af)
3.0.1 (2021-11-02)
Bug Fixes

Configuration

📅 Schedule: (in timezone Asia/Shanghai)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, on day 1 and 15 of the month (* 0-3 1,15 * *)
  • 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.

🔕 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 was generated by Mend Renovate. View the repository job log.

@coderabbitai

coderabbitai Bot commented Jun 14, 2026

Copy link
Copy Markdown

Review Change Stack

📝 Walkthrough

Walkthrough

The html-loader development dependency in package.json is bumped from version 2.1.2 to 5.1.0. No other files are modified.

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly and concisely describes the main change: updating html-loader to version 5, which is the primary purpose of this dependency bump PR.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Description check ✅ Passed The description accurately matches the dependency upgrade from html-loader 2.1.2 to 5.1.0.
✨ 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 renovate/html-loader-5.x

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@renovate renovate Bot force-pushed the renovate/html-loader-5.x branch from 44049b9 to 0c1b99c Compare June 15, 2026 05:37

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@package.json`:
- Line 39: The package.json file declares html-loader@5.1.0 which requires
Node.js >= 18.12.0, but this Node.js engine constraint is not declared in the
engines field. Add or update the engines field in package.json to specify the
minimum Node.js version as 18.12.0 to ensure developers and CI systems are aware
of this requirement and prevent runtime failures.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 0351837e-412d-47ed-945e-6cb069a8c385

📥 Commits

Reviewing files that changed from the base of the PR and between 68ae1f0 and 0c1b99c.

⛔ Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
📒 Files selected for processing (1)
  • package.json

Comment thread package.json
"file-loader": "^6.2.0",
"get-port": "^5.1.1",
"html-loader": "2.1.2",
"html-loader": "5.1.0",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Add Node.js engine requirement to match html-loader 5.1.0's constraint.

The html-loader@5.1.0 requires Node.js >= 18.12.0 (as shown in the pnpm-lock.yaml resolution), but the engines field in package.json does not declare this constraint. Without this declaration, developers and CI agents using Node < 18.12.0 will encounter runtime failures despite successful installation, as pnpm does not enforce peer/transitive engine constraints at install time.

🛠️ Proposed fix to declare Node.js engine requirement
   "engines": {
+    "node": ">= 18.12.0",
     "pnpm": "11.1.2"
   },
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@package.json` at line 39, The package.json file declares html-loader@5.1.0
which requires Node.js >= 18.12.0, but this Node.js engine constraint is not
declared in the engines field. Add or update the engines field in package.json
to specify the minimum Node.js version as 18.12.0 to ensure developers and CI
systems are aware of this requirement and prevent runtime failures.

@renovate renovate Bot force-pushed the renovate/html-loader-5.x branch from 0c1b99c to 36dfa59 Compare June 15, 2026 09:57
@renovate renovate Bot force-pushed the renovate/html-loader-5.x branch 2 times, most recently from 90ca5d1 to c3ff134 Compare June 29, 2026 07:42
@renovate renovate Bot force-pushed the renovate/html-loader-5.x branch 2 times, most recently from 83c3c6f to f818304 Compare July 10, 2026 03:53
@renovate renovate Bot force-pushed the renovate/html-loader-5.x branch from f818304 to 6deb943 Compare July 12, 2026 12:56
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