This file is indexed.

/usr/share/doc/ruby-sequel/doc/release_notes/3.20.0.txt is in ruby-sequel 3.33.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
= New Features

* The swift adapter now supports an SQLite subadapter.  Use the
  :db_type => 'sqlite' option when connecting.  You can use an
  in memory database with the following connection string:
  
    swift:///?database=:memory:&db_type=sqlite

* Arbitrary JDBC properties can now be set in the JDBC adapter
  using the :jdbc_properties option when connecting.  The value
  of this option should be a hash where keys and values are JDBC
  property keys and values.
  
* Basic Microsoft Access support was added to the ado adapter.
  The creation of autoincrementing primary key integers now works,
  and identifiers are now quoted with [].

* The Database#indexes method now supports a :partial option when
  connecting to MySQL, which makes it include partial indexes (which
  are usually excluded).

= Other Improvements

* The class_table_inheritance plugin now handles subclass
  associations better.  Previously, the implicit eager loading code
  had issues when you called an association method that only existed
  in the subclass.

* The error message used when a validates_max_length validation is
  applied to a nil column value has been improved.  You can override
  the message yourself using the :nil_message option.
  
* The read_timeout and connect_timeout options now work correctly in
  the mysql adapter.

* Another MySQL disconnect error message is now recognized.

= Backwards Compatibility

* The swift adapter was upgraded to support swift 0.8.1.  Older
  versions of swift are no longer supported.