aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
Commit message (Collapse)AuthorAgeFilesLines
* render every partial with a new `PartialRenderer`.Yves Senn2012-11-191-0/+6
| | | | | | | | This resolves issues when rendering nested partials. Previously the `PartialRenderer` was reused which led to situations where the state of the renderer was reset. Closes #8197
* Move changelog entry from #8235 to the top [ci skip]Carlos Antonio da Silva2012-11-161-7/+7
|
* Introduce `ActionView::Template::Handlers::ERB.escape_whitelist`.Joost Baaij2012-11-161-0/+7
| | | | | | | | | | | This is a list of mime types where template text is not html escaped by default. It prevents `Jack & Joe` from rendering as `Jack & Joe` for the whitelisted mime types. The default whitelist contains text/plain. This follows a whitelist approach where plain text templates are not escaped, and all the others (json, xml) are. The mime type is assumed to be set by the abstract controller.
* Add CHANGELOG entry for #8108 on master too.Rafael Mendonça França2012-11-081-0/+16
| | | | [ci skip]
* Clear url helpers when reloading routesSantiago Pastorino2012-11-021-0/+4
|
* Revert "Merge pull request #7668 from Draiken/fix_issue_6497"Rafael Mendonça França2012-11-021-10/+0
| | | | | | | | | | | | | | This reverts commit f4ad0ebe7a6b17658bddfeb996e3c34835b75623, reversing changes made to 8b2cbb3a832101f0e672ee309beca0f8c555b292. Conflicts: actionpack/CHANGELOG.md REASON: This added introduced a bug when you have a shorthand route inside a nested namespace. See https://github.com/rafaelfranca/rails/commit/281367eb770faf8077c1fd6194188e92ed1637a1
* Fix #8086 (BestStandardsSupport rewrites app X-UA-Compatible header, now ↵Nikita Afanasenko2012-11-011-0/+5
| | | | | | | appends). Now `BestStandardsSupport` middleware appends it's `X-UA-Compatible` value to app's value. Also test for `BestStandardsSupport` middleware added.
* Revert "if format is unknown NullMimeTypeObject is returned"Guillermo Iguaran2012-10-311-5/+0
| | | | This reverts commit a8560fa361958b33d76e4468eb5c07d82a20196e.
* if format is unknown NullMimeTypeObject is returnedAngelo capilleri2012-10-311-0/+5
| | | | | | | | | | If a unknown format is passed in a request, the methods html?, xml?, json? ...etc Nil Exception. This patch add a class NullMimeTypeObject, that is returned when request.format is unknown and it responds false to the methods that ends with '?'. It refers to #7837, not fixes because it's not considered a improvement not a bug.
* Merge pull request #7975 from butcher/extend_date_select_helper_functionalityRafael Mendonça França2012-10-181-0/+5
|\ | | | | | | | | | | | | Extend date_select helper functionality. Conflicts: actionpack/CHANGELOG.md
| * Extend date_select helper functionality.Pavel Nikitin2012-10-181-0/+3
| |
* | Add changelog entry for precompile configJoshua Peek2012-10-171-0/+4
| |
* | Add more CHANGELOG entries from #7927Rafael Mendonça França2012-10-171-0/+5
| | | | | | | | | | | | Also remove references for RAILS_ASSET_ID from the guides [ci skip]
* | Add CHANGELOG entry for #7927Rafael Mendonça França2012-10-171-1/+7
|/ | | | | | | Removed the asset_path configuration from the guides and added an entry in the upgrading_ruby_on_rails guide [ci skip]
* recognizes when a partial was rendered twice. Closes #3675Yves Senn2012-10-111-0/+5
|
* Add changelog entry for killing the asset tag concatenationDavid Heinemeier Hansson2012-10-101-0/+2
|
* Accept :remote as symbol in link_to optionsRiley Lynch2012-10-061-0/+2
| | | | | Accept either :remote or 'remote' in both the html_options and (url_)options hash arguments to link_to.
* can't pass :locals to #assert_template without a view test case. Closes #3415Yves Senn2012-10-061-1/+6
| | | | | | | | | | | the documentation on #assert_template states that the :locals option is only available in view test cases: # In a view test case, you can also assert that specific locals are passed # to partials: I added a warning when it's passed in an inapropriate context to prevent a NoMethodError.
* Update CHANGELOG entry about rack-cache extractGuillermo Iguaran2012-10-041-3/+7
|
* Remove unneeded CHANGELOG entry.Rafael Mendonça França2012-10-041-3/+0
| | | | | | | This was added in Rails 4 and we don't need changelog entries to behavior changes [ci skip]
* ActionController::Parameters#permit! is recursiveBrendan Loudermilk2012-10-041-0/+3
|
* add CHANGELOG entry for AP page and action caching extraction [ci skip]Francesco Rodriguez2012-10-041-0/+11
|
* Failsafe exception returns text/plain.Steve Klabnik2012-10-011-0/+2
| | | | | | | It's best to just return text/plain when something has gone terribly wrong. Fixes #5660.
* Add the CHANGELOG entry that Guillermo forgot :PSantiago Pastorino2012-10-021-0/+5
|
* prefix TemplateAssertions ivars (#7459)Yves Senn2012-10-011-0/+6
|
* resource and resources do no longer modify passed optionsYves Senn2012-10-011-0/+5
| | | | this is a patch for #7777.
* Add a changelog entry for asset aliasing update in sprockets-rails. Supports ↵Jeremy Kemper2012-09-301-0/+14
| | | | referencing foo.js as foo/index.js and vice versa.
* Fix changelog entry about sprockets-railsGuillermo Iguaran2012-09-301-3/+2
|
* Whitespaces :scissors: [ci skip]Rafael Mendonça França2012-09-301-10/+13
|
* `assert_template` no more passing with what ever string that matches.Hugo Roque2012-09-291-0/+16
| | | | | | | | | | | | | | | | | | | | | | | Given Im rendering an template `/layout/hello.html.erb`, assert_template was passing with any string that matches. This behavior allowed false passing like: assert_template "layout" assert_template "out/hello" Now the passing possibilities are: assert_template "layout/hello" assert_template "hello" fixing assert_template bug when template matches expected, but not ends with Cherry Pick Merge: Fixes issue #3849 assert_template false positive taking redundant test off prevening incorrect assert_template when rendering with repeated names in path updating CHANGELOG with bugfix: assert_template false passing
* allow to pass numerical value to size option in image_tagNihad Abbasov2012-09-251-0/+5
| | | | | This will set image's both width and height attributes to value passed in size option.
* Merge pull request #7738 from grosser/verified_requestRafael Mendonça França2012-09-251-0/+5
|\ | | | | remove unused Mime::Type#verify_request?
| * depreacte unused Mime::Type#verify_request? and ↵grosser2012-09-241-0/+5
| | | | | | | | Mime::Type.browser_generated_types
* | some copy-editing I did in passingXavier Noria2012-09-251-26/+28
| |
* | gives credit to Aaron in the CHANGELOG entry for AC::LiveXavier Noria2012-09-251-2/+4
|/
* Put the new CHANGELOG entries always in the top [ci skip]Rafael Mendonça França2012-09-221-8/+10
|
* Merge pull request #7713 from ↵Xavier Noria2012-09-221-0/+2
|\ | | | | | | | | porras/action-dispatch-upload-delegates-close-to-tempfile Delegate ActionDispatch::Http::UploadedFile#close to tempfile
| * Update CHANGELOG.mdSergio Gil Pérez de la Manga2012-09-211-0/+2
| |
* | Fix MIME type in CHANGELOGJo Liss2012-09-211-1/+1
|/
* Update changelogs to add entries about strong_parameters integrationGuillermo Iguaran2012-09-191-0/+14
|
* Removing to_shorthand from default_controller_and_action. Fixes #6497Luiz Felipe2012-09-191-2/+12
| | | | | When using shortcut routes inside an engine the "to_shorthand" variable is set to true, causing the module scope of the route to not be applied.
* cleanup, remove whitespace from CHANGELOGYves Senn2012-09-171-6/+6
|
* log 404 status when ActiveRecord::RecordNotFound was raised (#7646)Yves Senn2012-09-171-0/+4
|
* Merge pull request #7669 from guilleiguaran/rename-rb-handlerCarlos Antonio da Silva2012-09-171-1/+1
|\ | | | | Rename .rb template handler to .ruby to avoid conflicts with mustache classes
| * Rename .rb template handler to .ruby to avoid conflicts with mustache views ↵Guillermo Iguaran2012-09-171-1/+1
| | | | | | | | classes
* | allowing pass couple extension to register_template_handler callTima Maslyuchenko2012-09-171-0/+2
| |
* | Add missing entries in AP changelogGuillermo Iguaran2012-09-161-0/+13
|/
* Support for multiple etags in an If-None-Match headerTravis Warlick2012-09-151-0/+2
| | | | | | | | This is a rebased version of #2520. Conflicts: actionpack/test/dispatch/request_test.rb
* update CHANGELOGSergey Nartimov2012-09-141-0/+16
| | | | | Add entry about 245941101b1ea00a9b1af613c20b0ee994a43946 and 95be790ece75710f2588558a6d5f40fd09543b97.
* Add .rb template handlerGuillermo Iguaran2012-09-111-0/+2
| | | | This handler simply allows arbitrary Ruby code as a template