From 0b2911f265bb25b98bca5dcc35ed2e86d9d12139 Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Sat, 16 Dec 2023 09:21:07 +0800 Subject: [PATCH] Update Changelog --- CHANGELOG.md | 16 ++++++++++++++++ changelog/change_assert_same_check_object_ids.md | 1 - .../change_ignore_offenses_inside_redundant.md | 1 - changelog/change_require_rubocop_ast_1_30.md | 1 - ...nitest_assert_operator_and_refute_operator.md | 1 - ...before_assertion_methods_and_assert_raises.md | 1 - ...ew_minitest_redundant_message_argument_cop.md | 1 - 7 files changed, 16 insertions(+), 6 deletions(-) delete mode 100644 changelog/change_assert_same_check_object_ids.md delete mode 100644 changelog/change_ignore_offenses_inside_redundant.md delete mode 100644 changelog/change_require_rubocop_ast_1_30.md delete mode 100644 changelog/fix_error_for_minitest_assert_operator_and_refute_operator.md delete mode 100644 changelog/fix_false_positive_for_empty_line_before_assertion_methods_and_assert_raises.md delete mode 100644 changelog/new_add_new_minitest_redundant_message_argument_cop.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b5f03bd..cd0e7a13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,21 @@ ## master (unreleased) +### New features + +* [#272](https://github.com/rubocop/rubocop-minitest/pull/272): Add new Minitest/RedundantMessageArgument cop. ([@koic][]) + +### Bug fixes + +* [#275](https://github.com/rubocop/rubocop-minitest/pull/275): Make `Minitest/AssertMatch` aware of `assert_operator` when running with Ruby 2.7. ([@koic][]) +* [#271](https://github.com/rubocop/rubocop-minitest/issues/271): Fix a false positive for `Minitest/EmptyLineBeforeAssertionMethods` and `assert_raises`. ([@fatkodima][]) + +### Changes + +* [#270](https://github.com/rubocop/rubocop-minitest/pull/270): Ignore offenses inside redundant parentheses. ([@sambostock][]) +* [#274](https://github.com/rubocop/rubocop-minitest/pull/274): Require RuboCop AST 1.30.0+. ([@koic][]) +* [#276](https://github.com/rubocop/rubocop-minitest/pull/276): Enhance `AssertSame`/`RefuteSame` to check for `object_id` comparison. ([@fatkodima][]) + ## 0.33.0 (2023-10-21) ### New features @@ -532,3 +547,4 @@ [@rwstauner]: https://github.com/rwstauner [@ryanquanz]: https://github.com/ryanquanz [@flavorjones]: https://github.com/flavorjones +[@sambostock]: https://github.com/sambostock diff --git a/changelog/change_assert_same_check_object_ids.md b/changelog/change_assert_same_check_object_ids.md deleted file mode 100644 index 1af94ca3..00000000 --- a/changelog/change_assert_same_check_object_ids.md +++ /dev/null @@ -1 +0,0 @@ -* [#276](https://github.com/rubocop/rubocop-minitest/pull/276): Enhance `AssertSame`/`RefuteSame` to check for `object_id` comparison. ([@fatkodima][]) diff --git a/changelog/change_ignore_offenses_inside_redundant.md b/changelog/change_ignore_offenses_inside_redundant.md deleted file mode 100644 index dc16f2be..00000000 --- a/changelog/change_ignore_offenses_inside_redundant.md +++ /dev/null @@ -1 +0,0 @@ -* [#270](https://github.com/rubocop/rubocop-minitest/pull/270): Ignore offenses inside redundant parentheses. ([@sambostock][]) diff --git a/changelog/change_require_rubocop_ast_1_30.md b/changelog/change_require_rubocop_ast_1_30.md deleted file mode 100644 index 3111b78a..00000000 --- a/changelog/change_require_rubocop_ast_1_30.md +++ /dev/null @@ -1 +0,0 @@ -* [#274](https://github.com/rubocop/rubocop-minitest/pull/274): Require RuboCop AST 1.30.0+. ([@koic][]) diff --git a/changelog/fix_error_for_minitest_assert_operator_and_refute_operator.md b/changelog/fix_error_for_minitest_assert_operator_and_refute_operator.md deleted file mode 100644 index a890e1df..00000000 --- a/changelog/fix_error_for_minitest_assert_operator_and_refute_operator.md +++ /dev/null @@ -1 +0,0 @@ -* [#275](https://github.com/rubocop/rubocop-minitest/pull/275): Make `Minitest/AssertMatch` aware of `assert_operator` when running with Ruby 2.7. ([@koic][]) diff --git a/changelog/fix_false_positive_for_empty_line_before_assertion_methods_and_assert_raises.md b/changelog/fix_false_positive_for_empty_line_before_assertion_methods_and_assert_raises.md deleted file mode 100644 index 4a2cf5c9..00000000 --- a/changelog/fix_false_positive_for_empty_line_before_assertion_methods_and_assert_raises.md +++ /dev/null @@ -1 +0,0 @@ -* [#271](https://github.com/rubocop/rubocop-minitest/issues/271): Fix a false positive for `Minitest/EmptyLineBeforeAssertionMethods` and `assert_raises`. ([@fatkodima][]) diff --git a/changelog/new_add_new_minitest_redundant_message_argument_cop.md b/changelog/new_add_new_minitest_redundant_message_argument_cop.md deleted file mode 100644 index 821a49ae..00000000 --- a/changelog/new_add_new_minitest_redundant_message_argument_cop.md +++ /dev/null @@ -1 +0,0 @@ -* [#272](https://github.com/rubocop/rubocop-minitest/pull/272): Add new Minitest/RedundantMessageArgument cop. ([@koic][])