aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
Commit message (Collapse)AuthorAgeFilesLines
* Add missing CHANGELOG entriesSantiago Pastorino2012-08-011-2/+6
| | | | [ci skip]
* updating release dateAaron Patterson2012-07-261-1/+1
|
* updating changelogsAaron Patterson2012-07-231-0/+5
|
* updating changelogsAaron Patterson2012-06-121-1/+1
|
* updating changelogsAaron Patterson2012-06-111-0/+4
|
* updating changelogsAaron Patterson2012-05-311-1/+1
|
* Add hook for add_resource_routeSantiago Pastorino2012-04-181-0/+5
|
* Fix my name in the CHANGELOG to follow the conventionRafael Mendonça França2012-03-091-11/+15
| | | | Also add missing entries and use the formating convention
* update changelogs for gems without changes too [ci skip]Vijay Dev2012-03-091-0/+8
|
* CHANGELOG revision for v3.2.1Xavier Noria2012-01-261-0/+8
|
* Preparing for 3.2.0 releaseDavid Heinemeier Hansson2012-01-201-1/+1
|
* Add release notes URL to vendor/plugins deprecation warning. Update CHANGELOG.Jeremy Kemper2012-01-041-1/+1
|
* Deprecate Rails::Plugin in favor of gemsSantiago Pastorino2012-01-031-0/+2
|
* Mip Earson -> Michael Pearson in changelog.Michael Pearson2011-12-251-1/+1
|
* registers guide generation for the Kindle and Kindle apps in the ChangelogXavier Noria2011-12-251-0/+2
|
* Update CHANGELOGs.José Valim2011-12-241-0/+2
|
* Update CHANGELOGs and guides.José Valim2011-12-161-0/+2
|
* Speed up development by only reloading classes if dependencies files changed.José Valim2011-12-121-4/+3
| | | | | | | | This can be turned off by setting `config.reload_classes_only_on_change` to false. Extensions like Active Record should add their respective files like db/schema.rb and db/structure.sql to `config.watchable_files` if they want their changes to affect classes reloading. Thanks to https://github.com/paneq/active_reload and Pastorino for the inspiration. <3
* fix typo in railties changelogVijay Dev2011-12-031-1/+1
|
* revises some details in the previous explain patchXavier Noria2011-12-021-1/+1
|
* implements automatic EXPLAIN logging for slow queriesXavier Noria2011-12-021-1/+6
|
* Split and improve show and debug exceptions middlewares.José Valim2011-12-011-2/+4
|
* Revert the serializers API as other alternatives are now also under discussionJosé Valim2011-11-251-2/+0
|
* Display mounted engines in `rake routes` by defaultPiotr Sarnacki2011-11-251-1/+1
|
* Merge branch 'serializers'José Valim2011-11-251-7/+9
|\ | | | | | | | | | | | | | | | | This implements the ActiveModel::Serializer object. Includes code, tests, generators and guides. From José and Yehuda with love. Conflicts: railties/CHANGELOG.md
| * Add docs to serializers. Update CHANGELOGs.José Valim2011-11-251-5/+7
| |
* | Allow to display engine's routes when running `rake routes ENGINES=true`Piotr Sarnacki2011-11-241-2/+5
| |
* | Forgot to add CHANGELOG entry for config.railties_orderPiotr Sarnacki2011-11-241-0/+4
|/
* Sync CHANGELOGs from 3-1-stableJon Leighton2011-11-141-0/+10
|
* Convert CHANGELOGs to Markdown format.Jon Leighton2011-11-041-0/+2390
Reasons: * Markdown reads well as plain text, but can also be formatted. * It will make it easier for people to read on the web as Github formats the Markdown nicely. * It will encourage a level of consistency when people are writing CHANGELOG entries. The script used to perform the conversion is at https://gist.github.com/1339263