File tree 17 files changed +22
-44
lines changed
17 files changed +22
-44
lines changed Original file line number Diff line number Diff line change 1
- *2.3.1 [RC2 ] (March 5 , 2009)*
1
+ *2.3.2 [Final ] (March 15 , 2009)*
2
2
3
3
* Fixed that ActionMailer should send correctly formatted Return-Path in MAIL FROM for SMTP #1842 [Matt Jones]
4
4
5
-
6
- *2.3.0 [RC1] (February 1st, 2009)*
7
-
8
5
* Fixed RFC-2045 quoted-printable bug #1421 [squadette]
9
6
10
7
* Fixed that no body charset would be set when there are attachments present #740 [Paweł Kondzior]
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ spec = Gem::Specification.new do |s|
55
55
s . rubyforge_project = "actionmailer"
56
56
s . homepage = "http://www.rubyonrails.org"
57
57
58
- s . add_dependency ( 'actionpack' , '= 2.3.1 ' + PKG_BUILD )
58
+ s . add_dependency ( 'actionpack' , '= 2.3.2 ' + PKG_BUILD )
59
59
60
60
s . has_rdoc = true
61
61
s . requirements << 'none'
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ module ActionMailer
2
2
module VERSION #:nodoc:
3
3
MAJOR = 2
4
4
MINOR = 3
5
- TINY = 1
5
+ TINY = 2
6
6
7
7
STRING = [ MAJOR , MINOR , TINY ] . join ( '.' )
8
8
end
Original file line number Diff line number Diff line change 1
- *2.3.1 [RC2 ] (March 5 , 2009)*
1
+ *2.3.2 [Final ] (March 15 , 2009)*
2
2
3
3
* Fixed that redirection would just log the options, not the final url (which lead to "Redirected to #<Post:0x23150b8>") [DHH]
4
4
14
14
15
15
* Added localized rescue template when I18n.locale is set (ex: public/404.da.html) #1835 [José Valim]
16
16
17
-
18
- *2.3.0 [RC1] (February 1st, 2009)*
19
-
20
17
* Make the form_for and fields_for helpers support the new Active Record nested update options. #1202 [Eloy Duran]
21
18
22
19
<% form_for @person do |person_form| %>
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ spec = Gem::Specification.new do |s|
80
80
s . has_rdoc = true
81
81
s . requirements << 'none'
82
82
83
- s . add_dependency ( 'activesupport' , '= 2.3.1 ' + PKG_BUILD )
83
+ s . add_dependency ( 'activesupport' , '= 2.3.2 ' + PKG_BUILD )
84
84
85
85
s . require_path = 'lib'
86
86
s . autorequire = 'action_controller'
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ module ActionPack #:nodoc:
2
2
module VERSION #:nodoc:
3
3
MAJOR = 2
4
4
MINOR = 3
5
- TINY = 1
5
+ TINY = 2
6
6
7
7
STRING = [ MAJOR , MINOR , TINY ] . join ( '.' )
8
8
end
Original file line number Diff line number Diff line change 1
- *2.3.1 [RC2 ] (March 5 , 2009)*
1
+ *2.3.2 [Final ] (March 15 , 2009)*
2
2
3
3
* Added ActiveRecord::Base.find_each and ActiveRecord::Base.find_in_batches for batch processing [DHH/Jamis Buck]
4
4
5
5
* Added that ActiveRecord::Base.exists? can be called with no arguments #1817 [Scott Taylor]
6
6
7
- *2.3.0 [RC1] (February 1st, 2009)*
8
-
9
7
* Add Support for updating deeply nested models from a single form. #1202 [Eloy Duran]
10
8
11
9
class Book < ActiveRecord::Base
Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ spec = Gem::Specification.new do |s|
177
177
s . files = s . files + Dir . glob ( "#{ dir } /**/*" ) . delete_if { |item | item . include? ( "\. svn" ) }
178
178
end
179
179
180
- s . add_dependency ( 'activesupport' , '= 2.3.1 ' + PKG_BUILD )
180
+ s . add_dependency ( 'activesupport' , '= 2.3.2 ' + PKG_BUILD )
181
181
182
182
s . files . delete FIXTURES_ROOT + "/fixture_database.sqlite"
183
183
s . files . delete FIXTURES_ROOT + "/fixture_database_2.sqlite"
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ module ActiveRecord
2
2
module VERSION #:nodoc:
3
3
MAJOR = 2
4
4
MINOR = 3
5
- TINY = 1
5
+ TINY = 2
6
6
7
7
STRING = [ MAJOR , MINOR , TINY ] . join ( '.' )
8
8
end
Original file line number Diff line number Diff line change 1
- *2.3.1 [RC2 ] (March 5 , 2009)*
1
+ *2.3.2 [Final ] (March 15 , 2009)*
2
2
3
- * Nothing new, just included in 2.3.1
4
-
5
-
6
- *2.3.0 [RC1] (February 1st, 2009)*
7
-
8
- * Nothing new, just included in 2.3.0
3
+ * Nothing new, just included in 2.3.2
9
4
10
5
11
6
*2.2.1 [RC2] (November 14th, 2008)*
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ spec = Gem::Specification.new do |s|
67
67
s . files = s . files + Dir . glob ( "#{ dir } /**/*" ) . delete_if { |item | item . include? ( "\. svn" ) }
68
68
end
69
69
70
- s . add_dependency ( 'activesupport' , '= 2.3.1 ' + PKG_BUILD )
70
+ s . add_dependency ( 'activesupport' , '= 2.3.2 ' + PKG_BUILD )
71
71
72
72
s . require_path = 'lib'
73
73
s . autorequire = 'active_resource'
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ module ActiveResource
2
2
module VERSION #:nodoc:
3
3
MAJOR = 2
4
4
MINOR = 3
5
- TINY = 1
5
+ TINY = 2
6
6
7
7
STRING = [ MAJOR , MINOR , TINY ] . join ( '.' )
8
8
end
Original file line number Diff line number Diff line change 1
- *Edge *
1
+ *2.3.2 [Final] (March 15, 2009) *
2
2
3
3
* XmlMini supports LibXML and Nokogiri backends. #2084, #2190 [Bart ten Brinke, Aaron Patterson]
4
4
Example: XmlMini.backend = 'Nokogiri'
5
5
6
-
7
- *2.3.1 [RC2] (March 5, 2009)*
8
-
9
6
* Vendorize i18n 0.1.3 gem (fixes issues with incompatible character encodings in Ruby 1.9) #2038 [Akira Matsuda]
10
7
11
8
* Update bundled memcache-client from 1.5.0.5 to 1.6.4.99. See http://www.mikeperham.com/2009/02/15/memcache-client-performance/ [Mike Perham]
18
15
19
16
* Introduce Array.wrap(foo) to wrap the argument in an array unless it's already an array. Wraps nil as an empty array. Use instead of Array(foo) and foo.to_a since they treat String as Enumerable. [Jeremy Kemper]
20
17
21
-
22
- *2.3.0 [RC1] (February 1st, 2009)*
23
-
24
18
* TimeWithZone#xmlschema accepts optional fraction_digits argument [#1725 state:resolved] [Nicholas Dainty]
25
19
26
20
* Object#tap shim for Ruby < 1.8.7. Similar to Object#returning, tap yields self then returns self. [Jeremy Kemper]
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ module ActiveSupport
2
2
module VERSION #:nodoc:
3
3
MAJOR = 2
4
4
MINOR = 3
5
- TINY = 1
5
+ TINY = 2
6
6
7
7
STRING = [ MAJOR , MINOR , TINY ] . join ( '.' )
8
8
end
Original file line number Diff line number Diff line change 1
- *2.3.1 [RC2 ] (March 5 , 2009)*
1
+ *2.3.2 [Final ] (March 15 , 2009)*
2
2
3
3
* Allow metal to live in plugins #2045 [Matthew Rudy]
4
4
5
-
6
- *2.3.0 [RC1] (February 1st, 2009)*
7
-
8
5
* Added metal [Josh Peek]
9
6
10
7
* Remove script/performance/request in favour of the performance integration tests. [Pratik Naik]
Original file line number Diff line number Diff line change @@ -311,11 +311,11 @@ spec = Gem::Specification.new do |s|
311
311
EOF
312
312
313
313
s . add_dependency ( 'rake' , '>= 0.8.3' )
314
- s . add_dependency ( 'activesupport' , '= 2.3.1 ' + PKG_BUILD )
315
- s . add_dependency ( 'activerecord' , '= 2.3.1 ' + PKG_BUILD )
316
- s . add_dependency ( 'actionpack' , '= 2.3.1 ' + PKG_BUILD )
317
- s . add_dependency ( 'actionmailer' , '= 2.3.1 ' + PKG_BUILD )
318
- s . add_dependency ( 'activeresource' , '= 2.3.1 ' + PKG_BUILD )
314
+ s . add_dependency ( 'activesupport' , '= 2.3.2 ' + PKG_BUILD )
315
+ s . add_dependency ( 'activerecord' , '= 2.3.2 ' + PKG_BUILD )
316
+ s . add_dependency ( 'actionpack' , '= 2.3.2 ' + PKG_BUILD )
317
+ s . add_dependency ( 'actionmailer' , '= 2.3.2 ' + PKG_BUILD )
318
+ s . add_dependency ( 'activeresource' , '= 2.3.2 ' + PKG_BUILD )
319
319
320
320
s . rdoc_options << '--exclude' << '.'
321
321
s . has_rdoc = false
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ module Rails
2
2
module VERSION #:nodoc:
3
3
MAJOR = 2
4
4
MINOR = 3
5
- TINY = 1
5
+ TINY = 2
6
6
7
7
STRING = [ MAJOR , MINOR , TINY ] . join ( '.' )
8
8
end
You can’t perform that action at this time.
0 commit comments