Skip to content

build(deps-dev): bump html-validate from 8.29.0 to 11.1.0#35

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/html-validate-11.1.0
Closed

build(deps-dev): bump html-validate from 8.29.0 to 11.1.0#35
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/html-validate-11.1.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 15, 2026

Copy link
Copy Markdown
Contributor

Bumps html-validate from 8.29.0 to 11.1.0.

Release notes

Sourced from html-validate's releases.

v11.1.0

11.1.0 (2026-05-12)

Features

  • deps: replace dependency glob with native function (5a2be0d)
  • deps: replace dependency minimist with native function (cfe3a57)
  • deps: update dependency @​html-validate/stylish to v6 (a8f6df1)
  • deps: update dependency @​sidvind/better-ajv-errors to v6 (1aca06c)

v11.0.0

11.0.0 (2026-05-11)

⚠ 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

... (truncated)

Changelog

Sourced from html-validate's changelog.

11.1.0 (2026-05-12)

Features

  • deps: replace dependency glob with native function (5a2be0d)
  • deps: replace dependency minimist with native function (cfe3a57)
  • deps: update dependency @​html-validate/stylish to v6 (a8f6df1)
  • deps: update dependency @​sidvind/better-ajv-errors to v6 (1aca06c)

11.0.0 (2026-05-11)

⚠ 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

... (truncated)

Commits
  • cc7a72b chore(release): 11.1.0
  • 139b7ea Merge branch 'feature/native-parseargs' into 'master'
  • cfe3a57 feat(deps): replace dependency minimist with native function
  • c3384eb Merge branch 'renovate/sidvind-better-ajv-errors-6.x' into 'master'
  • 1aca06c feat(deps): update dependency @​sidvind/better-ajv-errors to v6
  • 8d49632 Merge branch 'renovate/html-validate-stylish-6.x' into 'master'
  • a8f6df1 feat(deps): update dependency @​html-validate/stylish to v6
  • f8314e6 chore(deps): update dependency @​html-validate/jest-config to v3.18.0
  • 722cee3 chore(deps): update @​html-validate/eslint monorepo to v9.1.1
  • 2f28b35 Merge branch 'feature/native-glob' into 'master'
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitLab CI/CD, a new releaser for html-validate since your current version.


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [html-validate](https://gitlab.com/html-validate/html-validate) from 8.29.0 to 11.1.0.
- [Release notes](https://gitlab.com/html-validate/html-validate/tags)
- [Changelog](https://gitlab.com/html-validate/html-validate/blob/master/CHANGELOG.md)
- [Commits](https://gitlab.com/html-validate/html-validate/compare/v8.29.0...v11.1.0)

---
updated-dependencies:
- dependency-name: html-validate
  dependency-version: 11.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Dependency updates javascript Pull requests that update javascript code labels May 15, 2026
@dependabot dependabot Bot added dependencies Dependency updates javascript Pull requests that update javascript code labels May 15, 2026
@srpatcha

Copy link
Copy Markdown
Member

Closing as part of the 2026-05 branch-hygiene audit. Reason: branch superseded by current master; auto-update will be reopened by Dependabot if still needed. Master is the line; release tracks the latest vX.Y.Z tag. If this PR is still relevant, please reopen with a rebase against current master.

@srpatcha srpatcha closed this May 20, 2026
@dependabot @github

dependabot Bot commented on behalf of github May 20, 2026

Copy link
Copy Markdown
Contributor Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@srpatcha srpatcha deleted the dependabot/npm_and_yarn/html-validate-11.1.0 branch May 20, 2026 07:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependency updates javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant