aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-10-31 00:31:47 -0200
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-10-31 00:31:47 -0200
commitd5b275db5c20669a7a9e598a70decf1316b39e03 (patch)
treea70d4ddd7fbada6ccd8a3ebe117c77c1f17ac245 /actionpack/CHANGELOG.md
parent6b7cd20ab39b16cb5111ecca71ffea4fd95a0066 (diff)
downloadrails-d5b275db5c20669a7a9e598a70decf1316b39e03.tar.gz
rails-d5b275db5c20669a7a9e598a70decf1316b39e03.tar.bz2
rails-d5b275db5c20669a7a9e598a70decf1316b39e03.zip
Revert "Merge pull request #7659 from HugoLnx/template_error_no_matches_rebased"
This reverts commit 7d17cd2cbfc086f5aa9dd636e1207eb130150428. Conflicts: actionpack/CHANGELOG.md Reason: This added a regression since people were relying on this buggy behavior. This will introduce back #3849 but we will be backward compatible in stable release. Fixes #8068.
Diffstat (limited to 'actionpack/CHANGELOG.md')
-rw-r--r--actionpack/CHANGELOG.md9
1 files changed, 8 insertions, 1 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 0db1918e49..a257e8c600 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,10 +1,17 @@
## Rails 3.2.9 (unreleased) ##
+* Revert the `assert_template` fix to not pass with ever string that matches the template name.
+ This added a regression since people were relying on this buggy behavior.
+ This will introduce back #3849 but this stable release will be backward compatible.
+ Fixes #8068.
+
+ *Rafael Mendonça França*
+
* Revert the rename of internal variable on ActionController::TemplateAssertions to prevent
naming collisions. This added a regression related with shoulda-matchers, since it is
expecting the [instance variable @layouts](https://github.com/thoughtbot/shoulda-matchers/blob/9e1188eea68c47d9a56ce6280e45027da6187ab1/lib/shoulda/matchers/action_controller/render_with_layout_matcher.rb#L74).
This will introduce back #7459 but this stable release will be backward compatible.
- Fixes #8068
+ Fixes #8068.
*Rafael Mendonça França*