diff options
author | Mike Gunderloy <MikeG1@larkfarm.com> | 2009-02-06 07:56:38 -0600 |
---|---|---|
committer | Mike Gunderloy <MikeG1@larkfarm.com> | 2009-02-06 07:59:22 -0600 |
commit | 0d92746eea34b94ace90d10d6f4239c0d8b2384a (patch) | |
tree | 790035859c74c5f97c4a83fbf5d7f9800969aed0 /railties/guides/source | |
parent | b9ba2fe55059a6d9f141d1d502e16bdfd46f26cb (diff) | |
download | rails-0d92746eea34b94ace90d10d6f4239c0d8b2384a.tar.gz rails-0d92746eea34b94ace90d10d6f4239c0d8b2384a.tar.bz2 rails-0d92746eea34b94ace90d10d6f4239c0d8b2384a.zip |
Update 2.3 release notes.
Diffstat (limited to 'railties/guides/source')
-rw-r--r-- | railties/guides/source/2_3_release_notes.textile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/railties/guides/source/2_3_release_notes.textile b/railties/guides/source/2_3_release_notes.textile index 334416f3f6..5268ebe3d4 100644 --- a/railties/guides/source/2_3_release_notes.textile +++ b/railties/guides/source/2_3_release_notes.textile @@ -399,6 +399,7 @@ h4. Other Action View Changes * Token generation for CSRF protection has been simplified; now Rails uses a simple random string generated by +ActiveSupport::SecureRandom+ rather than mucking around with session IDs. * +auto_link+ now properly applies options (such as +:target+ and +:class+) to generated e-mail links. * The +autolink+ helper has been refactored to make it a bit less messy and more intuitive. +* +current_page?+ now works properly even when there are multiple query parameters in the URL. h3. Active Support @@ -482,6 +483,9 @@ h4. Other Railties Changes * The dbconsole script now lets you use an all-numeric password without crashing. * +Rails.root+ now returns a +Pathname+ object, which means you can use it directly with the +join+ method to "clean up existing code":http://afreshcup.com/2008/12/05/a-little-rails_root-tidiness/ that uses +File.join+. * Various files in /public that deal with CGI and FCGI dispatching are no longer generated in every Rails application by default (you can still get them if you need them by adding +--with-dispatches+ when you run the +rails+ command, or add them later with +rake rails:generate_dispatchers+). +* Rails Guides have been converted from AsciiDoc to Textile markup. +* Scaffolded views and controllers have been cleaned up a bit. +* +script/server+ now accepts a <tt>--path</tt> argument to mount a Rails application from a specific path. h3. Deprecated |