From 5124dde66158b77f6e0fdecef8512731c2fb0e5a Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Sat, 13 Apr 2019 07:31:41 -0700 Subject: [PATCH] [utils] v2.4.0 --- utils/CHANGELOG.md | 15 +++++++++++++++ utils/package.json | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/utils/CHANGELOG.md b/utils/CHANGELOG.md index cb86dc225..1fcaa1bff 100644 --- a/utils/CHANGELOG.md +++ b/utils/CHANGELOG.md @@ -5,6 +5,15 @@ This change log adheres to standards from [Keep a CHANGELOG](http://keepachangel ## Unreleased +## v2.4.0 - 2019-04-13 + +### Added + - no-useless-path-segments: Add noUselessIndex option ([#1290], thanks [@timkraut]) + +### Fixed + - Fix overwriting of dynamic import() CallExpression ([`no-cycle`], [`no-relative-parent-import`], [`no-unresolved`], [`no-useless-path-segments`]) ([#1218], [#1166], [#1035], thanks [@vikr01]) + + ## v2.3.0 - 2019-01-22 ### Fixed - use `process.hrtime()` for cache dates ([#1160], thanks [@hulkish]) @@ -37,6 +46,12 @@ Yanked due to critical issue with cache key resulting from #839. +[#1290]: https://github.com/benmosher/eslint-plugin-import/pull/1290 +[#1218]: https://github.com/benmosher/eslint-plugin-import/pull/1218 +[#1166]: https://github.com/benmosher/eslint-plugin-import/issues/1166 [#1160]: https://github.com/benmosher/eslint-plugin-import/pull/1160 +[#1035]: https://github.com/benmosher/eslint-plugin-import/issues/1035 [@hulkish]: https://github.com/hulkish +[@timkraut]: https://github.com/timkraut +[@vikr01]: https://github.com/vikr01 diff --git a/utils/package.json b/utils/package.json index c380b6e2b..be0c76147 100644 --- a/utils/package.json +++ b/utils/package.json @@ -1,6 +1,6 @@ { "name": "eslint-module-utils", - "version": "2.3.0", + "version": "2.4.0", "description": "Core utilities to support eslint-plugin-import and other module-related plugins.", "engines": { "node": ">=4"