From cd401dfd01dbd8276ae817af2089c8c4d9fda6c4 Mon Sep 17 00:00:00 2001 From: Michael Fellinger Date: Fri, 23 Oct 2009 17:49:03 +0900 Subject: Fix LSWS handler as suggested by George Wang --- lib/rack/handler/lsws.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/rack/handler/lsws.rb b/lib/rack/handler/lsws.rb index b4ddf4bb..e261003d 100644 --- a/lib/rack/handler/lsws.rb +++ b/lib/rack/handler/lsws.rb @@ -1,5 +1,6 @@ require 'lsapi' require 'rack/content_length' +require 'rack/rewindable_input' module Rack module Handler @@ -38,6 +39,8 @@ module Rack ensure body.close if body.respond_to? :close end + ensure + rack_input.close end def self.send_headers(status, headers) print "Status: #{status}\r\n" -- cgit v1.2.3-24-ge0c7 From c765e7b99f569c170f07431a6831541755e271f6 Mon Sep 17 00:00:00 2001 From: Christian Neukirchen Date: Sun, 18 Oct 2009 21:39:16 +0200 Subject: Update README for 1.0.1 --- README | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README b/README index da749706..c58009ff 100644 --- a/README +++ b/README @@ -272,6 +272,17 @@ run on port 11211) and memcache-client installed. * The Rakefile has been rewritten. * Many bugfixes and small improvements. +* October 18th, 2009: Eighth public release 1.0.1. + * Bump remainder of rack.versions. + * Support the pure Ruby FCGI implementation. + * Fix for form names containing "=": split first then unescape components + * Fixes the handling of the filename parameter with semicolons in names. + * Add anchor to nested params parsing regexp to prevent stack overflows + * Use more compatible gzip write api instead of "<<". + * Make sure that Reloader doesn't break when executed via ruby -e + * Make sure WEBrick respects the :Host option + * Many Ruby 1.9 fixes. + == Contact Please mail bugs, suggestions and patches to -- cgit v1.2.3-24-ge0c7