From: Eric Wong Date: Tue, 17 Apr 2012 21:32:07 +0000 (+0000) Subject: unicorn 4.3.0 - minor fixes and updates X-Git-Tag: v4.3.0^0 X-Git-Url: https://repo.or.cz/w/unicorn.git/commitdiff_plain/8c1aff1e6335f8a55723907e2661dcb09ea16205 unicorn 4.3.0 - minor fixes and updates * PATH_INFO (aka REQUEST_PATH) increased to 4096 (from 1024). This allows requests with longer path components and matches the system PATH_MAX value common to GNU/Linux systems for serving filesystem components with long names. * Apps that fork() (but do not exec()) internally for background tasks now indicate the end-of-request immediately after writing the Rack response. Thanks to Hongli Lai, Lawrence Pit, Patrick Wenger and Nuo Yan for their valuable feedback for this release. --- diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN index 6819d39f..f0ad2868 100755 --- a/GIT-VERSION-GEN +++ b/GIT-VERSION-GEN @@ -1,7 +1,7 @@ #!/bin/sh GVF=GIT-VERSION-FILE -DEF_VER=v4.2.1.GIT +DEF_VER=v4.3.0.GIT LF=' ' diff --git a/lib/unicorn/const.rb b/lib/unicorn/const.rb index 312e8e88..e104ecce 100644 --- a/lib/unicorn/const.rb +++ b/lib/unicorn/const.rb @@ -8,7 +8,7 @@ # improve things much compared to constants. module Unicorn::Const - UNICORN_VERSION = "4.2.1" + UNICORN_VERSION = "4.3.0" # default TCP listen host address (0.0.0.0, all interfaces) DEFAULT_HOST = "0.0.0.0"