Commit 0fd38781 authored by David Sveningsson's avatar David Sveningsson
Browse files

chore: revert botched release

This reverts commit feec1718.
parent feec1718
Loading
Loading
Loading
Loading
+0 −12
Original line number Diff line number Diff line
# html-validate changelog

## 8.19.0 (2024-05-18)

### Features

- **rules:** new option `allowCheckboxDefault` for `form-dup-name` ([293b951](https://gitlab.com/html-validate/html-validate/commit/293b951073a78af3c7a26d4ccf2472eed6178828)), closes [#251](https://gitlab.com/html-validate/html-validate/issues/251)

### Bug Fixes

- **rules:** `multiple-labeled-controls` handles hidden input ([4d794b6](https://gitlab.com/html-validate/html-validate/commit/4d794b6911cc8d977d008eaaad5d0d9996a9c662)), closes [#251](https://gitlab.com/html-validate/html-validate/issues/251)
- **rules:** `wcag/h30` only applies to `<a href>` ([cd93dfe](https://gitlab.com/html-validate/html-validate/commit/cd93dfe591e6f833516ddcae086c7587ed3d103c)), closes [#252](https://gitlab.com/html-validate/html-validate/issues/252)
- **rules:** handle unicode letters in `valid-id` ([c83687a](https://gitlab.com/html-validate/html-validate/commit/c83687abc26b84a0e026caad8781656db6ac0339)), closes [#253](https://gitlab.com/html-validate/html-validate/issues/253)

## 8.18.2 (2024-04-20)

### Bug Fixes
+1 −1
Original line number Diff line number Diff line
@@ -186,7 +186,7 @@ module.exports = defineMetadata({

## Version history

- 8.19.0 - `allowCheckboxDefault` option added.
- %version% - `allowCheckboxDefault` option added.
- 8.18.1 - Track `<template>` elements separately.
- 7.15.2 - `<button type="submit">` included as `shared` by default.
- 7.12.2 - `allowArrayBrackets` and `shared` options added.
+1 −1
Original line number Diff line number Diff line
@@ -44,4 +44,4 @@ Examples of **correct** code for this rule:

## Version history

- 8.19.0 - Rule ignores properly ignores `<input type="hidden">`.
- %version% - Rule ignores properly ignores `<input type="hidden">`.
+1 −1
Original line number Diff line number Diff line
@@ -54,4 +54,4 @@ When set to `true` this rule only validates the ID is non-empty and contains no

## Version history

- 8.19.0 - Handles unicode letters.
- %version% - Handles unicode letters.
+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ Examples of **correct** code for this rule:

## Version history

- 8.19.0 - Only validates `<a>` tags with the `href` attribute present.
- %version% - Only validates `<a>` tags with the `href` attribute present.
- 7.10.0 - Handles when anchor (or a parent) is `hidden`.
- 6.6.0 - Handle text from SVG `<title>` and `<desc>`
- 0.24.0 - Rule added.
Loading