aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG.md
Commit message (Collapse)AuthorAgeFilesLines
* Update changelogs with release date [ci skip]Carlos Antonio da Silva2013-01-091-1/+7
|
* Add release date of 3.2.10Rafael Mendonça França2013-01-021-2/+6
| | | | Fix format and wrong changelog entry
* Merge branch '3-2-stable' into 3-2-secmergeAaron Patterson2013-01-021-0/+7
|\ | | | | | | | | | | | | | | | | | | | | * 3-2-stable: fix block.arity raise nil error when not given a block to "content_tag_for" removes the Ajax on Rails early draft Revert "Merge pull request #8665 from senny/8661_should_not_append_charset_if_already_present" backport #8662, charset should not be appended for `head` responses Revert "Fix `validates_presence_of` with `:allow_nil` or `:allow_blank` options." Fix `validates_presence_of` with `:allow_nil` or `:allow_blank` options. backport #8616, quote column names in generated fixture files
| * backport #8616, quote column names in generated fixture filesYves Senn2012-12-261-0/+7
| | | | | | | | | | | | | | | | | | Conflicts: railties/CHANGELOG.md railties/lib/rails/generators/test_unit/model/model_generator.rb railties/lib/rails/generators/test_unit/model/templates/fixtures.yml railties/test/generators/model_generator_test.rb
* | Merge branch '3-2-sec' into 3-2-secmergeAaron Patterson2012-12-231-0/+4
|\ \ | |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 3-2-sec: CVE-2012-5664 options hashes should only be extracted if there are extra parameters updating changelog updating the changelogs updating the changelog for the CVE Add release date of Rails 3.2.9 to documentation Conflicts: actionmailer/CHANGELOG.md actionpack/CHANGELOG.md activemodel/CHANGELOG.md activerecord/CHANGELOG.md activeresource/CHANGELOG.md activesupport/CHANGELOG.md railties/CHANGELOG.md
| * updating the changelogsAaron Patterson2012-12-231-0/+2
| |
| * Add release date of Rails 3.2.9 to documentationclaudiob2012-12-231-1/+1
| | | | | | | | | | | | | | Conflicts: actionpack/CHANGELOG.md activerecord/CHANGELOG.md activesupport/CHANGELOG.md
| * Revert "Respect children paths filter settings"Santiago Pastorino2012-11-091-2/+0
| | | | | | | | | | This reverts commit 53778ec2d716f860646fd43957fd53c8db4da2fe. Closes #8146
* | backport #8262, require bundler groups to include rake-tasks in enginesYves Senn2012-11-191-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | If you generate a full engine, this will include rake tasks from your gem under the `app` namespace. For example if you have a dependency on `rspec-rails` in your engine's `gemspec`. You will get the task `app:spec` Closes #8229 Conflicts: railties/CHANGELOG.md
* | backport #8139, `plugin new` adds dummy app tasks when necessary. …Yves Senn2012-11-151-0/+5
| | | | | | | | | | | | | | | | | | | | | | The `plugin new` generator always adds the dummy app rake tasks, when a dummy app was created. Closes #8224 Conflicts: railties/CHANGELOG.md
* | Add release date of Rails 3.2.9 to documentationclaudiob2012-11-121-1/+1
| |
* | Revert "Respect children paths filter settings"Santiago Pastorino2012-11-091-2/+0
|/ | | | | This reverts commit 53778ec2d716f860646fd43957fd53c8db4da2fe. Closes #8146
* Respect children paths filter settingsElia Schito2012-10-281-0/+2
| | | | E.g. don't eager-load app/assets even if app/* has the eager_load flag set.
* Update supported ruby versions error message in ruby_version_check.rblihan2012-10-031-0/+4
|
* CHANGELOGs are now per branchXavier Noria2012-08-281-2384/+1
| | | | Check 810a50d for the rationale.
* Add release date to CHANGELOGsSantiago Pastorino2012-08-091-1/+1
|
* Use `:data => { :confirm => "Text" }` syntax instead of `:confirm` atRafael Mendonça França2012-08-021-3/+8
| | | | | | | the ERB scaffold generator. We are trying to teach the data attributes as best practices and `:confirm` will be deprecated in 4.0.
* 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