1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00
This commit is contained in:
schneems 2018-07-13 10:08:56 -05:00
parent c3b3a9712a
commit 8eb215dc08
2 changed files with 15 additions and 2 deletions

View file

@ -1,3 +1,16 @@
## 3.12.0 / 2018-07-13
* 5 features:
* You can now specify which SSL ciphers the server should support, default is unchanged (#1478)
* The setting for Puma's `max_threads` is now in `Puma.stats` (#1604)
* Pool capacity is now in `Puma.stats` (#1579)
* Installs restricted to Ruby 2.2+ (#1506)
* `--control` is now deprecated in favor of `--control-url` (#1487)
* 2 bugfixes:
* Workers will no longer accept more web requests than they have capacity to process. This prevents an issue where one worker would accept lots of requests while starving other workers (#1563)
* In a test env puma now emits the stack on an exception (#1557)
## 3.11.4 / 2018-04-12
* 2 features:

View file

@ -98,8 +98,8 @@ module Puma
# too taxing on performance.
module Const
PUMA_VERSION = VERSION = "3.11.4".freeze
CODE_NAME = "Love Song".freeze
PUMA_VERSION = VERSION = "3.12.0".freeze
CODE_NAME = "Llamas in Pajamas".freeze
PUMA_SERVER_STRING = ['puma', PUMA_VERSION, CODE_NAME].join(' ').freeze
FAST_TRACK_KA_TIMEOUT = 0.2