All Versions
14
Latest Version
Avg Release Cycle
202 days
Latest Release
2040 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v0.5.0 Changes
August 27, 2019- ๐ Rails 6 now supported.
- ๐ Fixes support for
nil
s with explicit order, when anil
is neither the first nor the last element of the explicit order, e.g.status: ['assigned', nil, 'fixed']
. #93b08877
-
v0.4.1 Changes
March 21, 2018- If a column had a
nulls:
option and there were multiple records withNULL
, all of these records but one were previously skipped. This is now fixed. #21
- If a column had a
-
v0.4.0 Changes
February 06, 2018- โ Adds nulls ordering options
nulls: :first
andnulls: :last
. - ๐ Now supports Rails 5.2.
- โฌ๏ธ Dropped support for Rails < 5 and Ruby < 2.3.
- โ Adds nulls ordering options
-
v0.3.4 Changes
August 24, 2017- The
before
andafter
methods now accept a boolean argument that indicates whether the relation should exclude the given point or not. By default the given point is excluded, if you want to include it, usebefore(false)
/after(false)
.
- The
-
v0.3.3 Changes
January 05, 2016- ๐ Now compatible with Rails 5 beta 1.
-
v0.3.2 Changes
September 15, 2014- Optimization: do not wrap top-level disjunctive in
AND
when the column has an enumerated order. Read more. - ๐ Boolean enum columns (e.g.
[:pinned, [true, false]]
) are now automatically collapsed toORDER by column ASC|DESC
.
- Optimization: do not wrap top-level disjunctive in
-
v0.3.1 Changes
September 07, 2014- Automatically add primary key when there is no unique column for the order
- โ Remove
complete
option - ๐ Fix Rubinius compatibility
-
v0.3.0 Changes
September 07, 2014- ๐
order_query
now accepts columns as varargs. Array form is still supported. - ๐
order_by
renamed toseek
- ๐
-
v0.2.1 Changes
September 06, 2014- 0๏ธโฃ
complete
now defaults to true for list attributes as well.
- 0๏ธโฃ
-
v0.2.0 Changes
September 06, 2014- Dynamic query methods renamed to
order_by
- Dynamic query methods renamed to