Changeset 8233
- Timestamp:
- 11/29/07 00:27:53 (11 months ago)
- Files:
-
- trunk/actionmailer/CHANGELOG (modified) (1 diff)
- trunk/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/version.rb (modified) (1 diff)
- trunk/actionmailer/lib/action_mailer/version.rb (modified) (1 diff)
- trunk/actionmailer/Rakefile (modified) (1 diff)
- trunk/actionpack/CHANGELOG (modified) (2 diffs)
- trunk/actionpack/lib/action_pack/version.rb (modified) (1 diff)
- trunk/actionpack/Rakefile (modified) (1 diff)
- trunk/activerecord/CHANGELOG (modified) (1 diff)
- trunk/activerecord/lib/active_record/version.rb (modified) (1 diff)
- trunk/activerecord/Rakefile (modified) (1 diff)
- trunk/activeresource/CHANGELOG (modified) (1 diff)
- trunk/activeresource/lib/active_resource/version.rb (modified) (1 diff)
- trunk/activeresource/Rakefile (modified) (1 diff)
- trunk/activesupport/CHANGELOG (modified) (1 diff)
- trunk/activesupport/lib/active_support/version.rb (modified) (1 diff)
- trunk/railties/CHANGELOG (modified) (1 diff)
- trunk/railties/lib/rails/version.rb (modified) (1 diff)
- trunk/railties/Rakefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionmailer/CHANGELOG
r8212 r8233 1 * SVN*1 *2.0.0 [RC2]* (November 28th, 2007) 2 2 3 3 * Update ActionMailer so it treats ActionView the same way that ActionController does. Closes #10244 [rick] trunk/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/version.rb
r8084 r8233 32 32 MAJOR = 1 33 33 MINOR = 1 34 TINY = 034 TINY = 1 35 35 36 36 STRING = [MAJOR, MINOR, TINY].join('.') trunk/actionmailer/lib/action_mailer/version.rb
r8121 r8233 3 3 MAJOR = 1 4 4 MINOR = 99 5 TINY = 05 TINY = 1 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') trunk/actionmailer/Rakefile
r8121 r8233 56 56 s.homepage = "http://www.rubyonrails.org" 57 57 58 s.add_dependency('actionpack', '= 1.99. 0' + PKG_BUILD)58 s.add_dependency('actionpack', '= 1.99.1' + PKG_BUILD) 59 59 60 60 s.has_rdoc = true trunk/actionpack/CHANGELOG
r8227 r8233 1 * SVN*1 *2.0.0 [RC2]* (November 28th, 2007) 2 2 3 3 * Make sure the optimisation code for routes doesn't get used if :host, :anchor or :port are provided in the hash arguments. [pager, Koz] #10292 … … 124 124 125 125 * Only accept session ids from cookies, prevents session fixation attacks. [bradediger] 126 126 127 127 128 *2.0.0 [Preview Release]* (September 29th, 2007) [Includes duplicates of changes from 1.12.2 - 1.13.3] trunk/actionpack/lib/action_pack/version.rb
r8121 r8233 3 3 MAJOR = 1 4 4 MINOR = 99 5 TINY = 05 TINY = 1 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') trunk/actionpack/Rakefile
r8121 r8233 77 77 s.requirements << 'none' 78 78 79 s.add_dependency('activesupport', '= 1.99. 0' + PKG_BUILD)79 s.add_dependency('activesupport', '= 1.99.1' + PKG_BUILD) 80 80 81 81 s.require_path = 'lib' trunk/activerecord/CHANGELOG
r8219 r8233 1 * SVN*1 *2.0.0 [RC2]* (November 28th, 2007) 2 2 3 3 * Foxy fixtures: support single-table inheritance. #10234 [tom] trunk/activerecord/lib/active_record/version.rb
r8121 r8233 3 3 MAJOR = 1 4 4 MINOR = 99 5 TINY = 05 TINY = 1 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') trunk/activerecord/Rakefile
r8121 r8233 173 173 end 174 174 175 s.add_dependency('activesupport', '= 1.99. 0' + PKG_BUILD)175 s.add_dependency('activesupport', '= 1.99.1' + PKG_BUILD) 176 176 177 177 s.files.delete "test/fixtures/fixture_database.sqlite" trunk/activeresource/CHANGELOG
r8167 r8233 1 *2.0.0 [RC2]* (November 28th, 2007) 2 1 3 * Don't cache net/http object so that ActiveResource is more thread-safe. Closes #10142 [kou] 2 4 3 5 * Update XML documentation examples to include explicit type attributes. Closes #9754 [hasmanyjosh] 6 4 7 5 8 *2.0.0 [Preview Release]* (September 29th, 2007) trunk/activeresource/lib/active_resource/version.rb
r8121 r8233 3 3 MAJOR = 1 4 4 MINOR = 99 5 TINY = 05 TINY = 1 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') trunk/activeresource/Rakefile
r8121 r8233 63 63 end 64 64 65 s.add_dependency('activesupport', '= 1.99. 0' + PKG_BUILD)65 s.add_dependency('activesupport', '= 1.99.1' + PKG_BUILD) 66 66 67 67 s.require_path = 'lib' trunk/activesupport/CHANGELOG
r8224 r8233 1 * SVN*1 *2.0.0 [RC2]* (November 28th, 2007) 2 2 3 3 * Added Array#from and Array#to that behaves just from String#from and String#to [DHH] trunk/activesupport/lib/active_support/version.rb
r8121 r8233 3 3 MAJOR = 1 4 4 MINOR = 99 5 TINY = 05 TINY = 1 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') trunk/railties/CHANGELOG
r8229 r8233 1 * SVN*1 *2.0.0 [RC2]* (November 28th, 2007) 2 2 3 3 * Introduce SecretKeyGenerator for more secure session secrets than CGI::Session's pseudo-random id generator. Consider extracting to Active Support later. #10286 [Hongli Lai] trunk/railties/lib/rails/version.rb
r8121 r8233 3 3 MAJOR = 1 4 4 MINOR = 99 5 TINY = 05 TINY = 1 6 6 7 7 STRING = [MAJOR, MINOR, TINY].join('.') trunk/railties/Rakefile
r8122 r8233 313 313 314 314 s.add_dependency('rake', '>= 0.7.2') 315 s.add_dependency('activesupport', '= 1.99. 0' + PKG_BUILD)316 s.add_dependency('activerecord', '= 1.99. 0' + PKG_BUILD)317 s.add_dependency('actionpack', '= 1.99. 0' + PKG_BUILD)318 s.add_dependency('actionmailer', '= 1.99. 0' + PKG_BUILD)319 s.add_dependency('activeresource', '= 1.99. 0' + PKG_BUILD)315 s.add_dependency('activesupport', '= 1.99.1' + PKG_BUILD) 316 s.add_dependency('activerecord', '= 1.99.1' + PKG_BUILD) 317 s.add_dependency('actionpack', '= 1.99.1' + PKG_BUILD) 318 s.add_dependency('actionmailer', '= 1.99.1' + PKG_BUILD) 319 s.add_dependency('activeresource', '= 1.99.1' + PKG_BUILD) 320 320 321 321 s.rdoc_options << '--exclude' << '.'