Sha256: 9646cead2adc19101635b1f120a2988982653d1e041d80cd198421762eb9f31c

Contents?: true

Size: 1.33 KB

Versions: 72

Compression:

Stored size: 1.33 KB

Contents

= New Features

* Overriding the :limit and :eager_limit_strategy association options
  can now be done on a per-call basis when eager loading, by using an
  eager block callback and setting the :eager_limit or
  :eager_limit_strategy dataset options. Example:

    Album.eager(:tracks=>proc{|ds| ds.clone(:eager_limit=>5)}).all

* Dataset#insert_conflict and #insert_ignore have been added on
  SQLite, adding support for the INSERT OR ... SQL syntax:

    DB[:table].insert_ignore.insert(:a=>1, :b=>2)
    # INSERT OR IGNORE INTO TABLE (a, b) VALUES (1, 2)  

    DB[:table].insert_conflict(:replace).insert(:a=>1, :b=>2)
    # INSERT OR REPLACE INTO TABLE (a, b) VALUES (1, 2)

* An identifier_columns plugin has been added, which allows
  Sequel::Model#save to work when column names contain double
  underscores.

= Other Improvements

* IPv6 addresses can now be used in connection URLs when using
  ruby 1.9.3+.

* The :db_type entries in column schema hashes now include sizes
  for string and decimal types on DB2 and when using the jdbc
  adapter's generic schema parsing.

* Database#row_type in the pg_row extension now handles different
  formats of specifying schema qualified types.  So a row type
  registered via :schema__type can be found using
  Sequel.qualify(:schema, :type).

* Another disconnect error is recognized in the tinytds adapter.

Version data entries

72 entries across 66 versions & 2 rubygems

Version Path
tdiary-5.1.2 vendor/bundle/ruby/2.6.0/gems/sequel-5.26.0/doc/release_notes/4.30.0.txt
tdiary-5.1.1 vendor/bundle/ruby/2.7.0/gems/sequel-5.29.0/doc/release_notes/4.30.0.txt
tdiary-5.1.1 vendor/bundle/ruby/2.6.0/gems/sequel-5.26.0/doc/release_notes/4.30.0.txt
sequel-5.29.0 doc/release_notes/4.30.0.txt
sequel-5.28.0 doc/release_notes/4.30.0.txt
sequel-5.27.0 doc/release_notes/4.30.0.txt
tdiary-5.1.0 vendor/bundle/gems/sequel-5.26.0/doc/release_notes/4.30.0.txt
sequel-5.26.0 doc/release_notes/4.30.0.txt
sequel-5.25.0 doc/release_notes/4.30.0.txt
sequel-5.24.0 doc/release_notes/4.30.0.txt
sequel-5.23.0 doc/release_notes/4.30.0.txt
sequel-5.22.0 doc/release_notes/4.30.0.txt
sequel-5.21.0 doc/release_notes/4.30.0.txt
sequel-5.20.0 doc/release_notes/4.30.0.txt
tdiary-5.0.13 vendor/bundle/gems/sequel-5.18.0/doc/release_notes/4.30.0.txt
sequel-5.19.0 doc/release_notes/4.30.0.txt
tdiary-5.0.12.1 vendor/bundle/gems/sequel-5.18.0/doc/release_notes/4.30.0.txt
sequel-5.18.0 doc/release_notes/4.30.0.txt
sequel-5.17.0 doc/release_notes/4.30.0.txt
sequel-5.16.0 doc/release_notes/4.30.0.txt