From 89c304547e43e5cfb8ca87ebda24e79732f4ca8c Mon Sep 17 00:00:00 2001 From: Bozhidar Batsov Date: Mon, 31 Jul 2023 08:19:01 +0300 Subject: [PATCH] Update Changelog --- CHANGELOG.md | 9 +++++++++ ...or_style_return_nil_in_predicate_method_definition.md | 1 - changelog/fix_an_error_for_lint_useless_assignment.md | 1 - changelog/fix_an_error_for_style_mixin_grouping.md | 1 - ...ix_correct_rubocop_for_private_class_method_method.md | 1 - ...x_fix_false_positive_in_style_arguments_forwarding.md | 1 - 6 files changed, 9 insertions(+), 5 deletions(-) delete mode 100644 changelog/fix_a_false_positive_for_style_return_nil_in_predicate_method_definition.md delete mode 100644 changelog/fix_an_error_for_lint_useless_assignment.md delete mode 100644 changelog/fix_an_error_for_style_mixin_grouping.md delete mode 100644 changelog/fix_correct_rubocop_for_private_class_method_method.md delete mode 100644 changelog/fix_fix_false_positive_in_style_arguments_forwarding.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 75f951006abf..3cce1b33f37d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,14 @@ ## master (unreleased) +### Bug fixes + +* [#12068](https://github.com/rubocop/rubocop/pull/12068): Fix a false positive for `Style/ReturnNilInPredicateMethodDefinition` when the last method argument in method definition is `nil`. ([@koic][]) +* [#12082](https://github.com/rubocop/rubocop/issues/12082): Fix an error for `Lint/UselessAssignment` when a variable is assigned and unreferenced in `for` with multiple variables. ([@koic][]) +* [#12079](https://github.com/rubocop/rubocop/issues/12079): Fix an error for `Style/MixinGrouping` when mixin method has no arguments. ([@koic][]) +* [#11637](https://github.com/rubocop/rubocop/pull/11637): Correct Rubocop for `private_class_method` method documentation. ([@bigzed][]) +* [#12070](https://github.com/rubocop/rubocop/pull/12070): Fix false positive in `Style/ArgumentsForwarding` when receiver forwards args/kwargs. ([@owst][]) + ## 1.55.0 (2023-07-25) ### New features @@ -7254,3 +7262,4 @@ [@meric426]: https://github.com/meric426 [@loveo]: https://github.com/loveo [@p0deje]: https://github.com/p0deje +[@bigzed]: https://github.com/bigzed diff --git a/changelog/fix_a_false_positive_for_style_return_nil_in_predicate_method_definition.md b/changelog/fix_a_false_positive_for_style_return_nil_in_predicate_method_definition.md deleted file mode 100644 index 15d68f25f6f6..000000000000 --- a/changelog/fix_a_false_positive_for_style_return_nil_in_predicate_method_definition.md +++ /dev/null @@ -1 +0,0 @@ -* [#12068](https://github.com/rubocop/rubocop/pull/12068): Fix a false positive for `Style/ReturnNilInPredicateMethodDefinition` when the last method argument in method definition is `nil`. ([@koic][]) diff --git a/changelog/fix_an_error_for_lint_useless_assignment.md b/changelog/fix_an_error_for_lint_useless_assignment.md deleted file mode 100644 index 1957bdcfa15d..000000000000 --- a/changelog/fix_an_error_for_lint_useless_assignment.md +++ /dev/null @@ -1 +0,0 @@ -* [#12082](https://github.com/rubocop/rubocop/issues/12082): Fix an error for `Lint/UselessAssignment` when a variable is assigned and unreferenced in `for` with multiple variables. ([@koic][]) diff --git a/changelog/fix_an_error_for_style_mixin_grouping.md b/changelog/fix_an_error_for_style_mixin_grouping.md deleted file mode 100644 index e0ce21d3ddbe..000000000000 --- a/changelog/fix_an_error_for_style_mixin_grouping.md +++ /dev/null @@ -1 +0,0 @@ -* [#12079](https://github.com/rubocop/rubocop/issues/12079): Fix an error for `Style/MixinGrouping` when mixin method has no arguments. ([@koic][]) diff --git a/changelog/fix_correct_rubocop_for_private_class_method_method.md b/changelog/fix_correct_rubocop_for_private_class_method_method.md deleted file mode 100644 index 20c5aa3af6f4..000000000000 --- a/changelog/fix_correct_rubocop_for_private_class_method_method.md +++ /dev/null @@ -1 +0,0 @@ -* [#11637](https://github.com/rubocop/rubocop/pull/11637): Correct Rubocop for `private_class_method` method documentation. ([@bigzed][]) diff --git a/changelog/fix_fix_false_positive_in_style_arguments_forwarding.md b/changelog/fix_fix_false_positive_in_style_arguments_forwarding.md deleted file mode 100644 index bc384fcb0716..000000000000 --- a/changelog/fix_fix_false_positive_in_style_arguments_forwarding.md +++ /dev/null @@ -1 +0,0 @@ -* [#12070](https://github.com/rubocop/rubocop/pull/12070): Fix false positive in `Style/ArgumentsForwarding` when receiver forwards args/kwargs. ([@owst][])