diff options
author | José Valim <jose.valim@gmail.com> | 2011-12-01 21:15:42 +0100 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2011-12-01 21:15:42 +0100 |
commit | f9edc079e030a5d2b0f21b80d6382caf10751057 (patch) | |
tree | 650ea960c7c340eca3b2cc77b6e67ad030866114 /railties | |
parent | 750bb5c865ac9234da91ec451eec7d9de55b8f9b (diff) | |
download | rails-f9edc079e030a5d2b0f21b80d6382caf10751057.tar.gz rails-f9edc079e030a5d2b0f21b80d6382caf10751057.tar.bz2 rails-f9edc079e030a5d2b0f21b80d6382caf10751057.zip |
Split and improve show and debug exceptions middlewares.
Diffstat (limited to 'railties')
-rw-r--r-- | railties/CHANGELOG.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md index 6b0be4c096..d158fdd46f 100644 --- a/railties/CHANGELOG.md +++ b/railties/CHANGELOG.md @@ -1,13 +1,15 @@ ## Rails 3.2.0 (unreleased) ## -* Display mounted engine's routes in `rake routes`. *Piotr Sarnacki* +* Add DebugExceptions middleware which contains features extracted from ShowExceptions middleware *José Valim* + +* Display mounted engine's routes in `rake routes` *Piotr Sarnacki* * Allow to change the loading order of railties with `config.railties_order=` *Piotr Sarnacki* Example: config.railties_order = [Blog::Engine, :main_app, :all] -* Scaffold returns 204 No Content for API requests without content. This makes scaffold work with jQuery out of the box. *José Valim* +* Scaffold returns 204 No Content for API requests without content. This makes scaffold work with jQuery out of the box *José Valim* * Update Rails::Rack::Logger middleware to apply any tags set in config.log_tags to the newly ActiveSupport::TaggedLogging Rails.logger. This makes it easy to tag log lines with debug information like subdomain and request id -- both very helpful in debugging multi-user production applications *DHH* |