mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
Bring in CHANGES additions from 0.9.0.x branch
This commit is contained in:
parent
c094757b08
commit
f99015dbe5
3 changed files with 28 additions and 1 deletions
23
CHANGES
23
CHANGES
|
@ -1,3 +1,26 @@
|
|||
= 0.9.0.4 / 2009-01-25
|
||||
|
||||
* Using halt with more than 1 args causes ArgumentError [#131]
|
||||
* using halt in a before filter doesn't modify response [#127]
|
||||
* Add deprecated Sinatra::EventContext to unbreak plugins [#130]
|
||||
* Give access to GET/POST params in filters [#129]
|
||||
* Preserve non-nested params in nested params hash [#117]
|
||||
* Fix backtrace dump with Rack::Lint [#116]
|
||||
|
||||
= 0.9.0.3 / 2009-01-21
|
||||
|
||||
* Fall back on mongrel then webrick when thin not found. [#75]
|
||||
* Use :environment instead of :env in test helpers to
|
||||
fix deprecation warnings coming from framework.
|
||||
* Make sinatra/test/rspec work again [#113]
|
||||
* Fix app_file detection on windows [#118]
|
||||
* Fix static files with Rack::Lint in pipeline [#121]
|
||||
|
||||
= 0.9.0.2 / 2009-01-18
|
||||
|
||||
* Halting a before block should stop processing of routes [#85]
|
||||
* Fix redirect/halt in before filters [#85]
|
||||
|
||||
= 0.9.0 / 2009-01-18
|
||||
|
||||
* Works with and requires Rack >= 0.9.1
|
||||
|
|
|
@ -4,7 +4,7 @@ require 'rack'
|
|||
require 'rack/builder'
|
||||
|
||||
module Sinatra
|
||||
VERSION = '0.9.0.2'
|
||||
VERSION = '0.9.0.4'
|
||||
|
||||
class Request < Rack::Request
|
||||
def user_agent
|
||||
|
|
|
@ -22,6 +22,7 @@ Gem::Specification.new do |s|
|
|||
compat/app_test.rb
|
||||
compat/application_test.rb
|
||||
compat/builder_test.rb
|
||||
compat/compat_test.rb
|
||||
compat/custom_error_test.rb
|
||||
compat/erb_test.rb
|
||||
compat/events_test.rb
|
||||
|
@ -78,12 +79,15 @@ Gem::Specification.new do |s|
|
|||
test/options_test.rb
|
||||
test/reload_test.rb
|
||||
test/request_test.rb
|
||||
test/response_test.rb
|
||||
test/result_test.rb
|
||||
test/routing_test.rb
|
||||
test/sass_test.rb
|
||||
test/server_test.rb
|
||||
test/sinatra_test.rb
|
||||
test/static_test.rb
|
||||
test/templates_test.rb
|
||||
test/test_test.rb
|
||||
test/views/hello.builder
|
||||
test/views/hello.erb
|
||||
test/views/hello.haml
|
||||
|
|
Loading…
Reference in a new issue