Updated changelogs to differentiate beta1 and beta2

This commit is contained in:
wycats 2010-04-01 14:04:55 -07:00
parent d2a48852a1
commit c1883e75b3
6 changed files with 15 additions and 8 deletions

View File

@ -1,4 +1,4 @@
*Rails 3.0 (pending)*
*Rails 3.0.0 [beta 2] (pending)*
* Added interceptors and observers from Mail [ML]
@ -7,6 +7,8 @@
* Whole new API added with tests. See base.rb for full details. Old API is deprecated.
*Rails 3.0.0 [beta 1] (February 4, 2010)*
* The Mail::Message class has helped methods for all the field types that return 'common' defaults for the common use case, so to get the subject, mail.subject will give you a string, mail.date will give you a DateTime object, mail.from will give you an array of address specs (mikel@test.lindsaar.net) etc. If you want to access the field object itself, call mail[:field_name] which will return the field object you want, which you can then chain, like mail[:from].formatted
* Mail#content_type now returns the content_type field as a string. If you want the mime type of a mail, then you call Mail#mime_type (eg, text/plain), if you want the parameters of the content type field, you call Mail#content_type_parameters which gives you a hash, eg {'format' => 'flowed', 'charset' => 'utf-8'}

View File

@ -1,4 +1,4 @@
*Edge*
*Rails 3.0.0 [beta 2] (pending)*
* #concat is now deprecated in favor of using <%= %> helpers [YK]
@ -28,6 +28,8 @@
# for just url_for
include Rails.application.router.url_for
*Rails 3.0.0 [beta 1] (February 4, 2010)*
* Fixed that PrototypeHelper#update_page should return html_safe [DHH]
* Fixed that much of DateHelper wouldn't return html_safe? strings [DHH]

View File

@ -1,4 +1,4 @@
*Edge*
*Rails 3.0.0 [beta 2] (pending)*
* #new_record? and #destroyed? were removed from ActiveModel::Lint. Use
persisted? instead. A model is persisted if it's not a new_record? and it was
@ -12,6 +12,8 @@
* #to_key was added to ActiveModel::Lint so we can generate DOM IDs for
AMo objects with composite keys [MG]
*Rails 3.0.0 [beta 1] (February 4, 2010)*
* ActiveModel::Observer#add_observer!
It has a custom hook to define after_find that should really be in a

View File

@ -1,4 +1,4 @@
*Edge*
*Rails 3.0.0 [beta 1] (February 4, 2010)*
* Add support for errors in JSON format. #1956 [Fabien Jakimowicz]

View File

@ -1,4 +1,4 @@
*Rails 3.0 (pending)*
*Rails 3.0.0 [beta 2] (pending)*
* Reduced load time by deferring configuration of classes using
ActiveSupport::on_load(:component_name) [YK]
@ -11,8 +11,7 @@
* JSON backend for YAJL. Preferred if available. #2666 [Brian Lopez]
*Rails 3.0.0 [beta] (February 4, 2010)*
*Rails 3.0.0 [beta 1] (February 4, 2010)*
* Introduce class_attribute to declare inheritable class attributes. Writing an attribute on a subclass behaves just like overriding the superclass reader method. Unifies and replaces most usage of cattr_accessor, class_inheritable_attribute, superclass_delegating_attribute, and extlib_inheritable_attribute. [Jeremy Kemper, Yehuda Katz]

View File

@ -1,4 +1,4 @@
*Edge*
*Rails 3.0.0 [beta 2] (pending)*
* Session store configuration has changed [YK & CL]
@ -11,6 +11,8 @@
* Added config.generators.templates to provide alternative paths for the generators
to look for templates [JV]
*Rails 3.0.0 [beta 1] (February 4, 2010)*
* Added "rake about" as a replacement for script/about [DHH]
* Removed all the default commands in script/* and replaced them with script/rails and a rails command that'll act the same when run from within the app [DHH]. Example: