forked from metaskills/grouped_scope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
64 lines (28 loc) · 1.53 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
= 3.2.1
* Be consistent in argument names for 3.2.6.
= 3.2.0
* ActiveRecord 3.2 only.
= 3.1.0
* Works with ActiveRecord 3.1 or 3.2
* The group object is now an ActiveRecord::Relation so you can further scope it.
* New group scoped #blank? and #present? which simply checks if the proxy owner has a group set.
This allows us to tune the SQL generated to IN statements only when needed, even if a grouped
scope is being used.
* New group.ids_sql which is an Arel SQL literal. Avoids large groups IDs and better query plans.
= 0.6.0 (May 06, 2009)
* ActiveRecord 2.3.14 compatibility.
* Refactored to use MiniTest::Spec and Bundler for development/testing.
= 0.6.0 (May 06, 2009)
* ActiveRecord 2.3.2 compatibility.
= 0.5.1 (January 7th 2009)
* Add rails 2.2.2 to test task and remove quite backtrace usage so 1.2.6 testing can run. [Ken Collins]
= 0.4 (October 3rd 2008)
* Use the #737f2bdabb of NamedScope plugin from http://github.com/metaskills/named_scope/tree/master
= 0.3 (October 2nd 2008)
* Add additional NamedScope patches for attribute_condition.
Also added GroupedScope::CoreExt to follow suite for GroupedScope::SelfGrouping attribute_conditions.
= 0.2 (September 29th 2008)
* Add WillPaginate test and confirm grouped scope, named scope, and will paginate all play together. [Ken Collins]
* Stronger back port for named_scope in 1.2.6 and 2.0.4. Fixed bug where association proxy owner scope was after named_scope calls. [Ken Collins]
= 0.1 (September 26th, 2008)
* Initial public release. [Ken Collins]