File: 5.100.0.txt

package info (click to toggle)
ruby-sequel 5.101.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,312 kB
  • sloc: ruby: 124,594; makefile: 3
file content (19 lines) | stat: -rw-r--r-- 795 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
= New Features

* A single_statement_dataset_destroy plugin has been added. This
  plugin will run the before_destroy hooks for all instances, then run
  a DELETE statement on the dataset, then run the after_destroy hooks
  for all instances. However, this optimized form will not be used if
  the model uses a custom around_destroy hook.

* The set_column_type schema modification method now supports a
  :collate option on PostgreSQL 9.1+ and MySQL.

= Other Improvements

* The unused_associations plugin no longer reports associations with
  the :is_used option as unused. Previously, the :is_used option only
  disabled changes by the :modify_associations plugin option.

* Postgres::PGRange#to_s is now an alias of #inspect, so it also uses 
  the friendly inspect output added in 5.97.0.