public
Fork of rails/rails
Description: Ruby on Rails - forked for implementing I18n patch
Homepage: http://rubyonrails.org
Clone URL: git://github.com/svenfuchs/rails.git
Releasing Rails 0.9.2

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@260 
5ecf4fe2-1ee6-0310-87b1-e25e094e27de
dhh (author)
Wed Dec 22 15:56:17 -0800 2004
commit  8deb542bd8654d90a207bf29c037e21f67bee08a
tree    b57796214a8041212e39db3505d330a1c0ac7d0c
parent  ab4c640b96f1bf1882f78847d0357e7492b621b1
...
1
2
3
 
4
5
6
...
8
9
10
11
12
13
14
15
16
17
18
19
...
23
24
25
 
 
 
 
 
 
 
 
26
27
28
...
 
 
 
1
2
3
4
...
6
7
8
 
 
 
 
 
 
9
10
11
...
15
16
17
18
19
20
21
22
23
24
25
26
27
28
0
@@ -1,6 +1,4 @@
0
-*SVN*
0
-
0
-* Fixed UrlHelper#link_to_unless so it doesn't care if the id is a string or fixnum [zenspider]
0
+*1.1.0*
0
 
0
 * Added search through session to clear out association caches at the end of each request. This makes it possible to place Active Record objects
0
   in the session without worrying about stale data in the associations (the main object is still subject to caching, naturally) #347 [Tobias Luetke]
0
@@ -8,12 +6,6 @@
0
 * Added more informative exception when using helper :some_helper and the helper requires another file that fails, you'll get an
0
   error message tells you what file actually failed to load, rather than falling back on assuming it was the helper file itself #346 [dblack]
0
 
0
-* Fixed regression with Base#reset_session that wouldn't use the the DEFAULT_SESSION_OPTIONS [adam@the-kramers.net]
0
-
0
-* Fixed error rendering of rxml documents to not just swallow the exception and return 0 (still not guessing the right line, but hey)
0
-
0
-* Fixed that textilize and markdown would instantiate their engines even on empty strings. This also fixes #333 [Ulysses]
0
-
0
 * Added use of *_before_type_cast for all input and text fields. This is helpful for getting "100,000" back on a integer-based
0
   validation where the value would normally be "100".
0
 
0
@@ -23,6 +15,14 @@
0
 
0
 * Added POST support for the breakpoint retries, so form processing that raises an exception can be retried with the original request [Florian Gross]
0
 
0
+* Fixed regression with Base#reset_session that wouldn't use the the DEFAULT_SESSION_OPTIONS [adam@the-kramers.net]
0
+
0
+* Fixed error rendering of rxml documents to not just swallow the exception and return 0 (still not guessing the right line, but hey)
0
+
0
+* Fixed that textilize and markdown would instantiate their engines even on empty strings. This also fixes #333 [Ulysses]
0
+
0
+* Fixed UrlHelper#link_to_unless so it doesn't care if the id is a string or fixnum [zenspider]
0
+
0
 
0
 *1.0.1*
0
 
...
8
9
10
11
 
12
13
14
...
8
9
10
 
11
12
13
14
0
@@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher'
0
 
0
 PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
0
 PKG_NAME = 'actionpack'
0
-PKG_VERSION = '1.0.1' + PKG_BUILD
0
+PKG_VERSION = '1.1.0' + PKG_BUILD
0
 PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
0
 
0
 desc "Default Task"
...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 
26
27
28
...
39
40
41
42
43
44
45
46
 
47
48
49
50
51
 
 
 
 
 
 
 
 
52
53
54
...
61
62
63
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
65
66
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
...
15
16
17
 
 
 
 
 
18
19
20
21
22
 
23
24
25
26
27
28
29
30
31
32
33
...
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
0
@@ -1,28 +1,4 @@
0
-*SVN*
0
-
0
-* Added scope option to validation_uniqueness #349 [Kent Sibilev]
0
-
0
-* Added allow_nil options to validates_inclusion_of so that validation is only triggered if the attribute is not nil [what-a-day]
0
-
0
-* Added work-around for PostgreSQL and the problem of getting fixtures to be created from id 1 on each test case.
0
- This only works for auto-incrementing primary keys called "id" for now #359 [Scott Baron]
0
-
0
-* Added Base#clear_association_cache to empty all the cached associations #347 [Tobias Luetke]
0
-
0
-* Added more informative exceptions in establish_connection #356 [bitsweat]
0
-
0
-* Fixed that options[:counter_sql] was overwritten with interpolated sql rather than original sql #355 [bitsweat]
0
-
0
-* Fixed that overriding an attribute's accessor would be disregarded by add_on_empty and add_on_boundary_breaking because they simply used
0
- the attributes[] hash instead of checking for @base.respond_to?(attr.to_s). [Marten]
0
-
0
-* Fixed that Base.table_name would expect a parameter when used in has_and_belongs_to_many joins [Anna Lissa Cruz]
0
-
0
-* Fixed that nested transactions now work by letting the outer most transaction have the responsibilty of starting and rolling back the transaction.
0
- If any of the inner transactions swallow the exception raised, though, the transaction will not be rolled back. So always let the transaction
0
- bubble up even when you've dealt with local issues. Closes #231 and #340.
0
-
0
-* Fixed validates_{confirmation,acceptance}_of to only happen when the virtual attributes are not nil #348 [dpiddy@gmail.com]
0
+*1.3.0*
0
 
0
 * Added a require_association hook on const_missing that makes it possible to use any model class without requiring it first. This makes STI look like:
0
 
0
@@ -39,16 +15,19 @@
0
 
0
 * Added that Base.update_all and Base.delete_all return an integer of the number of affected rows #341
0
 
0
-* Changed the interface on AbstractAdapter to require that adapters return the number of affected rows on delete and update operations.
0
-
0
-* Added that query benchmarking will only happen if its going to be logged anyway #344
0
-
0
-* Added higher_item and lower_item as public methods for acts_as_list #342 [Tobias Luetke]
0
+* Added scope option to validation_uniqueness #349 [Kent Sibilev]
0
 
0
 * Added respondence to *_before_type_cast for all attributes to return their string-state before they were type casted by the column type.
0
   This is helpful for getting "100,000" back on a integer-based validation where the value would normally be "100".
0
 
0
-* Fixed the automated timestamping feature when running under Rails' development environment that resets the inheritable attributes on each request.
0
+* Added allow_nil options to validates_inclusion_of so that validation is only triggered if the attribute is not nil [what-a-day]
0
+
0
+* Added work-around for PostgreSQL and the problem of getting fixtures to be created from id 1 on each test case.
0
+ This only works for auto-incrementing primary keys called "id" for now #359 [Scott Baron]
0
+
0
+* Added Base#clear_association_cache to empty all the cached associations #347 [Tobias Luetke]
0
+
0
+* Added more informative exceptions in establish_connection #356 [bitsweat]
0
 
0
 * Added Base#update_attributes that'll accept a hash of attributes and save the record (returning true if it passed validation, false otherwise).
0
 
0
@@ -61,6 +40,28 @@
0
 
0
 * Added Base.destroy and Base.delete to remove records without holding a reference to them first.
0
 
0
+* Added that query benchmarking will only happen if its going to be logged anyway #344
0
+
0
+* Added higher_item and lower_item as public methods for acts_as_list #342 [Tobias Luetke]
0
+
0
+* Fixed that options[:counter_sql] was overwritten with interpolated sql rather than original sql #355 [bitsweat]
0
+
0
+* Fixed that overriding an attribute's accessor would be disregarded by add_on_empty and add_on_boundary_breaking because they simply used
0
+ the attributes[] hash instead of checking for @base.respond_to?(attr.to_s). [Marten]
0
+
0
+* Fixed that Base.table_name would expect a parameter when used in has_and_belongs_to_many joins [Anna Lissa Cruz]
0
+
0
+* Fixed that nested transactions now work by letting the outer most transaction have the responsibilty of starting and rolling back the transaction.
0
+ If any of the inner transactions swallow the exception raised, though, the transaction will not be rolled back. So always let the transaction
0
+ bubble up even when you've dealt with local issues. Closes #231 and #340.
0
+
0
+* Fixed validates_{confirmation,acceptance}_of to only happen when the virtual attributes are not nil #348 [dpiddy@gmail.com]
0
+
0
+* Changed the interface on AbstractAdapter to require that adapters return the number of affected rows on delete and update operations.
0
+
0
+* Fixed the automated timestamping feature when running under Rails' development environment that resets the inheritable attributes on each request.
0
+
0
+
0
 
0
 *1.2.0*
0
 
...
8
9
10
11
 
12
13
14
...
8
9
10
 
11
12
13
14
0
@@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher'
0
 
0
 PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
0
 PKG_NAME = 'activerecord'
0
-PKG_VERSION = '1.2.0' + PKG_BUILD
0
+PKG_VERSION = '1.3.0' + PKG_BUILD
0
 PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
0
 
0
 PKG_FILES = FileList[
...
1
 
2
3
4
...
10
11
12
13
 
 
 
14
15
16
...
 
1
2
3
4
...
10
11
12
 
13
14
15
16
17
18
0
@@ -1,4 +1,4 @@
0
-*SVN*
0
+*0.9.2*
0
 
0
 * Fixed CTRL-C exists from the Breakpointer to be a clean affair without error dumping [Kent Sibilev]
0
 
0
@@ -10,7 +10,9 @@
0
 
0
 * Added support for a -h/--help parameter in the generator #331 [Ulysses]
0
 
0
-* File.expand_path in config/environment.rb would fail when dealing with symlinked public directories [mjobin]
0
+* Fixed that File.expand_path in config/environment.rb would fail when dealing with symlinked public directories [mjobin]
0
+
0
+* Upgraded to Action Pack 1.1.0 and Active Record 1.3.0
0
 
0
 
0
 *0.9.1*
...
9
10
11
12
 
13
14
15
...
221
222
223
224
225
 
 
226
227
228
...
9
10
11
 
12
13
14
15
...
221
222
223
 
 
224
225
226
227
228
0
@@ -9,7 +9,7 @@ require 'date'
0
 
0
 PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
0
 PKG_NAME = 'rails'
0
-PKG_VERSION = '0.9.1' + PKG_BUILD
0
+PKG_VERSION = '0.9.2' + PKG_BUILD
0
 PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
0
 PKG_DESTINATION = ENV["RAILS_PKG_DESTINATION"] || "../#{PKG_NAME}"
0
 
0
@@ -221,8 +221,8 @@ spec = Gem::Specification.new do |s|
0
   EOF
0
 
0
   s.add_dependency('rake', '>= 0.4.11')
0
- s.add_dependency('activerecord', '>= 1.2.0')
0
- s.add_dependency('actionpack', '>= 1.0.1')
0
+ s.add_dependency('activerecord', '>= 1.3.0')
0
+ s.add_dependency('actionpack', '>= 1.1.0')
0
   s.add_dependency('actionmailer', '>= 0.5.0')
0
 
0
   s.has_rdoc = false

Comments

    No one has commented yet.