Skip to content

chore(deps): update dependency html-validate to v11#811

Merged
danielroe merged 1 commit into
mainfrom
renovate/html-validate-11.x
May 12, 2026
Merged

chore(deps): update dependency html-validate to v11#811
danielroe merged 1 commit into
mainfrom
renovate/html-validate-11.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented May 11, 2026

This PR contains the following updates:

Package Change Age Confidence
html-validate (source) ~10.16.0~11.0.0 age confidence

Release Notes

html-validate/html-validate (html-validate)

v11.0.0

Compare Source

⚠ BREAKING CHANGES
  • api: If you used the NodeClosed enum it has been replaced with
    constants in a new Node object.
-if (node.nodeClosed === NodeClosed.EndTag) {
+if (child.nodeType === Node.CLOSED_END_TAG) {
  • api: If you used the NodeType enum it has been replaced with
    constants in a new Node object. This better mimics the DOM API.
-if (child.nodeType === NodeType.ELEMENT_NODE) {
+if (child.nodeType === Node.ELEMENT_NODE) {
  • config: Remove support for unwrapped regular expressions as strings for pattern
    rules. If you have configured one of the affected rules with a regular
    expressing not wrapped with forward slashes / you need to wrap them. If you
    passed in a named pattern or a RegExp object you do not have to change anything.

The affected rules are:

  • class-pattern
  • id-pattern
  • name-pattern
 {
   "id-pattern": ["error", {
-    "pattern": ["foo-.+"]
+    "pattern": ["/foo-.+/"]
   }]
 }
  • meta: The deprecated implicitRole meta property has been removed
    and is replaced by aria.implicitRole. If you are using this property in your
    custom element metadata update it with the new property:
-implicitRole: "button",
+aria: {
+  implicitRole: "button",
+}
  • api: The deprecated HtmlValidate.getRuleDocumentation() and
    HtmlValidate.getRuleDocumentationSync() methods has been removed and is
    replaced with HtmlValidate.getContextualDocumentation() and
    HtmlValidate.getContextualDocumentationSync().
  • api: The deprecated DOMTree.find() method has been removed and is
    replaced by DOMTree.querySelector().
  • api: The deprecated DOMTree.visitDepthFirst() method has been
    removed and is replaced by the walk.depthFirst() helper.
  • api: The deprecated alias nodejsResolver has been removed. Use
    cjsResolver instead.
  • api: This API was never meant for public consumption and has now
    been removed from the public API surface. If you need this API file an issue
    describing your use-case. There is no replacement API.
  • deps: drop support for vitest v1 and v2
  • deps: drop support for jest v28
  • deps: NodeJS v22 or later is now required.
Features
  • api: remove deprecated DOMTree.find() (4451453)
  • api: remove deprecated DOMTree.visitDepthFirst() (b06710b)
  • api: remove deprecated HtmlValidate.getRuleDocumentation() method (f5343c3)
  • api: remove deprecated nodejsResolver alias (ecacb8a)
  • api: replace NodeClosed enum with constants (de55ed9)
  • api: replace NodeType enum with named constants (d33419c)
  • api: the Validator class is no longer exported (f14de27)
  • config: remove support for raw custom pattern regex (692d074)
  • deps: drop support for jest v28 (b1d9b0e)
  • deps: drop support for vitest v1 and v2 (2949863)
  • deps: require nodejs v22 or later (e16c27f)
  • meta: remove deprecated implicitRole property (63689b5)

v10.17.0

Compare Source

Features
  • rules: new experimental rule no-unknown-attributes (9180e2e), closes #​362

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.

🔕 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.

@netlify
Copy link
Copy Markdown

netlify Bot commented May 11, 2026

Deploy Preview for html-validator ready!

Name Link
🔨 Latest commit 756e465
🔍 Latest deploy log https://app.netlify.com/projects/html-validator/deploys/6a02607c3b890f0008b87610
😎 Deploy Preview https://deploy-preview-811--html-validator.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
🤖 Make changes Run an agent on this branch

To edit notification comments on pull requests, go to your Netlify project configuration.

@codecov
Copy link
Copy Markdown

codecov Bot commented May 11, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 53.93%. Comparing base (f3c1e6d) to head (756e465).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #811   +/-   ##
=======================================
  Coverage   53.93%   53.93%           
=======================================
  Files           4        4           
  Lines          89       89           
  Branches       33       29    -4     
=======================================
  Hits           48       48           
  Misses         41       41           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@danielroe danielroe merged commit ccf169b into main May 12, 2026
11 checks passed
@danielroe danielroe deleted the renovate/html-validate-11.x branch May 12, 2026 06:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant