diff --git a/CHANGELOG.md b/CHANGELOG.md index c0331a2fac..9194326fce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,20 @@ ## master (unreleased) +### New features + +* [#1245](https://github.com/rubocop/rubocop-rails/pull/1245): Support Prism as a Ruby parser. ([@koic][]) + +### Bug fixes + +* [#1234](https://github.com/rubocop/rubocop-rails/issues/1234): Fix an incorrect autocorrect for `Rails/FindBy` when using multi-line leading dot method calls. ([@ymap][]) +* [#1241](https://github.com/rubocop/rubocop-rails/pull/1241): Fix an error for `Rails/WhereExists` with `EnforcedStyle: where` and implicit receivers. ([@earlopain][]) + +### Changes + +* [#1229](https://github.com/rubocop/rubocop-rails/pull/1229): Make `Rails/EnvironmentVariableAccess` aware of initializers. ([@markokajzer][]) +* [#1231](https://github.com/rubocop/rubocop-rails/pull/1231): Remove `object_id` from `Rails/DangerousColumnNames` targets. ([@r7kamura][]) + ## 2.23.1 (2023-12-25) ### Bug fixes @@ -1021,3 +1035,6 @@ [@sambostock]: https://github.com/sambostock [@Dania02525]: https://github.com/Dania02525 [@bquorning]: https://github.com/bquorning +[@markokajzer]: https://github.com/markokajzer +[@ymap]: https://github.com/ymap +[@earlopain]: https://github.com/earlopain diff --git a/changelog/change_fix_do_not_allow.md b/changelog/change_fix_do_not_allow.md deleted file mode 100644 index 3aadcfdb5e..0000000000 --- a/changelog/change_fix_do_not_allow.md +++ /dev/null @@ -1 +0,0 @@ -* [#1229](https://github.com/rubocop/rubocop-rails/pull/1229): Make `Rails/EnvironmentVariableAccess` aware of initializers. ([@markokajzer][]) diff --git a/changelog/change_remove_object_id_from.md b/changelog/change_remove_object_id_from.md deleted file mode 100644 index 17edfb530c..0000000000 --- a/changelog/change_remove_object_id_from.md +++ /dev/null @@ -1 +0,0 @@ -* [#1231](https://github.com/rubocop/rubocop-rails/pull/1231): Remove `object_id` from `Rails/DangerousColumnNames` targets. ([@r7kamura][]) diff --git a/changelog/fix_an_incorrect_autocorrect_for_rails_find_by.md b/changelog/fix_an_incorrect_autocorrect_for_rails_find_by.md deleted file mode 100644 index bfa6a776e1..0000000000 --- a/changelog/fix_an_incorrect_autocorrect_for_rails_find_by.md +++ /dev/null @@ -1 +0,0 @@ -* [#1234](https://github.com/rubocop/rubocop-rails/issues/1234): Fix an incorrect autocorrect for `Rails/FindBy` when using multi-line leading dot method calls. ([@ymap][]) diff --git a/changelog/fix_error_for_rails_where_exists.md b/changelog/fix_error_for_rails_where_exists.md deleted file mode 100644 index 612c7aa19f..0000000000 --- a/changelog/fix_error_for_rails_where_exists.md +++ /dev/null @@ -1 +0,0 @@ -* [#1241](https://github.com/rubocop/rubocop-rails/pull/1241): Fix an error for `Rails/WhereExists` with `EnforcedStyle: where` and implicit receivers. ([@earlopain][]) diff --git a/changelog/new_support_prism.md b/changelog/new_support_prism.md deleted file mode 100644 index c2a7bf2b62..0000000000 --- a/changelog/new_support_prism.md +++ /dev/null @@ -1 +0,0 @@ -* [#1245](https://github.com/rubocop/rubocop-rails/pull/1245): Support Prism as a Ruby parser. ([@koic][])