File: 5.30.0.txt

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

* Sequel now supports generated columns on SQLite 3.31+ using the
  :generated_always_as and :generated_type options. Example:

    DB.create_table(:table) do
      primary_key :id
      Numeric :amount, null: false
      Numeric :tax, null: false
      Numeric :total, generated_always_as: (Sequel[:amount] + :tax)
    end

= Other Improvements

* The Database#transaction :before_retry option is now called before
  retrying the transaction even when the :num_retries option is set
  to nil.

* The gem no longer ships with specs and older release notes, reducing
  the gem size by over 40%.