From b51aa2f7214dd8409ec9664e5df45e54444e4dbf Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Thu, 18 Jul 2019 23:16:55 -0700 Subject: [PATCH] Bump to v2.18.1 --- CHANGELOG.md | 18 +++++++++++++++++- package.json | 2 +- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5c4623ee..aebca00e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel ## [Unreleased] +## [2.18.1] - 2019-07-18 + +### Fixed + - Improve parse perf when using `@typescript-eslint/parser` ([#1409], thanks [@bradzacher]) + - [`prefer-default-export`]: don't warn on TypeAlias & TSTypeAliasDeclaration ([#1377], thanks [@sharmilajesupaul]) + - [`no-unused-modules`]: Exclude package "main"/"bin"/"browser" entry points ([#1404], thanks [@rfermann]) + - [`export`]: false positive for typescript overloads ([#1412], thanks [@golopot]) + +### Refactors + - [`no-extraneous-dependencies`], `importType`: remove lodash ([#1419], thanks [@ljharb]) ## [2.18.0] - 2019-06-24 @@ -14,7 +24,7 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel - [`order`]: add fixer for destructuring commonjs import ([#1372], thanks [@golopot]) - typescript config: add TS def extensions + defer to TS over JS ([#1366], thanks [@benmosher]) -### Fixes +### Fixed - [`no-unused-modules`]: handle ClassDeclaration ([#1371], thanks [@golopot]) ### Docs @@ -586,8 +596,13 @@ for info on changes for earlier releases. [`memo-parser`]: ./memo-parser/README.md +[#1419]: https://github.com/benmosher/eslint-plugin-import/pull/1419 +[#1412]: https://github.com/benmosher/eslint-plugin-import/pull/1412 +[#1409]: https://github.com/benmosher/eslint-plugin-import/pull/1409 +[#1404]: https://github.com/benmosher/eslint-plugin-import/pull/1404 [#1393]: https://github.com/benmosher/eslint-plugin-import/pull/1393 [#1389]: https://github.com/benmosher/eslint-plugin-import/pull/1389 +[#1377]: https://github.com/benmosher/eslint-plugin-import/pull/1377 [#1375]: https://github.com/benmosher/eslint-plugin-import/pull/1375 [#1372]: https://github.com/benmosher/eslint-plugin-import/pull/1372 [#1371]: https://github.com/benmosher/eslint-plugin-import/pull/1371 @@ -950,3 +965,4 @@ for info on changes for earlier releases. [@benmosher]: https://github.com/benmosher [@fooloomanzoo]: https://github.com/fooloomanzoo [@sheepsteak]: https://github.com/sheepsteak +[@sharmilajesupaul]: https://github.com/sharmilajesupaul diff --git a/package.json b/package.json index 488a441a1..873a387a1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-import", - "version": "2.18.0", + "version": "2.18.1", "description": "Import with sanity.", "engines": { "node": ">=4"