aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-01-04 12:35:10 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-01-04 12:35:10 +0000
commitf2e6945b25d92d5a4a00e5678d8515ae35cd24bb (patch)
treecf1022909d67ed4b464a73492ab468d66bc9fc14 /actionpack
parent2afdf01e5c354bdc49b1d1329333a01b7012134b (diff)
downloadrails-f2e6945b25d92d5a4a00e5678d8515ae35cd24bb.tar.gz
rails-f2e6945b25d92d5a4a00e5678d8515ae35cd24bb.tar.bz2
rails-f2e6945b25d92d5a4a00e5678d8515ae35cd24bb.zip
Prepared for release of 0.9.3
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@333 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/CHANGELOG14
-rwxr-xr-xactionpack/Rakefile4
-rw-r--r--actionpack/install.rb9
3 files changed, 18 insertions, 9 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 8b07c13dbb..a9c5796118 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,25 +1,25 @@
-*SVN*
+*1.2.0* (January 4th, 2005)
* Added MemCacheStore for storing session data in Danga's MemCache system [Bob Cottrell]
Depends on: MemCached server (http://www.danga.com/memcached/), MemCache client (http://raa.ruby-lang.org/project/memcache/)
-* Fixed redirects when the controller and action is named the same. Still haven't fixed same controller, module, and action, though #201 [Josh]
-
-* Fixed problems with running multiple functional tests in Rails under 1.8.2 by including hack for test/unit weirdness
-
* Added thread-safety to the DRbStore #66, #389 [Ben Stiglitz]
* Added DateHelper#select_time and DateHelper#select_second #373 [Scott Baron]
+* Added :host and :protocol options to url_for and friends to redirect to another host and protocol than the current.
+
* Added class declaration for the MissingFile exception #388 [Kent Sibilev]
* Added "short hypertext note with a hyperlink to the new URI(s)" to redirects to fulfill compliance with RFC 2616 (HTTP/1.1) section 10.3.3 #397 [Tim Bates]
* Added second boolean parameter to Base.redirect_to_url and Response#redirect to control whether the redirect is permanent or not (301 vs 302) #375 [Hodel]
-* Fixed that @request.remote_ip didn't work in the test environment #369 [Bruno Mattarollo]
+* Fixed redirects when the controller and action is named the same. Still haven't fixed same controller, module, and action, though #201 [Josh]
-* Added :host and :protocol options to url_for and friends to redirect to another host and protocol than the current.
+* Fixed problems with running multiple functional tests in Rails under 1.8.2 by including hack for test/unit weirdness
+
+* Fixed that @request.remote_ip didn't work in the test environment #369 [Bruno Mattarollo]
*1.1.0*
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index 1307497f15..0f9da91b3e 100755
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -8,7 +8,7 @@ require 'rake/contrib/rubyforgepublisher'
PKG_BUILD = ENV['PKG_BUILD'] ? '.' + ENV['PKG_BUILD'] : ''
PKG_NAME = 'actionpack'
-PKG_VERSION = '1.1.0' + PKG_BUILD
+PKG_VERSION = '1.2.0' + PKG_BUILD
PKG_FILE_NAME = "#{PKG_NAME}-#{PKG_VERSION}"
desc "Default Task"
@@ -49,7 +49,7 @@ spec = Gem::Specification.new do |s|
s.author = "David Heinemeier Hansson"
s.email = "david@loudthinking.com"
s.rubyforge_project = "actionpack"
- s.homepage = "http://actionpack.rubyonrails.org"
+ s.homepage = "http://www.rubyonrails.org"
s.has_rdoc = true
s.requirements << 'none'
diff --git a/actionpack/install.rb b/actionpack/install.rb
index 0f7b91e0d7..fb37263617 100644
--- a/actionpack/install.rb
+++ b/actionpack/install.rb
@@ -40,8 +40,10 @@ files = %w-
action_controller/benchmarking.rb
action_controller/cgi_ext/cgi_ext.rb
action_controller/cgi_ext/cgi_methods.rb
+ action_controller/cgi_ext/cookie_performance_fix.rb
action_controller/cgi_process.rb
action_controller/cookies.rb
+ action_controller/dependencies.rb
action_controller/filters.rb
action_controller/flash.rb
action_controller/helpers.rb
@@ -53,11 +55,18 @@ files = %w-
action_controller/session/active_record_store.rb
action_controller/session/drb_server.rb
action_controller/session/drb_store.rb
+ action_controller/session/mem_cache_store.rb
+ action_controller/session.rb
action_controller/support/class_inheritable_attributes.rb
action_controller/support/class_attribute_accessors.rb
action_controller/support/clean_logger.rb
action_controller/support/cookie_performance_fix.rb
action_controller/support/inflector.rb
+ action_controller/support/binding_of_caller.rb
+ action_controller/support/breakpoint.rb
+ action_controller/support/dependencies.rb
+ action_controller/support/misc.rb
+ action_controller/support/module_attribute_accessors.rb
action_controller/templates/rescues/_request_and_response.rhtml
action_controller/templates/rescues/diagnostics.rhtml
action_controller/templates/rescues/layout.rhtml