Skip to content

Commit

Permalink
Merge pull request #775 from chef/620_notes
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Smith <tsmith@chef.io>
  • Loading branch information
tas50 authored Oct 8, 2020
2 parents 9f9d2c5 + 48ec6a4 commit 66d7c0c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## Cookstyle 6.20

### RuboCop 0.93.0

RuboCop has been updated to 0.93.0, which includes a large number of bug fixes and performance improvements when scanning large repositories.

### 1 New Ruby Cop

#### Lint/RedundantSafeNavigation

The `Lint/RedundantSafeNavigation` cop detects redundant save navigation operators in order to simplify code. For example `attrs&.respond_to?(:[])` can be simplified to just `attrs.respond_to?(:[])` because `respond_to?` will not error even if attrs is not defined.

`Enabled by default`: True

`Autocorrects`: True

## Cookstyle 6.19

### RuboCop 0.92.0
Expand Down

0 comments on commit 66d7c0c

Please sign in to comment.