File: 5.69.0.txt

package info (click to toggle)
ruby-sequel 5.97.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,188 kB
  • sloc: ruby: 123,115; makefile: 3
file content (26 lines) | stat: -rw-r--r-- 912 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
= New Features

* An adapter has been added for the trilogy MySQL driver. One large
  advantage over mysql2 is that trilogy does not require any MySQL
  client libraries installed on the machine. The trilogy adapter
  has basically the same issues/skipped specs as the mysql2 adapter,
  but it also does not support an application_timezone different
  than the database_timezone.

* Model dataset modules now have a model accessor, allowing for
  code such as:

    class Foo < Sequel::Model
      dataset_module do
        where :kept, Sequel[model.table_name][:discarded_at] => nil
      end
    end

= Improvements

* The mysql adapter now works with ruby-mysql 4 (the pure-ruby
  MySQL driver).  Note that multi-results support does not work
  with ruby-mysql 4 (it doesn't work with mysql2, trilogy, or
  other Sequel adapters in general).

* Warnings for unsupported flags are now avoided on ruby-mysql 3.