From 001e3e04c9ad51457bb4f5bfb9d0a0250228c883 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=94=AF=E7=84=B6?= Date: Tue, 12 Jul 2022 17:31:48 +0800 Subject: [PATCH 1/4] docs: add missing items in v5 changelog (#268) they were missing as "breaking:" is not a valid tag in conventional commits. the commit just added them manually. --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 566a45e9..4ef0a536 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,12 @@ ### ⚠ BREAKING CHANGES -* Update `no-missing-placeholders` and `no-unused-placeholders` to handle messageIds (#252) +* drop Node 12/17 support ([#256](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/issues/256)) +* drop ESLint v6 support ([#257](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/issues/257)) +* strictly define Node API ([#259](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/issues/259)) +* add `recommended` rules `prefer-message-ids`, `prefer-output-null`, `no-missing-message-id +s`, `no-unused-message-ids` ([#258](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/issues/258)) +* Update `no-missing-placeholders` and `no-unused-placeholders` to handle messageIds ([#252](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/issues/252)) ### Features From 0cc2003eb169d0e62f5060d6536d4ba16595fa16 Mon Sep 17 00:00:00 2001 From: Bryan Mishkin <698306+bmish@users.noreply.github.com> Date: Tue, 12 Jul 2022 12:08:55 -0400 Subject: [PATCH 2/4] docs: fix typo --- CHANGELOG.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ef0a536..e676d6e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,8 +8,7 @@ * drop Node 12/17 support ([#256](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/issues/256)) * drop ESLint v6 support ([#257](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/issues/257)) * strictly define Node API ([#259](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/issues/259)) -* add `recommended` rules `prefer-message-ids`, `prefer-output-null`, `no-missing-message-id -s`, `no-unused-message-ids` ([#258](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/issues/258)) +* add `recommended` rules `prefer-message-ids`, `prefer-output-null`, `no-missing-message-ids`, `no-unused-message-ids` ([#258](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/issues/258)) * Update `no-missing-placeholders` and `no-unused-placeholders` to handle messageIds ([#252](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/issues/252)) ### Features @@ -533,4 +532,4 @@ s`, `no-unused-message-ids` ([#258](https://github.com/not-an-aardvark/eslint-pl - New: no-deprecated-report-api rule [`06a6e5a`](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/commit/06a6e5ae81328ba37e8360ca5ad7498939059031) - New: initial commit [`8b0ae4f`](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/commit/8b0ae4f30014e9526af02ecba518f5edfd38c2b9) -- New: Add a 'recommended' config [`7b9ec01`](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/commit/7b9ec012286f4c16af27e79db7e449916c56c3c6) \ No newline at end of file +- New: Add a 'recommended' config [`7b9ec01`](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/commit/7b9ec012286f4c16af27e79db7e449916c56c3c6) From 5cb12cc5a01163966d506c7ee3c1b6c88c174ddb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=94=AF=E7=84=B6?= Date: Mon, 18 Jul 2022 12:31:15 +0800 Subject: [PATCH 3/4] fix: export package.json (fixes #270) (#271) --- package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 48ea7157..83257e6f 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,10 @@ "description": "An ESLint plugin for linting ESLint plugins", "author": "Teddy Katz", "main": "./lib/index.js", - "exports": "./lib/index.js", + "exports": { + ".": "./lib/index.js", + "./package.json": "./package.json" + }, "license": "MIT", "scripts": { "generate-readme-table": "node build/generate-readme-table.js", From e2f3deb6fa9e9820c4f6c40f7798a5c569ad0abe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=94=AF=E7=84=B6?= Date: Mon, 18 Jul 2022 12:32:17 +0800 Subject: [PATCH 4/4] chore: release v5.0.1 --- CHANGELOG.md | 9 ++++++++- package.json | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e676d6e1..e3e3919f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ +### [5.0.1](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/compare/v5.0.0...v5.0.1) (2022-07-18) + + +### Bug Fixes + +* export package.json (fixes [#270](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/issues/270)) ([#271](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/issues/271)) ([5cb12cc](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/commit/5cb12cc5a01163966d506c7ee3c1b6c88c174ddb)) + ## [5.0.0](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/compare/v4.4.1...v5.0.0) (2022-07-12) @@ -532,4 +539,4 @@ - New: no-deprecated-report-api rule [`06a6e5a`](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/commit/06a6e5ae81328ba37e8360ca5ad7498939059031) - New: initial commit [`8b0ae4f`](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/commit/8b0ae4f30014e9526af02ecba518f5edfd38c2b9) -- New: Add a 'recommended' config [`7b9ec01`](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/commit/7b9ec012286f4c16af27e79db7e449916c56c3c6) +- New: Add a 'recommended' config [`7b9ec01`](https://github.com/not-an-aardvark/eslint-plugin-eslint-plugin/commit/7b9ec012286f4c16af27e79db7e449916c56c3c6) \ No newline at end of file diff --git a/package.json b/package.json index 83257e6f..2ae93985 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-eslint-plugin", - "version": "5.0.0", + "version": "5.0.1", "description": "An ESLint plugin for linting ESLint plugins", "author": "Teddy Katz", "main": "./lib/index.js",