From d26b4412751da6e29073f436ec4378d3eca51b8b Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Mon, 16 Sep 2024 17:14:50 +0900 Subject: [PATCH] Update Changelog --- CHANGELOG.md | 9 +++++++++ changelog/change_disable_block_given.md | 1 - ...change_make_double_start_end_aware_safe_navigation.md | 1 - ..._for_performance_big_decimal_with_numeric_argument.md | 1 - 4 files changed, 9 insertions(+), 3 deletions(-) delete mode 100644 changelog/change_disable_block_given.md delete mode 100644 changelog/change_make_double_start_end_aware_safe_navigation.md delete mode 100644 changelog/fix_false_positives_for_performance_big_decimal_with_numeric_argument.md diff --git a/CHANGELOG.md b/CHANGELOG.md index cc73d744f6..0991275410 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,15 @@ ## master (unreleased) +### Bug fixes + +* [#454](https://github.com/rubocop/rubocop-performance/issues/454): Fix false positives for `Performance/BigDecimalWithNumericArgument` when using BigDecimal 3.1+. ([@koic][]) + +### Changes + +* [#385](https://github.com/rubocop/rubocop-performance/issues/385): Disable `Performance/BlockGivenWithExplicitBlock` by default. ([@earlopain][]) +* [#407](https://github.com/rubocop/rubocop-performance/issues/407): Make `Performance/DoubleStartEndWith` aware of safe navigation. ([@earlopain][]) + ## 1.21.1 (2024-06-16) ### Bug fixes diff --git a/changelog/change_disable_block_given.md b/changelog/change_disable_block_given.md deleted file mode 100644 index 535858d8cb..0000000000 --- a/changelog/change_disable_block_given.md +++ /dev/null @@ -1 +0,0 @@ -* [#385](https://github.com/rubocop/rubocop-performance/issues/385): Disable `Performance/BlockGivenWithExplicitBlock` by default. ([@earlopain][]) diff --git a/changelog/change_make_double_start_end_aware_safe_navigation.md b/changelog/change_make_double_start_end_aware_safe_navigation.md deleted file mode 100644 index 55945f4011..0000000000 --- a/changelog/change_make_double_start_end_aware_safe_navigation.md +++ /dev/null @@ -1 +0,0 @@ -* [#407](https://github.com/rubocop/rubocop-performance/issues/407): Make `Performance/DoubleStartEndWith` aware of safe navigation. ([@earlopain][]) diff --git a/changelog/fix_false_positives_for_performance_big_decimal_with_numeric_argument.md b/changelog/fix_false_positives_for_performance_big_decimal_with_numeric_argument.md deleted file mode 100644 index 90b645c23d..0000000000 --- a/changelog/fix_false_positives_for_performance_big_decimal_with_numeric_argument.md +++ /dev/null @@ -1 +0,0 @@ -* [#454](https://github.com/rubocop/rubocop-performance/issues/454): Fix false positives for `Performance/BigDecimalWithNumericArgument` when using BigDecimal 3.1+. ([@koic][])