Sha256: 40a92e7477a5c622dacb50c67563f3cf251c57e402b1e576c73e074e57700a08

Contents?: true

Size: 1.41 KB

Versions: 52

Compression:

Stored size: 1.41 KB

Contents

= New Features

* A concurrent_eager_loading plugin has been added.  This plugin
  builds on top of the async_thread_pool Database extension and
  allows eager loading multiple associations concurrently in
  separate threads.  With this plugin, you can mark datasets for
  concurrent eager loading using eager_load_concurrently:

    Album.eager_load_concurrently.eager(:artist, :genre, :tracks).all

  Datasets that are marked for concurrent eager loading will use
  concurrent eager loading if they are eager loading more than one
  association.  If you would like to make concurrent eager loading
  the default, you can load the plugin with the :always option.

  All of the association types that ship with Sequel now support
  concurrent eager loading when using this plugin. For custom eager
  loaders using the :eager_loader association option, please see the
  documentation for the plugin for how to enable custom eager loading
  for them.

= Other Improvements

* The date_arithmetic extension now handles ActiveSupport::Duration
  values with weeks, as well as :weeks as a key in a hash value. Weeks
  are converted into 7 days internally.

* The shared SQLite adapter now emulates the dropping of non-composite
  unique constraints.  Non-composite unique constraints are now
  treated similarly to composite unique constraints, in that dropping
  any unique constraints on a table will drop all unique constraints
  on that table.

Version data entries

52 entries across 49 versions & 2 rubygems

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