Skip to content

v2.2.0

Compare
Choose a tag to compare
@igor-alexandrov igor-alexandrov released this 28 Dec 13:34
· 27 commits to master since this release
  • Optimised query syntax to use PostgreSQL GIN indices (thanks @BenTalagan)
    Please add GIN indices to you tag columns where it is necessary (e.g. if you usually search your models by tag)
class AddIndices < ActiveRecord::Migration[5.0]
  def change
    add_index :users, :tags, using: 'gin'
  end
end
  • Dropped support for Rails < 5.2
  • Switched to GitHub Actions