mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
Bump to 2.10.0
This commit is contained in:
parent
ca31a0e336
commit
8960a90506
2 changed files with 31 additions and 2 deletions
29
History.txt
29
History.txt
|
@ -1,3 +1,32 @@
|
|||
=== 2.10.0 / 2014-11-23
|
||||
|
||||
* 3 minor features:
|
||||
* Added on_worker_shutdown hook mechanism
|
||||
* Allow binding to ipv6 addresses for ssl URIs
|
||||
* Warn about any threads started during app preload
|
||||
|
||||
* 5 bug fixes:
|
||||
* Clean out a threads local data before doing work
|
||||
* Disable SSLv3. Fixes #591
|
||||
* First change the directory to use the correct Gemfile.
|
||||
* Only use config.ru binds if specified. Fixes #606
|
||||
* Strongish cipher suite with FS support for some browsers
|
||||
|
||||
* 2 doc changes:
|
||||
* Change umask examples to more permissive values
|
||||
* fix typo in README.md
|
||||
|
||||
* 9 Merged PRs:
|
||||
* Merge pull request #560 from raskhadafi/prune_bundler-bug
|
||||
* Merge pull request #566 from sheltond/master
|
||||
* Merge pull request #593 from andruby/patch-1
|
||||
* Merge pull request #594 from hassox/thread-cleanliness
|
||||
* Merge pull request #596 from burningTyger/patch-1
|
||||
* Merge pull request #601 from sorentwo/friendly-umask
|
||||
* Merge pull request #602 from 1334/patch-1
|
||||
* Merge pull request #608 from Gu1/master
|
||||
* Merge remote-tracking branch 'origin/pr/538'
|
||||
|
||||
=== 2.9.2 / 2014-10-25
|
||||
|
||||
* 8 bug fixes:
|
||||
|
|
|
@ -28,8 +28,8 @@ module Puma
|
|||
# too taxing on performance.
|
||||
module Const
|
||||
|
||||
PUMA_VERSION = VERSION = "2.9.2".freeze
|
||||
CODE_NAME = "Team High Five".freeze
|
||||
PUMA_VERSION = VERSION = "2.10.0".freeze
|
||||
CODE_NAME = "Robots on Comets".freeze
|
||||
|
||||
FAST_TRACK_KA_TIMEOUT = 0.2
|
||||
|
||||
|
|
Loading…
Reference in a new issue