File tree Expand file tree Collapse file tree 3 files changed +21
-2
lines changed
Expand file tree Collapse file tree 3 files changed +21
-2
lines changed Original file line number Diff line number Diff line change 1- === master
1+ === 5.100.0 (2026-01-01)
22
33* Do not report associations with :is_used option as unused in the unused_associations plugin (jeremyevans)
44
Original file line number Diff line number Diff line change 1+ = New Features
2+
3+ * A single_statement_dataset_destroy plugin has been added. This
4+ plugin will run the before_destroy hooks for all instances, then run
5+ a DELETE statement on the dataset, then run the after_destroy hooks
6+ for all instances. However, this optimized form will not be used if
7+ the model uses a custom around_destroy hook.
8+
9+ * The set_column_type schema modification method now supports a
10+ :collate option on PostgreSQL 9.1+ and MySQL.
11+
12+ = Other Improvements
13+
14+ * The unused_associations plugin no longer reports associations with
15+ the :is_used option as unused. Previously, the :is_used option only
16+ disabled changes by the :modify_associations plugin option.
17+
18+ * Postgres::PGRange#to_s is now an alias of #inspect, so it also uses
19+ the friendly inspect output added in 5.97.0.
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ module Sequel
66
77 # The minor version of Sequel. Bumped for every non-patch level
88 # release, generally around once a month.
9- MINOR = 99
9+ MINOR = 100
1010
1111 # The tiny version of Sequel. Usually 0, only bumped for bugfix
1212 # releases that fix regressions from previous versions.
You can’t perform that action at this time.
0 commit comments