index
:
rails.git
3-2-stable-for-hmno
master
Mirror of official rails repo with custom fixes.
Harald Eilertsen
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
activerecord
/
CHANGELOG
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Fixed that MissingSourceFile's wasn't properly detected in production mode #9...
David Heinemeier Hansson
2005-03-25
1
-0
/
+2
*
Fixed that :counter_cache option would look for a line_items_count column for...
David Heinemeier Hansson
2005-03-23
1
-0
/
+2
*
Fixed that AR exists?() would explode on postgresql if the passed id did not ...
David Heinemeier Hansson
2005-03-23
1
-0
/
+2
*
Fixed the MS SQL adapter to work with the new limit/offset approach and with ...
David Heinemeier Hansson
2005-03-23
1
-0
/
+5
*
Updated more documentation
David Heinemeier Hansson
2005-03-22
1
-1
/
+1
*
Added adapter independent limit clause as a two-element array with the first ...
David Heinemeier Hansson
2005-03-20
1
-0
/
+7
*
Added alias_method :to_param, :id to Base, such that Active Record objects to...
David Heinemeier Hansson
2005-03-20
1
-0
/
+2
*
Improved the performance of the OCI8 adapter for Oracle #723 [pilx/gjenkins]
David Heinemeier Hansson
2005-03-20
1
-0
/
+2
*
Added type conversion before saving a record, so string-based values like "10...
David Heinemeier Hansson
2005-03-20
1
-0
/
+2
*
Added with additional settings for working with transactional fixtures and pr...
David Heinemeier Hansson
2005-03-20
1
-0
/
+2
*
Fixed acts_as_list to trigger remove_from_list on destroy after the fact, not...
David Heinemeier Hansson
2005-03-20
1
-0
/
+2
*
Added the possibility of specifying fixtures in multiple calls #816 [kim@tink...
David Heinemeier Hansson
2005-03-17
1
-0
/
+2
*
Added Base.exists?(id) that'll return true if an object of the class with the...
David Heinemeier Hansson
2005-03-17
1
-0
/
+2
*
Added optionally allow for nil or empty strings with validates_numericality_o...
David Heinemeier Hansson
2005-03-14
1
-0
/
+4
*
Fixed that SQLite3 exceptions are caught and reported properly #823 [yerejm]
David Heinemeier Hansson
2005-03-14
1
-0
/
+2
*
Added that all types of after_find/after_initialized callbacks are triggered ...
David Heinemeier Hansson
2005-03-14
1
-0
/
+2
*
Fixed that symbols can be used on attribute assignment, like page.emails.crea...
David Heinemeier Hansson
2005-03-10
1
-0
/
+5
*
Prepared for 0.10.1 release
David Heinemeier Hansson
2005-03-07
1
-1
/
+1
*
Added ActiveRecord::Base.colorize_logging to control whether to use colors in...
David Heinemeier Hansson
2005-03-06
1
-0
/
+2
*
Added support for timestamp with time zone in PostgreSQL #560 [Scott Barron]
David Heinemeier Hansson
2005-03-06
1
-0
/
+2
*
Added MultiparameterAssignmentErrors and AttributeAssignmentError exceptions ...
David Heinemeier Hansson
2005-03-06
1
-0
/
+10
*
Added transactional fixtures that uses rollback to undo changes to fixtures i...
David Heinemeier Hansson
2005-03-06
1
-0
/
+2
*
Added destruction of dependent objects in has_one associations when a new ass...
David Heinemeier Hansson
2005-03-06
1
-0
/
+14
*
Added validates_numericality_of #716 [skanthak/c.r.mcgrath]
David Heinemeier Hansson
2005-03-06
1
-0
/
+16
*
Fixed that HasManyAssociation#count was using :finder_sql rather than :counte...
David Heinemeier Hansson
2005-03-06
1
-0
/
+2
*
Added better defaults for composed_of, so statements like composed_of :time_z...
David Heinemeier Hansson
2005-03-01
1
-0
/
+2
*
Added MacroReflection#macro which will return a symbol describing the macro u...
David Heinemeier Hansson
2005-02-27
1
-0
/
+5
*
Marked for release
David Heinemeier Hansson
2005-02-24
1
-1
/
+1
*
Changed the auto-timestamping feature to use ActiveRecord::Base.default_timez...
David Heinemeier Hansson
2005-02-24
1
-0
/
+2
*
Moved TimeZone to Active Support
David Heinemeier Hansson
2005-02-23
1
-2
/
+0
*
Where to get the OCI8 driver
David Heinemeier Hansson
2005-02-23
1
-0
/
+2
*
Added a OCI8-based Oracle adapter that has been verified to work with Oracle ...
David Heinemeier Hansson
2005-02-23
1
-15
/
+18
*
Added TimeZone as the first of a number of value objects that Active Record w...
David Heinemeier Hansson
2005-02-23
1
-0
/
+2
*
Documentation fix #698
David Heinemeier Hansson
2005-02-23
1
-0
/
+2
*
Optimized the SQL used to generate has_and_belongs_to_many queries by listing...
David Heinemeier Hansson
2005-02-22
1
-0
/
+2
*
Fixed that when using validation macros with a custom message, if you happene...
David Heinemeier Hansson
2005-02-22
1
-0
/
+2
*
Fixed that Active Record would throw Broken Pipe errors with FCGI when the My...
David Heinemeier Hansson
2005-02-21
1
-0
/
+2
*
Added options to specify an SSL connection for MySQL. Define the following at...
David Heinemeier Hansson
2005-02-20
1
-0
/
+2
*
Added automatic dropping/creating of test tables for running the unit tests o...
David Heinemeier Hansson
2005-02-20
1
-0
/
+2
*
Fixed that find_by_* would fail when column names had numbers #670 [demetrius]
David Heinemeier Hansson
2005-02-19
1
-0
/
+2
*
Fixed the SQL Server adapter on a bunch of issues #667 [DeLynn]
David Heinemeier Hansson
2005-02-19
1
-0
/
+9
*
Fixed that the dynamic finder like find_all_by_something_boolean(false) didn'...
David Heinemeier Hansson
2005-02-18
1
-0
/
+2
*
Loading the Routes should happen in the environments #655
David Heinemeier Hansson
2005-02-17
1
-0
/
+10
*
Addded validation for validate all the associated objects before declaring fa...
David Heinemeier Hansson
2005-02-17
1
-0
/
+8
*
Added keyword-style approach to defining the custom relational bindings #545 ...
David Heinemeier Hansson
2005-02-07
1
-0
/
+8
*
Added an Oracle adapter that works with the Oracle bindings by Yoshida (http:...
David Heinemeier Hansson
2005-02-07
1
-0
/
+15
*
Fixed Base#clone for use with PostgreSQL #565 [hanson@surgery.wisc.edu]
David Heinemeier Hansson
2005-02-07
1
-0
/
+5
*
Prepared for 0.9.5 release
David Heinemeier Hansson
2005-01-25
1
-1
/
+1
*
Added the option of supplying an array of ids and attributes to Base#update, ...
David Heinemeier Hansson
2005-01-25
1
-1
/
+10
*
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@498 5ecf4fe2-1ee6-0...
David Heinemeier Hansson
2005-01-24
1
-0
/
+2
[prev]
[next]