Skip to content

Commit 3449b75

Browse files
committed
Sync CHANGLOG with the 3-2-stable branch
1 parent 6525002 commit 3449b75

File tree

5 files changed

+91
-4
lines changed

5 files changed

+91
-4
lines changed

actionmailer/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## Rails 3.2.5 (Jun 1, 2012) ##
2+
3+
* No changes.
4+
5+
6+
## Rails 3.2.4 (May 31, 2012) ##
7+
8+
* No changes.
9+
10+
111
## Rails 3.2.3 (March 30, 2012) ##
212

313
* Upgrade mail version to 2.4.3 *ML*

actionpack/CHANGELOG.md

+32
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,38 @@
239239
HTML5 `mark` element. *Brian Cardarella*
240240

241241

242+
## Rails 3.2.5 (Jun 1, 2012) ##
243+
244+
* No changes.
245+
246+
247+
## Rails 3.2.4 (May 31, 2012) ##
248+
249+
* Deprecate old APIs for highlight, excerpt and word_wrap *Jeremy Walker*
250+
251+
* Deprecate `:disable_with` in favor of `'data-disable-with'` option for `button_to`, `button_tag` and `submit_tag` helpers.
252+
253+
*Carlos Galdino + Rafael Mendonça França*
254+
255+
* Deprecate `:mouseover` option for `image_tag` helper. *Rafael Mendonça França*
256+
257+
* Deprecate `button_to_function` and `link_to_function` helpers. *Rafael Mendonça França*
258+
259+
* Don't break Haml with textarea newline fix. GH #393, #4000, #5190, #5191
260+
261+
* Fix options handling on labels. GH #2492, #5614
262+
263+
* Added config.action_view.embed_authenticity_token_in_remote_forms to deal
264+
with regression from 16ee611fa
265+
266+
* Set rendered_format when doing render :inline. GH #5632
267+
268+
* Fix the redirect when it receive blocks with arity of 1. Closes #5677
269+
270+
* Strip [nil] from parameters hash. Thanks to Ben Murphy for
271+
reporting this! CVE-2012-2660
272+
273+
242274
## Rails 3.2.3 (March 30, 2012) ##
243275

244276
* Add `config.action_view.embed_authenticity_token_in_remote_forms` (defaults to true) which allows to set if authenticity token will be included by default in remote forms. If you change it to false, you can still force authenticity token by passing `:authenticity_token => true` in form options *Piotr Sarnacki*

activemodel/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,21 @@
1111
* Trim down Active Model API by removing `valid?` and `errors.full_messages` *José Valim*
1212

1313

14+
## Rails 3.2.5 (Jun 1, 2012) ##
15+
16+
* No changes.
17+
18+
19+
## Rails 3.2.4 (May 31, 2012) ##
20+
21+
* No changes.
22+
23+
24+
## Rails 3.2.3 (March 30, 2012) ##
25+
26+
* No changes.
27+
28+
1429
## Rails 3.2.2 (March 1, 2012) ##
1530

1631
* No changes.

activerecord/CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,33 @@
344344
* PostgreSQL hstore types are automatically deserialized from the database.
345345

346346

347+
## Rails 3.2.5 (Jun 1, 2012) ##
348+
349+
* Restore behavior of Active Record 3.2.3 scopes.
350+
A series of commits relating to preloading and scopes caused a regression.
351+
352+
*Andrew White*
353+
354+
355+
## Rails 3.2.4 (May 31, 2012) ##
356+
357+
* Perf fix: Don't load the records when doing assoc.delete_all.
358+
GH #6289. *Jon Leighton*
359+
360+
* Association preloading shouldn't be affected by the current scoping.
361+
This could cause infinite recursion and potentially other problems.
362+
See GH #5667. *Jon Leighton*
363+
364+
* Datetime attributes are forced to be changed. GH #3965
365+
366+
* Fix attribute casting. GH #5549
367+
368+
* Fix #5667. Preloading should ignore scoping.
369+
370+
* Predicate builder should not recurse for determining where columns.
371+
Thanks to Ben Murphy for reporting this! CVE-2012-2661
372+
373+
347374
## Rails 3.2.3 (March 30, 2012) ##
348375

349376
* Added find_or_create_by_{attribute}! dynamic method. *Andrew White*

activesupport/CHANGELOG.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,18 @@
6060
* Remove deprecated ActiveSupport::JSON::Variable. *Erich Menge*
6161

6262

63-
## Rails 3.2.4 (unreleased) ##
64-
65-
* Added #beginning_of_hour and #end_of_hour to Time and DateTime core
66-
extensions. *Mark J. Titorenko*
63+
## Rails 3.2.5 (Jun 1, 2012) ##
6764

6865
* ActiveSupport::JSON::Variable is deprecated. Define your own #as_json and #encode_json methods
6966
for custom JSON string literals. *Erich Menge*
7067

7168

69+
## Rails 3.2.4 (May 31, 2012) ##
70+
71+
* Added #beginning_of_hour and #end_of_hour to Time and DateTime core
72+
extensions. *Mark J. Titorenko*
73+
74+
7275
## Rails 3.2.3 (March 30, 2012) ##
7376

7477
* No changes.

0 commit comments

Comments
 (0)