1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix CHANGELOG style [ci skip]

This commit is contained in:
Rafael Mendonça França 2012-12-26 12:19:09 -03:00
parent e72790c4e7
commit 5d80da812b
2 changed files with 6 additions and 6 deletions

View file

@ -2,7 +2,7 @@
* Added `Mime::NullType` class. This allows to use html?, xml?, json?..etc when
the `format` of `request` is unknown, without raise an exception.
*Angelo Capilleri*
* Integrate the Journey gem into Action Dispatch so that the global namespace

View file

@ -1,5 +1,10 @@
## Rails 4.0.0 (unreleased) ##
* `after_commit` and `after_rollback` now validate the `:on` option and raise an `ArgumentError`
if it is not one of `:create`, `:destroy` or ``:update`
*Pascal Friederich*
* Improve ways to write `change` migrations, making the old `up` & `down` methods no longer necessary.
* The methods `drop_table` and `remove_column` are now reversible, as long as the necessary information is given.
@ -22,11 +27,6 @@
*Rafael Mendonça França*
* after_commit and after_rollback now validate the :on option and raise an ArgumentError if
it is not one of :create, :destroy or :update
*Pascal Friederich*
* Keep index names when using `alter_table` with sqlite3.
Fix #3489.