Sha256: 244b3b10e03082fc3bda7d2d37b0ef49c24841d54b44c84e2845f62b232b971d

Contents?: true

Size: 1.01 KB

Versions: 98

Compression:

Stored size: 1.01 KB

Contents

= New Features

* An instance-level skip_auto_validations method has been added to
  the auto_validations plugin, allowing you to skip all or specific
  types of auto validations inside the block:

    model_instance.skip_auto_validations(:unique) do
      puts model_instance.valid?
    end

* A Database :preconnect_extensions option has been added.  This
  option is similar to :extensions, but the extensions are loaded
  before the :preconnect option is processed.  This allows you to
  use the server_logging extension with the :preconnect option.

* For specifying custom table aliases when using eager_graph and
  association_join, you can now use:

    Sequel[:association].as(:table_alias)

  in addition to:

    Sequel.as(:association, :table_alias)

= Other Improvements

* The ado/mssql adapter now retrieves the number of deleted or
  updated rows for a query without issuing a separate query.

* Sequel now avoids the use of Proc.new with an implicit block, as
  that feature will be deprecated starting in Ruby 2.7.

Version data entries

98 entries across 84 versions & 2 rubygems

Version Path
sequel-5.83.1 doc/release_notes/5.17.0.txt
sequel-5.83.0 doc/release_notes/5.17.0.txt
sequel-5.82.0 doc/release_notes/5.17.0.txt
sequel-5.81.0 doc/release_notes/5.17.0.txt
sequel-5.80.0 doc/release_notes/5.17.0.txt
sequel-5.79.0 doc/release_notes/5.17.0.txt
sequel-5.78.0 doc/release_notes/5.17.0.txt
sequel-5.77.0 doc/release_notes/5.17.0.txt
sequel-5.76.0 doc/release_notes/5.17.0.txt
sequel-5.75.0 doc/release_notes/5.17.0.txt
sequel-5.74.0 doc/release_notes/5.17.0.txt
sequel-5.73.0 doc/release_notes/5.17.0.txt
sequel-5.72.0 doc/release_notes/5.17.0.txt
sequel-5.71.0 doc/release_notes/5.17.0.txt
sequel-5.70.0 doc/release_notes/5.17.0.txt
sequel-5.69.0 doc/release_notes/5.17.0.txt
sequel-5.68.0 doc/release_notes/5.17.0.txt
sequel-5.67.0 doc/release_notes/5.17.0.txt
sequel-5.66.0 doc/release_notes/5.17.0.txt
sequel-5.65.0 doc/release_notes/5.17.0.txt