diff --git a/CHANGELOG.md b/CHANGELOG.md index 57cff1f42bd..1978f2945d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,6 +37,7 @@ * [#8037](https://github.com/rubocop-hq/rubocop/pull/8037): **(Breaking)** Cop `Metrics/AbcSize` now counts ||=, &&=, multiple assignments, for, yield, iterating blocks. `&.` now count as conditions too (unless repeated on the same variable). Default bumped from 15 to 17. Consider using `rubocop -a --disable-uncorrectable` to ease transition. ([@marcandre][]) * [#8276](https://github.com/rubocop-hq/rubocop/issues/8276): Cop `Metrics/CyclomaticComplexity` not longer counts `&.` when repeated on the same variable. ([@marcandre][]) * [#8204](https://github.com/rubocop-hq/rubocop/pull/8204): **(Breaking)** Cop `Metrics/PerceivedComplexity` now counts `else` in `case` statements, `&.`, `||=`, `&&=` and blocks known to iterate. Default bumped from 7 to 8. Consider using `rubocop -a --disable-uncorrectable` to ease transition. ([@marcandre][]) +* [#8416](https://github.com/rubocop-hq/rubocop/issues/8416): Cop `Lint/InterpolationCheck` marked as unsafe. ([@marcandre][]) ## 0.88.0 (2020-07-13) diff --git a/config/default.yml b/config/default.yml index 4cb7d2f88e2..b8c6bc4cf88 100644 --- a/config/default.yml +++ b/config/default.yml @@ -1525,7 +1525,7 @@ Lint/InheritException: Lint/InterpolationCheck: Description: 'Raise warning for interpolation in single q strs.' Enabled: true - SafeAutoCorrect: false + Safe: false VersionAdded: '0.50' VersionChanged: '0.87' diff --git a/docs/modules/ROOT/pages/cops_lint.adoc b/docs/modules/ROOT/pages/cops_lint.adoc index 6941829bf0f..578a0f5625a 100644 --- a/docs/modules/ROOT/pages/cops_lint.adoc +++ b/docs/modules/ROOT/pages/cops_lint.adoc @@ -1523,7 +1523,7 @@ C = Class.new(StandardError) | Enabled by default | Safe | Supports autocorrection | VersionAdded | VersionChanged | Enabled -| Yes +| No | Yes (Unsafe) | 0.50 | 0.87