Logoj0ke.net Open Build Service > Projects > devel:ruby > rubygem-activerecord-2_0 > Changes
Sign Up | Log In

Changes of Revision 2

[-] Added rubygem-activerecord-2_0.changes
x
 
1
@@ -0,0 +1,119 @@
2
+-------------------------------------------------------------------
3
+Thu Jan 17 16:41:22 CET 2008 - mrueckert@suse.de
4
+
5
+- update to version 2.0.2:
6
+  the next major step in the rails development. for all changes see
7
+  /usr/lib*/ruby/gems/1.8/gems/activerecord-2.0.2/CHANGELOG
8
+- branch off a package for the rails 2.0 branch
9
+
10
+-------------------------------------------------------------------
11
+Thu Jan 17 16:26:11 CET 2008 - mrueckert@suse.de
12
+
13
+- update to version 1.15.6:
14
+  - Allow association redefinition in subclasses. #9346 [wildchild]
15
+  - Fix has_many :through delete with custom foreign keys.
16
+    #6466 [naffis]
17
+  - Fix regression where the association would not construct new
18
+    finder SQL on save causing bogus queries for
19
+    "WHERE owner_id = NULL" even after owner was saved.
20
+    #8713 [Bryan Helmkamp]
21
+- additional changes from 1.15.(45):
22
+  - Depend on Action Pack 1.4.4
23
+  - Fix #count on a has_many :through association so that it
24
+    recognizes the :uniq option. Closes #8801 [lifofifo]
25
+  - Don't clobber includes passed to has_many.count [danger]
26
+  - Make sure has_many uses :include when counting [danger]
27
+  - Save associated records only if the association is already
28
+    loaded.  #8713 [blaine]
29
+  - Changing the :default Date format doesn't break date quoting.
30
+    #6312 [bshand, Elias]
31
+  - Allow nil serialized attributes with a set class constraint.
32
+    #7293 [sandofsky]
33
+  - belongs_to assignment creates a new proxy rather than modifying
34
+    its target in-place.  #8412 [mmangino@elevatedrails.com]
35
+  - Fix column type detection while loading fixtures.  Closes #7987
36
+    [roderickvd]
37
+  - Document deep eager includes.  #6267 [Josh Susser, Dan Manges]
38
+  - Oracle: extract column length for CHAR also.  #7866 [ymendel]
39
+  - Small additions and fixes for ActiveRecord documentation.
40
+    Closes #7342 [jeremymcanally]
41
+  - SQLite: binary escaping works with $KCODE='u'.  #7862 [tsuka]
42
+  - Improved cloning performance by relying less on exception
43
+    raising #8159 [Blaine]
44
+- branch a rubygem-activerecord-1_15 to allow parallel installation
45
+  of multiple branches
46
+
47
+-------------------------------------------------------------------
48
+Mon May 14 16:56:22 CEST 2007 - mrueckert@suse.de
49
+
50
+- update to version 1.15.3:
51
+  * Allow a polymorphic :source for has_many :through associations.
52
+    Closes #7143 [protocool]
53
+  * Consistently quote primary key column names.
54
+    #7763 [toolmantim]
55
+  * Fixtures: fix YAML ordered map support.
56
+    #2665 [Manuel Holtgrewe, nfbuckley]
57
+  * Fix has_many :through << with custom foreign keys.
58
+    #6466, #7153 [naffis, Rich Collins]
59
+- additional changes from version 1.15.2:
60
+  * Pass a range in :conditions to use the SQL BETWEEN operator.
61
+    #6974 [dcmanges]
62
+    Student.find(:all, :conditions => { :grade => 9..12 })
63
+  * Don't create instance writer methods for class attributes.
64
+    [Rick]
65
+  * When dealing with SQLite3, use the table_info pragma helper,
66
+    so that the bindings can do some translation for when sqlite3
67
+    breaks incompatibly between point releases. [Jamis Buck]
68
+  * SQLServer: don't choke on strings containing 'null'.
69
+    #7083 [Jakob S]
70
+  * Consistently use LOWER() for uniqueness validations
71
+    (rather than mixing with UPPER()) so the database can always
72
+    use a functional index on the lowercased column.  #6495 [Si]
73
+  * MySQL: SET SQL_AUTO_IS_NULL=0 so 'where id is null' doesn't
74
+    select the last inserted id.  #6778 [Jonathan Viney, timc]
75
+  * Fixtures use the table name and connection from
76
+    set_fixture_class.  #7330 [Anthony Eden]
77
+  * SQLServer: quote table name in indexes query.
78
+    #2928 [keithm@infused.org]
79
+
80
+-------------------------------------------------------------------
81
+Wed Jan 24 01:03:39 CET 2007 - mrueckert@suse.de
82
+
83
+- update to 1.15.1:
84
+  update for rails 1.2.1. Too many changes to mention them here.
85
+  See /usr/lib*/ruby/gems/1.8/gems/activerecord-1.15.1/CHANGELOG .
86
+
87
+-------------------------------------------------------------------
88
+Thu Aug 10 12:28:17 CEST 2006 - mrueckert@suse.de
89
+
90
+- update to version 1.14.4:
91
+  * Add warning about the proper way to validate the presence of
92
+    a foreign key.  (rails:#4147)
93
+    [Francois Beausoleil <francois.beausoleil@gmail.com>]
94
+  * Fix syntax error in documentation.
95
+    (rails:#4679) [mislav@nippur.irb.hr] 
96
+  * Update inconsistent migrations documentation. (rails:#4683)
97
+    [machomagna@gmail.com]
98
+
99
+-------------------------------------------------------------------
100
+Sat Jul  1 04:39:41 CEST 2006 - mrueckert@suse.de
101
+
102
+- update to version 1.14.3:
103
+  * Properly quote index names in migrations
104
+  (closes #4764) [John Long]
105
+  * Ensure that Associations#include_eager_conditions?
106
+  checks both scoped and explicit conditions [Rick]
107
+  * Associations#select_limited_ids_list adds the ORDER BY columns
108
+  to the SELECT DISTINCT List for postgresql. [Rick]
109
+
110
+-------------------------------------------------------------------
111
+Wed Jun 21 01:03:33 CEST 2006 - mrueckert@suse.de
112
+
113
+- use rubygems_with_buildroot_patch instead of the versioned
114
+  buildrequires
115
+
116
+-------------------------------------------------------------------
117
+Mon Jun 19 18:56:40 CEST 2006 - mrueckert@suse.de
118
+
119
+- Initial package version 1.14.2
120
+
121