Skip to content

Commit f7e1e58

Browse files
authored
Merge pull request #1614 from puma/schneems/version-bump
v3.12.0
2 parents c3b3a97 + 8eb215d commit f7e1e58

2 files changed

Lines changed: 15 additions & 2 deletions

File tree

History.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## 3.12.0 / 2018-07-13
2+
3+
* 5 features:
4+
* You can now specify which SSL ciphers the server should support, default is unchanged (#1478)
5+
* The setting for Puma's `max_threads` is now in `Puma.stats` (#1604)
6+
* Pool capacity is now in `Puma.stats` (#1579)
7+
* Installs restricted to Ruby 2.2+ (#1506)
8+
* `--control` is now deprecated in favor of `--control-url` (#1487)
9+
10+
* 2 bugfixes:
11+
* 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)
12+
* In a test env puma now emits the stack on an exception (#1557)
13+
114
## 3.11.4 / 2018-04-12
215

316
* 2 features:

lib/puma/const.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ class UnsupportedOption < RuntimeError
9898
# too taxing on performance.
9999
module Const
100100

101-
PUMA_VERSION = VERSION = "3.11.4".freeze
102-
CODE_NAME = "Love Song".freeze
101+
PUMA_VERSION = VERSION = "3.12.0".freeze
102+
CODE_NAME = "Llamas in Pajamas".freeze
103103
PUMA_SERVER_STRING = ['puma', PUMA_VERSION, CODE_NAME].join(' ').freeze
104104

105105
FAST_TRACK_KA_TIMEOUT = 0.2

0 commit comments

Comments
 (0)