diff options
author | taca <taca@pkgsrc.org> | 2014-03-14 19:31:19 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2014-03-14 19:31:19 +0000 |
commit | 0b1d6224e278d41278763e4f667a0a4af5748565 (patch) | |
tree | 6ff4c84897a7a9b4c3657760ec3ee7f01d4738ca /www/thin/Makefile | |
parent | 5743126691f445a0a6529a9228a3650b2945fe01 (diff) | |
download | pkgsrc-0b1d6224e278d41278763e4f667a0a4af5748565.tar.gz |
Update thin to 1.6.2.
== 1.6.2 Doc Brown
* No longer replace response's body on HEAD request. Ensuring body.close will be called.
* Remove `---ssl-verify` option as EventMachine doesn't verify the certificate.
* Fix env['rack.peer_cert'] to return SSL certifcate.
== 1.6.1 Death Proof
* Regression: Default logger to STDOUT when using outside of CLI.
* Regression: Downgrade Rack required version back to 1.0 to work w/ prior Rails versions.
== 1.6.0 Greek Yogurt
* Accept absolute URL in request line, eg.: 'GET http://site.com/he/lo HTTP/1.1'.
* HEAD request no longer return a body in the response.
* No longer stop EventMachine's reactor loop unless it was started by Thin.
* Make request env keys upcasing locale-agnostic.
* Use Ruby's `Logger` for logging. [Akshay Moghe].
The logger can now be set using `Thin::Logging.logger=`.
Tracing of request is handled by a second logger, `Thin::Logging.trace_logger=`.
* Add --threadpool-size option to configure EM's thread pool size (default: 20).
* Pipelining is no longer supported.
Diffstat (limited to 'www/thin/Makefile')
-rw-r--r-- | www/thin/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/www/thin/Makefile b/www/thin/Makefile index 59f8ff683c2..82d8bd2985d 100644 --- a/www/thin/Makefile +++ b/www/thin/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.14 2014/03/13 11:08:53 jperkin Exp $ +# $NetBSD: Makefile,v 1.15 2014/03/14 19:31:19 taca Exp $ -DISTNAME= thin-1.5.1 +DISTNAME= thin-1.6.2 CATEGORIES= www MAINTAINER= pkgsrc-users@NetBSD.org @@ -10,7 +10,7 @@ LICENSE= mit DEPENDS+= ${RUBY_PKGPREFIX}-rack>=1.0.0:../../www/ruby-rack DEPENDS+= ${RUBY_PKGPREFIX}-daemons>=1.0.9:../../misc/ruby-daemons -DEPENDS+= ${RUBY_PKGPREFIX}-eventmachine>=0.12.6:../../devel/ruby-eventmachine +DEPENDS+= ${RUBY_PKGPREFIX}-eventmachine>=1.0.0:../../devel/ruby-eventmachine CONFLICTS+= ruby[1-9][0-9]-thin-[0-9]* thin-[0-9]* |