aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md27
1 files changed, 21 insertions, 6 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index d5befc0419..faa33f2992 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,4 +1,10 @@
-## Rails 3.2.11 (unreleased) ##
+## Rails 3.2.12 (unreleased) ##
+
+* Bump `rack` dependency to 1.4.3, eliminate `Rack::File` headers deprecation warning.
+
+ *Sam Ruby + Carlos Antonio da Silva*
+
+* Do not append second slash to `root_url` when using `trailing_slash: true`
* Prevent unnecessary asset compilation when using javascript_include_tag on
files with non-standard extensions.
@@ -6,6 +12,7 @@
*Noah Silas*
* Do not append second slash to root_url when using `trailing_slash: true`
+
Fix #8700.
Backport #8701.
@@ -18,6 +25,10 @@
*Yves Senn*
+* Fixes issue where duplicate assets can be required with sprockets.
+
+ *Jeremy Jackson*
+
* Fix a bug in `content_tag_for` that prevents it for work without a block.
*Jasl*
@@ -28,7 +39,7 @@
*Andrew White*
-* Fix a bug in ActionDispatch::Request#raw_post that caused env['rack.input']
+* Fix a bug in `ActionDispatch::Request#raw_post` that caused `env['rack.input']`
to be read but not rewound.
*Matt Venables*
@@ -38,14 +49,13 @@
#8376
render :partial => 'partial', :layout => true
-
# results in ActionView::MissingTemplate: Missing partial /true
*Yves Senn*
-* Accept symbols as #send_data :disposition value. [Backport #8329] *Elia Schito*
+* Accept symbols as `#send_data` :disposition value. [Backport #8329] *Elia Schito*
-* Add i18n scope to distance_of_time_in_words. [Backport #7997] *Steve Klabnik*
+* Add i18n scope to `distance_of_time_in_words`. [Backport #7997] *Steve Klabnik*
* Fix side effect of `url_for` changing the `:controller` string option. [Backport #6003]
Before:
@@ -59,7 +69,7 @@
puts controller #=> '/projects'
- [Nikita Beloglazov + Andrew White]
+ *Nikita Beloglazov + Andrew White*
* Introduce `ActionView::Template::Handlers::ERB.escape_whitelist`. This is a list
of mime types where template text is not html escaped by default. It prevents `Jack & Joe`
@@ -95,6 +105,11 @@
*Daniel Fox, Grant Hutchins & Trace Wax*
+## Rails 3.2.11 (Jan 8, 2013) ##
+
+* Strip nils from collections on JSON and XML posts. [CVE-2013-0155]
+
+
## Rails 3.2.10 (Jan 2, 2013) ##
* No changes.