From feb60222d685fce23d568d6e827975cdd36a1bf0 Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Sun, 28 Apr 2024 08:36:08 +0300 Subject: [PATCH] Update Changelog --- CHANGELOG.md | 8 ++++++++ changelog/fix_error_for_rubocop_cli.md | 1 - ...alse_positive_for_style_redundant_line_continuation.md | 1 - changelog/fix_handling_of_text_document_diagnostic.md | 1 - changelog/fix_rails_cops_outside_bundler_exec.md | 1 - 5 files changed, 8 insertions(+), 4 deletions(-) delete mode 100644 changelog/fix_error_for_rubocop_cli.md delete mode 100644 changelog/fix_false_positive_for_style_redundant_line_continuation.md delete mode 100644 changelog/fix_handling_of_text_document_diagnostic.md delete mode 100644 changelog/fix_rails_cops_outside_bundler_exec.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 22839285bc1a..38f2e651f0b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,13 @@ ## master (unreleased) +### Bug fixes + +* [#12871](https://github.com/rubocop/rubocop/pull/12871): Fix an error for `rubocop -V` when `.rubocop.yml` contains ERB. ([@earlopain][]) +* [#12862](https://github.com/rubocop/rubocop/issues/12862): Fix a false positive for `Style/RedundantLineContinuation` when line continuations involve `return` with a return value. ([@koic][]) +* [#12664](https://github.com/rubocop/rubocop/pull/12664): Fix handling of `textDocument/diagnostic`. ([@muxcmux][]) +* [#12865](https://github.com/rubocop/rubocop/issues/12865): Fix Rails Cops, which weren't reporting any violations unless running with `bundle exec`. ([@amomchilov][]) + ## 1.63.3 (2024-04-22) ### Bug fixes @@ -7736,3 +7743,4 @@ [@amomchilov]: https://github.com/amomchilov [@Hiroto-Iizuka]: https://github.com/Hiroto-Iizuka [@boardfish]: https://github.com/boardfish +[@muxcmux]: https://github.com/muxcmux diff --git a/changelog/fix_error_for_rubocop_cli.md b/changelog/fix_error_for_rubocop_cli.md deleted file mode 100644 index 3f52b50414f5..000000000000 --- a/changelog/fix_error_for_rubocop_cli.md +++ /dev/null @@ -1 +0,0 @@ -* [#12871](https://github.com/rubocop/rubocop/pull/12871): Fix an error for `rubocop -V` when `.rubocop.yml` contains ERB. ([@earlopain][]) diff --git a/changelog/fix_false_positive_for_style_redundant_line_continuation.md b/changelog/fix_false_positive_for_style_redundant_line_continuation.md deleted file mode 100644 index f5788bcc4b16..000000000000 --- a/changelog/fix_false_positive_for_style_redundant_line_continuation.md +++ /dev/null @@ -1 +0,0 @@ -* [#12862](https://github.com/rubocop/rubocop/issues/12862): Fix a false positive for `Style/RedundantLineContinuation` when line continuations involve `return` with a return value. ([@koic][]) diff --git a/changelog/fix_handling_of_text_document_diagnostic.md b/changelog/fix_handling_of_text_document_diagnostic.md deleted file mode 100644 index 02a0e77cd60b..000000000000 --- a/changelog/fix_handling_of_text_document_diagnostic.md +++ /dev/null @@ -1 +0,0 @@ -* [#12664](https://github.com/rubocop/rubocop/pull/12664): Fix handling of `textDocument/diagnostic`. ([@muxcmux][]) diff --git a/changelog/fix_rails_cops_outside_bundler_exec.md b/changelog/fix_rails_cops_outside_bundler_exec.md deleted file mode 100644 index 0f6f99b6fd26..000000000000 --- a/changelog/fix_rails_cops_outside_bundler_exec.md +++ /dev/null @@ -1 +0,0 @@ -* [#12865](https://github.com/rubocop/rubocop/issues/12865): Fix Rails Cops, which weren't reporting any violations unless running with `bundle exec`. ([@amomchilov][])