Changeset 515
- Timestamp:
- 01/25/05 20:10:24 (4 years ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/install.rb (modified) (1 diff)
- trunk/actionpack/Rakefile (modified) (1 diff)
- trunk/activerecord/CHANGELOG (modified) (1 diff)
- trunk/activerecord/install.rb (modified) (1 diff)
- trunk/activerecord/Rakefile (modified) (1 diff)
- trunk/railties/CHANGELOG (modified) (2 diffs)
- trunk/railties/Rakefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r505 r515 1 *SVN* 1 *1.4.0* (January 25th, 2005) 2 3 * Fixed problems with ActiveRecordStore under the development environment in Rails 2 4 3 5 * Fixed the ordering of attributes in the xml-decleration of Builder #540 [woeye] trunk/actionpack/install.rb
r487 r515 66 66 action_controller/support/core_ext/hash/keys.rb 67 67 action_controller/support/core_ext/hash.rb 68 action_controller/support/core_ext/object_and_class.rb 68 69 action_controller/support/core_ext/numeric/bytes.rb 69 70 action_controller/support/core_ext/numeric/time.rb trunk/actionpack/Rakefile
r458 r515 9 9 PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 10 10 PKG_NAME = 'actionpack' 11 PKG_VERSION = '1. 3.1' + PKG_BUILD11 PKG_VERSION = '1.4.0' + PKG_BUILD 12 12 PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 13 13 trunk/activerecord/CHANGELOG
r504 r515 1 * SVN*1 *1.6.0* (January 25th, 2005) 2 2 3 3 * Added that has_many association build and create methods can take arrays of record data like Base#create and Base#build to build/create multiple records at once. trunk/activerecord/install.rb
r487 r515 53 53 active_record/support/core_ext/hash/keys.rb 54 54 active_record/support/core_ext/hash.rb 55 active_record/support/core_ext/object_and_class.rb 55 56 active_record/support/core_ext/numeric/bytes.rb 56 57 active_record/support/core_ext/numeric/time.rb trunk/activerecord/Rakefile
r458 r515 9 9 PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 10 10 PKG_NAME = 'activerecord' 11 PKG_VERSION = '1. 5.1' + PKG_BUILD11 PKG_VERSION = '1.6.0' + PKG_BUILD 12 12 PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 13 13 trunk/railties/CHANGELOG
r511 r515 1 * SVN*1 *0.9.5* (January 25th, 2005) 2 2 3 3 * Fixed dependency reloading by switching to a remove_const approach where all Active Records, Active Record Observers, and Action Controllers are reloading by undefining their classes. This enables you to remove methods in all three types and see the change reflected immediately and it fixes #539. This also means that only those three types of classes will benefit from the const_missing and reloading approach. If you want other classes (like some in lib/) to reload, you must use require_dependency to do it. … … 16 16 17 17 * Fixed that FCGI can also display SyntaxErrors 18 19 * Upgraded to Active Record 1.6.0, Action Pack 1.4.0 18 20 19 21 trunk/railties/Rakefile
r486 r515 10 10 PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : '' 11 11 PKG_NAME = 'rails' 12 PKG_VERSION = '0.9. 4.1' + PKG_BUILD12 PKG_VERSION = '0.9.5' + PKG_BUILD 13 13 PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}" 14 14 PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}" … … 248 248 249 249 s.add_dependency('rake', '>= 0.4.15') 250 s.add_dependency('activerecord', '>= 1. 5.1')251 s.add_dependency('actionpack', '>= 1. 3.1')250 s.add_dependency('activerecord', '>= 1.6.0') 251 s.add_dependency('actionpack', '>= 1.4.0') 252 252 s.add_dependency('actionmailer', '>= 0.6.1') 253 253