Sha256: 90d1823a891c32739f8cd252f235aa000a611c57d96f3e8463d80051f2cb6f7f

Contents?: true

Size: 1.83 KB

Versions: 74

Compression:

Stored size: 1.83 KB

Contents

= New Features

* A subset_conditions plugin has been added, which adds a method
  for each subset that returns the filter conditions for the
  subset.  This makes it easier to reuse the subset conditions:

    class Foo < Sequel::Model
      plugin :subset_conditions
      subset :active, :active=>true
    end

    Foo.exclude(Foo.active_conditions)
    Foo.where(:a=>1).or(Foo.active_conditions)

* A boolean_subsets plugin has been added, which adds a subset for each
  boolean column:

    # Assume boolean column :active
    Foo.plugin :boolean_subsets

    Foo.active
    # SELECT * FROM foos WHERE (active IS TRUE)

  You can provide a block to the plugin to change the arguments passed
  to subset:
    
    Foo.plugin :boolean_subsets do |column|
      [:"where_#{column}", column]
    end

    Foo.where_active
    # SELECT * FROM foos WHERE active

  As with similar plugins, you can add the boolean_subsets plugin to
  Sequel::Model itself, and all subclasses created afterward will have
  the boolean subset methods automatically created.

= Other Improvements

* If Model#refresh can't find the related row, Sequel now raises a
  Sequel::NoExistingObject exception instead of a generic
  Sequel::Error exception.

* In the csv_serializer plugin, when calling #to_csv on a model class
  or dataset, instead of using #[] to access data, #send is used to
  call methods.  This is more similar to other plugins as well as
  Model#to_csv.

* The list plugin now works better with the auto_validations plugin,
  or any other time there is a validation on the position column.

= Backwards Compatibility

* The change to the csv_serializer plugin can change results if you
  are overriding any of the column accessor methods.  It can also
  break existing code if one of the columns being used isn't defined
  as a method or the method requires more than one argument.

Version data entries

74 entries across 68 versions & 2 rubygems

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