|
| 1 | +# Version 2.0.0 |
| 2 | + |
| 3 | +* Breaking change: drop support for Active Record 6.0 and older. |
| 4 | +* New detector: `table_without_timestamps` detects tables that don't define |
| 5 | + the timestamp columns (contributed by fatkodima). |
| 6 | +* New feature: official SQLite support. |
| 7 | +* New feature: `missing_non_null_constraint` checks whether timestamp columns |
| 8 | + are not `NULL` (contributed by Jon Dufresne). |
| 9 | +* Enhancement: `missing_foreign_keys` and `unindexed_foreign_keys` look only at |
| 10 | + integer and UUID columns (contributed by fatkodima). |
| 11 | +* Enhancement: `missing_foreign_keys` supports tables with `destroy_async` |
| 12 | + (contributed by fatkodima). |
| 13 | +* Enhancement: `missing_presence_validation` supports inclusion/exclusion |
| 14 | + validators, ignores columns with default functions, (contributed by fatkodima) |
| 15 | + and supports polymorphic associations. |
| 16 | +* Enhancement: `incorrect_length_validation` allows inclusion validations as an |
| 17 | + alternative (contributed by fatkodima). |
| 18 | +* Bug fix: `missing_presence_validation` ignores counter cache columns |
| 19 | + (contributed by fatkodima). |
| 20 | +* Bug fix: `incorrect_dependent_option` no longer raises an exception on |
| 21 | + incorrectly configured associations (contributed by fatkodima). |
| 22 | +* Bug fix: `missing_non_null_constraint` skips contextual validators and |
| 23 | + database views (contributed by fatkodima). |
| 24 | +* Bug fix: expression index support check (contribued by fatkodima). |
| 25 | +* Bug fix: typos and documentation enhancements (Jon Dufresne, Kristján Oddsson, |
| 26 | + and Viktor). |
| 27 | + |
1 | 28 | # Version 1.15.0 |
2 | 29 |
|
3 | 30 | * New feature: detector to find tables without a primary key (contributed by |
|
0 commit comments