Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Start Rails 5.2 development | Matthew Draper | 2017-03-22 | 1 | -408/+1 |
| | |||||
* | Small grammar change | Jon Moss | 2017-03-13 | 1 | -3/+1 |
| | | | | | | Reads easier, and removes extra tick marks. [ci skip] | ||||
* | Fixes ActionController::Rendering#with_defaults | alpaca-tc | 2017-03-12 | 1 | -0/+6 |
| | | | | `env` is undefined. | ||||
* | Fix indentation and formatting in CHANGELOGs [ci skip] | Ryuta Kamizono | 2017-03-11 | 1 | -2/+2 |
| | |||||
* | Add @takkanm credits in the changelog [ci skip] | Rafael Mendonça França | 2017-03-10 | 1 | -1/+1 |
| | |||||
* | Added `reverse_merge`/`reverse_merge!` to AC::Parameters: | Edouard CHIN | 2017-03-09 | 1 | -0/+4 |
| | | | | | - This PR adds the `reverse_merge` and `reverse_merge!` method to `ActionController::Parameters` - Fixes #28353 | ||||
* | Add CHANGELOG entry for #28250 | Andrew White | 2017-03-06 | 1 | -0/+10 |
| | |||||
* | Revert "Add a changelog entry for #28284 [ci skip]" | eileencodes | 2017-03-05 | 1 | -6/+0 |
| | | | | | | This reverts commit 84c1b107b9daab90b3ccf520f0f09752e4eaf425. Reverted #28283 so reverted it's changelog update as well. | ||||
* | Fix a wrong pull request reference [ci skip] | Robin Dupret | 2017-03-04 | 1 | -1/+1 |
| | |||||
* | Add a changelog entry for #28284 [ci skip] | Robin Dupret | 2017-03-04 | 1 | -0/+6 |
| | |||||
* | Commit flash changes when using a redirect route. | Andrew White | 2017-02-25 | 1 | -0/+7 |
| | | | | | | | | | | | | | In ca324a0 the flash middleware was effectively removed by its constructor returning the app it was passed and the `commit_flash` call was moved to the `ActionController::Metal#dispatch` method. This broke any redirect routes that modified the flash because the redirect happens before `dispatch` gets called. To fix it, this commit adds a `commit_flash` call in the `serve` method of `ActionDispatch::Routing::Redirect`. Fixes #27992. | ||||
* | [ci ckip] Fix example of resolve in CHANGELOG.md | Andrew White | 2017-02-25 | 1 | -1/+1 |
| | |||||
* | Preparing for 5.1.0.beta1 release | Rafael Mendonça França | 2017-02-23 | 1 | -0/+2 |
| | |||||
* | [ci skip] Fix typos in direct/resolve changelog. | Kasper Timm Hansen | 2017-02-21 | 1 | -2/+2 |
| | |||||
* | Merge pull request #23138 from rails/custom-url-helpers-and-polymorphic-urls | Andrew White | 2017-02-21 | 1 | -0/+45 |
|\ | | | | | Implement custom url helpers and polymorphic mapping | ||||
| * | Split direct method into two | Andrew White | 2017-02-21 | 1 | -25/+24 |
| | | | | | | | | | | Use a separate method called `resolve` for the custom polymorphic mapping to clarify the API. | ||||
| * | Prefer remove_method over undef_method | Andrew White | 2017-02-21 | 1 | -0/+7 |
| | | | | | | | | | | | | Using `undef_method` means that when a route is removed any other implementations of that method in the ancestor chain are inaccessible so instead use `remove_method` which restores access to the ancestor. | ||||
| * | Add CHANGELOG entry for `direct` method | Andrew White | 2017-02-21 | 1 | -0/+39 |
| | | |||||
* | | Add backticks around command | Jon Moss | 2017-02-21 | 1 | -1/+1 |
|/ | | | | [ci skip] | ||||
* | Add missing space | Jon Moss | 2017-02-20 | 1 | -1/+1 |
| | | | | [ci skip] | ||||
* | Add changelog for system tests | eileencodes | 2017-02-20 | 1 | -0/+8 |
| | |||||
* | Remove deprecated callbacks from ActionDispatch middlewares | Rafael Mendonça França | 2017-01-31 | 1 | -0/+8 |
| | |||||
* | Remove deprecated ActionController::Metal.call | Rafael Mendonça França | 2017-01-03 | 1 | -0/+4 |
| | |||||
* | List full class name | Jon Moss | 2017-01-03 | 1 | -1/+1 |
| | | | | | | `Metal#env` --> `ActionController::Metal#env` [ci skip] | ||||
* | Remove deprecated Metal#env | Rafael Mendonça França | 2017-01-03 | 1 | -0/+4 |
| | |||||
* | fix with_routing when testing api only controllers | Julia López | 2016-12-29 | 1 | -0/+4 |
| | |||||
* | Small edits to actionpack/CHANGELOG.md | Jon Moss | 2016-12-27 | 1 | -2/+2 |
| | | | | | | | [ci skip] - change a period to a comma - add backticks for class + method | ||||
* | Remove random extra spaces from Action Pack and Railties CHANGELOG.md | Jon Moss | 2016-12-27 | 1 | -1/+1 |
| | | | | [ci skip] | ||||
* | [ci skip] Add changelog entry for 86754a8f | Kasper Timm Hansen | 2016-11-23 | 1 | -0/+11 |
| | |||||
* | move CHANGELOG entry to the appropriate file [ci skip] | yuuji.yaginuma | 2016-11-19 | 1 | -0/+6 |
| | | | | Follow up to #27098 | ||||
* | Merge pull request #27089 from erickueen/erickueen_fix_26606 | Rafael Mendonça França | 2016-11-18 | 1 | -5/+11 |
|\ | | | | | | | Fix incorrect output from rails routes when using singular resources … | ||||
| * | Fix incorrect output from rails routes when using singular resources issue ↵ | Erick Reyna | 2016-11-18 | 1 | -4/+10 |
|/ | | | | | | | | | | #26606 Rails routes (even rake routes in previous versions) output showed incorrect routes when an application use resource :controller, implying that edit_controller_path match with controller#show. The order of the output has changed to correct this. View #26606 for more information. Added a test case, change unit test in rake to expect the new output. Since the output of resource :controller is changing, the string spected of the railties/test/application/rake_test.rb test_rails_routes_with_controller_environment had to be modified. | ||||
* | Merge pull request #26222 from vipulnsward/26134-fix | Rafael França | 2016-11-13 | 1 | -0/+8 |
|\ | | | | | Format and send logs to logger.fatal from DebugExceptions | ||||
| * | Format and send logs to logger.fatal from DebugExceptions instead of calling ↵ | Vipul A M | 2016-11-12 | 1 | -0/+8 |
| | | | | | | | | | | | | fatal multiple times. Expose tags_text from TaggedLogging to be used for log formatting Fixes #26134 | ||||
* | | Changelog edits | Vipul A M | 2016-11-12 | 1 | -1/+1 |
|/ | |||||
* | adds support for arbitrary hashes in strong parameters | Xavier Noria | 2016-11-11 | 1 | -0/+8 |
| | |||||
* | add `ActionController::Parameters#merge!` | yuuji.yaginuma | 2016-10-18 | 1 | -0/+4 |
| | | | | | This method has the same behavior as `Hash#merge!`, returns current `ActionController::Parameters`. | ||||
* | Allow any key in Renderer environment hash | Sammy Larbi | 2016-10-15 | 1 | -0/+5 |
| | | | | | | When rendering arbitrary templates, it is helpful to not overwrite `env` keys with nil if they don't match any found in the `RACK_KEY_TRANSLATION` This allows the developer to set the environment to exactly what is needed for rendering. | ||||
* | [ci skip] fix typo in Actionpack Changelog | Alex Kitchens | 2016-10-11 | 1 | -1/+1 |
| | |||||
* | Remove deprecated support to non-keyword arguments in ↵ | Rafael Mendonça França | 2016-10-10 | 1 | -0/+5 |
| | | | | | | `ActionDispatch::IntegrationTest`, `#process`, `#get`, `#post`, `#patch`, `#put`, `#delete`, and `#head`. | ||||
* | Remove deprecated `ActionDispatch::IntegrationTest#*_via_redirect`. | Rafael Mendonça França | 2016-10-10 | 1 | -0/+4 |
| | |||||
* | Remove deprecated `ActionDispatch::IntegrationTest#xml_http_request` | Rafael Mendonça França | 2016-10-10 | 1 | -0/+4 |
| | |||||
* | Remove deprecated support for passing `:path` and route path as stings in ↵ | Rafael Mendonça França | 2016-10-10 | 1 | -1/+5 |
| | | | | `ActionDispatch::Routing::Mapper#match` | ||||
* | Remove deprecated support passing path as `nil` in ↵ | Rafael Mendonça França | 2016-10-10 | 1 | -0/+4 |
| | | | | `ActionDispatch::Routing::Mapper#match` | ||||
* | Remove deprecated `cache_control` argument from ↵ | Rafael Mendonça França | 2016-10-10 | 1 | -0/+4 |
| | | | | `ActionDispatch::Static#initialize` | ||||
* | Remove deprecated support to passing strings to the middleware stack | Rafael Mendonça França | 2016-10-10 | 1 | -0/+4 |
| | |||||
* | Remove deprecated code in ssl middleware | Rafael Mendonça França | 2016-10-10 | 1 | -0/+8 |
| | |||||
* | Remove deprecated code in ActionDispatch::Session::SessionRestoreError | Rafael Mendonça França | 2016-10-10 | 1 | -0/+9 |
| | |||||
* | Deprecated ActionDispatch::ParamsParser::ParamsParser | Rafael Mendonça França | 2016-10-10 | 1 | -0/+5 |
| | | | | | | ActionDispatch::ParamsParser class was removed in favor of ActionDispatch::Http::Parameters so it is better to move the error constant to the new class. | ||||
* | Remove deprecated ActionDispatch::ParamsParser | Rafael Mendonça França | 2016-10-10 | 1 | -0/+4 |
| |