From 12f9cb041dddcfa599b4ae0dafdb36a906014ad3 Mon Sep 17 00:00:00 2001 From: ESLint Bot Date: Thu, 17 Sep 2026 05:04:00 -0400 Subject: [PATCH] =?UTF-8?q?chore:=20release=209.0.0=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .release-please-manifest.json | 2 +- CHANGELOG.md | 22 ++++++++++++++++++++++ jsr.json | 2 +- package.json | 2 +- src/index.js | 2 +- src/processor.js | 2 +- 6 files changed, 27 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b7ae2dee..92856693 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "8.0.3" + ".": "9.0.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ab8a52b..ba356e50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [9.0.0](https://github.com/eslint/markdown/compare/v8.0.3...v9.0.0) (2026-09-17) + + +### ⚠ BREAKING CHANGES + +* add `meta.languages` to rules and update `recommended` config ([#664](https://github.com/eslint/markdown/issues/664)) + +### Features + +* add `meta.languages` to rules and update `recommended` config ([#664](https://github.com/eslint/markdown/issues/664)) ([9e4b429](https://github.com/eslint/markdown/commit/9e4b429d06cb2446a546c270fd0b2ab5783f11d7)) +* export `MarkdownSyntaxElement` ([#698](https://github.com/eslint/markdown/issues/698)) ([ee9830a](https://github.com/eslint/markdown/commit/ee9830a0902b15317ed9c11c49b06121fa8f41c2)) + + +### Bug Fixes + +* add `mdast` type augmentation for TOML and JSON nodes ([#708](https://github.com/eslint/markdown/issues/708)) ([dd42f9e](https://github.com/eslint/markdown/commit/dd42f9e900581c5660d8a4f4794f11d8087c5827)) +* handle `symbol` in `validateLanguageOptions` ([#722](https://github.com/eslint/markdown/issues/722)) ([8128f67](https://github.com/eslint/markdown/commit/8128f6733f7de51226e47f3808805253286c76dd)) +* handle empty ATX headings in `no-missing-atx-heading-space` ([#726](https://github.com/eslint/markdown/issues/726)) ([b87c8fb](https://github.com/eslint/markdown/commit/b87c8fb94604b58822f2e00dea4406e1cbc79c14)) +* prevent ReDoS in no-reversed-media-syntax ([#693](https://github.com/eslint/markdown/issues/693)) ([63542f5](https://github.com/eslint/markdown/commit/63542f53151ef6560d2f70bb0b5683542ff319bb)) +* support unquoted aria-hidden value in require-alt-text ([#719](https://github.com/eslint/markdown/issues/719)) ([c4a148b](https://github.com/eslint/markdown/commit/c4a148bc3c9e6bc2a54a66d06e18a9e77feeca28)) +* update dependency @eslint/plugin-kit to ^0.7.3 ([#730](https://github.com/eslint/markdown/issues/730)) ([186ad3e](https://github.com/eslint/markdown/commit/186ad3ee58982d006e63d3bbe046d69d8ee36e33)) + ## [8.0.3](https://github.com/eslint/markdown/compare/v8.0.2...v8.0.3) (2026-07-01) diff --git a/jsr.json b/jsr.json index ad9e105e..52d074f1 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/markdown", - "version": "8.0.3", + "version": "9.0.0", "exports": "./dist/index.js", "publish": { "include": [ diff --git a/package.json b/package.json index c9a0f6eb..8c0b984c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/markdown", - "version": "8.0.3", + "version": "9.0.0", "description": "The official ESLint language plugin for Markdown", "license": "MIT", "author": { diff --git a/src/index.js b/src/index.js index aadd74c5..9759e0e9 100644 --- a/src/index.js +++ b/src/index.js @@ -54,7 +54,7 @@ const plugin = { meta: { name: "@eslint/markdown", namespace: "markdown", - version: "8.0.3", // x-release-please-version + version: "9.0.0", // x-release-please-version }, processors: { markdown: processor, diff --git a/src/processor.js b/src/processor.js index 38e9ef56..6bfb7900 100644 --- a/src/processor.js +++ b/src/processor.js @@ -471,7 +471,7 @@ function postprocess(messages, filename) { export const processor = { meta: { name: "@eslint/markdown/markdown", - version: "8.0.3", // x-release-please-version + version: "9.0.0", // x-release-please-version }, preprocess, postprocess,