Skip to content

Commit

Permalink
Update release notes from docrails.
Browse files Browse the repository at this point in the history
  • Loading branch information
lifo committed Nov 14, 2008
1 parent 3be853b commit ad679a4
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
13 changes: 12 additions & 1 deletion railties/doc/guides/html/2_2_release_notes.html
Expand Up @@ -812,6 +812,16 @@ <h3 id="_other_action_controller_changes">6.4. Other Action Controller Changes</
<tt>render</tt> now supports a <tt>:js</tt> option to render plain vanilla javascript with the right mime type.
</p>
</li>
<li>
<p>
Request forgery protection has been tightened up to apply to HTML-formatted content requests only.
</p>
</li>
<li>
<p>
Polymorphic URLs behave more sensibly if a passed parameter is nil. For example, calling <tt>polymorphic_path([@project, @date, @area])</tt> with a nil date will give you <tt>project_area_path</tt>.
</p>
</li>
</ul></div>
</div>
<h2 id="_action_view">7. Action View</h2>
Expand Down Expand Up @@ -856,6 +866,7 @@ <h2 id="_action_mailer">8. Action Mailer</h2>
</ul></div>
</li>
</ul></div>
<div class="para"><p>Action Mailer now offers built-in support for GMail's SMTP servers, by turning on STARTTLS automatically. This requires Ruby 1.8.7 to be installed.</p></div>
</div>
<h2 id="_active_support">9. Active Support</h2>
<div class="sectionbody">
Expand Down Expand Up @@ -1094,7 +1105,7 @@ <h3 id="_other_railties_changes">10.2. Other Railties Changes</h3>
</li>
<li>
<p>
<tt>script/generate</tt> works without deprecation warnings when RubyGems 1.3.0 is present
To eliminate deprecation warnings and properly handle gem dependencies, Rails now requires rubygems 1.3.1 or higher.
</p>
</li>
</ul></div>
Expand Down
6 changes: 5 additions & 1 deletion railties/doc/guides/source/2_2_release_notes.txt
Expand Up @@ -270,6 +270,8 @@ map.resources :products, :except => :destroy
* Rails now supports HTTP-only cookies (and uses them for sessions), which help mitigate some cross-site scripting risks in newer browsers.
* +redirect_to+ now fully supports URI schemes (so, for example, you can redirect to a svn+ssh: URI).
* +render+ now supports a +:js+ option to render plain vanilla javascript with the right mime type.
* Request forgery protection has been tightened up to apply to HTML-formatted content requests only.
* Polymorphic URLs behave more sensibly if a passed parameter is nil. For example, calling +polymorphic_path([@project, @date, @area])+ with a nil date will give you +project_area_path+.

== Action View

Expand All @@ -285,6 +287,8 @@ Action Mailer now supports mailer layouts. You can make your HTML emails as pret
* More information:
- link:http://ryandaigle.com/articles/2008/9/7/what-s-new-in-edge-rails-mailer-layouts[What's New in Edge Rails: Mailer Layouts]

Action Mailer now offers built-in support for GMail's SMTP servers, by turning on STARTTLS automatically. This requires Ruby 1.8.7 to be installed.

== Active Support

Active Support now offers built-in memoization for Rails applications, the +each_with_object+ method, prefix support on delegates, and various other new utility methods.
Expand Down Expand Up @@ -399,7 +403,7 @@ You can unpack or install a single gem by specifying +GEM=_gem_name_+ on the com
* Instructions for setting up a continuous integration server to build Rails itself are included in the Rails source
* +rake notes:custom ANNOTATION=MYFLAG+ lets you list out custom annotations.
* Wrapped +Rails.env+ in +StringInquirer+ so you can do +Rails.env.development?+
* +script/generate+ works without deprecation warnings when RubyGems 1.3.0 is present
* To eliminate deprecation warnings and properly handle gem dependencies, Rails now requires rubygems 1.3.1 or higher.

== Deprecated

Expand Down

0 comments on commit ad679a4

Please sign in to comment.