aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
Commit message (Collapse)AuthorAgeFilesLines
...
* Update changelog to reflect support of cookie jar options for allbrainopia2012-08-111-0/+5
| | | | session stores
* Merge branch '3-2-8' into 3-2-stableSantiago Pastorino2012-08-091-1/+15
|\
| * Add release date to CHANGELOGsSantiago Pastorino2012-08-091-1/+1
| |
| * Do not mark strip_tags result as html_safeSantiago Pastorino2012-08-091-0/+7
| | | | | | | | | | | | Thanks to Marek Labos & Nethemba CVE-2012-3465
| * escape select_tag :prompt valuesSantiago Pastorino2012-08-091-0/+7
| | | | | | | | CVE-2012-3463
* | Fix CHANGELOG [ci skip]Rafael Mendonça França2012-08-081-1/+4
| |
* | Do not include application.js if it doesn't existsPrem Sichanugrist2012-08-061-0/+2
|/ | | | | | Rails were including 'application.js' to the pack when using `javascript_include_tag :all` even there's no application.js in the public directory.
* Revert "Deprecate link_to_function and button_to_function helpers"Rafael Mendonça França2012-08-011-0/+4
| | | | This reverts commit 9dc57fe9c4807fc0ad4b1590a931891d9faa3164.
* Revert "Deprecate `:mouseover` options for `image_tag` helper."Rafael Mendonça França2012-08-011-0/+2
| | | | | | | This reverts commit 1aff7725c7a04cde202cca906208560a55409e6a. Conflicts: actionpack/CHANGELOG.md
* Fix CHANGELOGSRafael Mendonça França2012-08-011-11/+22
|
* Revert "Deprecate `:confirm` in favor of `:data => { :confirm => 'Text' }` ↵Rafael Mendonça França2012-08-011-9/+1
| | | | | | | | | | | option" Revert "Deprecate `:disable_with` in favor of `'data-disable-with'` option for `button_to` and `submit_tag` helpers." This reverts commit fc092a9cba5fceec38358072e50e09250cf58840. This reverts commit e9051e20aeb2c666db06b6217954737665878db7. This reverts commit d47d6e7eda3aa3e6aa28d0c17ac6801234bb97d1. This reverts commit 21141e777bdce8534e3755c8de7268324b3d8714.
* Add missing CHANGELOG entriesSantiago Pastorino2012-08-011-0/+5
| | | | [ci skip]
* updating release dateAaron Patterson2012-07-261-1/+1
|
* updating the changelogAaron Patterson2012-07-261-0/+2
|
* updating changelogsAaron Patterson2012-07-231-0/+16
|
* updating changelogsAaron Patterson2012-06-121-1/+3
|
* updating changelogs with security fixesAaron Patterson2012-06-111-0/+2
|
* Deprecate `:confirm` in favor of `:data => { :confirm => 'Text' }` optionCarlos Galdino2012-06-051-0/+4
| | | | | | | | | | | | This deprecation applies to: `button_to` `button_tag` `image_submit_tag` `link_to` `submit_tag` As :confirm is an UI specific option is better to use the data attributes, teaching users about unobtrusive JavaScript and how Rails works with it.
* Allow to use mounted helpers in ActionView::TestCasePiotr Sarnacki2012-06-011-0/+2
| | | | | Similarly to 6525002, this allows to use routes helpers for mounted helpers, but this time in ActionView::TestCase
* Add release date of 3.2.5 on the CHANGELOGRafael Mendonça França2012-06-011-0/+7
|
* Include routes.mounted_helpers into integration testsPiotr Sarnacki2012-06-011-0/+4
| | | | | | | | | | | | | | | In integration tests, you might want to use helpers from engines that you mounted in your application. It's not hard to add it by yourself, but it's unneeded boilerplate. mounted_helpers are now included by default. That means that given engine mounted like: mount Foo::Engine => "/foo", :as => "foo" you will be able to use paths from this engine in tests this way: foo.root_path #=> "/foo" (closes #6573)
* adding security notifications to CHANGELOGsAaron Patterson2012-05-311-0/+3
|
* updating changelogsAaron Patterson2012-05-311-1/+11
|
* Deprecate old APIs for highlight, excerpt and word_wrapJeremy Walker2012-05-181-0/+2
|
* Deprecate `:disable_with` for `button_tag` tooCarlos Galdino + Rafael Mendonça França2012-05-141-1/+1
|
* Fix typoCarlos Galdino + Rafael Mendonça França2012-05-141-1/+1
|
* Deprecate `:disable_with` in favor of `'data-disable-with'` option for ↵Carlos Galdino + Rafael Mendonça França2012-05-141-0/+4
| | | | `button_to` and `submit_tag` helpers.
* Deprecate `:mouseover` options for `image_tag` helper.Rafael Mendonça França2012-05-131-0/+2
|
* Add CHANGELOG entry.Rafael Mendonça França2012-04-301-1/+6
| | | | | Closes #5886 Closes #3093
* Lazy load `default_form_builder` if it's passed as a stringPiotr Sarnacki2012-04-281-0/+2
| | | | closes #3341
* Merge branch '3-2-3' into 3-2-stableSantiago Pastorino2012-03-301-0/+4
|\
| * Remove the leading \n added by textarea on assert_selectSantiago Pastorino2012-03-301-0/+2
| |
| * Add missing CHANGELOG entrySantiago Pastorino2012-03-291-0/+2
| |
| * Add missing CHANGELOG entrySantiago Pastorino2012-03-291-0/+2
| |
| * Merge pull request #5633 from drogus/embed-auth-token-in-remote-formsSantiago Pastorino2012-03-281-0/+2
| | | | | | | | Embed auth token in remote forms
* | Remove the leading \n added by textarea on assert_selectSantiago Pastorino2012-03-301-0/+2
| |
* | Added config.action_view.embed_authenticity_token_in_remote_formsPiotr Sarnacki2012-03-281-0/+2
|/ | | | | | | | There is a regression introduced in 16ee611fa, which breaks remote forms that should also work without javascript. This commit introduces config option that allows to configure this behavior defaulting to the old behavior (ie. include authenticity token in remote forms by default)
* Do not include the authenticity token in forms where remote: true as ajax ↵David Heinemeier Hansson2012-03-141-0/+2
| | | | forms use the meta-tag value
* Fix my name in the CHANGELOG to follow the conventionRafael Mendonça França2012-03-091-3/+4
| | | | Also add missing entries and use the formating convention
* changelog updates [ci skip]Vijay Dev2012-03-091-0/+11
|
* Turn off verbose mode of rack-cache, we still have X-Rack-Cache to check ↵Santiago Pastorino2012-03-031-0/+3
| | | | | | that info Closes #5245
* Add CHANGELOG entrySantiago Pastorino2012-03-021-0/+6
|
* Fix CHANGELOGSantiago Pastorino2012-02-221-2/+2
|
* Add CHANGELOG entrySantiago Pastorino2012-02-221-0/+2
|
* Add CHANGELOG entrySantiago Pastorino2012-02-211-0/+2
|
* Fix override API response bug in respond_withPrem Sichanugrist2012-02-031-0/+2
| | | | | | | | | | Default responder was only using the given respond block when user requested for HTML format, or JSON/XML format with valid resource. This fix the responder so that it will use the given block regardless of the validity of the resource. Note that in this case you'll have to check for object's validity by yourself in the controller. Fixes #4796
* Merge check box fixes from remote-tracking branch ↵José Valim2012-01-271-0/+6
|\ | | | | | | 'cantonio/checkbox-hidden-backport' into 3-2-stable
| * check_box helper with :disabled => true generates disabled hidden field. ↵Tadas Tamošauskas2012-01-271-0/+4
|/ | | | fixes #1953
* CHANGELOG revision for v3.2.1Xavier Noria2012-01-261-0/+9
|
* Preparing for 3.2.0 releaseDavid Heinemeier Hansson2012-01-201-1/+1
|