From ab44320f8f99972f7e07f31804616652d0d79c98 Mon Sep 17 00:00:00 2001 From: Ben Mosher Date: Thu, 29 Mar 2018 20:21:58 -0400 Subject: [PATCH] changelog notes --- CHANGELOG.md | 3 +++ utils/CHANGELOG.md | 6 +++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 50b742d42..028d2a413 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). This change log adheres to standards from [Keep a CHANGELOG](http://keepachangelog.com). ## [Unreleased] +### Added +- Add [`no-cycle`] rule: reports import cycles. ## [2.9.0] - 2018-02-21 ### Added @@ -440,6 +442,7 @@ for info on changes for earlier releases. [`group-exports`]: ./docs/rules/group-exports.md [`no-self-import`]: ./docs/rules/no-self-import.md [`no-default-export`]: ./docs/rules/no-default-export.md +[`no-cycle`]: ./docs/rules/no-cycle.md [`memo-parser`]: ./memo-parser/README.md diff --git a/utils/CHANGELOG.md b/utils/CHANGELOG.md index cc9bc051b..5aaa3cc76 100644 --- a/utils/CHANGELOG.md +++ b/utils/CHANGELOG.md @@ -4,7 +4,11 @@ This project adheres to [Semantic Versioning](http://semver.org/). This change log adheres to standards from [Keep a CHANGELOG](http://keepachangelog.com). ## Unreleased - +### Changed +- `parse`: attach node locations by default. +- `moduleVisitor`: visitor now gets the full `import` statement node as a second + argument, so rules may report against the full statement / `require` call instead + of only the string literal node. ## v2.1.1 - 2017-06-22