InfoQ

News

Rails 1.2 Release Candidate Announced

Posted by Obie Fernandez on Nov 24, 2006 04:14 PM

Community
Ruby
Topics
REST ,
Ruby on Rails
Tags
Rails ,
Announcements ,
Releases

This week, David Heinemeir Hansson announced availability of the Rails 1.2 Release Candidate 1:

It's been almost eight months since the last major release of Rails introduced RJS, respond_to, eager loading, and much more. It's about time we introduced the latest batch of big ideas we've been polishing in the interim.

Since this is a major new release and we've gotten so much incredible uptake even since 1.1, we're feeling the need to certify that things work as well as they can out the gates. Thus, this release candidate to fret out any regressions or major issues with the new features.

Rails 1.2 formally introduces RESTful features that have been on Rails developer's minds since David's keynote at RailsConf 2006. The new scaffold_resource generator helps developers structure their applications REST-style along with the new map.resources directive in routes.rb.

The respond_to handler method for controllers now understands URL suffixes, letting developers write super-concise code for generating the same content as differing types of responses, such as HTML, XML, and RSS.

One of the biggest subjects of criticism about Rails is support (or lack there-of) for Unicode. That's why the official inclusion of ActiveSupport::Multibyte in Rails 1.2 is such big news. In David's words:

While Rails has always been able to store and display unicode with no beef, it’s been a little more complicated to truncate, reverse, or get the exact length of a UTF-8 string. You needed to fool around with KCODE yourself and while plenty of people made it work, it wasn’t as plug’n’play easy as you could have hoped (or perhaps even expected). [...]

With Rails 1.2, we’re assuming that you want to play well with unicode out the gates. The default charset for action renderings is therefore also UTF-8 (you can set another with ActionController::Base.default_charset=(encoding)). KCODE is automatically set to UTF-8 as well.

A screencast demonstrating Rails multibyte support is available.

Many notable deprecations are now in place and will produce warnings in test output and logs. Here is a short list of deprecation-related changes:

  • The use of start_form_tag and end_form_tag is now deprecated in favor of <% form_tag ... do %>...<% end %>
  • Passing :post => true as a link modifier is deprecated in favor of :method => :post.
  • link_to_image and link_image_to are deprecated in favor of link_to(image_tag(...), url)

Well-known Railser Josh Susser is first out of the gate with commentary about the new release, reminding the community of why release candidates are produced:

The point of a release candidate is to let the code bake for a bit while not making any changes, giving the development team a chance to find any lingering bugs. The developers are saying, "we think we're done, but lets make sure there aren't any showstoppers that we haven't found yet." In one sense it's an admission that test coverage is incomplete, but the world isn't perfect and neither is anyone's test suite.

Feeling adventurous? To install the new release as a gem, simply type the following at your command prompt:

gem install rails --source http://gems.rubyonrails.org --include-dependencies

Alternatively, you can "freeze" the release candidate code for a particular project, by running the following rake task in your project directory:

rake rails:freeze:edge TAG=rel_1-2-0_RC1

In a comment to the Rails blog announcement, David says the final release of Rails 1.2 will happen in a few weeks.

1 comment

Reply

More New Feature Explanations by Obie Fernandez Posted Nov 26, 2006 3:56 PM
  1. Back to top

    More New Feature Explanations

    Nov 26, 2006 3:56 PM by Obie Fernandez

    The Rails blog has three really good posts explaining changes in ActiveSupport, ActionPack, and ActiveRecord

Exclusive Content

Dan Farino About MySpace’s Architecture

Dan Farino talks about the system architecture and the challenges faced when building a very large online community. Dan explains how a .NET product scales on hundreds of servers.

The Maxine VM

Bernd Mathiske discusses Maxine VM, Java compatibility, swapping major VM components, research areas, Object handling, code examples, optimizing compiler, snippets, bytecode generation, JNI and JIT.

Joe Armstrong About Erlang

Joe Armstrong speaks on various aspects of the Erlang language, presenting its roots, how it compares with other languages and why it has become popular these days.

The Limits of Code Optimization: a new Singleton Pattern Implementation

The java double-check singleton pattern is not thread safe and can’t be fixed. In this article, Dr. Alexey Yakubovich provides an implementation of the Singleton pattern that he claims is thread-safe.

Pressure and Performance – The CTO's Dilemma

Diana and Jim talk about patterns observed in CTOs' activity. CTOs emerge as real people caring for other people in their organization, and are put under a lot of pressure and constraints.

Biztalk Services in the Cloud

Cloud computing feels like a tomorrow technology. Simon Thurman shows how developers can use Biztalk to create an Internet Service Bus which can be deployed locally or in the cloud.

Java FX Technology Preview

InfoQ takes a look at the JavaFX preview build and talks to Sun Staff Engineer Joshua Marinacci about the upcoming version 1 release expected this autumn.

Jeff Sutherland: Reaching Hyper-Productivity with Outsourced Development Teams

Jeff Sutherland, co-creator of Scrum, and Guido Schoonheim, CTO of Xebia, present an actual case of reaching hyper-productivity with a large distributed team using XP and Scrum.