2_2_release_notes.md 22.7 KB
Newer Older
1
**DO NOT READ THIS FILE ON GITHUB, GUIDES ARE PUBLISHED ON http://guides.rubyonrails.org.**
2

3 4
Ruby on Rails 2.2 Release Notes
===============================
5

J
Jon Moss 已提交
6
Rails 2.2 delivers a number of new and improved features. This list covers the major upgrades, but doesn't include every little bug fix and change. If you want to see everything, check out the [list of commits](https://github.com/rails/rails/commits/2-2-stable) in the main Rails repository on GitHub.
7

8
Along with Rails, 2.2 marks the launch of the [Ruby on Rails Guides](http://guides.rubyonrails.org/), the first results of the ongoing [Rails Guides hackfest](http://hackfest.rubyonrails.org/guide). This site will deliver high-quality documentation of the major features of Rails.
9

10
--------------------------------------------------------------------------------
11

12 13
Infrastructure
--------------
14 15 16

Rails 2.2 is a significant release for the infrastructure that keeps Rails humming along and connected to the rest of the world.

17
### Internationalization
18 19 20 21 22

Rails 2.2 supplies an easy system for internationalization (or i18n, for those of you tired of typing).

* Lead Contributors: Rails i18 Team
* More information :
23
    * [Official Rails i18 website](http://rails-i18n.org)
24
    * [Finally. Ruby on Rails gets internationalized](https://web.archive.org/web/20140407075019/http://www.artweb-design.de/2008/7/18/finally-ruby-on-rails-gets-internationalized)
J
Jon Moss 已提交
25
    * [Localizing Rails : Demo application](https://github.com/clemens/i18n_demo_app)
26

27
### Compatibility with Ruby 1.9 and JRuby
28 29 30

Along with thread safety, a lot of work has been done to make Rails work well with JRuby and the upcoming Ruby 1.9. With Ruby 1.9 being a moving target, running edge Rails on edge Ruby is still a hit-or-miss proposition, but Rails is ready to make the transition to Ruby 1.9 when the latter is released.

31 32 33 34 35
Documentation
-------------

The internal documentation of Rails, in the form of code comments, has been improved in numerous places. In addition, the [Ruby on Rails Guides](http://guides.rubyonrails.org/) project is the definitive source for information on major Rails components. In its first official release, the Guides page includes:

36 37 38 39 40 41 42 43 44 45 46 47 48 49
* [Getting Started with Rails](getting_started.html)
* [Rails Database Migrations](migrations.html)
* [Active Record Associations](association_basics.html)
* [Active Record Query Interface](active_record_querying.html)
* [Layouts and Rendering in Rails](layouts_and_rendering.html)
* [Action View Form Helpers](form_helpers.html)
* [Rails Routing from the Outside In](routing.html)
* [Action Controller Overview](action_controller_overview.html)
* [Rails Caching](caching_with_rails.html)
* [A Guide to Testing Rails Applications](testing.html)
* [Securing Rails Applications](security.html)
* [Debugging Rails Applications](debugging_rails_applications.html)
* [Performance Testing Rails Applications](performance_testing.html)
* [The Basics of Creating Rails Plugins](plugins.html)
50 51 52 53 54

All told, the Guides provide tens of thousands of words of guidance for beginning and intermediate Rails developers.

If you want to generate these guides locally, inside your application:

55
```
56
rake doc:guides
57
```
58

59
This will put the guides inside `Rails.root/doc/guides` and you may start surfing straight away by opening `Rails.root/doc/guides/index.html` in your favourite browser.
60

61
* Lead Contributors: [Rails Documentation Team](credits.html)
62
* Major contributions from [Xavier Noria](http://advogato.org/person/fxn/diary.html) and [Hongli Lai](http://izumi.plan99.net/blog/).
63
* More information:
64 65
    * [Rails Guides hackfest](http://hackfest.rubyonrails.org/guide)
    * [Help improve Rails documentation on Git branch](http://weblog.rubyonrails.org/2008/5/2/help-improve-rails-documentation-on-git-branch)
66

67 68
Better integration with HTTP : Out of the box ETag support
----------------------------------------------------------
69 70 71

Supporting the etag and last modified timestamp in HTTP headers means that Rails can now send back an empty response if it gets a request for a resource that hasn't been modified lately. This allows you to check whether a response needs to be sent at all.

72
```ruby
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
class ArticlesController < ApplicationController
  def show_with_respond_to_block
    @article = Article.find(params[:id])

    # If the request sends headers that differs from the options provided to stale?, then
    # the request is indeed stale and the respond_to block is triggered (and the options
    # to the stale? call is set on the response).
    #
    # If the request headers match, then the request is fresh and the respond_to block is
    # not triggered. Instead the default render will occur, which will check the last-modified
    # and etag headers and conclude that it only needs to send a "304 Not Modified" instead
    # of rendering the template.
    if stale?(:last_modified => @article.published_at.utc, :etag => @article)
      respond_to do |wants|
        # normal response processing
      end
    end
  end

  def show_with_implied_render
    @article = Article.find(params[:id])

    # Sets the response headers and checks them against the request, if the request is stale
    # (i.e. no match of either etag or last-modified), then the default render of the template happens.
    # If the request is fresh, then the default render will return a "304 Not Modified"
    # instead of rendering the template.
    fresh_when(:last_modified => @article.published_at.utc, :etag => @article)
  end
end
102
```
103

104 105
Thread Safety
-------------
106 107 108

The work done to make Rails thread-safe is rolling out in Rails 2.2. Depending on your web server infrastructure, this means you can handle more requests with fewer copies of Rails in memory, leading to better server performance and higher utilization of multiple cores.

109
To enable multithreaded dispatching in production mode of your application, add the following line in your `config/environments/production.rb`:
110

111
```ruby
112
config.threadsafe!
113
```
114 115

* More information :
116 117 118
    * [Thread safety for your Rails](http://m.onkey.org/2008/10/23/thread-safety-for-your-rails)
    * [Thread safety project announcement](http://weblog.rubyonrails.org/2008/8/16/josh-peek-officially-joins-the-rails-core)
    * [Q/A: What Thread-safe Rails Means](http://blog.headius.com/2008/08/qa-what-thread-safe-rails-means.html)
119

120 121
Active Record
-------------
122 123 124

There are two big additions to talk about here: transactional migrations and pooled database transactions. There's also a new (and cleaner) syntax for join table conditions, as well as a number of smaller improvements.

125
### Transactional Migrations
126

127
Historically, multiple-step Rails migrations have been a source of trouble. If something went wrong during a migration, everything before the error changed the database and everything after the error wasn't applied. Also, the migration version was stored as having been executed, which means that it couldn't be simply rerun by `rake db:migrate:redo` after you fix the problem. Transactional migrations change this by wrapping migration steps in a DDL transaction, so that if any of them fail, the entire migration is undone. In Rails 2.2, transactional migrations are supported on PostgreSQL out of the box. The code is extensible to other database types in the future - and IBM has already extended it to support the DB2 adapter.
128

129
* Lead Contributor: [Adam Wiggins](http://adam.heroku.com/)
130
* More information:
131 132
    * [DDL Transactions](http://adam.heroku.com/past/2008/9/3/ddl_transactions/)
    * [A major milestone for DB2 on Rails](http://db2onrails.com/2008/11/08/a-major-milestone-for-db2-on-rails/)
133

134
### Connection Pooling
135

136
Connection pooling lets Rails distribute database requests across a pool of database connections that will grow to a maximum size (by default 5, but you can add a `pool` key to your `database.yml` to adjust this). This helps remove bottlenecks in applications that support many concurrent users. There's also a `wait_timeout` that defaults to 5 seconds before giving up. `ActiveRecord::Base.connection_pool` gives you direct access to the pool if you need it.
137

138
```yaml
139 140 141 142 143 144
development:
  adapter: mysql
  username: root
  database: sample_development
  pool: 10
  wait_timeout: 10
145
```
146

147
* Lead Contributor: [Nick Sieger](http://blog.nicksieger.com/)
148
* More information:
149
    * [What's New in Edge Rails: Connection Pools](http://archives.ryandaigle.com/articles/2008/9/7/what-s-new-in-edge-rails-connection-pools)
150

151
### Hashes for Join Table Conditions
152 153 154

You can now specify conditions on join tables using a hash. This is a big help if you need to query across complex joins.

155
```ruby
156 157 158 159 160 161 162 163 164 165
class Photo < ActiveRecord::Base
  belongs_to :product
end

class Product < ActiveRecord::Base
  has_many :photos
end

# Get all products with copyright-free photos:
Product.all(:joins => :photos, :conditions => { :photos => { :copyright => false }})
166
```
167 168

* More information:
169
    * [What's New in Edge Rails: Easy Join Table Conditions](http://archives.ryandaigle.com/articles/2008/7/7/what-s-new-in-edge-rails-easy-join-table-conditions)
170

171
### New Dynamic Finders
172 173 174

Two new sets of methods have been added to Active Record's dynamic finders family.

175
#### `find_last_by_attribute`
176

177
The `find_last_by_attribute` method is equivalent to `Model.last(:conditions => {:attribute => value})`
178

179
```ruby
180 181
# Get the last user who signed up from London
User.find_last_by_city('London')
182
```
183

184
* Lead Contributor: [Emilio Tagua](http://www.workingwithrails.com/person/9147-emilio-tagua)
185

186
#### `find_by_attribute!`
187

188
The new bang! version of `find_by_attribute!` is equivalent to `Model.first(:conditions => {:attribute => value}) || raise ActiveRecord::RecordNotFound` Instead of returning `nil` if it can't find a matching record, this method will raise an exception if it cannot find a match.
189

190
```ruby
191 192
# Raise ActiveRecord::RecordNotFound exception if 'Moby' hasn't signed up yet!
User.find_by_name!('Moby')
193
```
194

195
* Lead Contributor: [Josh Susser](http://blog.hasmanythrough.com)
196

197
### Associations Respect Private/Protected Scope
198

199
Active Record association proxies now respect the scope of methods on the proxied object. Previously (given User has_one :account) `@user.account.private_method` would call the private method on the associated Account object. That fails in Rails 2.2; if you need this functionality, you should use `@user.account.send(:private_method)` (or make the method public instead of private or protected). Please note that if you're overriding `method_missing`, you should also override `respond_to` to match the behavior in order for associations to function normally.
200 201 202

* Lead Contributor: Adam Milligan
* More information:
203
    * [Rails 2.2 Change: Private Methods on Association Proxies are Private](http://afreshcup.com/2008/10/24/rails-22-change-private-methods-on-association-proxies-are-private/)
204

Y
Yves Senn 已提交
205
### Other Active Record Changes
206

207 208 209 210
* `rake db:migrate:redo` now accepts an optional VERSION to target that specific migration to redo
* Set `config.active_record.timestamped_migrations = false` to have migrations with numeric prefix instead of UTC timestamp.
* Counter cache columns (for associations declared with `:counter_cache => true`) do not need to be initialized to zero any longer.
* `ActiveRecord::Base.human_name` for an internationalization-aware humane translation of model names
211

212 213
Action Controller
-----------------
214 215 216

On the controller side, there are several changes that will help tidy up your routes. There are also some internal changes in the routing engine to lower memory usage on complex applications.

217
### Shallow Route Nesting
218 219 220

Shallow route nesting provides a solution to the well-known difficulty of using deeply-nested resources. With shallow nesting, you need only supply enough information to uniquely identify the resource that you want to work with.

221
```ruby
222 223 224 225 226
map.resources :publishers, :shallow => true do |publisher|
  publisher.resources :magazines do |magazine|
    magazine.resources :photos
  end
end
227
```
228 229 230

This will enable recognition of (among others) these routes:

231
```
232 233 234 235 236
/publishers/1           ==> publisher_path(1)
/publishers/1/magazines ==> publisher_magazines_path(1)
/magazines/2            ==> magazine_path(2)
/magazines/2/photos     ==> magazines_photos_path(2)
/photos/3               ==> photo_path(3)
237
```
238

239
* Lead Contributor: [S. Brent Faulkner](http://www.unwwwired.net/)
240
* More information:
241
    * [Rails Routing from the Outside In](routing.html#nested-resources)
242
    * [What's New in Edge Rails: Shallow Routes](http://archives.ryandaigle.com/articles/2008/9/7/what-s-new-in-edge-rails-shallow-routes)
243

244
### Method Arrays for Member or Collection Routes
245 246 247

You can now supply an array of methods for new member or collection routes. This removes the annoyance of having to define a route as accepting any verb as soon as you need it to handle more than one. With Rails 2.2, this is a legitimate route declaration:

248
```ruby
249
map.resources :photos, :collection => { :search => [:get, :post] }
250
```
251

252
* Lead Contributor: [Brennan Dunn](http://brennandunn.com/)
253

254
### Resources With Specific Actions
255

256
By default, when you use `map.resources` to create a route, Rails generates routes for seven default actions (index, show, create, new, edit, update, and destroy). But each of these routes takes up memory in your application, and causes Rails to generate additional routing logic. Now you can use the `:only` and `:except` options to fine-tune the routes that Rails will generate for resources. You can supply a single action, an array of actions, or the special `:all` or `:none` options. These options are inherited by nested resources.
257

258
```ruby
259 260
map.resources :photos, :only => [:index, :show]
map.resources :products, :except => :destroy
261
```
262

263
* Lead Contributor: [Tom Stuart](http://experthuman.com/)
264

265
### Other Action Controller Changes
266

267 268
* You can now easily [show a custom error page](http://m.onkey.org/2008/7/20/rescue-from-dispatching) for exceptions raised while routing a request.
* The HTTP Accept header is disabled by default now. You should prefer the use of formatted URLs (such as `/customers/1.xml`) to indicate the format that you want. If you need the Accept headers, you can turn them back on with `config.action_controller.use_accept_header = true`.
269 270
* Benchmarking numbers are now reported in milliseconds rather than tiny fractions of seconds
* Rails now supports HTTP-only cookies (and uses them for sessions), which help mitigate some cross-site scripting risks in newer browsers.
271 272
* `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.
273
* Request forgery protection has been tightened up to apply to HTML-formatted content requests only.
274
* 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`.
275

276 277
Action View
-----------
278

279
* `javascript_include_tag` and `stylesheet_link_tag` support a new `:recursive` option to be used along with `:all`, so that you can load an entire tree of files with a single line of code.
V
Vijay Dev 已提交
280
* The included Prototype JavaScript library has been upgraded to version 1.6.0.3.
281 282
* `RJS#page.reload` to reload the browser's current location via JavaScript
* The `atom_feed` helper now takes an `:instruct` option to let you insert XML processing instructions.
283

284 285
Action Mailer
-------------
286

287
Action Mailer now supports mailer layouts. You can make your HTML emails as pretty as your in-browser views by supplying an appropriately-named layout - for example, the `CustomerMailer` class expects to use `layouts/customer_mailer.html.erb`.
288 289

* More information:
290
    * [What's New in Edge Rails: Mailer Layouts](http://archives.ryandaigle.com/articles/2008/9/7/what-s-new-in-edge-rails-mailer-layouts)
291 292 293

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.

294 295
Active Support
--------------
296

297
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.
298

299
### Memoization
300 301 302

Memoization is a pattern of initializing a method once and then stashing its value away for repeat use. You've probably used this pattern in your own applications:

303
```ruby
304 305 306
def full_name
  @full_name ||= "#{first_name} #{last_name}"
end
307
```
308 309 310

Memoization lets you handle this task in a declarative fashion:

311
```ruby
312 313 314 315 316 317
extend ActiveSupport::Memoizable

def full_name
  "#{first_name} #{last_name}"
end
memoize :full_name
318
```
319

320
Other features of memoization include `unmemoize`, `unmemoize_all`, and `memoize_all` to turn memoization on or off.
321

322
* Lead Contributor: [Josh Peek](http://joshpeek.com/)
323
* More information:
324
    * [What's New in Edge Rails: Easy Memoization](http://archives.ryandaigle.com/articles/2008/7/16/what-s-new-in-edge-rails-memoization)
325
    * [Memo-what? A Guide to Memoization](http://www.railway.at/articles/2008/09/20/a-guide-to-memoization)
326

327
### each_with_object
328

329
The `each_with_object` method provides an alternative to `inject`, using a method backported from Ruby 1.9. It iterates over a collection, passing the current element and the memo into the block.
330

331
```ruby
A
Alex Johnson 已提交
332
%w(foo bar).each_with_object({}) { |str, hsh| hsh[str] = str.upcase } # => {'foo' => 'FOO', 'bar' => 'BAR'}
333
```
334

335
Lead Contributor: [Adam Keys](http://therealadam.com/)
336

337
### Delegates With Prefixes
338 339 340

If you delegate behavior from one class to another, you can now specify a prefix that will be used to identify the delegated methods. For example:

341
```ruby
342 343 344 345
class Vendor < ActiveRecord::Base
  has_one :account
  delegate :email, :password, :to => :account, :prefix => true
end
346
```
347

348
This will produce delegated methods `vendor#account_email` and `vendor#account_password`. You can also specify a custom prefix:
349

350
```ruby
351 352 353 354
class Vendor < ActiveRecord::Base
  has_one :account
  delegate :email, :password, :to => :account, :prefix => :owner
end
355
```
356

357
This will produce delegated methods `vendor#owner_email` and `vendor#owner_password`.
358

359
Lead Contributor: [Daniel Schierbeck](http://workingwithrails.com/person/5830-daniel-schierbeck)
360

361
### Other Active Support Changes
362

363 364 365 366 367 368 369
* Extensive updates to `ActiveSupport::Multibyte`, including Ruby 1.9 compatibility fixes.
* The addition of `ActiveSupport::Rescuable` allows any class to mix in the `rescue_from` syntax.
* `past?`, `today?` and `future?` for `Date` and `Time` classes to facilitate date/time comparisons.
* `Array#second` through `Array#fifth` as aliases for `Array#[1]` through `Array#[4]`
* `Enumerable#many?` to encapsulate `collection.size > 1`
* `Inflector#parameterize` produces a URL-ready version of its input, for use in `to_param`.
* `Time#advance` recognizes fractional days and weeks, so you can do `1.7.weeks.ago`, `1.5.hours.since`, and so on.
370
* The included TzInfo library has been upgraded to version 0.3.12.
371
* `ActiveSupport::StringInquirer` gives you a pretty way to test for equality in strings: `ActiveSupport::StringInquirer.new("abc").abc? => true`
372

373 374
Railties
--------
375

376
In Railties (the core code of Rails itself) the biggest changes are in the `config.gems` mechanism.
377

378
### config.gems
379

380
To avoid deployment issues and make Rails applications more self-contained, it's possible to place copies of all of the gems that your Rails application requires in `/vendor/gems`. This capability first appeared in Rails 2.1, but it's much more flexible and robust in Rails 2.2, handling complicated dependencies between gems. Gem management in Rails includes these commands:
381

382 383 384 385 386 387 388
* `config.gem _gem_name_` in your `config/environment.rb` file
* `rake gems` to list all configured gems, as well as whether they (and their dependencies) are installed, frozen, or framework (framework gems are those loaded by Rails before the gem dependency code is executed; such gems cannot be frozen)
* `rake gems:install` to install missing gems to the computer
* `rake gems:unpack` to place a copy of the required gems into `/vendor/gems`
* `rake gems:unpack:dependencies` to get copies of the required gems and their dependencies into `/vendor/gems`
* `rake gems:build` to build any missing native extensions
* `rake gems:refresh_specs` to bring vendored gems created with Rails 2.1 into alignment with the Rails 2.2 way of storing them
389

390
You can unpack or install a single gem by specifying `GEM=_gem_name_` on the command line.
391

J
Jon Moss 已提交
392
* Lead Contributor: [Matt Jones](https://github.com/al2o3cr)
393
* More information:
394
    * [What's New in Edge Rails: Gem Dependencies](http://archives.ryandaigle.com/articles/2008/4/1/what-s-new-in-edge-rails-gem-dependencies)
395 396
    * [Rails 2.1.2 and 2.2RC1: Update Your RubyGems](http://afreshcup.com/2008/10/25/rails-212-and-22rc1-update-your-rubygems/)
    * [Detailed discussion on Lighthouse](http://rails.lighthouseapp.com/projects/8994-ruby-on-rails/tickets/1128)
397

398
### Other Railties Changes
399

400 401 402
* If you're a fan of the [Thin](http://code.macournoyer.com/thin/) web server, you'll be happy to know that `script/server` now supports Thin directly.
* `script/plugin install &lt;plugin&gt; -r &lt;revision&gt;` now works with git-based as well as svn-based plugins.
* `script/console` now supports a `--debugger` option
403
* Instructions for setting up a continuous integration server to build Rails itself are included in the Rails source
404 405
* `rake notes:custom ANNOTATION=MYFLAG` lets you list out custom annotations.
* Wrapped `Rails.env` in `StringInquirer` so you can do `Rails.env.development?`
406 407
* To eliminate deprecation warnings and properly handle gem dependencies, Rails now requires rubygems 1.3.1 or higher.

408 409
Deprecated
----------
410 411 412

A few pieces of older code are deprecated in this release:

413
* `Rails::SecretKeyGenerator` has been replaced by `ActiveSupport::SecureRandom`
J
Jon Moss 已提交
414
* `render_component` is deprecated. There's a [render_components plugin](https://github.com/rails/render_component/tree/master) available if you need this functionality.
415 416
* Implicit local assignments when rendering partials has been deprecated.

417 418 419 420 421 422
    ```ruby
    def partial_with_implicit_local_assignment
      @customer = Customer.new("Marcel")
      render :partial => "customer"
    end
    ```
423

424
    Previously the above code made available a local variable called `customer` inside the partial 'customer'. You should explicitly pass all the variables via :locals hash now.
425

426 427 428 429 430 431 432
* `country_select` has been removed. See the [deprecation page](http://www.rubyonrails.org/deprecation/list-of-countries) for more information and a plugin replacement.
* `ActiveRecord::Base.allow_concurrency` no longer has any effect.
* `ActiveRecord::Errors.default_error_messages` has been deprecated in favor of `I18n.translate('activerecord.errors.messages')`
* The `%s` and `%d` interpolation syntax for internationalization is deprecated.
* `String#chars` has been deprecated in favor of `String#mb_chars`.
* Durations of fractional months or fractional years are deprecated. Use Ruby's core `Date` and `Time` class arithmetic instead.
* `Request#relative_url_root` is deprecated. Use `ActionController::Base.relative_url_root` instead.
433

434 435
Credits
-------
436

437
Release notes compiled by [Mike Gunderloy](http://afreshcup.com)