]> git.openstreetmap.org Git - rails.git/blob - vendor/gems/composite_primary_keys-1.1.0/History.txt
7016020dc0661b086d78e3079e4c743b897019c5
[rails.git] / vendor / gems / composite_primary_keys-1.1.0 / History.txt
1 == 1.1.0 2008-10-29
2
3 * fixes to get cpk working for Rails 2.1.2
4
5 == 1.0.10 2008-10-22
6
7 * add composite key where clause creator method [timurv]
8
9 == 1.0.9 2008-09-08
10
11 * fix postgres tests
12 * fix for delete_records when has_many association has composite keys [darxriggs]
13 * more consistent table/column name quoting [pbrant]
14
15 == 1.0.8 2008-08-27
16
17 * fix has_many :through for non composite models [thx rcarver]
18
19 == 1.0.7 2008-08-12
20
21 * fix for the last fix -- when has_many is composite and belongs_to is single
22
23 == 1.0.6 2008-08-06
24
25 * fix associations create
26
27 == 1.0.5 2008-07-25
28
29 * fix for calculations with a group by clause [thx Sirius Black]
30
31 == 1.0.4 2008-07-15
32
33 * support for oracle_enhanced adapter [thx Raimonds Simanovskis] 
34
35 == 1.0.3 2008-07-13
36
37 * more fixes and tests for has many through [thx Menno van der Sman]
38
39 == 1.0.2 2008-06-07
40
41 * fix for has many through when through association has composite keys
42
43 == 1.0.1 2008-06-06
44
45 * Oracle fixes
46
47 == 1.0.0 2008-06-05
48
49 * Support for Rails 2.1
50
51 == 0.9.93 2008-06-01
52
53 * set fixed dependency on activerecord 2.0.2
54
55 == 0.9.92 2008-02-22
56
57 * Support for has_and_belongs_to_many
58
59 == 0.9.91 2008-01-27
60
61 * Incremented activerecord dependency to 2.0.2 [thx emmanuel.pirsch]
62
63 == 0.9.90 2008-01-27
64
65 * Trial release for rails/activerecord 2.0.2 supported
66
67 == 0.9.1 2007-10-28
68
69 * Migrations fix - allow :primary_key => [:name] to work [no unit test] [thx Shugo Maeda]
70
71 == 0.9.0 2007-09-28
72
73 * Added support for polymorphs [thx nerdrew]
74 * init.rb file so gem can be installed as a plugin for Rails [thx nerdrew]
75 * Added ibm_db support [thx K Venkatasubramaniyan]
76 * Support for cleaning dependents [thx K Venkatasubramaniyan]
77 * Rafactored db rake tasks into namespaces
78 * Added namespaced tests (e.g. mysql:test for test_mysql)
79
80 == 0.8.6 / 2007-6-12
81
82 * 1 emergency fix due to Rails Core change
83   * Rails v7004 removed #quote; fixed with connection.quote_column_name [thx nerdrew]
84
85 == 0.8.5 / 2007-6-5
86
87 * 1 change due to Rails Core change
88   * Can no longer use RAILS_CONNECTION_ADAPTERS from Rails core
89 * 7 dev improvement:
90   * Changed History.txt syntax to rdoc format
91   * Added deploy tasks
92   * Removed CHANGELOG + migrated into History.txt
93   * Changed PKG_NAME -> GEM_NAME in Rakefile
94   * Renamed README -> README.txt for :publish_docs task
95   * Added :check_version task
96   * VER => VERS in rakefile
97 * 1 website improvement:
98   * website/index.txt includes link to "8 steps to fix other ppls code"
99
100 == 0.8.4 / 2007-5-3
101
102 * 1 bugfix
103   * Corrected ids_list => ids in the exception message. That'll teach me for not adding unit tests before fixing bugs. 
104
105 == 0.8.3 / 2007-5-3
106
107 * 1 bugfix
108   * Explicit reference to ::ActiveRecord::RecordNotFound
109 * 1 website addition:
110   * Added routing help [Pete Sumskas]
111
112 == 0.8.2 / 2007-4-11
113
114 * 1 major enhancement:
115   * Oracle unit tests!! [Darrin Holst]
116   * And they work too
117
118 == 0.8.1 / 2007-4-10
119
120 * 1 bug fix:
121   * Fixed the distinct(count) for oracle (removed 'as')
122
123 == 0.8.0 / 2007-4-6
124
125 * 1 major enhancement:
126   * Support for calcualtions on associations
127 * 2 new DB supported:
128   * Tests run on sqlite
129   * Tests run on postgresql
130 * History.txt to keep track of changes like these
131 * Using Hoe for Rakefile
132 * Website generator rake tasks
133
134 == 0.3.3
135 * id=
136 * create now work
137
138 == 0.1.4
139 * it was important that #{primary_key} for composites --> 'key1,key2' and not 'key1key2' so created PrimaryKeys class
140
141 == 0.0.1 
142 * Initial version
143 * set_primary_keys(*keys) is the activation class method to transform an ActiveRecord into a composite primary key AR
144 * find(*ids) supports the passing of 
145   * id sets: Foo.find(2,1), 
146   * lists of id sets: Foo.find([2,1], [7,3], [8,12]), 
147   * and even stringified versions of the above:
148   * Foo.find '2,1' or Foo.find '2,1;7,3'