Changeset 4488
- Timestamp:
- 06/24/06 15:28:56 (2 years ago)
- Files:
-
- branches/stable/actionmailer/CHANGELOG (modified) (1 diff)
- branches/stable/actionmailer/lib/action_mailer/version.rb (modified) (1 diff)
- branches/stable/actionmailer/Rakefile (modified) (1 diff)
- branches/stable/actionpack/CHANGELOG (modified) (2 diffs)
- branches/stable/actionpack/lib/action_pack/version.rb (modified) (1 diff)
- branches/stable/actionwebservice/CHANGELOG (modified) (1 diff)
- branches/stable/actionwebservice/lib/action_web_service/version.rb (modified) (1 diff)
- branches/stable/actionwebservice/Rakefile (modified) (1 diff)
- branches/stable/activerecord/CHANGELOG (modified) (4 diffs)
- branches/stable/activerecord/lib/active_record/version.rb (modified) (1 diff)
- branches/stable/railties/CHANGELOG (modified) (4 diffs)
- branches/stable/railties/lib/rails/version.rb (modified) (1 diff)
- branches/stable/railties/Rakefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/stable/actionmailer/CHANGELOG
r4183 r4488 1 *1.2.2* (June 24th, 2006) 2 3 * Depend on Action Pack 1.12.2 4 5 1 6 *1.2.1* (April 6th, 2005) 2 7 branches/stable/actionmailer/lib/action_mailer/version.rb
r4183 r4488 3 3 MAJOR = 1 4 4 MINOR = 2 5 TINY = 15 TINY = 2 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') branches/stable/actionmailer/Rakefile
r4204 r4488 55 55 s.homepage = "http://www.rubyonrails.org" 56 56 57 s.add_dependency('actionpack', '= 1.12. 1' + PKG_BUILD)57 s.add_dependency('actionpack', '= 1.12.2' + PKG_BUILD) 58 58 59 59 s.has_rdoc = true branches/stable/actionpack/CHANGELOG
r4457 r4488 1 *1.12. 1* (April 6th, 2005)1 *1.12.2* (June 24th, 2006) 2 2 3 3 * Refinement to avoid exceptions in traverse_to_controller. 4 4 5 5 * (Hackish) Fix loading of arbitrary files in Ruby's load path by traverse_to_controller. [Nicholas Seckar] 6 7 8 *1.12.1* (April 6th, 2006) 6 9 7 10 * Fixed that template extensions would be cached development mode #4624 [Stefan Kaes] … … 35 38 36 39 37 *1.12.0* (March 27th, 200 5)40 *1.12.0* (March 27th, 2006) 38 41 39 42 * Add documentation for respond_to. [Jamis Buck] branches/stable/actionpack/lib/action_pack/version.rb
r4183 r4488 3 3 MAJOR = 1 4 4 MINOR = 12 5 TINY = 15 TINY = 2 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') branches/stable/actionwebservice/CHANGELOG
r4203 r4488 1 *1.1.3* (June 24th, 2006) 2 3 * Rely on Action Pack 1.12.2 and Active Record 1.14.3 4 5 1 6 *1.1.2* (April 9th, 2005) 2 7 branches/stable/actionwebservice/lib/action_web_service/version.rb
r4203 r4488 3 3 MAJOR = 1 4 4 MINOR = 1 5 TINY = 25 TINY = 3 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') branches/stable/actionwebservice/Rakefile
r4204 r4488 72 72 s.homepage = "http://www.rubyonrails.org" 73 73 74 s.add_dependency('actionpack', '= 1.12. 1' + PKG_BUILD)75 s.add_dependency('activerecord', '= 1.14. 2' + PKG_BUILD)74 s.add_dependency('actionpack', '= 1.12.2' + PKG_BUILD) 75 s.add_dependency('activerecord', '= 1.14.3' + PKG_BUILD) 76 76 77 77 s.has_rdoc = true branches/stable/activerecord/CHANGELOG
r4240 r4488 1 * SVN*1 *1.14.3* (June 24th, 2006) 2 2 3 3 * Properly quote index names in migrations (closes #4764) [John Long] … … 8 8 9 9 10 *1.14.2* (April 9th, 200 5)10 *1.14.2* (April 9th, 2006) 11 11 12 12 * Fixed calculations for the Oracle Adapter (closes #4626) [Michael Schoen] 13 13 14 14 15 *1.14.1* (April 6th, 200 5)15 *1.14.1* (April 6th, 2006) 16 16 17 17 * Fix type_name_with_module to handle type names that begin with '::'. Closes #4614. [Nicholas Seckar] … … 68 68 69 69 70 *1.14.0* (March 27th, 200 5)70 *1.14.0* (March 27th, 2006) 71 71 72 72 * Replace 'rescue Object' with a finer grained rescue. Closes #4431. [Nicholas Seckar] … … 488 488 * Fixed :through relations when using STI inherited classes would use the inherited class's name as foreign key on the join model [Tobias Luetke] 489 489 490 490 491 *1.13.2* (December 13th, 2005) 491 492 branches/stable/activerecord/lib/active_record/version.rb
r4203 r4488 3 3 MAJOR = 1 4 4 MINOR = 14 5 TINY = 25 TINY = 3 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') branches/stable/railties/CHANGELOG
r4202 r4488 1 *1.1.2* (April 9th, 2005) 1 *1.1.3* (June 24th, 2006) 2 3 * Updated to Active Record 1.14.3, Action Pack 1.12.2, ActionWebService 1.1.3, ActionMailer 1.2.2 4 5 6 *1.1.2* (April 9th, 2006) 2 7 3 8 * Added rake rails:update:configs to update config/boot.rb from the latest (also included in rake rails:update) [DHH] … … 6 11 7 12 8 *1.1.1* (April 6th, 200 5)13 *1.1.1* (April 6th, 2006) 9 14 10 15 * Enhances plugin#discover allowing it to discover svn:// like URIs (closes #4565) [ruben.nine@gmail.com] … … 45 50 46 51 47 *1.1.0* (March 27th, 200 5)52 *1.1.0* (March 27th, 2006) 48 53 49 54 * Allow db:fixtures:load to load a subset of the applications fixtures. [Chad Fowler] … … 185 190 186 191 * Honor ActiveRecord::Base.pluralize_table_names when creating and destroying session store table. #3204. [rails@bencurtis.com, Marcel Molina Jr.] 192 187 193 188 194 *1.0.0* (December 13th, 2005) branches/stable/railties/lib/rails/version.rb
r4202 r4488 3 3 MAJOR = 1 4 4 MINOR = 1 5 TINY = 25 TINY = 3 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') branches/stable/railties/Rakefile
r4204 r4488 280 280 s.add_dependency('rake', '>= 0.7.1') 281 281 s.add_dependency('activesupport', '= 1.3.1' + PKG_BUILD) 282 s.add_dependency('activerecord', '= 1.14. 2' + PKG_BUILD)283 s.add_dependency('actionpack', '= 1.12. 1' + PKG_BUILD)284 s.add_dependency('actionmailer', '= 1.2. 1' + PKG_BUILD)285 s.add_dependency('actionwebservice', '= 1.1. 2' + PKG_BUILD)282 s.add_dependency('activerecord', '= 1.14.3' + PKG_BUILD) 283 s.add_dependency('actionpack', '= 1.12.2' + PKG_BUILD) 284 s.add_dependency('actionmailer', '= 1.2.2' + PKG_BUILD) 285 s.add_dependency('actionwebservice', '= 1.1.3' + PKG_BUILD) 286 286 287 287 s.rdoc_options << '--exclude' << '.'