Changeset 7740
- Timestamp:
- 10/05/07 03:58:34 (1 year ago)
- Files:
-
- branches/1-2-stable/actionmailer/CHANGELOG (modified) (1 diff)
- branches/1-2-stable/actionmailer/lib/action_mailer/version.rb (modified) (1 diff)
- branches/1-2-stable/actionmailer/Rakefile (modified) (1 diff)
- branches/1-2-stable/actionpack/CHANGELOG (modified) (1 diff)
- branches/1-2-stable/actionpack/lib/action_pack/version.rb (modified) (1 diff)
- branches/1-2-stable/actionpack/Rakefile (modified) (1 diff)
- branches/1-2-stable/actionwebservice/CHANGELOG (modified) (1 diff)
- branches/1-2-stable/actionwebservice/lib/action_web_service/version.rb (modified) (1 diff)
- branches/1-2-stable/actionwebservice/Rakefile (modified) (1 diff)
- branches/1-2-stable/activerecord/CHANGELOG (modified) (1 diff)
- branches/1-2-stable/activerecord/lib/active_record/version.rb (modified) (1 diff)
- branches/1-2-stable/activerecord/Rakefile (modified) (1 diff)
- branches/1-2-stable/activesupport/CHANGELOG (modified) (1 diff)
- branches/1-2-stable/activesupport/lib/active_support/version.rb (modified) (1 diff)
- branches/1-2-stable/railties/CHANGELOG (modified) (2 diffs)
- branches/1-2-stable/railties/lib/rails/version.rb (modified) (1 diff)
- branches/1-2-stable/railties/Rakefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1-2-stable/actionmailer/CHANGELOG
r6395 r7740 1 *1.3.4* (October 4th, 2007) 2 3 * Depend on Action Pack 1.13.4 4 5 1 6 *1.3.3* (March 12th, 2007) 2 7 branches/1-2-stable/actionmailer/lib/action_mailer/version.rb
r6395 r7740 3 3 MAJOR = 1 4 4 MINOR = 3 5 TINY = 35 TINY = 4 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') branches/1-2-stable/actionmailer/Rakefile
r6416 r7740 55 55 s.homepage = "http://www.rubyonrails.org" 56 56 57 s.add_dependency('actionpack', '= 1.13. 3' + PKG_BUILD)57 s.add_dependency('actionpack', '= 1.13.4' + PKG_BUILD) 58 58 59 59 s.has_rdoc = true branches/1-2-stable/actionpack/CHANGELOG
r7721 r7740 1 * SVN*1 *1.13.4* (October 4th, 2007) 2 2 3 3 * Only accept session ids from cookies, prevents session fixation attacks. [bradediger] branches/1-2-stable/actionpack/lib/action_pack/version.rb
r6395 r7740 3 3 MAJOR = 1 4 4 MINOR = 13 5 TINY = 35 TINY = 4 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') branches/1-2-stable/actionpack/Rakefile
r6416 r7740 76 76 s.requirements << 'none' 77 77 78 s.add_dependency('activesupport', '= 1.4. 2' + PKG_BUILD)78 s.add_dependency('activesupport', '= 1.4.3' + PKG_BUILD) 79 79 80 80 s.require_path = 'lib' branches/1-2-stable/actionwebservice/CHANGELOG
r6395 r7740 1 *1.2.4* (October 4th, 2007) 2 3 * Depend on Action Pack 1.13.4 4 5 * Depend on Active Record 1.15.4 6 7 1 8 *1.2.3* (March 12th, 2007) 2 9 branches/1-2-stable/actionwebservice/lib/action_web_service/version.rb
r6395 r7740 3 3 MAJOR = 1 4 4 MINOR = 2 5 TINY = 35 TINY = 4 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') branches/1-2-stable/actionwebservice/Rakefile
r6416 r7740 72 72 s.homepage = "http://www.rubyonrails.org" 73 73 74 s.add_dependency('actionpack', '= 1.13. 3' + PKG_BUILD)75 s.add_dependency('activerecord', '= 1.15. 3' + PKG_BUILD)74 s.add_dependency('actionpack', '= 1.13.4' + PKG_BUILD) 75 s.add_dependency('activerecord', '= 1.15.4' + PKG_BUILD) 76 76 77 77 s.has_rdoc = true branches/1-2-stable/activerecord/CHANGELOG
r7347 r7740 1 * SVN*1 *1.15.4* (October 4th, 2007) 2 2 3 3 * Fix #count on a has_many :through association so that it recognizes the :uniq option. Closes #8801 [lifofifo] branches/1-2-stable/activerecord/lib/active_record/version.rb
r6395 r7740 3 3 MAJOR = 1 4 4 MINOR = 15 5 TINY = 35 TINY = 4 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') branches/1-2-stable/activerecord/Rakefile
r6416 r7740 152 152 end 153 153 154 s.add_dependency('activesupport', '= 1.4. 2' + PKG_BUILD)154 s.add_dependency('activesupport', '= 1.4.3' + PKG_BUILD) 155 155 156 156 s.files.delete "test/fixtures/fixture_database.sqlite" branches/1-2-stable/activesupport/CHANGELOG
r7087 r7740 1 * SVN*1 *1.4.3* (October 4th, 2007) 2 2 3 3 * Demote Hash#to_xml to use XmlSimple#xml_in_string so it can't read files or stdin. #8453 [candlerb, Jeremy Kemper] branches/1-2-stable/activesupport/lib/active_support/version.rb
r6395 r7740 3 3 MAJOR = 1 4 4 MINOR = 4 5 TINY = 25 TINY = 3 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') branches/1-2-stable/railties/CHANGELOG
r7730 r7740 1 * SVN*1 *1.2.4* (October 4th, 2007) 2 2 3 3 * Add a new rake task to aid debugging of named routes. … … 14 14 15 15 * Canonicalize RAILS_ROOT by using File.expand_path on Windows, which doesn't have to worry about symlinks, and Pathname#realpath elsewhere, which respects symlinks in relative paths but is incompatible with Windows. #6755 [Jeremy Kemper, trevor] 16 16 17 17 18 *1.2.3* (March 12th, 2007) branches/1-2-stable/railties/lib/rails/version.rb
r6395 r7740 3 3 MAJOR = 1 4 4 MINOR = 2 5 TINY = 35 TINY = 4 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') branches/1-2-stable/railties/Rakefile
r6418 r7740 289 289 290 290 s.add_dependency('rake', '>= 0.7.2') 291 s.add_dependency('activesupport', '= 1.4. 2' + PKG_BUILD)292 s.add_dependency('activerecord', '= 1.15. 3' + PKG_BUILD)293 s.add_dependency('actionpack', '= 1.13. 3' + PKG_BUILD)294 s.add_dependency('actionmailer', '= 1.3. 3' + PKG_BUILD)295 s.add_dependency('actionwebservice', '= 1.2. 3' + PKG_BUILD)291 s.add_dependency('activesupport', '= 1.4.3' + PKG_BUILD) 292 s.add_dependency('activerecord', '= 1.15.4' + PKG_BUILD) 293 s.add_dependency('actionpack', '= 1.13.4' + PKG_BUILD) 294 s.add_dependency('actionmailer', '= 1.3.4' + PKG_BUILD) 295 s.add_dependency('actionwebservice', '= 1.2.4' + PKG_BUILD) 296 296 297 297 s.rdoc_options << '--exclude' << '.'