From fc909a36990106a7aa4f254e661b23dbfe2439a5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 22 Sep 2025 17:44:37 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20release=207.3.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 | 19 +++++++++++++++++++ jsr.json | 2 +- package.json | 2 +- src/index.js | 2 +- src/processor.js | 2 +- 6 files changed, 24 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index eb0c51f1e..c575a1620 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "7.2.0" + ".": "7.3.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e1ba58b53..dd1842e0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [7.3.0](https://github.com/eslint/markdown/compare/v7.2.0...v7.3.0) (2025-09-22) + + +### Features + +* add allowLabels option to no-missing-label-refs ([#513](https://github.com/eslint/markdown/issues/513)) ([f6d6b76](https://github.com/eslint/markdown/commit/f6d6b767a97f2b648164503b5de0f105a31935d6)) +* add no-reference-like-urls rule ([#433](https://github.com/eslint/markdown/issues/433)) ([65251ec](https://github.com/eslint/markdown/commit/65251ec12b617f62357fe9239b60200973e5d2b7)) +* export types from main entry point ([#520](https://github.com/eslint/markdown/issues/520)) ([915837c](https://github.com/eslint/markdown/commit/915837c6cf72c7ca0c7d7b2f1708698d65e8dc14)) +* fix false positives and negatives for consecutive backslashes ([#490](https://github.com/eslint/markdown/issues/490)) ([3067607](https://github.com/eslint/markdown/commit/3067607753d4ed75b10ca394557c34e502dbacf9)) + + +### Bug Fixes + +* `exactOptionalPropertyTypes` causes type errors when using plugins ([#524](https://github.com/eslint/markdown/issues/524)) ([15014a4](https://github.com/eslint/markdown/commit/15014a4ad0ec5db1e24ae72a09c1e705c756f006)) +* handle consecutive backslashes in `no-reference-like-urls` ([#523](https://github.com/eslint/markdown/issues/523)) ([762712d](https://github.com/eslint/markdown/commit/762712d699f7962cecadfd906486f681c175ba9a)) +* no-*-definitions rules show original label and identifier ([#515](https://github.com/eslint/markdown/issues/515)) ([f80a9e1](https://github.com/eslint/markdown/commit/f80a9e1d6b505e42491f49fc6ac36eeacd3bdbab)) +* report locations with <CR> linebreaks in `no-reference-like-urls` ([#525](https://github.com/eslint/markdown/issues/525)) ([28723c2](https://github.com/eslint/markdown/commit/28723c2904ccf1450e781dd15473d3ef82fa2502)) +* wrong location reporting in `fenced-code-language` ([#518](https://github.com/eslint/markdown/issues/518)) ([c532194](https://github.com/eslint/markdown/commit/c532194e1c7e0fab4bb9fc9d683fc61d5a1a91c5)) + ## [7.2.0](https://github.com/eslint/markdown/compare/v7.1.0...v7.2.0) (2025-08-22) diff --git a/jsr.json b/jsr.json index 0223f83b3..7d3e23d03 100644 --- a/jsr.json +++ b/jsr.json @@ -1,6 +1,6 @@ { "name": "@eslint/markdown", - "version": "7.2.0", + "version": "7.3.0", "exports": "./dist/esm/index.js", "publish": { "include": [ diff --git a/package.json b/package.json index 329987b6e..d4d129fd6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/markdown", - "version": "7.2.0", + "version": "7.3.0", "description": "The official ESLint language plugin for Markdown", "license": "MIT", "author": { diff --git a/src/index.js b/src/index.js index 7c4d14166..ff8695cd9 100644 --- a/src/index.js +++ b/src/index.js @@ -53,7 +53,7 @@ let recommendedPlugins, processorPlugins; const plugin = { meta: { name: "@eslint/markdown", - version: "7.2.0", // x-release-please-version + version: "7.3.0", // x-release-please-version }, processors: { markdown: processor, diff --git a/src/processor.js b/src/processor.js index a2d141741..447518cfc 100644 --- a/src/processor.js +++ b/src/processor.js @@ -469,7 +469,7 @@ function postprocess(messages, filename) { export const processor = { meta: { name: "@eslint/markdown/markdown", - version: "7.2.0", // x-release-please-version + version: "7.3.0", // x-release-please-version }, preprocess, postprocess,