puma 5.0.0.beta2 → 5.0.4

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of puma might be problematic. Click here for more details.

Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/History.md +1194 -570
  3. data/README.md +12 -5
  4. data/bin/puma-wild +3 -9
  5. data/docs/deployment.md +5 -6
  6. data/docs/jungle/README.md +0 -4
  7. data/docs/jungle/rc.d/puma +2 -2
  8. data/docs/nginx.md +1 -1
  9. data/docs/restart.md +46 -23
  10. data/docs/signals.md +3 -3
  11. data/docs/systemd.md +1 -1
  12. data/ext/puma_http11/ext_help.h +1 -1
  13. data/ext/puma_http11/mini_ssl.c +42 -37
  14. data/ext/puma_http11/no_ssl/PumaHttp11Service.java +15 -0
  15. data/ext/puma_http11/org/jruby/puma/MiniSSL.java +40 -12
  16. data/ext/puma_http11/puma_http11.c +21 -10
  17. data/lib/puma.rb +15 -0
  18. data/lib/puma/app/status.rb +44 -43
  19. data/lib/puma/binder.rb +35 -8
  20. data/lib/puma/client.rb +32 -73
  21. data/lib/puma/cluster.rb +32 -191
  22. data/lib/puma/cluster/worker.rb +170 -0
  23. data/lib/puma/cluster/worker_handle.rb +83 -0
  24. data/lib/puma/configuration.rb +9 -7
  25. data/lib/puma/const.rb +2 -1
  26. data/lib/puma/control_cli.rb +2 -0
  27. data/lib/puma/detect.rb +9 -0
  28. data/lib/puma/dsl.rb +74 -36
  29. data/lib/puma/error_logger.rb +3 -2
  30. data/lib/puma/events.rb +7 -3
  31. data/lib/puma/launcher.rb +15 -8
  32. data/lib/puma/minissl.rb +28 -15
  33. data/lib/puma/minissl/context_builder.rb +0 -3
  34. data/lib/puma/queue_close.rb +26 -0
  35. data/lib/puma/reactor.rb +77 -373
  36. data/lib/puma/request.rb +438 -0
  37. data/lib/puma/runner.rb +6 -18
  38. data/lib/puma/server.rb +192 -509
  39. data/lib/puma/single.rb +3 -2
  40. data/lib/puma/thread_pool.rb +27 -3
  41. data/lib/puma/util.rb +12 -0
  42. metadata +13 -12
  43. data/docs/jungle/upstart/README.md +0 -61
  44. data/docs/jungle/upstart/puma-manager.conf +0 -31
  45. data/docs/jungle/upstart/puma.conf +0 -69
  46. data/lib/puma/accept_nonblock.rb +0 -29
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b265505e1f4f00fe8c7de1c1d66103664bdd5920c2aed54b66e3303ded01c881
4
- data.tar.gz: 3c921f609fd679b3b8cfbbc807678c16d09b03f43a8104913f0e0dd54e7e93f1
3
+ metadata.gz: 88dc01e1628aacb4ee705cc2ab0ecda793913c284737acf93c92674b45a8ec93
4
+ data.tar.gz: bcfb46e65dc12b753628656ed7450643a6e6b2a451e2024c872275aa72f28422
5
5
  SHA512:
6
- metadata.gz: 74dce09aab280163c048a0c3ae3a81cd16b2ac32c7641fd43640d65797a61edf6e25a11f5111324111cd0068a98fc2ec13fcb3ac44154cef39d4bb3eb839a392
7
- data.tar.gz: c6cf2c5d6d29867130be2fa572d5aea12a45a50052841a2de26e0a4600004f6fffae80922a9c641e8a155c8967ea8349d759b62a7ae9c2f6cbc84433fd092d13
6
+ metadata.gz: 0b5815aa75f4b0f0af4e8e1a2ecb3f46d7fc9e9c6c9f340f5ee8b4c4f1def02d24736a685520699ed46946557a7b1355ff1df765fd7670fb8ecbbc5d4df5eb64
7
+ data.tar.gz: f4294d0f1c811b4e230fa42162be39abab57c6c14d0c2b81a887893a997e8864b3afe9e06c32a2f5185166cfa680b6c1f66c473ef7f839c1430f41248f782793
data/History.md CHANGED
@@ -1,74 +1,138 @@
1
- ## 5.0.0
1
+ ## 5.1.0
2
2
 
3
3
  * Features
4
- * EXPERIMENTAL: Add `fork_worker` option and `refork` command for reduced memory usage by forking from a worker process instead of the master process. (#2099)
5
- * EXPERIMENTAL: Added `wait_for_less_busy_worker` config. This may reduce latency on MRI through inserting a small delay before re-listening on the socket if worker is busy (#2079).
6
- * EXPERIMENTAL: Added `nakayoshi_fork` option. Reduce memory usage in preloaded cluster-mode apps by GCing before fork and compacting, where available. (#2093, #2256)
7
- * Added pumactl `thread-backtraces` command to print thread backtraces (#2054)
8
- * Added incrementing `requests_count` to `Puma.stats`. (#2106)
9
- * Increased maximum URI path length from 2048 to 8192 bytes (#2167, #2344)
10
- * `lowlevel_error_handler` is now called during a forced threadpool shutdown, and if a callable with 3 arguments is set, we now also pass the status code (#2203)
11
- * Faster phased restart and worker timeout (#2220)
12
- * Added `state_permission` to config DSL to set state file permissions (#2238)
13
- * Added `Puma.stats_hash`, which returns a stats in Hash instead of a JSON string (#2086, #2253)
14
- * `rack.multithread` and `rack.multiprocess` now dynamically resolved by `max_thread` and `workers` respectively (#2288)
4
+ * Your feature goes here <Most recent on the top, like GitHub> (#Github Number)
5
+ * Integrate with systemd's watchdog and notification features (#2438)
6
+ * Adds max_fast_inline as a configuration option for the Server object (#2406)
7
+
8
+ * Bugfixes
9
+ * Your bugfix goes here <Most recent on the top, like GitHub> (#Github Number)
10
+ * Ignore illegal (by Rack spec) response header (#2439)
11
+ * Close idle connections immediately on shutdown (#2460)
12
+
13
+ ## 5.0.4 / 2020-10-27
14
+
15
+ * Bugfixes
16
+ * Pass preloaded application into new workers if available when using `preload_app` (#2461)
17
+
18
+ ## 5.0.3 / 2020-10-26
19
+
20
+ * Bugfixes
21
+ * Add Client#io_ok?, check before Reactor#register ([#2432])
22
+ * Fix hang on shutdown in refork ([#2442])
23
+ * Fix `Bundler::GemNotFound` errors for `nio4r` gem during phased restarts ([#2427], [#2018])
24
+ * Server run thread safety fix ([#2435])
25
+ * Fire `on_booted` after server starts ([#2431], [#2212])
26
+ * Cleanup daemonization in rc.d script ([#2409])
27
+
28
+ * Refactor
29
+ * Remove accept_nonblock.rb, add test_integration_ssl.rb ([#2448])
30
+ * Refactor status.rb - dry it up a bit ([#2450])
31
+ * Extract req/resp methods to new request.rb from server.rb ([#2419])
32
+ * Refactor Reactor and Client request buffering ([#2279])
33
+ * client.rb - remove JRuby specific 'finish' code ([#2412])
34
+ * Consolidate fast_write calls in Server, extract early_hints assembly ([#2405])
35
+ * Remove upstart from docs ([#2408])
36
+ * Consolidate option handling in Server, Server small refactors, doc changes ([#2389])
37
+
38
+ ## 5.0.2 / 2020-09-28
39
+
40
+ * Bugfixes
41
+ * Reverted API changes to Server.
42
+
43
+ ## 5.0.1 / 2020-09-28
44
+
45
+ * Bugfixes
46
+ * Fix LoadError in CentOS 8 ([#2381])
47
+ * Better error handling during force shutdown ([#2271])
48
+ * Prevent connections from entering Reactor after shutdown begins ([#2377])
49
+ * Fix error backtrace debug logging && Do not log request dump if it is not parsed ([#2376])
50
+ * Split TCP_CORK and TCP_INFO ([#2372])
51
+ * Do not log EOFError when a client connection is closed without write ([#2384])
52
+
53
+ * Refactor
54
+ * Change Events#ssl_error signature from (error, peeraddr, peercert) to (error, ssl_socket) ([#2375])
55
+ * Consolidate option handling in Server, Server small refactors, doc chang ([#2373])
56
+
57
+ ## 5.0.0 / 2020-09-17
58
+
59
+ * Features
60
+ * Allow compiling without OpenSSL and dynamically load files needed for SSL, add 'no ssl' CI ([#2305])
61
+ * EXPERIMENTAL: Add `fork_worker` option and `refork` command for reduced memory usage by forking from a worker process instead of the master process. ([#2099])
62
+ * EXPERIMENTAL: Added `wait_for_less_busy_worker` config. This may reduce latency on MRI through inserting a small delay before re-listening on the socket if worker is busy ([#2079]).
63
+ * EXPERIMENTAL: Added `nakayoshi_fork` option. Reduce memory usage in preloaded cluster-mode apps by GCing before fork and compacting, where available. ([#2093], [#2256])
64
+ * Added pumactl `thread-backtraces` command to print thread backtraces ([#2054])
65
+ * Added incrementing `requests_count` to `Puma.stats`. ([#2106])
66
+ * Increased maximum URI path length from 2048 to 8192 bytes ([#2167], [#2344])
67
+ * `lowlevel_error_handler` is now called during a forced threadpool shutdown, and if a callable with 3 arguments is set, we now also pass the status code ([#2203])
68
+ * Faster phased restart and worker timeout ([#2220])
69
+ * Added `state_permission` to config DSL to set state file permissions ([#2238])
70
+ * Added `Puma.stats_hash`, which returns a stats in Hash instead of a JSON string ([#2086], [#2253])
71
+ * `rack.multithread` and `rack.multiprocess` now dynamically resolved by `max_thread` and `workers` respectively ([#2288])
15
72
 
16
73
  * Deprecations, Removals and Breaking API Changes
17
- * `--control` has been removed. Use `--control-url` (#1487)
74
+ * `--control` has been removed. Use `--control-url` ([#1487])
18
75
  * `worker_directory` has been removed. Use `directory`.
19
- * min_threads now set by environment variables PUMA_MIN_THREADS and MIN_THREADS. (#2143)
20
- * max_threads now set by environment variables PUMA_MAX_THREADS and MAX_THREADS. (#2143)
21
- * max_threads default to 5 in MRI or 16 for all other interpreters. (#2143)
22
- * preload by default if workers > 1 (#2143)
23
- * Puma::Plugin.workers_supported? has been removed. Use Puma.forkable? instead. (#2143)
24
- * `tcp_mode` has been removed without replacement. (#2169)
25
- * Daemonization has been removed without replacement. (#2170)
26
- * Changed #connected_port to #connected_ports (#2076)
27
- * Configuration: `environment` is read from `RAILS_ENV`, if `RACK_ENV` can't be found (#2022)
76
+ * min_threads now set by environment variables PUMA_MIN_THREADS and MIN_THREADS. ([#2143])
77
+ * max_threads now set by environment variables PUMA_MAX_THREADS and MAX_THREADS. ([#2143])
78
+ * max_threads default to 5 in MRI or 16 for all other interpreters. ([#2143])
79
+ * preload by default if workers > 1 ([#2143])
80
+ * Puma::Plugin.workers_supported? has been removed. Use Puma.forkable? instead. ([#2143])
81
+ * `tcp_mode` has been removed without replacement. ([#2169])
82
+ * Daemonization has been removed without replacement. ([#2170])
83
+ * Changed #connected_port to #connected_ports ([#2076])
84
+ * Configuration: `environment` is read from `RAILS_ENV`, if `RACK_ENV` can't be found ([#2022])
28
85
  * Log binding on http:// for TCP bindings to make it clickable
29
86
 
30
87
  * Bugfixes
31
- * Fix JSON loading issues on phased-restarts (#2269)
32
- * Improve shutdown reliability (#2312, #2338)
33
- * Close client http connections made to an ssl server with TLSv1.3 (#2116)
34
- * Do not set user_config to quiet by default to allow for file config (#2074)
35
- * Always close SSL connection in Puma::ControlCLI (#2211)
36
- * Windows update extconf.rb for use with ssp and varied Ruby/MSYS2 combinations (#2069)
37
- * Ensure control server Unix socket is closed on shutdown (#2112)
38
- * Preserve `BUNDLE_GEMFILE` env var when using `prune_bundler` (#1893)
39
- * Send 408 request timeout even when queue requests is disabled (#2119)
40
- * Rescue IO::WaitReadable instead of EAGAIN for blocking read (#2121)
41
- * Ensure `BUNDLE_GEMFILE` is unspecified in workers if unspecified in master when using `prune_bundler` (#2154)
42
- * Rescue and log exceptions in hooks defined by users (on_worker_boot, after_worker_fork etc) (#1551)
43
- * Read directly from the socket in #read_and_drop to avoid raising further SSL errors (#2198)
44
- * Set `Connection: closed` header when queue requests is disabled (#2216)
45
- * Pass queued requests to thread pool on server shutdown (#2122)
46
- * Fixed a few minor concurrency bugs in ThreadPool that may have affected non-GVL Rubies (#2220)
47
- * Fix `out_of_band` hook never executed if the number of worker threads is > 1 (#2177)
48
- * Fix ThreadPool#shutdown timeout accuracy (#2221)
49
- * Fix `UserFileDefaultOptions#fetch` to properly use `default` (#2233)
50
- * Improvements to `out_of_band` hook (#2234)
51
- * Prefer the rackup file specified by the CLI (#2225)
52
- * Fix for spawning subprocesses with fork_worker option (#2267)
53
- * Set `CONTENT_LENGTH` for chunked requests (#2287)
54
- * JRuby - Add Puma::MiniSSL::Engine#init? and #teardown methods, run all SSL tests (#2317)
55
- * Improve shutdown reliability (#2312)
88
+ * Fix JSON loading issues on phased-restarts ([#2269])
89
+ * Improve shutdown reliability ([#2312], [#2338])
90
+ * Close client http connections made to an ssl server with TLSv1.3 ([#2116])
91
+ * Do not set user_config to quiet by default to allow for file config ([#2074])
92
+ * Always close SSL connection in Puma::ControlCLI ([#2211])
93
+ * Windows update extconf.rb for use with ssp and varied Ruby/MSYS2 combinations ([#2069])
94
+ * Ensure control server Unix socket is closed on shutdown ([#2112])
95
+ * Preserve `BUNDLE_GEMFILE` env var when using `prune_bundler` ([#1893])
96
+ * Send 408 request timeout even when queue requests is disabled ([#2119])
97
+ * Rescue IO::WaitReadable instead of EAGAIN for blocking read ([#2121])
98
+ * Ensure `BUNDLE_GEMFILE` is unspecified in workers if unspecified in master when using `prune_bundler` ([#2154])
99
+ * Rescue and log exceptions in hooks defined by users (on_worker_boot, after_worker_fork etc) ([#1551])
100
+ * Read directly from the socket in #read_and_drop to avoid raising further SSL errors ([#2198])
101
+ * Set `Connection: closed` header when queue requests is disabled ([#2216])
102
+ * Pass queued requests to thread pool on server shutdown ([#2122])
103
+ * Fixed a few minor concurrency bugs in ThreadPool that may have affected non-GVL Rubies ([#2220])
104
+ * Fix `out_of_band` hook never executed if the number of worker threads is > 1 ([#2177])
105
+ * Fix ThreadPool#shutdown timeout accuracy ([#2221])
106
+ * Fix `UserFileDefaultOptions#fetch` to properly use `default` ([#2233])
107
+ * Improvements to `out_of_band` hook ([#2234])
108
+ * Prefer the rackup file specified by the CLI ([#2225])
109
+ * Fix for spawning subprocesses with fork_worker option ([#2267])
110
+ * Set `CONTENT_LENGTH` for chunked requests ([#2287])
111
+ * JRuby - Add Puma::MiniSSL::Engine#init? and #teardown methods, run all SSL tests ([#2317])
112
+ * Improve shutdown reliability ([#2312])
56
113
  * Resolve issue with threadpool waiting counter decrement when thread is killed
57
114
  * Constrain rake-compiler version to 0.9.4 to fix `ClassNotFound` exception when using MiniSSL with Java8.
58
- * Fix recursive `prune_bundler` (#2319).
115
+ * Fix recursive `prune_bundler` ([#2319]).
59
116
  * Ensure that TCP_CORK is usable
60
- * Fix corner case when request body is chunked (#2326)
117
+ * Fix corner case when request body is chunked ([#2326])
118
+ * Fix filehandle leak in MiniSSL ([#2299])
61
119
 
62
120
  * Refactor
63
- * Remove unused loader argument from Plugin initializer (#2095)
64
- * Simplify `Configuration.random_token` and remove insecure fallback (#2102)
65
- * Simplify `Runner#start_control` URL parsing (#2111)
66
- * Removed the IOBuffer extension and replaced with Ruby (#1980)
67
- * Update `Rack::Handler::Puma.run` to use `**options` (#2189)
68
- * ThreadPool concurrency refactoring (#2220)
69
- * JSON parse cluster worker stats instead of regex (#2124)
70
- * Support parallel tests in verbose progress reporting (#2223)
71
- * Refactor error handling in server accept loop (#2239)
121
+ * Remove unused loader argument from Plugin initializer ([#2095])
122
+ * Simplify `Configuration.random_token` and remove insecure fallback ([#2102])
123
+ * Simplify `Runner#start_control` URL parsing ([#2111])
124
+ * Removed the IOBuffer extension and replaced with Ruby ([#1980])
125
+ * Update `Rack::Handler::Puma.run` to use `**options` ([#2189])
126
+ * ThreadPool concurrency refactoring ([#2220])
127
+ * JSON parse cluster worker stats instead of regex ([#2124])
128
+ * Support parallel tests in verbose progress reporting ([#2223])
129
+ * Refactor error handling in server accept loop ([#2239])
130
+
131
+ ## 4.3.6 / 2020-09-05
132
+
133
+ * Bugfixes
134
+ * Explicitly include ctype.h to fix compilation warning and build error on macOS with Xcode 12 ([#2304])
135
+ * Don't require json at boot ([#2269])
72
136
 
73
137
  ## 4.3.4/4.3.5 and 3.12.5/3.12.6 / 2020-05-22
74
138
 
@@ -80,7 +144,7 @@ Each patchlevel release contains a separate security fix. We recommend simply up
80
144
  ## 4.3.3 and 3.12.4 / 2020-02-28
81
145
 
82
146
  * Bugfixes
83
- * Fix: Fixes a problem where we weren't splitting headers correctly on newlines (#2132)
147
+ * Fix: Fixes a problem where we weren't splitting headers correctly on newlines ([#2132])
84
148
  * Security
85
149
  * Fix: Prevent HTTP Response splitting via CR in early hints. CVE-2020-5249.
86
150
 
@@ -97,152 +161,146 @@ Each patchlevel release contains a separate security fix. We recommend simply up
97
161
  ## 4.3.0 / 2019-11-07
98
162
 
99
163
  * Features
100
- * Strip whitespace at end of HTTP headers (#2010)
101
- * Optimize HTTP parser for JRuby (#2012)
102
- * Add SSL support for the control app and cli (#2046, #2052)
164
+ * Strip whitespace at end of HTTP headers ([#2010])
165
+ * Optimize HTTP parser for JRuby ([#2012])
166
+ * Add SSL support for the control app and cli ([#2046], [#2052])
103
167
 
104
168
  * Bugfixes
105
- * Fix Errno::EINVAL when SSL is enabled and browser rejects cert (#1564)
106
- * Fix pumactl defaulting puma to development if an environment was not specified (#2035)
107
- * Fix closing file stream when reading pid from pidfile (#2048)
108
- * Fix a typo in configuration option `--extra_runtime_dependencies` (#2050)
169
+ * Fix Errno::EINVAL when SSL is enabled and browser rejects cert ([#1564])
170
+ * Fix pumactl defaulting puma to development if an environment was not specified ([#2035])
171
+ * Fix closing file stream when reading pid from pidfile ([#2048])
172
+ * Fix a typo in configuration option `--extra_runtime_dependencies` ([#2050])
109
173
 
110
174
  ## 4.2.1 / 2019-10-07
111
175
 
112
176
  * 3 bugfixes
113
- * Fix socket activation of systemd (pre-existing) unix binder files (#1842, #1988)
114
- * Deal with multiple calls to bind correctly (#1986, #1994, #2006)
115
- * Accepts symbols for `verify_mode` (#1222)
177
+ * Fix socket activation of systemd (pre-existing) unix binder files ([#1842], [#1988])
178
+ * Deal with multiple calls to bind correctly ([#1986], [#1994], [#2006])
179
+ * Accepts symbols for `verify_mode` ([#1222])
116
180
 
117
181
  ## 4.2.0 / 2019-09-23
118
182
 
119
183
  * 6 features
120
- * Pumactl has a new -e environment option and reads `config/puma/<environment>.rb` config files (#1885)
121
- * Semicolons are now allowed in URL paths (MRI only), useful for Angular or Redmine (#1934)
122
- * Allow extra dependencies to be defined when using prune_bundler (#1105)
123
- * Puma now reports the correct port when binding to port 0, also reports other listeners when binding to localhost (#1786)
124
- * Sending SIGINFO to any Puma worker now prints currently active threads and their backtraces (#1320)
125
- * Puma threads all now have their name set on Ruby 2.3+ (#1968)
184
+ * Pumactl has a new -e environment option and reads `config/puma/<environment>.rb` config files ([#1885])
185
+ * Semicolons are now allowed in URL paths (MRI only), useful for Angular or Redmine ([#1934])
186
+ * Allow extra dependencies to be defined when using prune_bundler ([#1105])
187
+ * Puma now reports the correct port when binding to port 0, also reports other listeners when binding to localhost ([#1786])
188
+ * Sending SIGINFO to any Puma worker now prints currently active threads and their backtraces ([#1320])
189
+ * Puma threads all now have their name set on Ruby 2.3+ ([#1968])
126
190
  * 4 bugfixes
127
- * Fix some misbehavior with phased restart and externally SIGTERMed workers (#1908, #1952)
128
- * Fix socket closing on error (#1941)
129
- * Removed unnecessary SIGINT trap for JRuby that caused some race conditions (#1961)
130
- * Fix socket files being left around after process stopped (#1970)
191
+ * Fix some misbehavior with phased restart and externally SIGTERMed workers ([#1908], [#1952])
192
+ * Fix socket closing on error ([#1941])
193
+ * Removed unnecessary SIGINT trap for JRuby that caused some race conditions ([#1961])
194
+ * Fix socket files being left around after process stopped ([#1970])
131
195
  * Absolutely thousands of lines of test improvements and fixes thanks to @MSP-Greg
132
196
 
133
197
  ## 4.1.1 / 2019-09-05
134
198
 
135
199
  * 3 bugfixes
136
- * Revert our attempt to not dup STDOUT/STDERR (#1946)
137
- * Fix socket close on error (#1941)
138
- * Fix workers not shutting down correctly (#1908)
200
+ * Revert our attempt to not dup STDOUT/STDERR ([#1946])
201
+ * Fix socket close on error ([#1941])
202
+ * Fix workers not shutting down correctly ([#1908])
139
203
 
140
204
  ## 4.1.0 / 2019-08-08
141
205
 
142
206
  * 4 features
143
- * Add REQUEST_PATH on parse error message (#1831)
144
- * You can now easily add custom log formatters with the `log_formatter` config option (#1816)
145
- * Puma.stats now provides process start times (#1844)
146
- * Add support for disabling TLSv1.1 (#1836)
207
+ * Add REQUEST_PATH on parse error message ([#1831])
208
+ * You can now easily add custom log formatters with the `log_formatter` config option ([#1816])
209
+ * Puma.stats now provides process start times ([#1844])
210
+ * Add support for disabling TLSv1.1 ([#1836])
147
211
 
148
212
  * 7 bugfixes
149
- * Fix issue where Puma was creating zombie process entries (#1887)
150
- * Fix bugs with line-endings and chunked encoding (#1812)
151
- * RACK_URL_SCHEME is now set correctly in all conditions (#1491)
152
- * We no longer mutate global STDOUT/STDERR, particularly the sync setting (#1837)
153
- * SSL read_nonblock no longer blocks (#1857)
154
- * Swallow connection errors when sending early hints (#1822)
155
- * Backtrace no longer dumped when invalid pumactl commands are run (#1863)
213
+ * Fix issue where Puma was creating zombie process entries ([#1887])
214
+ * Fix bugs with line-endings and chunked encoding ([#1812])
215
+ * RACK_URL_SCHEME is now set correctly in all conditions ([#1491])
216
+ * We no longer mutate global STDOUT/STDERR, particularly the sync setting ([#1837])
217
+ * SSL read_nonblock no longer blocks ([#1857])
218
+ * Swallow connection errors when sending early hints ([#1822])
219
+ * Backtrace no longer dumped when invalid pumactl commands are run ([#1863])
156
220
 
157
221
  * 5 other
158
- * Avoid casting worker_timeout twice (#1838)
159
- * Removed a call to private that wasn't doing anything (#1882)
160
- * README, Rakefile, docs and test cleanups (#1848, #1847, #1846, #1853, #1859, #1850, #1866, #1870, #1872, #1833, #1888)
222
+ * Avoid casting worker_timeout twice ([#1838])
223
+ * Removed a call to private that wasn't doing anything ([#1882])
224
+ * README, Rakefile, docs and test cleanups ([#1848], [#1847], [#1846], [#1853], #1859, [#1850], [#1866], [#1870], [#1872], [#1833], [#1888])
161
225
  * Puma.io has proper documentation now (https://puma.io/puma/)
162
226
  * Added the Contributor Covenant CoC
163
227
 
164
228
  * 1 known issue
165
- * Some users are still experiencing issues surrounding socket activation and Unix sockets (#1842)
229
+ * Some users are still experiencing issues surrounding socket activation and Unix sockets ([#1842])
166
230
 
167
231
  ## 4.0.1 / 2019-07-11
168
232
 
169
233
  * 2 bugfixes
170
- * Fix socket removed after reload - should fix problems with systemd socket activation. (#1829)
171
- * Add extconf tests for DTLS_method & TLS_server_method, use in minissl.rb. Should fix "undefined symbol: DTLS_method" when compiling against old OpenSSL versions. (#1832)
234
+ * Fix socket removed after reload - should fix problems with systemd socket activation. ([#1829])
235
+ * Add extconf tests for DTLS_method & TLS_server_method, use in minissl.rb. Should fix "undefined symbol: DTLS_method" when compiling against old OpenSSL versions. ([#1832])
172
236
  * 1 other
173
- * Removed unnecessary RUBY_VERSION checks. (#1827)
237
+ * Removed unnecessary RUBY_VERSION checks. ([#1827])
174
238
 
175
239
  ## 4.0.0 / 2019-06-25
176
240
 
177
241
  * 9 features
178
- * Add support for disabling TLSv1.0 (#1562)
179
- * Request body read time metric (#1569)
180
- * Add out_of_band hook (#1648)
181
- * Re-implement (native) IOBuffer for JRuby (#1691)
182
- * Min worker timeout (#1716)
183
- * Add option to suppress SignalException on SIGTERM (#1690)
184
- * Allow mutual TLS CA to be set using `ssl_bind` DSL (#1689)
185
- * Reactor now uses nio4r instead of `select` (#1728)
186
- * Add status to pumactl with pidfile (#1824)
242
+ * Add support for disabling TLSv1.0 ([#1562])
243
+ * Request body read time metric ([#1569])
244
+ * Add out_of_band hook ([#1648])
245
+ * Re-implement (native) IOBuffer for JRuby ([#1691])
246
+ * Min worker timeout ([#1716])
247
+ * Add option to suppress SignalException on SIGTERM ([#1690])
248
+ * Allow mutual TLS CA to be set using `ssl_bind` DSL ([#1689])
249
+ * Reactor now uses nio4r instead of `select` ([#1728])
250
+ * Add status to pumactl with pidfile ([#1824])
187
251
 
188
252
  * 10 bugfixes
189
- * Do not accept new requests on shutdown (#1685, #1808)
190
- * Fix 3 corner cases when request body is chunked (#1508)
191
- * Change pid existence check's condition branches (#1650)
192
- * Don't call .stop on a server that doesn't exist (#1655)
193
- * Implemented NID_X9_62_prime256v1 (P-256) curve over P-521 (#1671)
194
- * Fix @notify.close can't modify frozen IOError (RuntimeError) (#1583)
195
- * Fix Java 8 support (#1773)
196
- * Fix error `uninitialized constant Puma::Cluster` (#1731)
197
- * Fix `not_token` being able to be set to true (#1803)
198
- * Fix "Hang on SIGTERM with ruby 2.6 in clustered mode" ([PR #1741], [#1674], [#1720], [#1730], [#1755])
199
-
200
- [PR #1741]: https://github.com/puma/puma/pull/1741
201
- [#1674]: https://github.com/puma/puma/issues/1674
202
- [#1720]: https://github.com/puma/puma/issues/1720
203
- [#1730]: https://github.com/puma/puma/issues/1730
204
- [#1755]: https://github.com/puma/puma/issues/1755
253
+ * Do not accept new requests on shutdown ([#1685], [#1808])
254
+ * Fix 3 corner cases when request body is chunked ([#1508])
255
+ * Change pid existence check's condition branches ([#1650])
256
+ * Don't call .stop on a server that doesn't exist ([#1655])
257
+ * Implemented NID_X9_62_prime256v1 (P-256) curve over P-521 ([#1671])
258
+ * Fix @notify.close can't modify frozen IOError (RuntimeError) ([#1583])
259
+ * Fix Java 8 support ([#1773])
260
+ * Fix error `uninitialized constant Puma::Cluster` ([#1731])
261
+ * Fix `not_token` being able to be set to true ([#1803])
262
+ * Fix "Hang on SIGTERM with ruby 2.6 in clustered mode" (PR [#1741], [#1674], [#1720], [#1730], [#1755])
205
263
 
206
264
  ## 3.12.1 / 2019-03-19
207
265
 
208
266
  * 1 features
209
- * Internal strings are frozen (#1649)
267
+ * Internal strings are frozen ([#1649])
210
268
  * 3 bugfixes
211
- * Fix chunked ending check (#1607)
212
- * Rack handler should use provided default host (#1700)
213
- * Better support for detecting runtimes that support `fork` (#1630)
269
+ * Fix chunked ending check ([#1607])
270
+ * Rack handler should use provided default host ([#1700])
271
+ * Better support for detecting runtimes that support `fork` ([#1630])
214
272
 
215
273
  ## 3.12.0 / 2018-07-13
216
274
 
217
275
  * 5 features:
218
- * You can now specify which SSL ciphers the server should support, default is unchanged (#1478)
219
- * The setting for Puma's `max_threads` is now in `Puma.stats` (#1604)
220
- * Pool capacity is now in `Puma.stats` (#1579)
221
- * Installs restricted to Ruby 2.2+ (#1506)
222
- * `--control` is now deprecated in favor of `--control-url` (#1487)
276
+ * You can now specify which SSL ciphers the server should support, default is unchanged ([#1478])
277
+ * The setting for Puma's `max_threads` is now in `Puma.stats` ([#1604])
278
+ * Pool capacity is now in `Puma.stats` ([#1579])
279
+ * Installs restricted to Ruby 2.2+ ([#1506])
280
+ * `--control` is now deprecated in favor of `--control-url` ([#1487])
223
281
 
224
282
  * 2 bugfixes:
225
- * 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)
226
- * In a test env puma now emits the stack on an exception (#1557)
283
+ * 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])
284
+ * In a test env puma now emits the stack on an exception ([#1557])
227
285
 
228
286
  ## 3.11.4 / 2018-04-12
229
287
 
230
288
  * 2 features:
231
- * Manage puma as a service using rc.d (#1529)
232
- * Server stats are now available from a top level method (#1532)
289
+ * Manage puma as a service using rc.d ([#1529])
290
+ * Server stats are now available from a top level method ([#1532])
233
291
  * 5 bugfixes:
234
- * Fix parsing CLI options (#1482)
235
- * Order of stderr and stdout is made before redirecting to a log file (#1511)
236
- * Init.d fix of `ps -p` to check if pid exists (#1545)
237
- * Early hints bugfix (#1550)
238
- * Purge interrupt queue when closing socket fails (#1553)
292
+ * Fix parsing CLI options ([#1482])
293
+ * Order of stderr and stdout is made before redirecting to a log file ([#1511])
294
+ * Init.d fix of `ps -p` to check if pid exists ([#1545])
295
+ * Early hints bugfix ([#1550])
296
+ * Purge interrupt queue when closing socket fails ([#1553])
239
297
 
240
298
  ## 3.11.3 / 2018-03-05
241
299
 
242
300
  * 3 bugfixes:
243
- * Add closed? to MiniSSL::Socket for use in reactor (#1510)
244
- * Handle EOFError at the toplevel of the server threads (#1524) (#1507)
245
- * Deal with zero sized bodies when using SSL (#1483)
301
+ * Add closed? to MiniSSL::Socket for use in reactor ([#1510])
302
+ * Handle EOFError at the toplevel of the server threads ([#1524]) ([#1507])
303
+ * Deal with zero sized bodies when using SSL ([#1483])
246
304
 
247
305
  ## 3.11.2 / 2018-01-19
248
306
 
@@ -252,83 +310,83 @@ Each patchlevel release contains a separate security fix. We recommend simply up
252
310
  ## 3.11.1 / 2018-01-18
253
311
 
254
312
  * 1 bugfix:
255
- * Handle read\_nonblock returning nil when the socket close (#1502)
313
+ * Handle read\_nonblock returning nil when the socket close ([#1502])
256
314
 
257
315
  ## 3.11.0 / 2017-11-20
258
316
 
259
317
  * 2 features:
260
- * HTTP 103 Early Hints (#1403)
261
- * 421/451 status codes now have correct status messages attached (#1435)
318
+ * HTTP 103 Early Hints ([#1403])
319
+ * 421/451 status codes now have correct status messages attached ([#1435])
262
320
 
263
321
  * 9 bugfixes:
264
- * Environment config files (/config/puma/<ENV>.rb) load correctly (#1340)
265
- * Specify windows dependencies correctly (#1434, #1436)
266
- * puma/events required in test helper (#1418)
267
- * Correct control CLI's option help text (#1416)
268
- * Remove a warning for unused variable in mini_ssl (#1409)
269
- * Correct pumactl docs argument ordering (#1427)
270
- * Fix an uninitialized variable warning in server.rb (#1430)
271
- * Fix docs typo/error in Launcher init (#1429)
272
- * Deal with leading spaces in RUBYOPT (#1455)
322
+ * Environment config files (/config/puma/<ENV>.rb) load correctly ([#1340])
323
+ * Specify windows dependencies correctly ([#1434], [#1436])
324
+ * puma/events required in test helper ([#1418])
325
+ * Correct control CLI's option help text ([#1416])
326
+ * Remove a warning for unused variable in mini_ssl ([#1409])
327
+ * Correct pumactl docs argument ordering ([#1427])
328
+ * Fix an uninitialized variable warning in server.rb ([#1430])
329
+ * Fix docs typo/error in Launcher init ([#1429])
330
+ * Deal with leading spaces in RUBYOPT ([#1455])
273
331
 
274
332
  * 2 other:
275
- * Add docs about internals (#1425, #1452)
276
- * Tons of test fixes from @MSP-Greg (#1439, #1442, #1464)
333
+ * Add docs about internals ([#1425], [#1452])
334
+ * Tons of test fixes from @MSP-Greg ([#1439], [#1442], [#1464])
277
335
 
278
336
  ## 3.10.0 / 2017-08-17
279
337
 
280
338
  * 3 features:
281
- * The status server has a new /gc and /gc-status command. (#1384)
282
- * The persistent and first data timeouts are now configurable (#1111)
283
- * Implemented RFC 2324 (#1392)
339
+ * The status server has a new /gc and /gc-status command. ([#1384])
340
+ * The persistent and first data timeouts are now configurable ([#1111])
341
+ * Implemented RFC 2324 ([#1392])
284
342
 
285
343
  * 12 bugfixes:
286
- * Not really a Puma bug, but @NickolasVashchenko created a gem to workaround a Ruby bug that some users of Puma may be experiencing. See README for more. (#1347)
287
- * Fix hangups with SSL and persistent connections. (#1334)
288
- * Fix Rails double-binding to a port (#1383)
289
- * Fix incorrect thread names (#1368)
290
- * Fix issues with /etc/hosts and JRuby where localhost addresses were not correct. (#1318)
291
- * Fix compatibility with RUBYOPT="--enable-frozen-string-literal" (#1376)
292
- * Fixed some compiler warnings (#1388)
293
- * We actually run the integration tests in CI now (#1390)
294
- * No longer shipping unnecessary directories in the gemfile (#1391)
295
- * If RUBYOPT is nil, we no longer blow up on restart. (#1385)
296
- * Correct response to SIGINT (#1377)
297
- * Proper exit code returned when we receive a TERM signal (#1337)
344
+ * Not really a Puma bug, but @NickolasVashchenko created a gem to workaround a Ruby bug that some users of Puma may be experiencing. See README for more. ([#1347])
345
+ * Fix hangups with SSL and persistent connections. ([#1334])
346
+ * Fix Rails double-binding to a port ([#1383])
347
+ * Fix incorrect thread names ([#1368])
348
+ * Fix issues with /etc/hosts and JRuby where localhost addresses were not correct. ([#1318])
349
+ * Fix compatibility with RUBYOPT="--enable-frozen-string-literal" ([#1376])
350
+ * Fixed some compiler warnings ([#1388])
351
+ * We actually run the integration tests in CI now ([#1390])
352
+ * No longer shipping unnecessary directories in the gemfile ([#1391])
353
+ * If RUBYOPT is nil, we no longer blow up on restart. ([#1385])
354
+ * Correct response to SIGINT ([#1377])
355
+ * Proper exit code returned when we receive a TERM signal ([#1337])
298
356
 
299
357
  * 3 refactors:
300
358
  * Various test improvements from @grosser
301
- * Rubocop (#1325)
302
- * Hoe has been removed (#1395)
359
+ * Rubocop ([#1325])
360
+ * Hoe has been removed ([#1395])
303
361
 
304
362
  * 1 known issue:
305
- * Socket activation doesn't work in JRuby. Their fault, not ours. (#1367)
363
+ * Socket activation doesn't work in JRuby. Their fault, not ours. ([#1367])
306
364
 
307
365
  ## 3.9.1 / 2017-06-03
308
366
 
309
367
  * 2 bugfixes:
310
- * Fixed compatibility with older Bundler versions (#1314)
311
- * Some internal test/development cleanup (#1311, #1313)
368
+ * Fixed compatibility with older Bundler versions ([#1314])
369
+ * Some internal test/development cleanup ([#1311], [#1313])
312
370
 
313
371
  ## 3.9.0 / 2017-06-01
314
372
 
315
373
  * 2 features:
316
- * The ENV is now reset to its original values when Puma restarts via USR1/USR2 (#1260) (MRI only, no JRuby support)
317
- * Puma will no longer accept more clients than the maximum number of threads. (#1278)
374
+ * The ENV is now reset to its original values when Puma restarts via USR1/USR2 ([#1260]) (MRI only, no JRuby support)
375
+ * Puma will no longer accept more clients than the maximum number of threads. ([#1278])
318
376
 
319
377
  * 9 bugfixes:
320
- * Reduce information leakage by preventing HTTP parse errors from writing environment hashes to STDERR (#1306)
321
- * Fix SSL/WebSocket compatibility (#1274)
322
- * HTTP headers with empty values are no longer omitted from responses. (#1261)
323
- * Fix a Rack env key which was set to nil. (#1259)
324
- * peercert has been implemented for JRuby (#1248)
325
- * Fix port settings when using rails s (#1277, #1290)
326
- * Fix compat w/LibreSSL (#1285)
327
- * Fix restarting Puma w/symlinks and a new Gemfile (#1282)
328
- * Replace Dir.exists? with Dir.exist? (#1294)
378
+ * Reduce information leakage by preventing HTTP parse errors from writing environment hashes to STDERR ([#1306])
379
+ * Fix SSL/WebSocket compatibility ([#1274])
380
+ * HTTP headers with empty values are no longer omitted from responses. ([#1261])
381
+ * Fix a Rack env key which was set to nil. ([#1259])
382
+ * peercert has been implemented for JRuby ([#1248])
383
+ * Fix port settings when using rails s ([#1277], [#1290])
384
+ * Fix compat w/LibreSSL ([#1285])
385
+ * Fix restarting Puma w/symlinks and a new Gemfile ([#1282])
386
+ * Replace Dir.exists? with Dir.exist? ([#1294])
329
387
 
330
388
  * 1 known issue:
331
- * A bug in MRI 2.2+ can result in IOError: stream closed. See #1206. This issue has existed since at least Puma 3.6, and probably further back.
389
+ * A bug in MRI 2.2+ can result in IOError: stream closed. See [#1206]. This issue has existed since at least Puma 3.6, and probably further back.
332
390
 
333
391
  * 1 refactor:
334
392
  * Lots of test fixups from @grosser.
@@ -336,75 +394,75 @@ Each patchlevel release contains a separate security fix. We recommend simply up
336
394
  ## 3.8.2 / 2017-03-14
337
395
 
338
396
  * 1 bugfix:
339
- * Deal with getsockopt with TCP\_INFO failing for sockets that say they're TCP but aren't really. (#1241)
397
+ * Deal with getsockopt with TCP\_INFO failing for sockets that say they're TCP but aren't really. ([#1241])
340
398
 
341
399
  ## 3.8.1 / 2017-03-10
342
400
 
343
401
  * 1 bugfix:
344
- * Remove method call to method that no longer exists (#1239)
402
+ * Remove method call to method that no longer exists ([#1239])
345
403
 
346
404
  ## 3.8.0 / 2017-03-09
347
405
 
348
406
  * 2 bugfixes:
349
- * Port from rack handler does not take precedence over config file in Rails 5.1.0.beta2+ and 5.0.1.rc3+ (#1234)
350
- * The `tmp/restart.txt` plugin no longer restricts the user from running more than one server from the same folder at a time (#1226)
407
+ * Port from rack handler does not take precedence over config file in Rails 5.1.0.beta2+ and 5.0.1.rc3+ ([#1234])
408
+ * The `tmp/restart.txt` plugin no longer restricts the user from running more than one server from the same folder at a time ([#1226])
351
409
 
352
410
  * 1 feature:
353
- * Closed clients are aborted to save capacity (#1227)
411
+ * Closed clients are aborted to save capacity ([#1227])
354
412
 
355
413
  * 1 refactor:
356
- * Bundler is no longer a dependency from tests (#1213)
414
+ * Bundler is no longer a dependency from tests ([#1213])
357
415
 
358
416
  ## 3.7.1 / 2017-02-20
359
417
 
360
418
  * 2 bugfixes:
361
- * Fix typo which blew up MiniSSL (#1182)
362
- * Stop overriding command-line options with the config file (#1203)
419
+ * Fix typo which blew up MiniSSL ([#1182])
420
+ * Stop overriding command-line options with the config file ([#1203])
363
421
 
364
422
  ## 3.7.0 / 2017-01-04
365
423
 
366
424
  * 6 minor features:
367
- * Allow rack handler to accept ssl host. (#1129)
368
- * Refactor TTOU processing. TTOU now handles multiple signals at once. (#1165)
425
+ * Allow rack handler to accept ssl host. ([#1129])
426
+ * Refactor TTOU processing. TTOU now handles multiple signals at once. ([#1165])
369
427
  * Pickup any remaining chunk data as the next request.
370
428
  * Prevent short term thread churn - increased auto trim default to 30 seconds.
371
- * Raise error when `stdout` or `stderr` is not writable. (#1175)
372
- * Add Rack 2.0 support to gemspec. (#1068)
429
+ * Raise error when `stdout` or `stderr` is not writable. ([#1175])
430
+ * Add Rack 2.0 support to gemspec. ([#1068])
373
431
 
374
432
  * 5 refactors:
375
- * Compare host and server name only once per call. (#1091)
376
- * Minor refactor on Thread pool (#1088)
433
+ * Compare host and server name only once per call. ([#1091])
434
+ * Minor refactor on Thread pool ([#1088])
377
435
  * Removed a ton of unused constants, variables and files.
378
436
  * Use MRI macros when allocating heap memory
379
- * Use hooks for on\_booted event. (#1160)
437
+ * Use hooks for on\_booted event. ([#1160])
380
438
 
381
439
  * 14 bugfixes:
382
- * Add eof? method to NullIO? (#1169)
383
- * Fix Puma startup in provided init.d script (#1061)
384
- * Fix default SSL mode back to none. (#1036)
385
- * Fixed the issue of @listeners getting nil io (#1120)
386
- * Make `get_dh1024` compatible with OpenSSL v1.1.0 (#1178)
387
- * More gracefully deal with SSL sessions. Fixes #1002
388
- * Move puma.rb to just autoloads. Fixes #1063
389
- * MiniSSL: Provide write as <<. Fixes #1089
390
- * Prune bundler should inherit fds (#1114)
391
- * Replace use of Process.getpgid which does not behave as intended on all platforms (#1110)
392
- * Transfer encoding header should be downcased before comparison (#1135)
393
- * Use same write log logic for hijacked requests. (#1081)
394
- * Fix `uninitialized constant Puma::StateFile` (#1138)
395
- * Fix access priorities of each level in LeveledOptions (#1118)
440
+ * Add eof? method to NullIO? ([#1169])
441
+ * Fix Puma startup in provided init.d script ([#1061])
442
+ * Fix default SSL mode back to none. ([#1036])
443
+ * Fixed the issue of @listeners getting nil io ([#1120])
444
+ * Make `get_dh1024` compatible with OpenSSL v1.1.0 ([#1178])
445
+ * More gracefully deal with SSL sessions. Fixes [#1002]
446
+ * Move puma.rb to just autoloads. Fixes [#1063]
447
+ * MiniSSL: Provide write as <<. Fixes [#1089]
448
+ * Prune bundler should inherit fds ([#1114])
449
+ * Replace use of Process.getpgid which does not behave as intended on all platforms ([#1110])
450
+ * Transfer encoding header should be downcased before comparison ([#1135])
451
+ * Use same write log logic for hijacked requests. ([#1081])
452
+ * Fix `uninitialized constant Puma::StateFile` ([#1138])
453
+ * Fix access priorities of each level in LeveledOptions ([#1118])
396
454
 
397
455
  * 3 others:
398
456
 
399
457
  * Lots of tests added/fixed/improved. Switched to Minitest from Test::Unit. Big thanks to @frodsan.
400
458
  * Lots of documentation added/improved.
401
- * Add license indicators to the HTTP extension. (#1075)
459
+ * Add license indicators to the HTTP extension. ([#1075])
402
460
 
403
461
  ## 3.6.2 / 2016-11-22
404
462
 
405
463
  * 1 bug fix:
406
464
 
407
- * Revert #1118/Fix access priorities of each level in LeveledOptions. This
465
+ * Revert [#1118]/Fix access priorities of each level in LeveledOptions. This
408
466
  had an unintentional side effect of changing the importance of command line
409
467
  options, such as -p.
410
468
 
@@ -413,11 +471,11 @@ Each patchlevel release contains a separate security fix. We recommend simply up
413
471
  * 8 bug fixes:
414
472
 
415
473
  * Fix Puma start in init.d script.
416
- * Fix default SSL mode back to none. Fixes #1036
417
- * Fixed the issue of @listeners getting nil io, fix rails restart (#1120)
418
- * More gracefully deal with SSL sessions. Fixes #1002
474
+ * Fix default SSL mode back to none. Fixes [#1036]
475
+ * Fixed the issue of @listeners getting nil io, fix rails restart ([#1120])
476
+ * More gracefully deal with SSL sessions. Fixes [#1002]
419
477
  * Prevent short term thread churn.
420
- * Provide write as <<. Fixes #1089
478
+ * Provide write as <<. Fixes [#1089]
421
479
  * Fix access priorities of each level in LeveledOptions - fixes TTIN.
422
480
  * Stub description files updated for init.d.
423
481
 
@@ -429,18 +487,18 @@ Each patchlevel release contains a separate security fix. We recommend simply up
429
487
  ## 3.6.0 / 2016-07-24
430
488
 
431
489
  * 12 bug fixes:
432
- * Add ability to detect a shutting down server. Fixes #932
433
- * Add support for Expect: 100-continue. Fixes #519
434
- * Check SSLContext better. Fixes #828
435
- * Clarify behavior of '-t num'. Fixes #984
436
- * Don't default to VERIFY_PEER. Fixes #1028
437
- * Don't use ENV['PWD'] on windows. Fixes #1023
438
- * Enlarge the scope of catching app exceptions. Fixes #1027
439
- * Execute background hooks after daemonizing. Fixes #925
440
- * Handle HUP as a stop unless there is IO redirection. Fixes #911
441
- * Implement chunked request handling. Fixes #620
442
- * Just rescue exception to return a 500. Fixes #1027
443
- * Redirect IO in the jruby daemon mode. Fixes #778
490
+ * Add ability to detect a shutting down server. Fixes [#932]
491
+ * Add support for Expect: 100-continue. Fixes [#519]
492
+ * Check SSLContext better. Fixes [#828]
493
+ * Clarify behavior of '-t num'. Fixes [#984]
494
+ * Don't default to VERIFY_PEER. Fixes [#1028]
495
+ * Don't use ENV['PWD'] on windows. Fixes [#1023]
496
+ * Enlarge the scope of catching app exceptions. Fixes [#1027]
497
+ * Execute background hooks after daemonizing. Fixes [#925]
498
+ * Handle HUP as a stop unless there is IO redirection. Fixes [#911]
499
+ * Implement chunked request handling. Fixes [#620]
500
+ * Just rescue exception to return a 500. Fixes [#1027]
501
+ * Redirect IO in the jruby daemon mode. Fixes [#778]
444
502
 
445
503
  ## 3.5.2 / 2016-07-20
446
504
 
@@ -448,12 +506,12 @@ Each patchlevel release contains a separate security fix. We recommend simply up
448
506
  * Don't let persistent_timeout be nil
449
507
 
450
508
  * 1 PR merged:
451
- * Merge pull request #1021 from benzrf/patch-1
509
+ * Merge pull request [#1021] from benzrf/patch-1
452
510
 
453
511
  ## 3.5.1 / 2016-07-20
454
512
 
455
513
  * 1 bug fix:
456
- * Be sure to only listen on host:port combos once. Fixes #1022
514
+ * Be sure to only listen on host:port combos once. Fixes [#1022]
457
515
 
458
516
  ## 3.5.0 / 2016-07-18
459
517
 
@@ -461,14 +519,14 @@ Each patchlevel release contains a separate security fix. We recommend simply up
461
519
  * Allow persistent_timeout to be configured via the dsl.
462
520
 
463
521
  * 9 bug fixes:
464
- * Allow a bare % in a query string. Fixes #958
465
- * Explicitly listen on all localhost addresses. Fixes #782
522
+ * Allow a bare % in a query string. Fixes [#958]
523
+ * Explicitly listen on all localhost addresses. Fixes [#782]
466
524
  * Fix `TCPLogger` log error in tcp cluster mode.
467
- * Fix puma/puma#968 Cannot bind SSL port due to missing verify_mode option
468
- * Fix puma/puma#968 Default verify_mode to peer
469
- * Log any exceptions in ThreadPool. Fixes #1010
470
- * Silence connection errors in the reactor. Fixes #959
471
- * Tiny fixes in hook documentation for #840
525
+ * Fix puma/puma[#968] Cannot bind SSL port due to missing verify_mode option
526
+ * Fix puma/puma[#968] Default verify_mode to peer
527
+ * Log any exceptions in ThreadPool. Fixes [#1010]
528
+ * Silence connection errors in the reactor. Fixes [#959]
529
+ * Tiny fixes in hook documentation for [#840]
472
530
  * It should not log requests if we want it to be quiet
473
531
 
474
532
  * 5 doc fixes:
@@ -479,43 +537,43 @@ Each patchlevel release contains a separate security fix. We recommend simply up
479
537
  * Fix typo in example config
480
538
 
481
539
  * 14 PRs merged:
482
- * Merge pull request #1007 from willnet/patch-1
483
- * Merge pull request #1014 from jeznet/patch-1
484
- * Merge pull request #1015 from bf4/patch-1
485
- * Merge pull request #1017 from jorihardman/configurable_persistent_timeout
486
- * Merge pull request #954 from jf/master
487
- * Merge pull request #955 from jf/add-request-info-to-standard-error-rescue
488
- * Merge pull request #956 from maxkwallace/master
489
- * Merge pull request #960 from kmayer/kmayer-plugins-heroku-restart
490
- * Merge pull request #969 from frankwong15/master
491
- * Merge pull request #970 from willnet/delete-blank-document
492
- * Merge pull request #974 from rocketjob/feature/name_threads
493
- * Merge pull request #977 from snow/master
494
- * Merge pull request #981 from zach-chai/patch-1
495
- * Merge pull request #993 from scorix/master
540
+ * Merge pull request [#1007] from willnet/patch-1
541
+ * Merge pull request [#1014] from jeznet/patch-1
542
+ * Merge pull request [#1015] from bf4/patch-1
543
+ * Merge pull request [#1017] from jorihardman/configurable_persistent_timeout
544
+ * Merge pull request [#954] from jf/master
545
+ * Merge pull request [#955] from jf/add-request-info-to-standard-error-rescue
546
+ * Merge pull request [#956] from maxkwallace/master
547
+ * Merge pull request [#960] from kmayer/kmayer-plugins-heroku-restart
548
+ * Merge pull request [#969] from frankwong15/master
549
+ * Merge pull request [#970] from willnet/delete-blank-document
550
+ * Merge pull request [#974] from rocketjob/feature/name_threads
551
+ * Merge pull request [#977] from snow/master
552
+ * Merge pull request [#981] from zach-chai/patch-1
553
+ * Merge pull request [#993] from scorix/master
496
554
 
497
555
  ## 3.4.0 / 2016-04-07
498
556
 
499
557
  * 2 minor features:
500
- * Add ability to force threads to stop on shutdown. Fixes #938
501
- * Detect and commit seppuku when fork(2) fails. Fixes #529
558
+ * Add ability to force threads to stop on shutdown. Fixes [#938]
559
+ * Detect and commit seppuku when fork(2) fails. Fixes [#529]
502
560
 
503
561
  * 3 unknowns:
504
- * Ignore errors trying to update the backport tables. Fixes #788
505
- * Invoke the lowlevel_error in more places to allow for exception tracking. Fixes #894
506
- * Update the query string when an absolute URI is used. Fixes #937
562
+ * Ignore errors trying to update the backport tables. Fixes [#788]
563
+ * Invoke the lowlevel_error in more places to allow for exception tracking. Fixes [#894]
564
+ * Update the query string when an absolute URI is used. Fixes [#937]
507
565
 
508
566
  * 5 doc fixes:
509
567
  * Add Process Monitors section to top-level README
510
- * Better document the hooks. Fixes #840
568
+ * Better document the hooks. Fixes [#840]
511
569
  * docs/system.md sample config refinements and elaborations
512
570
  * Fix typos at couple of places.
513
571
  * Cleanup warnings
514
572
 
515
573
  * 3 PRs merged:
516
- * Merge pull request #945 from dekellum/systemd-docs-refined
517
- * Merge pull request #946 from vipulnsward/rm-pid
518
- * Merge pull request #947 from vipulnsward/housekeeping-typos
574
+ * Merge pull request [#945] from dekellum/systemd-docs-refined
575
+ * Merge pull request [#946] from vipulnsward/rm-pid
576
+ * Merge pull request [#947] from vipulnsward/housekeeping-typos
519
577
 
520
578
  ## 3.3.0 / 2016-04-05
521
579
 
@@ -528,9 +586,9 @@ Each patchlevel release contains a separate security fix. We recommend simply up
528
586
  * Document UNIX signals with cluster on README.md
529
587
 
530
588
  * 3 PRs merged:
531
- * Merge pull request #936 from prathamesh-sonpatki/allow-overriding-config-options
532
- * Merge pull request #940 from kyledrake/signalsdoc
533
- * Merge pull request #942 from dekellum/socket-activate-improve
589
+ * Merge pull request [#936] from prathamesh-sonpatki/allow-overriding-config-options
590
+ * Merge pull request [#940] from kyledrake/signalsdoc
591
+ * Merge pull request [#942] from dekellum/socket-activate-improve
534
592
 
535
593
  ## 3.2.0 / 2016-03-20
536
594
 
@@ -543,32 +601,32 @@ Each patchlevel release contains a separate security fix. We recommend simply up
543
601
  * Speed up phased-restart start
544
602
 
545
603
  * 2 PRs merged:
546
- * Merge pull request #927 from jlecour/gemfile_variants
547
- * Merge pull request #931 from joneslee85/patch-10
604
+ * Merge pull request [#927] from jlecour/gemfile_variants
605
+ * Merge pull request [#931] from joneslee85/patch-10
548
606
 
549
607
  ## 3.1.1 / 2016-03-17
550
608
 
551
609
  * 4 bug fixes:
552
610
  * Disable USR1 usage on JRuby
553
- * Fixes #922 - Correctly define file encoding as UTF-8
611
+ * Fixes [#922] - Correctly define file encoding as UTF-8
554
612
  * Set a more explicit SERVER_SOFTWARE Rack variable
555
- * Show RUBY_ENGINE_VERSION if available. Fixes #923
613
+ * Show RUBY_ENGINE_VERSION if available. Fixes [#923]
556
614
 
557
615
  * 3 PRs merged:
558
- * Merge pull request #912 from tricknotes/fix-allow-failures-in-travis-yml
559
- * Merge pull request #921 from swrobel/patch-1
560
- * Merge pull request #924 from tbrisker/patch-1
616
+ * Merge pull request [#912] from tricknotes/fix-allow-failures-in-travis-yml
617
+ * Merge pull request [#921] from swrobel/patch-1
618
+ * Merge pull request [#924] from tbrisker/patch-1
561
619
 
562
620
  ## 3.1.0 / 2016-03-05
563
621
 
564
622
  * 1 minor feature:
565
- * Add 'import' directive to config file. Fixes #916
623
+ * Add 'import' directive to config file. Fixes [#916]
566
624
 
567
625
  * 5 bug fixes:
568
- * Add 'fetch' to options. Fixes #913
569
- * Fix jruby daemonization. Fixes #918
570
- * Recreate the proper args manually. Fixes #910
571
- * Require 'time' to get iso8601. Fixes #914
626
+ * Add 'fetch' to options. Fixes [#913]
627
+ * Fix jruby daemonization. Fixes [#918]
628
+ * Recreate the proper args manually. Fixes [#910]
629
+ * Require 'time' to get iso8601. Fixes [#914]
572
630
 
573
631
  ## 3.0.2 / 2016-02-26
574
632
 
@@ -582,9 +640,9 @@ Each patchlevel release contains a separate security fix. We recommend simply up
582
640
 
583
641
  * 3 PRs merged:
584
642
 
585
- * Merge pull request #901 from mitto/fix-pumactl-uninitialized-constant-statefile
586
- * Merge pull request #902 from corrupt952/fix_undefined_method_and_variable_when_execute_pumactl
587
- * Merge pull request #905 from Eric-Guo/master
643
+ * Merge pull request [#901] from mitto/fix-pumactl-uninitialized-constant-statefile
644
+ * Merge pull request [#902] from corrupt952/fix_undefined_method_and_variable_when_execute_pumactl
645
+ * Merge pull request [#905] from Eric-Guo/master
588
646
 
589
647
  ## 3.0.1 / 2016-02-25
590
648
 
@@ -601,7 +659,7 @@ Each patchlevel release contains a separate security fix. We recommend simply up
601
659
  * Ruby pre-2.0 is no longer supported. We'll do our best to not add
602
660
  features that break those rubies but will no longer be testing
603
661
  with them.
604
- * Don't log requests by default. Fixes #852
662
+ * Don't log requests by default. Fixes [#852]
605
663
 
606
664
  * 2 major features:
607
665
 
@@ -613,36 +671,36 @@ Each patchlevel release contains a separate security fix. We recommend simply up
613
671
 
614
672
  * Listen to unix socket with provided backlog if any
615
673
  * Improves the clustered stats to report worker stats
616
- * Pass the env to the lowlevel_error handler. Fixes #854
617
- * Treat path-like hosts as unix sockets. Fixes #824
674
+ * Pass the env to the lowlevel_error handler. Fixes [#854]
675
+ * Treat path-like hosts as unix sockets. Fixes [#824]
618
676
 
619
677
  * 5 bug fixes:
620
678
 
621
- * Clean thread locals when using keepalive. Fixes #823
622
- * Cleanup compiler warnings. Fixes #815
623
- * Expose closed? for use by the reactor. Fixes #835
624
- * Move signal handlers to separate method to prevent space leak. Fixes #798
625
- * Signal not full on worker exit #876
679
+ * Clean thread locals when using keepalive. Fixes [#823]
680
+ * Cleanup compiler warnings. Fixes [#815]
681
+ * Expose closed? for use by the reactor. Fixes [#835]
682
+ * Move signal handlers to separate method to prevent space leak. Fixes [#798]
683
+ * Signal not full on worker exit [#876]
626
684
 
627
685
  * 5 doc fixes:
628
686
 
629
687
  * Update README.md with various grammar fixes
630
688
  * Use newest version of Minitest
631
689
  * Add directory configuration docs, fix typo [ci skip]
632
- * Remove old COPYING notice. Fixes #849
690
+ * Remove old COPYING notice. Fixes [#849]
633
691
 
634
692
  * 10 merged PRs:
635
693
 
636
- * Merge pull request #871 from deepj/travis
637
- * Merge pull request #874 from wallclockbuilder/master
638
- * Merge pull request #883 from dadah89/igor/trim_only_worker
639
- * Merge pull request #884 from uistudio/async-callback
640
- * Merge pull request #888 from mlarraz/tick_minitest
641
- * Merge pull request #890 from todd/directory_docs
642
- * Merge pull request #891 from ctaintor/improve_clustered_status
643
- * Merge pull request #893 from spastorino/add_missing_require
644
- * Merge pull request #897 from zendesk/master
645
- * Merge pull request #899 from kch/kch-readme-fixes
694
+ * Merge pull request [#871] from deepj/travis
695
+ * Merge pull request [#874] from wallclockbuilder/master
696
+ * Merge pull request [#883] from dadah89/igor/trim_only_worker
697
+ * Merge pull request [#884] from uistudio/async-callback
698
+ * Merge pull request [#888] from mlarraz/tick_minitest
699
+ * Merge pull request [#890] from todd/directory_docs
700
+ * Merge pull request [#891] from ctaintor/improve_clustered_status
701
+ * Merge pull request [#893] from spastorino/add_missing_require
702
+ * Merge pull request [#897] from zendesk/master
703
+ * Merge pull request [#899] from kch/kch-readme-fixes
646
704
 
647
705
  ## 2.16.0 / 2016-01-27
648
706
 
@@ -659,7 +717,7 @@ Each patchlevel release contains a separate security fix. We recommend simply up
659
717
  * 7 bug fixes:
660
718
 
661
719
  * Don't persist before_fork hook in state file
662
- * Reload bundler before pulling in rack. Fixes #859
720
+ * Reload bundler before pulling in rack. Fixes [#859]
663
721
  * Remove NEWRELIC_DISPATCHER env variable
664
722
  * Cleanup C code
665
723
  * Use Timeout.timeout instead of Object.timeout
@@ -671,18 +729,18 @@ Each patchlevel release contains a separate security fix. We recommend simply up
671
729
  * Test against the latest Ruby 2.1, 2.2, 2.3, head and JRuby 9.0.4.0 on Travis
672
730
 
673
731
  * 12 merged PRs
674
- * Merge pull request #822 from kwugirl/remove_NEWRELIC_DISPATCHER
675
- * Merge pull request #833 from joemiller/jruby-client-tls-auth
676
- * Merge pull request #837 from YuriSolovyov/ssl-keystore-jruby
677
- * Merge pull request #839 from mezuka/master
678
- * Merge pull request #845 from deepj/timeout-deprecation
679
- * Merge pull request #846 from sriedel/strip_before_fork
680
- * Merge pull request #850 from deepj/travis
681
- * Merge pull request #853 from Jeffrey6052/patch-1
682
- * Merge pull request #857 from zendesk/faster_phased_restarts
683
- * Merge pull request #858 from mlarraz/fix_some_warnings
684
- * Merge pull request #860 from zendesk/expose_old_worker_count
685
- * Merge pull request #861 from zendesk/allow_control_url_umask
732
+ * Merge pull request [#822] from kwugirl/remove_NEWRELIC_DISPATCHER
733
+ * Merge pull request [#833] from joemiller/jruby-client-tls-auth
734
+ * Merge pull request [#837] from YuriSolovyov/ssl-keystore-jruby
735
+ * Merge pull request [#839] from mezuka/master
736
+ * Merge pull request [#845] from deepj/timeout-deprecation
737
+ * Merge pull request [#846] from sriedel/strip_before_fork
738
+ * Merge pull request [#850] from deepj/travis
739
+ * Merge pull request [#853] from Jeffrey6052/patch-1
740
+ * Merge pull request [#857] from zendesk/faster_phased_restarts
741
+ * Merge pull request [#858] from mlarraz/fix_some_warnings
742
+ * Merge pull request [#860] from zendesk/expose_old_worker_count
743
+ * Merge pull request [#861] from zendesk/allow_control_url_umask
686
744
 
687
745
  ## 2.15.3 / 2015-11-07
688
746
 
@@ -697,8 +755,8 @@ Each patchlevel release contains a separate security fix. We recommend simply up
697
755
  * Only set ctx.ca iff there is a params['ca'] to set with.
698
756
 
699
757
  * 2 PRs merged:
700
- * Merge pull request #818 from unleashed/support-duplicate-headers
701
- * Merge pull request #819 from VictorLowther/fix-ca-and-verify_null-exception
758
+ * Merge pull request [#818] from unleashed/support-duplicate-headers
759
+ * Merge pull request [#819] from VictorLowther/fix-ca-and-verify_null-exception
702
760
 
703
761
  ## 2.15.1 / 2015-11-06
704
762
 
@@ -720,7 +778,7 @@ Each patchlevel release contains a separate security fix. We recommend simply up
720
778
  * Disable SSL Compression
721
779
  * Fix bug setting worker_directory when using a symlink directory
722
780
  * Fix error message in DSL that was slightly inaccurate
723
- * Pumactl: set correct process name. Fixes #563
781
+ * Pumactl: set correct process name. Fixes [#563]
724
782
  * thread_pool: fix race condition when shutting down workers
725
783
 
726
784
  * 10 doc fixes:
@@ -730,30 +788,30 @@ Each patchlevel release contains a separate security fix. We recommend simply up
730
788
  * Fix spelling errors.
731
789
  * Fix typo in deployment description
732
790
  * Fix typos (it's -> its) in events.rb and server.rb
733
- * fixing for typo mentioned in #803
791
+ * fixing for typo mentioned in [#803]
734
792
  * Spelling correction for README
735
793
  * thread_pool: fix typos in comment
736
794
  * More explicit docs for worker_timeout
737
795
 
738
796
  * 18 PRs merged:
739
- * Merge pull request #768 from nathansamson/patch-1
740
- * Merge pull request #773 from rossta/spelling_corrections
741
- * Merge pull request #774 from snow/master
742
- * Merge pull request #781 from sunsations/fix-typo
743
- * Merge pull request #791 from unleashed/allow_empty_tags
744
- * Merge pull request #793 from robdimarco/fix-working-directory-symlink-bug
745
- * Merge pull request #794 from peterkeen/patch-1
746
- * Merge pull request #795 from unleashed/redirects-from-cmdline
747
- * Merge pull request #796 from cschneid/fix_dsl_message
748
- * Merge pull request #799 from annafw/master
749
- * Merge pull request #800 from liamseanbrady/fix_typo
750
- * Merge pull request #801 from scottjg/ssl-chain-file
751
- * Merge pull request #802 from scottjg/ssl-crimes
752
- * Merge pull request #804 from burningTyger/patch-2
753
- * Merge pull request #809 from unleashed/threadpool-fix-race-in-shutdown
754
- * Merge pull request #810 from vlmonk/fix-pumactl-restart-bug
755
- * Merge pull request #814 from schneems/schneems/worker_timeout-docs
756
- * Merge pull request #817 from unleashed/worker-boot-timeout
797
+ * Merge pull request [#768] from nathansamson/patch-1
798
+ * Merge pull request [#773] from rossta/spelling_corrections
799
+ * Merge pull request [#774] from snow/master
800
+ * Merge pull request [#781] from sunsations/fix-typo
801
+ * Merge pull request [#791] from unleashed/allow_empty_tags
802
+ * Merge pull request [#793] from robdimarco/fix-working-directory-symlink-bug
803
+ * Merge pull request [#794] from peterkeen/patch-1
804
+ * Merge pull request [#795] from unleashed/redirects-from-cmdline
805
+ * Merge pull request [#796] from cschneid/fix_dsl_message
806
+ * Merge pull request [#799] from annafw/master
807
+ * Merge pull request [#800] from liamseanbrady/fix_typo
808
+ * Merge pull request [#801] from scottjg/ssl-chain-file
809
+ * Merge pull request [#802] from scottjg/ssl-crimes
810
+ * Merge pull request [#804] from burningTyger/patch-2
811
+ * Merge pull request [#809] from unleashed/threadpool-fix-race-in-shutdown
812
+ * Merge pull request [#810] from vlmonk/fix-pumactl-restart-bug
813
+ * Merge pull request [#814] from schneems/schneems/worker_timeout-docs
814
+ * Merge pull request [#817] from unleashed/worker-boot-timeout
757
815
 
758
816
  ## 2.14.0 / 2015-09-18
759
817
 
@@ -761,7 +819,7 @@ Each patchlevel release contains a separate security fix. We recommend simply up
761
819
  * Make building with SSL support optional
762
820
 
763
821
  * 1 bug fix:
764
- * Use Rack::Builder if available. Fixes #735
822
+ * Use Rack::Builder if available. Fixes [#735]
765
823
 
766
824
  ## 2.13.4 / 2015-08-16
767
825
 
@@ -774,20 +832,20 @@ Each patchlevel release contains a separate security fix. We recommend simply up
774
832
  Seriously, I need to revamp config with tests.
775
833
 
776
834
  * 1 bug fix:
777
- * Fix preserving options before cleaning for state. Fixes #769
835
+ * Fix preserving options before cleaning for state. Fixes [#769]
778
836
 
779
837
  ## 2.13.2 / 2015-08-15
780
838
 
781
839
  The "clearly I don't have enough tests for the config" release.
782
840
 
783
841
  * 1 bug fix:
784
- * Fix another place binds wasn't initialized. Fixes #767
842
+ * Fix another place binds wasn't initialized. Fixes [#767]
785
843
 
786
844
  ## 2.13.1 / 2015-08-15
787
845
 
788
846
  * 2 bug fixes:
789
- * Fix binds being masked in config files. Fixes #765
790
- * Use options from the config file properly in pumactl. Fixes #764
847
+ * Fix binds being masked in config files. Fixes [#765]
848
+ * Use options from the config file properly in pumactl. Fixes [#764]
791
849
 
792
850
  ## 2.13.0 / 2015-08-14
793
851
 
@@ -797,16 +855,16 @@ The "clearly I don't have enough tests for the config" release.
797
855
  * 3 bug fixes:
798
856
  * Check for OPENSSL_NO_ECDH before using ECDH
799
857
  * Eliminate logging overhead from JRuby SSL
800
- * Prefer cli options over config file ones. Fixes #669
858
+ * Prefer cli options over config file ones. Fixes [#669]
801
859
 
802
860
  * 1 deprecation:
803
- * Add deprecation warning to capistrano.rb. Fixes #673
861
+ * Add deprecation warning to capistrano.rb. Fixes [#673]
804
862
 
805
863
  * 4 PRs merged:
806
- * Merge pull request #668 from kcollignon/patch-1
807
- * Merge pull request #754 from nathansamson/before_boot
808
- * Merge pull request #759 from BenV/fix-centos6-build
809
- * Merge pull request #761 from looker/no-log
864
+ * Merge pull request [#668] from kcollignon/patch-1
865
+ * Merge pull request [#754] from nathansamson/before_boot
866
+ * Merge pull request [#759] from BenV/fix-centos6-build
867
+ * Merge pull request [#761] from looker/no-log
810
868
 
811
869
  ## 2.12.3 / 2015-08-03
812
870
 
@@ -821,10 +879,10 @@ The "clearly I don't have enough tests for the config" release.
821
879
  * ruby 1.8.7 compatibility patches
822
880
 
823
881
  * 4 PRs merged:
824
- * Merge pull request #742 from deivid-rodriguez/fix_missing_require
825
- * Merge pull request #743 from matthewd/skip-empty-chunks
826
- * Merge pull request #749 from huacnlee/fix-cap-uninitialized-puma-error
827
- * Merge pull request #751 from costi/compat_1_8_7
882
+ * Merge pull request [#742] from deivid-rodriguez/fix_missing_require
883
+ * Merge pull request [#743] from matthewd/skip-empty-chunks
884
+ * Merge pull request [#749] from huacnlee/fix-cap-uninitialized-puma-error
885
+ * Merge pull request [#751] from costi/compat_1_8_7
828
886
 
829
887
  * 1 test fix:
830
888
  * Add 1.8.7, rbx-1 (allow failures) to Travis.
@@ -832,20 +890,20 @@ The "clearly I don't have enough tests for the config" release.
832
890
  ## 2.12.2 / 2015-07-17
833
891
 
834
892
  * 2 bug fix:
835
- * Pull over and use Rack::URLMap. Fixes #741
836
- * Stub out peercert on JRuby for now. Fixes #739
893
+ * Pull over and use Rack::URLMap. Fixes [#741]
894
+ * Stub out peercert on JRuby for now. Fixes [#739]
837
895
 
838
896
  ## 2.12.1 / 2015-07-16
839
897
 
840
898
  * 2 bug fixes:
841
- * Use a constant format. Fixes #737
842
- * Use strerror for Windows sake. Fixes #733
899
+ * Use a constant format. Fixes [#737]
900
+ * Use strerror for Windows sake. Fixes [#733]
843
901
 
844
902
  * 1 doc change:
845
903
  * typo fix: occured -> occurred
846
904
 
847
905
  * 1 PR merged:
848
- * Merge pull request #736 from paulanunda/paulanunda/typo-fix
906
+ * Merge pull request [#736] from paulanunda/paulanunda/typo-fix
849
907
 
850
908
  ## 2.12.0 / 2015-07-14
851
909
 
@@ -855,12 +913,12 @@ The "clearly I don't have enough tests for the config" release.
855
913
  * Do not suppress Content-Length on partial hijack
856
914
  * Don't allow any exceptions to terminate a thread
857
915
  * Handle ENOTCONN client disconnects when setting REMOTE_ADDR
858
- * Handle very early exit of cluster mode. Fixes #722
916
+ * Handle very early exit of cluster mode. Fixes [#722]
859
917
  * Install rack when running tests on travis to use rack/lint
860
918
  * Make puma -v and -h return success exit code
861
919
  * Make pumactl load config/puma.rb by default
862
- * Pass options from pumactl properly when pruning. Fixes #694
863
- * Remove rack dependency. Fixes #705
920
+ * Pass options from pumactl properly when pruning. Fixes [#694]
921
+ * Remove rack dependency. Fixes [#705]
864
922
  * Remove the default Content-Type: text/plain
865
923
  * Add Client Side Certificate Auth
866
924
 
@@ -879,33 +937,33 @@ The "clearly I don't have enough tests for the config" release.
879
937
  * capistrano: Add additional env when start rails
880
938
 
881
939
  * 16 PRs merged:
882
- * Merge pull request #686 from jjb/patch-2
883
- * Merge pull request #693 from rob-murray/update-example-config
884
- * Merge pull request #697 from spk/tests-bind-on-rackup-file
885
- * Merge pull request #699 from deees/fix/require_rack_builder
886
- * Merge pull request #701 from deepj/master
887
- * Merge pull request #702 from Jimdo/thread-reaping
888
- * Merge pull request #703 from deepj/travis
889
- * Merge pull request #704 from grega/master
890
- * Merge pull request #709 from lian/master
891
- * Merge pull request #711 from julik/master
892
- * Merge pull request #712 from yakara-ltd/pumactl-default-config
893
- * Merge pull request #715 from RobotJiang/master
894
- * Merge pull request #725 from rwz/master
895
- * Merge pull request #726 from strenuus/handle-client-disconnect
896
- * Merge pull request #729 from allaire/patch-1
897
- * Merge pull request #730 from iamjarvo/container-infrastructure
940
+ * Merge pull request [#686] from jjb/patch-2
941
+ * Merge pull request [#693] from rob-murray/update-example-config
942
+ * Merge pull request [#697] from spk/tests-bind-on-rackup-file
943
+ * Merge pull request [#699] from deees/fix/require_rack_builder
944
+ * Merge pull request [#701] from deepj/master
945
+ * Merge pull request [#702] from Jimdo/thread-reaping
946
+ * Merge pull request [#703] from deepj/travis
947
+ * Merge pull request [#704] from grega/master
948
+ * Merge pull request [#709] from lian/master
949
+ * Merge pull request [#711] from julik/master
950
+ * Merge pull request [#712] from yakara-ltd/pumactl-default-config
951
+ * Merge pull request [#715] from RobotJiang/master
952
+ * Merge pull request [#725] from rwz/master
953
+ * Merge pull request [#726] from strenuus/handle-client-disconnect
954
+ * Merge pull request [#729] from allaire/patch-1
955
+ * Merge pull request [#730] from iamjarvo/container-infrastructure
898
956
 
899
957
  ## 2.11.3 / 2015-05-18
900
958
 
901
959
  * 5 bug fixes:
902
- * Be sure to unlink tempfiles after a request. Fixes #690
903
- * Coerce the key to a string before checking. (thar be symbols). Fixes #684
960
+ * Be sure to unlink tempfiles after a request. Fixes [#690]
961
+ * Coerce the key to a string before checking. (thar be symbols). Fixes [#684]
904
962
  * Fix hang on bad SSL handshake
905
963
  * Remove `enable_SSLv3` support from JRuby
906
964
 
907
965
  * 1 PR merged:
908
- * Merge pull request #698 from looker/hang-handshake
966
+ * Merge pull request [#698] from looker/hang-handshake
909
967
 
910
968
  ## 2.11.2 / 2015-04-11
911
969
 
@@ -914,7 +972,7 @@ The "clearly I don't have enough tests for the config" release.
914
972
  * Add shutdown_debug config option
915
973
 
916
974
  * 4 bug fixes:
917
- * Fix the Config constants not being available in the DSL. Fixes #683
975
+ * Fix the Config constants not being available in the DSL. Fixes [#683]
918
976
  * Ignore multiple port declarations
919
977
  * Proper 'Connection' header handling compatible with HTTP 1.[01] protocols
920
978
  * Use "Puma" instead of "puma" to reporting to New Relic
@@ -923,55 +981,55 @@ The "clearly I don't have enough tests for the config" release.
923
981
  * Add Gitter badge.
924
982
 
925
983
  * 6 PRs merged:
926
- * Merge pull request #657 from schneems/schneems/puma-once-port
927
- * Merge pull request #658 from Tomohiro/newrelic-dispatcher-default-update
928
- * Merge pull request #662 from basecrm/connection-compatibility
929
- * Merge pull request #664 from fxposter/on-worker-fork
930
- * Merge pull request #667 from JuanitoFatas/doc/gemspec
931
- * Merge pull request #672 from chulkilee/refactor
984
+ * Merge pull request [#657] from schneems/schneems/puma-once-port
985
+ * Merge pull request [#658] from Tomohiro/newrelic-dispatcher-default-update
986
+ * Merge pull request [#662] from basecrm/connection-compatibility
987
+ * Merge pull request [#664] from fxposter/on-worker-fork
988
+ * Merge pull request [#667] from JuanitoFatas/doc/gemspec
989
+ * Merge pull request [#672] from chulkilee/refactor
932
990
 
933
991
  ## 2.11.1 / 2015-02-11
934
992
 
935
993
  * 2 bug fixes:
936
994
  * Avoid crash in strange restart conditions
937
- * Inject the GEM_HOME that bundler into puma-wild's env. Fixes #653
995
+ * Inject the GEM_HOME that bundler into puma-wild's env. Fixes [#653]
938
996
 
939
997
  * 2 PRs merged:
940
- * Merge pull request #644 from bpaquet/master
941
- * Merge pull request #646 from mkonecny/master
998
+ * Merge pull request [#644] from bpaquet/master
999
+ * Merge pull request [#646] from mkonecny/master
942
1000
 
943
1001
  ## 2.11.0 / 2015-01-20
944
1002
 
945
1003
  * 9 bug fixes:
946
- * Add mode as an additional bind option to unix sockets. Fixes #630
1004
+ * Add mode as an additional bind option to unix sockets. Fixes [#630]
947
1005
  * Advertise HTTPS properly after a hot restart
948
1006
  * Don't write lowlevel_error_handler to state
949
1007
  * Fix phased restart with stuck requests
950
- * Handle spaces in the path properly. Fixes #622
951
- * Set a default REMOTE_ADDR to avoid using peeraddr on unix sockets. Fixes #583
952
- * Skip device number checking on jruby. Fixes #586
1008
+ * Handle spaces in the path properly. Fixes [#622]
1009
+ * Set a default REMOTE_ADDR to avoid using peeraddr on unix sockets. Fixes [#583]
1010
+ * Skip device number checking on jruby. Fixes [#586]
953
1011
  * Update extconf.rb to compile correctly on OS X
954
- * redirect io right after daemonizing so startup errors are shown. Fixes #359
1012
+ * redirect io right after daemonizing so startup errors are shown. Fixes [#359]
955
1013
 
956
1014
  * 6 minor features:
957
1015
  * Add a configuration option that prevents puma from queueing requests.
958
1016
  * Add reload_worker_directory
959
1017
  * Add the ability to pass environment variables to the init script (for Jungle).
960
- * Add the proctitle tag to the worker. Fixes #633
1018
+ * Add the proctitle tag to the worker. Fixes [#633]
961
1019
  * Infer a proctitle tag based on the directory
962
1020
  * Update lowlevel error message to be more meaningful.
963
1021
 
964
1022
  * 10 PRs merged:
965
- * Merge pull request #478 from rubencaro/master
966
- * Merge pull request #610 from kwilczynski/master
967
- * Merge pull request #611 from jasonl/better-lowlevel-message
968
- * Merge pull request #616 from jc00ke/master
969
- * Merge pull request #623 from raldred/patch-1
970
- * Merge pull request #628 from rdpoor/master
971
- * Merge pull request #634 from deepj/master
972
- * Merge pull request #637 from raskhadafi/patch-1
973
- * Merge pull request #639 from ebeigarts/fix-phased-restarts
974
- * Merge pull request #640 from codehotter/issue-612-dependent-requests-deadlock
1023
+ * Merge pull request [#478] from rubencaro/master
1024
+ * Merge pull request [#610] from kwilczynski/master
1025
+ * Merge pull request [#611] from jasonl/better-lowlevel-message
1026
+ * Merge pull request [#616] from jc00ke/master
1027
+ * Merge pull request [#623] from raldred/patch-1
1028
+ * Merge pull request [#628] from rdpoor/master
1029
+ * Merge pull request [#634] from deepj/master
1030
+ * Merge pull request [#637] from raskhadafi/patch-1
1031
+ * Merge pull request [#639] from ebeigarts/fix-phased-restarts
1032
+ * Merge pull request [#640] from codehotter/issue-612-dependent-requests-deadlock
975
1033
 
976
1034
  ## 2.10.2 / 2014-11-26
977
1035
 
@@ -1001,9 +1059,9 @@ The "clearly I don't have enough tests for the config" release.
1001
1059
 
1002
1060
  * 5 bug fixes:
1003
1061
  * Clean out a threads local data before doing work
1004
- * Disable SSLv3. Fixes #591
1062
+ * Disable SSLv3. Fixes [#591]
1005
1063
  * First change the directory to use the correct Gemfile.
1006
- * Only use config.ru binds if specified. Fixes #606
1064
+ * Only use config.ru binds if specified. Fixes [#606]
1007
1065
  * Strongish cipher suite with FS support for some browsers
1008
1066
 
1009
1067
  * 2 doc changes:
@@ -1011,20 +1069,20 @@ The "clearly I don't have enough tests for the config" release.
1011
1069
  * fix typo in README.md
1012
1070
 
1013
1071
  * 9 Merged PRs:
1014
- * Merge pull request #560 from raskhadafi/prune_bundler-bug
1015
- * Merge pull request #566 from sheltond/master
1016
- * Merge pull request #593 from andruby/patch-1
1017
- * Merge pull request #594 from hassox/thread-cleanliness
1018
- * Merge pull request #596 from burningTyger/patch-1
1019
- * Merge pull request #601 from sorentwo/friendly-umask
1020
- * Merge pull request #602 from 1334/patch-1
1021
- * Merge pull request #608 from Gu1/master
1022
- * Merge remote-tracking branch 'origin/pr/538'
1072
+ * Merge pull request [#560] from raskhadafi/prune_bundler-bug
1073
+ * Merge pull request [#566] from sheltond/master
1074
+ * Merge pull request [#593] from andruby/patch-1
1075
+ * Merge pull request [#594] from hassox/thread-cleanliness
1076
+ * Merge pull request [#596] from burningTyger/patch-1
1077
+ * Merge pull request [#601] from sorentwo/friendly-umask
1078
+ * Merge pull request [#602] from 1334/patch-1
1079
+ * Merge pull request [#608] from Gu1/master
1080
+ * Merge pull request [#538] from memiux/?
1023
1081
 
1024
1082
  ## 2.9.2 / 2014-10-25
1025
1083
 
1026
1084
  * 8 bug fixes:
1027
- * Fix puma-wild handling a restart properly. Fixes #550
1085
+ * Fix puma-wild handling a restart properly. Fixes [#550]
1028
1086
  * JRuby SSL POODLE update
1029
1087
  * Keep deprecated features warnings
1030
1088
  * Log the current time when Puma shuts down.
@@ -1034,24 +1092,24 @@ The "clearly I don't have enough tests for the config" release.
1034
1092
  * Fixing sexist error messages
1035
1093
 
1036
1094
  * 6 PRs merged:
1037
- * Merge pull request #549 from bsnape/log-shutdown-time
1038
- * Merge pull request #553 from lowjoel/master
1039
- * Merge pull request #568 from mariuz/patch-1
1040
- * Merge pull request #578 from danielbuechele/patch-1
1041
- * Merge pull request #581 from alexch/slightly-better-logging
1042
- * Merge pull request #590 from looker/jruby_disable_sslv3
1095
+ * Merge pull request [#549] from bsnape/log-shutdown-time
1096
+ * Merge pull request [#553] from lowjoel/master
1097
+ * Merge pull request [#568] from mariuz/patch-1
1098
+ * Merge pull request [#578] from danielbuechele/patch-1
1099
+ * Merge pull request [#581] from alexch/slightly-better-logging
1100
+ * Merge pull request [#590] from looker/jruby_disable_sslv3
1043
1101
 
1044
1102
  ## 2.9.1 / 2014-09-05
1045
1103
 
1046
1104
  * 4 bug fixes:
1047
1105
  * Cleanup the SSL related structures properly, fixes memory leak
1048
1106
  * Fix thread spawning edge case.
1049
- * Force a worker check after a worker boots, don't wait 5sec. Fixes #574
1107
+ * Force a worker check after a worker boots, don't wait 5sec. Fixes [#574]
1050
1108
  * Implement SIGHUP for logs reopening
1051
1109
 
1052
1110
  * 2 PRs merged:
1053
- * Merge pull request #561 from theoldreader/sighup
1054
- * Merge pull request #570 from havenwood/spawn-thread-edge-case
1111
+ * Merge pull request [#561] from theoldreader/sighup
1112
+ * Merge pull request [#570] from havenwood/spawn-thread-edge-case
1055
1113
 
1056
1114
  ## 2.9.0 / 2014-07-12
1057
1115
 
@@ -1070,12 +1128,12 @@ The "clearly I don't have enough tests for the config" release.
1070
1128
  * Update README.md
1071
1129
 
1072
1130
  * 6 PRs merged:
1073
- * Merge pull request #520 from misfo/patch-2
1074
- * Merge pull request #530 from looker/jruby-ssl
1075
- * Merge pull request #537 from vlmonk/patch-1
1076
- * Merge pull request #540 from allaire/patch-1
1077
- * Merge pull request #544 from chulkilee/bsd-3-clause
1078
- * Merge pull request #551 from jcxplorer/patch-1
1131
+ * Merge pull request [#520] from misfo/patch-2
1132
+ * Merge pull request [#530] from looker/jruby-ssl
1133
+ * Merge pull request [#537] from vlmonk/patch-1
1134
+ * Merge pull request [#540] from allaire/patch-1
1135
+ * Merge pull request [#544] from chulkilee/bsd-3-clause
1136
+ * Merge pull request [#551] from jcxplorer/patch-1
1079
1137
 
1080
1138
  ## 2.8.2 / 2014-04-12
1081
1139
 
@@ -1092,17 +1150,17 @@ The "clearly I don't have enough tests for the config" release.
1092
1150
  * allow changing of worker_timeout in config file
1093
1151
 
1094
1152
  * 11 PRs merged:
1095
- * Merge pull request #487 from ckuttruff/master
1096
- * Merge pull request #492 from ckuttruff/master
1097
- * Merge pull request #493 from alepore/config_tag
1098
- * Merge pull request #503 from mariuz/patch-1
1099
- * Merge pull request #505 from sammcj/patch-1
1100
- * Merge pull request #506 from FlavourSys/config_worker_timeout
1101
- * Merge pull request #510 from momer/rescue-block-handle-servers-fix
1102
- * Merge pull request #511 from macool/patch-1
1103
- * Merge pull request #514 from edogawaconan/refactor_env
1104
- * Merge pull request #517 from misfo/patch-1
1105
- * Merge pull request #518 from LongMan/master
1153
+ * Merge pull request [#487] from ckuttruff/master
1154
+ * Merge pull request [#492] from ckuttruff/master
1155
+ * Merge pull request [#493] from alepore/config_tag
1156
+ * Merge pull request [#503] from mariuz/patch-1
1157
+ * Merge pull request [#505] from sammcj/patch-1
1158
+ * Merge pull request [#506] from FlavourSys/config_worker_timeout
1159
+ * Merge pull request [#510] from momer/rescue-block-handle-servers-fix
1160
+ * Merge pull request [#511] from macool/patch-1
1161
+ * Merge pull request [#514] from edogawaconan/refactor_env
1162
+ * Merge pull request [#517] from misfo/patch-1
1163
+ * Merge pull request [#518] from LongMan/master
1106
1164
 
1107
1165
  ## 2.8.1 / 2014-03-06
1108
1166
 
@@ -1114,60 +1172,59 @@ The "clearly I don't have enough tests for the config" release.
1114
1172
  * Start the deployment doc
1115
1173
 
1116
1174
  * 6 PRs merged:
1117
- * Merge pull request #471 from arthurnn/fix_test
1118
- * Merge pull request #485 from joneslee85/patch-9
1119
- * Merge pull request #486 from joshwlewis/patch-1
1120
- * Merge pull request #490 from tobinibot/patch-1
1121
- * Merge pull request #491 from brianknight10/clarify-no-config
1175
+ * Merge pull request [#471] from arthurnn/fix_test
1176
+ * Merge pull request [#485] from joneslee85/patch-9
1177
+ * Merge pull request [#486] from joshwlewis/patch-1
1178
+ * Merge pull request [#490] from tobinibot/patch-1
1179
+ * Merge pull request [#491] from brianknight10/clarify-no-config
1122
1180
 
1123
1181
  ## 2.8.0 / 2014-02-28
1124
1182
 
1125
1183
  * 8 minor features:
1126
- * Add ability to autoload a config file. Fixes #438
1127
- * Add ability to detect and terminate hung workers. Fixes #333
1184
+ * Add ability to autoload a config file. Fixes [#438]
1185
+ * Add ability to detect and terminate hung workers. Fixes [#333]
1128
1186
  * Add booted_workers to stats response
1129
1187
  * Add config to customize the default error message
1130
1188
  * Add prune_bundler option
1131
- * Add worker indexes, expose them via on_worker_boot. Fixes #440
1189
+ * Add worker indexes, expose them via on_worker_boot. Fixes [#440]
1132
1190
  * Add pretty process name
1133
1191
  * Show the ruby version in use
1134
1192
 
1135
1193
  * 7 bug fixes:
1136
1194
  * Added 408 status on timeout.
1137
- * Be more hostile with sockets that write block. Fixes #449
1138
- * Expect at_exit to exclusively remove the pidfile. Fixes #444
1139
- * Expose latency and listen backlog via bind query. Fixes #370
1140
- * JRuby raises IOError if the socket is there. Fixes #377
1141
- * Process requests fairly. Fixes #406
1142
- * Rescue SystemCallError as well. Fixes #425
1195
+ * Be more hostile with sockets that write block. Fixes [#449]
1196
+ * Expect at_exit to exclusively remove the pidfile. Fixes [#444]
1197
+ * Expose latency and listen backlog via bind query. Fixes [#370]
1198
+ * JRuby raises IOError if the socket is there. Fixes [#377]
1199
+ * Process requests fairly. Fixes [#406]
1200
+ * Rescue SystemCallError as well. Fixes [#425]
1143
1201
 
1144
1202
  * 4 doc changes:
1145
1203
  * Add 2.1.0 to the matrix
1146
1204
  * Add Code Climate badge to README
1147
1205
  * Create signals.md
1148
- * Set the license to BSD. Fixes #432
1206
+ * Set the license to BSD. Fixes [#432]
1149
1207
 
1150
1208
  * 14 PRs merged:
1151
- * Merge pull request #428 from alexeyfrank/capistrano_default_hooks
1152
- * Merge pull request #429 from namusyaka/revert-const_defined
1153
- * Merge pull request #431 from mrb/master
1154
- * Merge pull request #433 from alepore/process-name
1155
- * Merge pull request #437 from ibrahima/master
1156
- * Merge pull request #446 from sudara/master
1157
- * Merge pull request #451 from pwiebe/status_408
1158
- * Merge pull request #453 from joevandyk/patch-1
1159
- * Merge pull request #470 from arthurnn/fix_458
1160
- * Merge pull request #472 from rubencaro/master
1161
- * Merge pull request #480 from jjb/docs-on-running-test-suite
1162
- * Merge pull request #481 from schneems/master
1163
- * Merge pull request #482 from prathamesh-sonpatki/signals-doc-cleanup
1164
- * Merge pull request #483 from YotpoLtd/master
1209
+ * Merge pull request [#428] from alexeyfrank/capistrano_default_hooks
1210
+ * Merge pull request [#429] from namusyaka/revert-const_defined
1211
+ * Merge pull request [#431] from mrb/master
1212
+ * Merge pull request [#433] from alepore/process-name
1213
+ * Merge pull request [#437] from ibrahima/master
1214
+ * Merge pull request [#446] from sudara/master
1215
+ * Merge pull request [#451] from pwiebe/status_408
1216
+ * Merge pull request [#453] from joevandyk/patch-1
1217
+ * Merge pull request [#470] from arthurnn/fix_458
1218
+ * Merge pull request [#472] from rubencaro/master
1219
+ * Merge pull request [#480] from jjb/docs-on-running-test-suite
1220
+ * Merge pull request [#481] from schneems/master
1221
+ * Merge pull request [#482] from prathamesh-sonpatki/signals-doc-cleanup
1222
+ * Merge pull request [#483] from YotpoLtd/master
1165
1223
 
1166
1224
  ## 2.7.1 / 2013-12-05
1167
1225
 
1168
1226
  * 1 bug fix:
1169
-
1170
- * Keep STDOUT/STDERR the right mode. Fixes #422
1227
+ * Keep STDOUT/STDERR the right mode. Fixes [#422]
1171
1228
 
1172
1229
  ## 2.7.0 / 2013-12-03
1173
1230
 
@@ -1202,7 +1259,6 @@ The "clearly I don't have enough tests for the config" release.
1202
1259
  ## 2.5.1 / 2013-08-13
1203
1260
 
1204
1261
  * 2 bug fixes:
1205
-
1206
1262
  * Keep jruby daemon mode from retrying on a hot restart
1207
1263
  * Extract version from const.rb in gemspec
1208
1264
 
@@ -1244,30 +1300,28 @@ The "clearly I don't have enough tests for the config" release.
1244
1300
 
1245
1301
  * 10 bug fixes:
1246
1302
 
1247
- * Be sure to only delete the pid in the master. Fixes #334
1303
+ * Be sure to only delete the pid in the master. Fixes [#334]
1248
1304
  * Call out -C/--config flags
1249
- * Change parser symbol names to avoid clash. Fixes #179
1305
+ * Change parser symbol names to avoid clash. Fixes [#179]
1250
1306
  * Convert thread pool sizes to integers
1251
1307
  * Detect when the jruby daemon child doesn't start properly
1252
1308
  * Fix typo in CLI help
1253
- * Improve the logging output when hijack is used. Fixes #332
1309
+ * Improve the logging output when hijack is used. Fixes [#332]
1254
1310
  * Remove unnecessary thread pool size conversions
1255
- * Setup :worker_boot as an Array. Fixes #317
1256
- * Use 127.0.0.1 as REMOTE_ADDR of unix client. Fixes #309
1311
+ * Setup :worker_boot as an Array. Fixes [#317]
1312
+ * Use 127.0.0.1 as REMOTE_ADDR of unix client. Fixes [#309]
1257
1313
 
1258
1314
 
1259
1315
  ## 2.3.2 / 2013-07-08
1260
1316
 
1261
1317
  * 1 bug fix:
1262
-
1263
1318
  * Move starting control server to after daemonization.
1264
1319
 
1265
1320
  ## 2.3.1 / 2013-07-06
1266
1321
 
1267
1322
  * 2 bug fixes:
1268
-
1269
1323
  * Include the right files in the Manifest.
1270
- * Disable inheriting connections on restart on windows. Fixes #166
1324
+ * Disable inheriting connections on restart on windows. Fixes [#166]
1271
1325
 
1272
1326
  * 1 doc change:
1273
1327
  * Better document some platform constraints
@@ -1275,47 +1329,39 @@ The "clearly I don't have enough tests for the config" release.
1275
1329
  ## 2.3.0 / 2013-07-05
1276
1330
 
1277
1331
  * 1 major bug fix:
1278
-
1279
1332
  * Stabilize control server, add support in cluster mode
1280
1333
 
1281
1334
  * 5 minor bug fixes:
1282
-
1283
1335
  * Add ability to cleanup stale unix sockets
1284
- * Check status data better. Fixes #292
1285
- * Convert raw IO errors to ConnectionError. Fixes #274
1286
- * Fix sending Content-Type and Content-Length for no body status. Fixes #304
1287
- * Pass state path through to `pumactl start`. Fixes #287
1336
+ * Check status data better. Fixes [#292]
1337
+ * Convert raw IO errors to ConnectionError. Fixes [#274]
1338
+ * Fix sending Content-Type and Content-Length for no body status. Fixes [#304]
1339
+ * Pass state path through to `pumactl start`. Fixes [#287]
1288
1340
 
1289
1341
  * 2 internal changes:
1290
-
1291
1342
  * Refactored modes into seperate classes that CLI uses
1292
1343
  * Changed CLI to take an Events object instead of stdout/stderr (API change)
1293
1344
 
1294
1345
  ## 2.2.2 / 2013-07-02
1295
1346
 
1296
1347
  * 1 bug fix:
1297
-
1298
1348
  * Fix restart_command in the config
1299
1349
 
1300
1350
  ## 2.2.1 / 2013-07-02
1301
1351
 
1302
1352
  * 1 minor feature:
1303
-
1304
1353
  * Introduce preload flag
1305
1354
 
1306
1355
  * 1 bug fix:
1307
-
1308
1356
  * Pass custom restart command in JRuby
1309
1357
 
1310
1358
  ## 2.2.0 / 2013-07-01
1311
1359
 
1312
1360
  * 1 major feature:
1313
-
1314
1361
  * Add ability to preload rack app
1315
1362
 
1316
1363
  * 2 minor bugfixes:
1317
-
1318
- * Don't leak info when not in development. Fixes #256
1364
+ * Don't leak info when not in development. Fixes [#256]
1319
1365
  * Load the app, then bind the ports
1320
1366
 
1321
1367
  ## 2.1.1 / 2013-06-20
@@ -1323,7 +1369,7 @@ The "clearly I don't have enough tests for the config" release.
1323
1369
  * 2 minor bug fixes:
1324
1370
 
1325
1371
  * Fix daemonization on jruby
1326
- * Load the application before daemonizing. Fixes #285
1372
+ * Load the application before daemonizing. Fixes [#285]
1327
1373
 
1328
1374
  ## 2.1.0 / 2013-06-18
1329
1375
 
@@ -1333,7 +1379,7 @@ The "clearly I don't have enough tests for the config" release.
1333
1379
  * Support systemd socket activation
1334
1380
 
1335
1381
  * 15 bug fixes:
1336
- * Deal with pipes closing while stopping. Fixes #270
1382
+ * Deal with pipes closing while stopping. Fixes [#270]
1337
1383
  * Error out early if there is no app configured
1338
1384
  * Handle ConnectionError rather than the lowlevel exceptions
1339
1385
  * tune with `-C` config file and `on_worker_boot`
@@ -1342,11 +1388,11 @@ The "clearly I don't have enough tests for the config" release.
1342
1388
  * Make sure to use bytesize instead of size (MiniSSL write)
1343
1389
  * Fix an error in puma-manager.conf
1344
1390
  * fix: stop leaking sockets on restart (affects ruby 1.9.3 or before)
1345
- * Ignore errors on the cross-thread pipe. Fixes #246
1391
+ * Ignore errors on the cross-thread pipe. Fixes [#246]
1346
1392
  * Ignore errors while uncorking the socket (it might already be closed)
1347
- * Ignore the body on a HEAD request. Fixes #278
1348
- * Handle all engine data when possible. Fixes #251.
1349
- * Handle all read exceptions properly. Fixes #252
1393
+ * Ignore the body on a HEAD request. Fixes [#278]
1394
+ * Handle all engine data when possible. Fixes [#251].
1395
+ * Handle all read exceptions properly. Fixes [#252]
1350
1396
  * Handle errors from the server better
1351
1397
 
1352
1398
  * 3 doc changes:
@@ -1357,7 +1403,6 @@ The "clearly I don't have enough tests for the config" release.
1357
1403
  ## 2.0.1 / 2013-04-30
1358
1404
 
1359
1405
  * 1 bug fix:
1360
-
1361
1406
  * Fix not starting on JRuby properly
1362
1407
 
1363
1408
  ## 2.0.0 / 2013-04-29
@@ -1369,8 +1414,8 @@ RailsConf 2013 edition!
1369
1414
  * Minor doc fixes in the README.md, Capistrano section
1370
1415
 
1371
1416
  * 2 bug fixes:
1372
- * Fix reading RACK_ENV properly. Fixes #234
1373
- * Make cap recipe handle tmp/sockets; fixes #228
1417
+ * Fix reading RACK_ENV properly. Fixes [#234]
1418
+ * Make cap recipe handle tmp/sockets; fixes [#228]
1374
1419
 
1375
1420
  * 3 minor changes:
1376
1421
  * Fix capistrano recipe
@@ -1380,7 +1425,6 @@ RailsConf 2013 edition!
1380
1425
  ## 2.0.0.b7 / 2013-03-18
1381
1426
 
1382
1427
  * 5 minor enhancements:
1383
-
1384
1428
  * Add -q option for :start
1385
1429
  * Add -V, --version
1386
1430
  * Add default Rack handler helper
@@ -1388,30 +1432,27 @@ RailsConf 2013 edition!
1388
1432
  * Set worker directory from configuration file
1389
1433
 
1390
1434
  * 12 bug fixes:
1391
-
1392
- * Close the binder in the right place. Fixes #192
1393
- * Handle early term in workers. Fixes #206
1435
+ * Close the binder in the right place. Fixes [#192]
1436
+ * Handle early term in workers. Fixes [#206]
1394
1437
  * Make sure that the default port is 80 when the request doesn't include HTTP_X_FORWARDED_PROTO.
1395
1438
  * Prevent Errno::EBADF errors on restart when running ruby 2.0
1396
1439
  * Record the proper @master_pid
1397
1440
  * Respect the header HTTP_X_FORWARDED_PROTO when the host doesn't include a port number.
1398
1441
  * Retry EAGAIN/EWOULDBLOCK during syswrite
1399
- * Run exec properly to restart. Fixes #154
1442
+ * Run exec properly to restart. Fixes [#154]
1400
1443
  * Set Rack run_once to false
1401
- * Syncronize all access to @timeouts. Fixes #208
1402
- * Write out the state post-daemonize. Fixes #189
1444
+ * Syncronize all access to @timeouts. Fixes [#208]
1445
+ * Write out the state post-daemonize. Fixes [#189]
1403
1446
  * Prevent crash when all workers are gone
1404
1447
 
1405
1448
  ## 2.0.0.b6 / 2013-02-06
1406
1449
 
1407
1450
  * 2 minor enhancements:
1408
-
1409
1451
  * Add hook for running when a worker boots
1410
1452
  * Advertise the Configuration object for apps to use.
1411
1453
 
1412
1454
  * 1 bug fix:
1413
-
1414
- * Change directory in working during upgrade. Fixes #185
1455
+ * Change directory in working during upgrade. Fixes [#185]
1415
1456
 
1416
1457
  ## 2.0.0.b5 / 2013-02-05
1417
1458
 
@@ -1424,16 +1465,16 @@ RailsConf 2013 edition!
1424
1465
  * Add config file option to specify the restart command
1425
1466
 
1426
1467
  * 5 bug fixes:
1427
- * Cleanup pipes properly. Fixes #182
1428
- * Daemonize earlier so that we don't lose app threads. Fixes #183
1429
- * Drain the notification pipe. Fixes #176, thanks @cryo28
1430
- * Move write_pid to after we daemonize. Fixes #180
1468
+ * Cleanup pipes properly. Fixes [#182]
1469
+ * Daemonize earlier so that we don't lose app threads. Fixes [#183]
1470
+ * Drain the notification pipe. Fixes [#176], thanks @cryo28
1471
+ * Move write_pid to after we daemonize. Fixes [#180]
1431
1472
  * Redirect IO properly and emit message for checkpointing
1432
1473
 
1433
1474
  ## 2.0.0.b4 / 2012-12-12
1434
1475
 
1435
1476
  * 4 bug fixes:
1436
- * Properly check #syswrite's value for variable sized buffers. Fixes #170
1477
+ * Properly check #syswrite's value for variable sized buffers. Fixes [#170]
1437
1478
  * Shutdown status server properly
1438
1479
  * Handle char vs byte and mixing syswrite with write properly
1439
1480
  * made MiniSSL validate key/cert file existence
@@ -1453,12 +1494,12 @@ RailsConf 2013 edition!
1453
1494
  * Add options to daemonize puma
1454
1495
 
1455
1496
  * 7 bug fixes:
1456
- * Reset the IOBuffer properly. Fixes #148
1497
+ * Reset the IOBuffer properly. Fixes [#148]
1457
1498
  * Shutdown gracefully on JRuby with Ctrl-C
1458
- * Various methods to get newrelic to start. Fixes #128
1499
+ * Various methods to get newrelic to start. Fixes [#128]
1459
1500
  * fixing syntax error at capistrano recipe
1460
1501
  * Force ECONNRESET when read returns nil
1461
- * Be sure to empty the drain the todo before shutting down. Fixes #155
1502
+ * Be sure to empty the drain the todo before shutting down. Fixes [#155]
1462
1503
  * allow for alternate locations for status app
1463
1504
 
1464
1505
  ## 2.0.0.b1 / 2012-09-11
@@ -1510,7 +1551,7 @@ be added back in a future date when a java Puma::MiniSSL is added.
1510
1551
 
1511
1552
  * 6 bug fixes:
1512
1553
  * Define RSTRING_NOT_MODIFIED for Rubinius
1513
- * Convert status to integer. Fixes #123
1554
+ * Convert status to integer. Fixes [#123]
1514
1555
  * Delete pidfile when stopping the server
1515
1556
  * Allow compilation with -Werror=format-security option
1516
1557
  * Fix wrong HTTP version for a HTTP/1.0 request
@@ -1518,7 +1559,7 @@ be added back in a future date when a java Puma::MiniSSL is added.
1518
1559
 
1519
1560
  * 3 minor features:
1520
1561
  * Added support for setting RACK_ENV via the CLI, config file, and rack app
1521
- * Allow Server#run to run sync. Fixes #111
1562
+ * Allow Server#run to run sync. Fixes [#111]
1522
1563
  * Puma can now run on windows
1523
1564
 
1524
1565
  ## 1.4.0 / 2012-06-04
@@ -1533,7 +1574,7 @@ be added back in a future date when a java Puma::MiniSSL is added.
1533
1574
 
1534
1575
  * 2 bug fixes:
1535
1576
  * use #bytesize instead of #length for Content-Length header
1536
- * Use StringIO properly. Fixes #98
1577
+ * Use StringIO properly. Fixes [#98]
1537
1578
 
1538
1579
  ## 1.3.0 / 2012-05-08
1539
1580
 
@@ -1542,10 +1583,10 @@ be added back in a future date when a java Puma::MiniSSL is added.
1542
1583
  * Add -I option to specify $LOAD_PATH directories
1543
1584
 
1544
1585
  * 4 bug fixes:
1545
- * Don't join the server thread inside the signal handle. Fixes #94
1586
+ * Don't join the server thread inside the signal handle. Fixes [#94]
1546
1587
  * Make NullIO#read mimic IO#read
1547
- * Only stop the status server if it's started. Fixes #84
1548
- * Set RACK_ENV early in cli also. Fixes #78
1588
+ * Only stop the status server if it's started. Fixes [#84]
1589
+ * Set RACK_ENV early in cli also. Fixes [#78]
1549
1590
 
1550
1591
  * 1 new contributor:
1551
1592
  * Jesse Cooke
@@ -1553,58 +1594,49 @@ be added back in a future date when a java Puma::MiniSSL is added.
1553
1594
  ## 1.2.2 / 2012-04-28
1554
1595
 
1555
1596
  * 4 bug fixes:
1556
-
1557
1597
  * Report a lowlevel error to stderr
1558
1598
  * Set a fallback SERVER_NAME and SERVER_PORT
1559
- * Keep the encoding of the body correct. Fixes #79
1599
+ * Keep the encoding of the body correct. Fixes [#79]
1560
1600
  * show error.to_s along with backtrace for low-level error
1561
1601
 
1562
1602
  ## 1.2.1 / 2012-04-11
1563
1603
 
1564
- 1 bug fix:
1565
-
1566
- * Fix rack.url_scheme for SSL servers. Fixes #65
1604
+ * 1 bug fix:
1605
+ * Fix rack.url_scheme for SSL servers. Fixes [#65]
1567
1606
 
1568
1607
  ## 1.2.0 / 2012-04-11
1569
1608
 
1570
- 1 major feature:
1571
-
1572
- * When possible, the internal restart does a "hot restart" meaning
1573
- the server sockets remains open, so no connections are lost.
1574
-
1575
- 1 minor feature:
1576
-
1577
- * More helpful fallback error message
1578
-
1579
- 6 bug fixes:
1609
+ * 1 major feature:
1610
+ * When possible, the internal restart does a "hot restart" meaning
1611
+ the server sockets remains open, so no connections are lost.
1580
1612
 
1581
- * Pass the proper args to unknown_error. Fixes #54, #58
1582
- * Stop the control server before restarting. Fixes #61
1583
- * Fix reporting https only on a true SSL connection
1584
- * Set the default content type to 'text/plain'. Fixes #63
1585
- * Use REUSEADDR. Fixes #60
1586
- * Shutdown gracefully on SIGTERM. Fixes #53
1613
+ * 1 minor feature:
1614
+ * More helpful fallback error message
1587
1615
 
1588
- 2 new contributors:
1616
+ * 6 bug fixes:
1617
+ * Pass the proper args to unknown_error. Fixes [#54], [#58]
1618
+ * Stop the control server before restarting. Fixes [#61]
1619
+ * Fix reporting https only on a true SSL connection
1620
+ * Set the default content type to 'text/plain'. Fixes [#63]
1621
+ * Use REUSEADDR. Fixes [#60]
1622
+ * Shutdown gracefully on SIGTERM. Fixes [#53]
1589
1623
 
1590
- * Seamus Abshere
1591
- * Steve Richert
1624
+ * 2 new contributors:
1625
+ * Seamus Abshere
1626
+ * Steve Richert
1592
1627
 
1593
1628
  ## 1.1.1 / 2012-03-30
1594
1629
 
1595
- 1 bugfix:
1596
-
1597
- * Include puma/compat.rb in the gem (oops!)
1630
+ * 1 bugfix:
1631
+ * Include puma/compat.rb in the gem (oops!)
1598
1632
 
1599
1633
  ## 1.1.0 / 2012-03-30
1600
1634
 
1601
- 1 bugfix:
1602
-
1603
- * Make sure that the unix socket has the perms 0777 by default
1604
-
1605
- 1 minor feature:
1635
+ * 1 bugfix:
1636
+ * Make sure that the unix socket has the perms 0777 by default
1606
1637
 
1607
- * Add umask param to the unix:// bind to set the umask
1638
+ * 1 minor feature:
1639
+ * Add umask param to the unix:// bind to set the umask
1608
1640
 
1609
1641
  ## 1.0.0 / 2012-03-29
1610
1642
 
@@ -1614,7 +1646,599 @@ be added back in a future date when a java Puma::MiniSSL is added.
1614
1646
  ## Master
1615
1647
 
1616
1648
  * Features
1617
- * Your feature goes here (#Github Number)
1649
+ * Your feature goes here <Most recent on the top, like GitHub> (#Github Number)
1618
1650
 
1619
1651
  * Bugfixes
1620
- * Your bugfix goes here (#Github Number)
1652
+ * Your bugfix goes here <Most recent on the top, like GitHub> (#Github Number)
1653
+
1654
+ [#2432]:https://github.com/puma/puma/pull/2432 "PR by @MSP-Greg, merged 2020-10-25"
1655
+ [#2442]:https://github.com/puma/puma/pull/2442 "PR by @wjordan, merged 2020-10-22"
1656
+ [#2427]:https://github.com/puma/puma/pull/2427 "PR by @cjlarose, merged 2020-10-20"
1657
+ [#2018]:https://github.com/puma/puma/issues/2018 "Issue by @gingerlime, closed 2020-10-20"
1658
+ [#2435]:https://github.com/puma/puma/pull/2435 "PR by @wjordan, merged 2020-10-20"
1659
+ [#2431]:https://github.com/puma/puma/pull/2431 "PR by @wjordan, merged 2020-10-16"
1660
+ [#2212]:https://github.com/puma/puma/issues/2212 "Issue by @junaruga, closed 2020-10-16"
1661
+ [#2409]:https://github.com/puma/puma/pull/2409 "PR by @fliiiix, merged 2020-10-03"
1662
+ [#2448]:https://github.com/puma/puma/pull/2448 "PR by @MSP-Greg, merged 2020-10-25"
1663
+ [#2450]:https://github.com/puma/puma/pull/2450 "PR by @MSP-Greg, merged 2020-10-25"
1664
+ [#2419]:https://github.com/puma/puma/pull/2419 "PR by @MSP-Greg, merged 2020-10-09"
1665
+ [#2279]:https://github.com/puma/puma/pull/2279 "PR by @wjordan, merged 2020-10-06"
1666
+ [#2412]:https://github.com/puma/puma/pull/2412 "PR by @MSP-Greg, merged 2020-10-06"
1667
+ [#2405]:https://github.com/puma/puma/pull/2405 "PR by @MSP-Greg, merged 2020-10-05"
1668
+ [#2408]:https://github.com/puma/puma/pull/2408 "PR by @fliiiix, merged 2020-10-03"
1669
+ [#2389]:https://github.com/puma/puma/pull/2389 "PR by @MSP-Greg, merged 2020-09-29"
1670
+ [#2432]:https://github.com/puma/puma/pull/2432 "PR by @MSP-Greg, merged 2020-10-25"
1671
+ [#2442]:https://github.com/puma/puma/pull/2442 "PR by @wjordan, merged 2020-10-22"
1672
+ [#2427]:https://github.com/puma/puma/pull/2427 "PR by @cjlarose, merged 2020-10-20"
1673
+ [#2018]:https://github.com/puma/puma/issues/2018 "Issue by @gingerlime, closed 2020-10-20"
1674
+ [#2435]:https://github.com/puma/puma/pull/2435 "PR by @wjordan, merged 2020-10-20"
1675
+ [#2431]:https://github.com/puma/puma/pull/2431 "PR by @wjordan, merged 2020-10-16"
1676
+ [#2212]:https://github.com/puma/puma/issues/2212 "Issue by @junaruga, closed 2020-10-16"
1677
+ [#2409]:https://github.com/puma/puma/pull/2409 "PR by @fliiiix, merged 2020-10-03"
1678
+ [#2448]:https://github.com/puma/puma/pull/2448 "PR by @MSP-Greg, merged 2020-10-25"
1679
+ [#2450]:https://github.com/puma/puma/pull/2450 "PR by @MSP-Greg, merged 2020-10-25"
1680
+ [#2419]:https://github.com/puma/puma/pull/2419 "PR by @MSP-Greg, merged 2020-10-09"
1681
+ [#2279]:https://github.com/puma/puma/pull/2279 "PR by @wjordan, merged 2020-10-06"
1682
+ [#2412]:https://github.com/puma/puma/pull/2412 "PR by @MSP-Greg, merged 2020-10-06"
1683
+ [#2405]:https://github.com/puma/puma/pull/2405 "PR by @MSP-Greg, merged 2020-10-05"
1684
+ [#2408]:https://github.com/puma/puma/pull/2408 "PR by @fliiiix, merged 2020-10-03"
1685
+ [#2389]:https://github.com/puma/puma/pull/2389 "PR by @MSP-Greg, merged 2020-09-29"
1686
+ [#2381]:https://github.com/puma/puma/pull/2381 "PR by @joergschray, merged 2020-09-24"
1687
+ [#2271]:https://github.com/puma/puma/pull/2271 "PR by @wjordan, merged 2020-09-24"
1688
+ [#2377]:https://github.com/puma/puma/pull/2377 "PR by @cjlarose, merged 2020-09-23"
1689
+ [#2376]:https://github.com/puma/puma/pull/2376 "PR by @alexeevit, merged 2020-09-22"
1690
+ [#2372]:https://github.com/puma/puma/pull/2372 "PR by @ahorek, merged 2020-09-22"
1691
+ [#2384]:https://github.com/puma/puma/pull/2384 "PR by @schneems, merged 2020-09-27"
1692
+ [#2375]:https://github.com/puma/puma/pull/2375 "PR by @MSP-Greg, merged 2020-09-23"
1693
+ [#2373]:https://github.com/puma/puma/pull/2373 "PR by @MSP-Greg, merged 2020-09-23"
1694
+ [#2305]:https://github.com/puma/puma/pull/2305 "PR by @MSP-Greg, merged 2020-09-14"
1695
+ [#2099]:https://github.com/puma/puma/pull/2099 "PR by @wjordan, merged 2020-05-11"
1696
+ [#2079]:https://github.com/puma/puma/pull/2079 "PR by @ayufan, merged 2020-05-11"
1697
+ [#2093]:https://github.com/puma/puma/pull/2093 "PR by @schneems, merged 2019-12-18"
1698
+ [#2256]:https://github.com/puma/puma/pull/2256 "PR by @nateberkopec, merged 2020-05-11"
1699
+ [#2054]:https://github.com/puma/puma/pull/2054 "PR by @composerinteralia, merged 2019-11-11"
1700
+ [#2106]:https://github.com/puma/puma/pull/2106 "PR by @ylecuyer, merged 2020-02-11"
1701
+ [#2167]:https://github.com/puma/puma/pull/2167 "PR by @ChrisBr, closed 2020-07-06"
1702
+ [#2344]:https://github.com/puma/puma/pull/2344 "PR by @dentarg, merged 2020-08-26"
1703
+ [#2203]:https://github.com/puma/puma/pull/2203 "PR by @zanker-stripe, merged 2020-03-31"
1704
+ [#2220]:https://github.com/puma/puma/pull/2220 "PR by @wjordan, merged 2020-04-14"
1705
+ [#2238]:https://github.com/puma/puma/pull/2238 "PR by @sthirugn, merged 2020-05-07"
1706
+ [#2086]:https://github.com/puma/puma/pull/2086 "PR by @bdewater, merged 2019-12-17"
1707
+ [#2253]:https://github.com/puma/puma/pull/2253 "PR by @schneems, merged 2020-05-11"
1708
+ [#2288]:https://github.com/puma/puma/pull/2288 "PR by @FTLam11, merged 2020-06-02"
1709
+ [#1487]:https://github.com/puma/puma/pull/1487 "PR by @jxa, merged 2018-05-09"
1710
+ [#2143]:https://github.com/puma/puma/pull/2143 "PR by @jalevin, merged 2020-04-21"
1711
+ [#2143]:https://github.com/puma/puma/pull/2143 "PR by @jalevin, merged 2020-04-21"
1712
+ [#2143]:https://github.com/puma/puma/pull/2143 "PR by @jalevin, merged 2020-04-21"
1713
+ [#2143]:https://github.com/puma/puma/pull/2143 "PR by @jalevin, merged 2020-04-21"
1714
+ [#2143]:https://github.com/puma/puma/pull/2143 "PR by @jalevin, merged 2020-04-21"
1715
+ [#2169]:https://github.com/puma/puma/pull/2169 "PR by @nateberkopec, merged 2020-03-10"
1716
+ [#2170]:https://github.com/puma/puma/pull/2170 "PR by @nateberkopec, merged 2020-03-10"
1717
+ [#2076]:https://github.com/puma/puma/pull/2076 "PR by @drews256, merged 2020-02-27"
1718
+ [#2022]:https://github.com/puma/puma/pull/2022 "PR by @olleolleolle, merged 2019-11-11"
1719
+ [#2269]:https://github.com/puma/puma/pull/2269 "PR by @MSP-Greg, merged 2020-08-31"
1720
+ [#2312]:https://github.com/puma/puma/pull/2312 "PR by @MSP-Greg, merged 2020-07-20"
1721
+ [#2338]:https://github.com/puma/puma/issues/2338 "Issue by @micahhainlinestitchfix, closed 2020-08-18"
1722
+ [#2116]:https://github.com/puma/puma/pull/2116 "PR by @MSP-Greg, merged 2020-05-15"
1723
+ [#2074]:https://github.com/puma/puma/issues/2074 "Issue by @jchristie55332, closed 2020-02-19"
1724
+ [#2211]:https://github.com/puma/puma/pull/2211 "PR by @MSP-Greg, merged 2020-03-30"
1725
+ [#2069]:https://github.com/puma/puma/pull/2069 "PR by @MSP-Greg, merged 2019-11-09"
1726
+ [#2112]:https://github.com/puma/puma/pull/2112 "PR by @wjordan, merged 2020-03-03"
1727
+ [#1893]:https://github.com/puma/puma/pull/1893 "PR by @seven1m, merged 2020-02-18"
1728
+ [#2119]:https://github.com/puma/puma/pull/2119 "PR by @wjordan, merged 2020-02-20"
1729
+ [#2121]:https://github.com/puma/puma/pull/2121 "PR by @wjordan, merged 2020-02-21"
1730
+ [#2154]:https://github.com/puma/puma/pull/2154 "PR by @cjlarose, merged 2020-03-10"
1731
+ [#1551]:https://github.com/puma/puma/issues/1551 "Issue by @austinthecoder, closed 2020-03-10"
1732
+ [#2198]:https://github.com/puma/puma/pull/2198 "PR by @eregon, merged 2020-03-24"
1733
+ [#2216]:https://github.com/puma/puma/pull/2216 "PR by @praboud-stripe, merged 2020-04-06"
1734
+ [#2122]:https://github.com/puma/puma/pull/2122 "PR by @wjordan, merged 2020-04-10"
1735
+ [#2220]:https://github.com/puma/puma/pull/2220 "PR by @wjordan, merged 2020-04-14"
1736
+ [#2177]:https://github.com/puma/puma/issues/2177 "Issue by @GuiTeK, closed 2020-04-08"
1737
+ [#2221]:https://github.com/puma/puma/pull/2221 "PR by @wjordan, merged 2020-04-17"
1738
+ [#2233]:https://github.com/puma/puma/pull/2233 "PR by @ayufan, merged 2020-04-25"
1739
+ [#2234]:https://github.com/puma/puma/pull/2234 "PR by @wjordan, merged 2020-04-30"
1740
+ [#2225]:https://github.com/puma/puma/issues/2225 "Issue by @nateberkopec, closed 2020-04-27"
1741
+ [#2267]:https://github.com/puma/puma/pull/2267 "PR by @wjordan, merged 2020-05-20"
1742
+ [#2287]:https://github.com/puma/puma/pull/2287 "PR by @eugeneius, merged 2020-05-31"
1743
+ [#2317]:https://github.com/puma/puma/pull/2317 "PR by @MSP-Greg, merged 2020-09-01"
1744
+ [#2312]:https://github.com/puma/puma/pull/2312 "PR by @MSP-Greg, merged 2020-07-20"
1745
+ [#2319]:https://github.com/puma/puma/issues/2319 "Issue by @AlexWayfer, closed 2020-09-03"
1746
+ [#2326]:https://github.com/puma/puma/pull/2326 "PR by @rkistner, closed 2020-09-04"
1747
+ [#2299]:https://github.com/puma/puma/issues/2299 "Issue by @JohnPhillips31416, closed 2020-09-17"
1748
+ [#2095]:https://github.com/puma/puma/pull/2095 "PR by @bdewater, merged 2019-12-25"
1749
+ [#2102]:https://github.com/puma/puma/pull/2102 "PR by @bdewater, merged 2020-02-07"
1750
+ [#2111]:https://github.com/puma/puma/pull/2111 "PR by @wjordan, merged 2020-02-20"
1751
+ [#1980]:https://github.com/puma/puma/pull/1980 "PR by @nateberkopec, merged 2020-02-27"
1752
+ [#2189]:https://github.com/puma/puma/pull/2189 "PR by @jkowens, merged 2020-03-19"
1753
+ [#2220]:https://github.com/puma/puma/pull/2220 "PR by @wjordan, merged 2020-04-14"
1754
+ [#2124]:https://github.com/puma/puma/pull/2124 "PR by @wjordan, merged 2020-04-14"
1755
+ [#2223]:https://github.com/puma/puma/pull/2223 "PR by @wjordan, merged 2020-04-20"
1756
+ [#2239]:https://github.com/puma/puma/pull/2239 "PR by @wjordan, merged 2020-05-15"
1757
+ [#2304]:https://github.com/puma/puma/issues/2304 "Issue by @mpeltomaa, closed 2020-09-05"
1758
+ [#2269]:https://github.com/puma/puma/pull/2269 "PR by @MSP-Greg, merged 2020-08-31"
1759
+ [#2132]:https://github.com/puma/puma/issues/2132 "Issue by @bmclean, closed 2020-02-28"
1760
+ [#2010]:https://github.com/puma/puma/pull/2010 "PR by @nateberkopec, merged 2019-10-07"
1761
+ [#2012]:https://github.com/puma/puma/pull/2012 "PR by @headius, merged 2019-10-07"
1762
+ [#2046]:https://github.com/puma/puma/pull/2046 "PR by @composerinteralia, merged 2019-10-21"
1763
+ [#2052]:https://github.com/puma/puma/pull/2052 "PR by @composerinteralia, merged 2019-11-02"
1764
+ [#1564]:https://github.com/puma/puma/issues/1564 "Issue by @perlun, closed 2019-10-07"
1765
+ [#2035]:https://github.com/puma/puma/pull/2035 "PR by @AndrewSpeed, merged 2019-10-18"
1766
+ [#2048]:https://github.com/puma/puma/pull/2048 "PR by @hahmed, merged 2019-10-21"
1767
+ [#2050]:https://github.com/puma/puma/pull/2050 "PR by @olleolleolle, merged 2019-10-25"
1768
+ [#1842]:https://github.com/puma/puma/issues/1842 "Issue by @nateberkopec, closed 2019-09-18"
1769
+ [#1988]:https://github.com/puma/puma/issues/1988 "Issue by @mcg, closed 2019-10-01"
1770
+ [#1986]:https://github.com/puma/puma/issues/1986 "Issue by @flaminestone, closed 2019-10-01"
1771
+ [#1994]:https://github.com/puma/puma/issues/1994 "Issue by @LimeBlast, closed 2019-10-01"
1772
+ [#2006]:https://github.com/puma/puma/pull/2006 "PR by @nateberkopec, merged 2019-10-01"
1773
+ [#1222]:https://github.com/puma/puma/issues/1222 "Issue by @seanmckinley, closed 2019-10-04"
1774
+ [#1885]:https://github.com/puma/puma/pull/1885 "PR by @spk, merged 2019-08-10"
1775
+ [#1934]:https://github.com/puma/puma/pull/1934 "PR by @zarelit, merged 2019-08-28"
1776
+ [#1105]:https://github.com/puma/puma/pull/1105 "PR by @daveallie, merged 2019-09-02"
1777
+ [#1786]:https://github.com/puma/puma/pull/1786 "PR by @evanphx, merged 2019-09-11"
1778
+ [#1320]:https://github.com/puma/puma/pull/1320 "PR by @nateberkopec, merged 2019-09-12"
1779
+ [#1968]:https://github.com/puma/puma/pull/1968 "PR by @nateberkopec, merged 2019-09-15"
1780
+ [#1908]:https://github.com/puma/puma/pull/1908 "PR by @MSP-Greg, merged 2019-08-23"
1781
+ [#1952]:https://github.com/puma/puma/pull/1952 "PR by @MSP-Greg, merged 2019-09-19"
1782
+ [#1941]:https://github.com/puma/puma/pull/1941 "PR by @MSP-Greg, merged 2019-09-02"
1783
+ [#1961]:https://github.com/puma/puma/pull/1961 "PR by @nateberkopec, merged 2019-09-11"
1784
+ [#1970]:https://github.com/puma/puma/pull/1970 "PR by @MSP-Greg, merged 2019-09-18"
1785
+ [#1946]:https://github.com/puma/puma/pull/1946 "PR by @nateberkopec, merged 2019-09-02"
1786
+ [#1941]:https://github.com/puma/puma/pull/1941 "PR by @MSP-Greg, merged 2019-09-02"
1787
+ [#1908]:https://github.com/puma/puma/pull/1908 "PR by @MSP-Greg, merged 2019-08-23"
1788
+ [#1831]:https://github.com/puma/puma/pull/1831 "PR by @spk, merged 2019-07-27"
1789
+ [#1816]:https://github.com/puma/puma/pull/1816 "PR by @ylecuyer, merged 2019-08-01"
1790
+ [#1844]:https://github.com/puma/puma/pull/1844 "PR by @ylecuyer, merged 2019-08-01"
1791
+ [#1836]:https://github.com/puma/puma/pull/1836 "PR by @MSP-Greg, merged 2019-08-06"
1792
+ [#1887]:https://github.com/puma/puma/pull/1887 "PR by @MSP-Greg, merged 2019-08-06"
1793
+ [#1812]:https://github.com/puma/puma/pull/1812 "PR by @kou, merged 2019-08-03"
1794
+ [#1491]:https://github.com/puma/puma/pull/1491 "PR by @olleolleolle, merged 2019-07-17"
1795
+ [#1837]:https://github.com/puma/puma/pull/1837 "PR by @montanalow, merged 2019-07-25"
1796
+ [#1857]:https://github.com/puma/puma/pull/1857 "PR by @Jesus, merged 2019-08-03"
1797
+ [#1822]:https://github.com/puma/puma/pull/1822 "PR by @Jesus, merged 2019-08-01"
1798
+ [#1863]:https://github.com/puma/puma/pull/1863 "PR by @dzunk, merged 2019-08-04"
1799
+ [#1838]:https://github.com/puma/puma/pull/1838 "PR by @bogn83, merged 2019-07-14"
1800
+ [#1882]:https://github.com/puma/puma/pull/1882 "PR by @okuramasafumi, merged 2019-08-06"
1801
+ [#1848]:https://github.com/puma/puma/pull/1848 "PR by @nateberkopec, merged 2019-07-16"
1802
+ [#1847]:https://github.com/puma/puma/pull/1847 "PR by @nateberkopec, merged 2019-07-16"
1803
+ [#1846]:https://github.com/puma/puma/pull/1846 "PR by @nateberkopec, merged 2019-07-16"
1804
+ [#1853]:https://github.com/puma/puma/pull/1853 "PR by @Jesus, merged 2019-07-18"
1805
+ [#1850]:https://github.com/puma/puma/pull/1850 "PR by @nateberkopec, merged 2019-07-27"
1806
+ [#1866]:https://github.com/puma/puma/pull/1866 "PR by @josacar, merged 2019-07-28"
1807
+ [#1870]:https://github.com/puma/puma/pull/1870 "PR by @MSP-Greg, merged 2019-07-30"
1808
+ [#1872]:https://github.com/puma/puma/pull/1872 "PR by @MSP-Greg, merged 2019-07-30"
1809
+ [#1833]:https://github.com/puma/puma/issues/1833 "Issue by @julik, closed 2019-07-09"
1810
+ [#1888]:https://github.com/puma/puma/pull/1888 "PR by @ClikeX, merged 2019-08-06"
1811
+ [#1842]:https://github.com/puma/puma/issues/1842 "Issue by @nateberkopec, closed 2019-09-18"
1812
+ [#1829]:https://github.com/puma/puma/pull/1829 "PR by @Fudoshiki, merged 2019-07-09"
1813
+ [#1832]:https://github.com/puma/puma/pull/1832 "PR by @MSP-Greg, merged 2019-07-08"
1814
+ [#1827]:https://github.com/puma/puma/pull/1827 "PR by @amrrbakry, merged 2019-06-27"
1815
+ [#1562]:https://github.com/puma/puma/pull/1562 "PR by @skrobul, merged 2019-02-20"
1816
+ [#1569]:https://github.com/puma/puma/pull/1569 "PR by @rianmcguire, merged 2019-02-20"
1817
+ [#1648]:https://github.com/puma/puma/pull/1648 "PR by @wjordan, merged 2019-02-20"
1818
+ [#1691]:https://github.com/puma/puma/pull/1691 "PR by @kares, merged 2019-02-20"
1819
+ [#1716]:https://github.com/puma/puma/pull/1716 "PR by @mdkent, merged 2019-02-20"
1820
+ [#1690]:https://github.com/puma/puma/pull/1690 "PR by @mic-kul, merged 2019-03-11"
1821
+ [#1689]:https://github.com/puma/puma/pull/1689 "PR by @michaelherold, merged 2019-03-11"
1822
+ [#1728]:https://github.com/puma/puma/pull/1728 "PR by @evanphx, merged 2019-03-20"
1823
+ [#1824]:https://github.com/puma/puma/pull/1824 "PR by @spk, merged 2019-06-24"
1824
+ [#1685]:https://github.com/puma/puma/pull/1685 "PR by @mainameiz, merged 2019-02-20"
1825
+ [#1808]:https://github.com/puma/puma/pull/1808 "PR by @schneems, merged 2019-06-10"
1826
+ [#1508]:https://github.com/puma/puma/pull/1508 "PR by @florin555, merged 2019-02-20"
1827
+ [#1650]:https://github.com/puma/puma/pull/1650 "PR by @adam101, merged 2019-02-20"
1828
+ [#1655]:https://github.com/puma/puma/pull/1655 "PR by @mipearson, merged 2019-02-20"
1829
+ [#1671]:https://github.com/puma/puma/pull/1671 "PR by @eric-norcross, merged 2019-02-20"
1830
+ [#1583]:https://github.com/puma/puma/pull/1583 "PR by @chwevans, merged 2019-02-20"
1831
+ [#1773]:https://github.com/puma/puma/pull/1773 "PR by @enebo, merged 2019-04-14"
1832
+ [#1731]:https://github.com/puma/puma/issues/1731 "Issue by @Fudoshiki, closed 2019-03-20"
1833
+ [#1803]:https://github.com/puma/puma/pull/1803 "PR by @Jesus, merged 2019-05-28"
1834
+ [#1741]:https://github.com/puma/puma/pull/1741 "PR by @MSP-Greg, merged 2019-03-19"
1835
+ [#1674]:https://github.com/puma/puma/issues/1674 "Issue by @atitan, closed 2019-06-12"
1836
+ [#1720]:https://github.com/puma/puma/issues/1720 "Issue by @voxik, closed 2019-03-20"
1837
+ [#1730]:https://github.com/puma/puma/issues/1730 "Issue by @nearapogee, closed 2019-07-16"
1838
+ [#1755]:https://github.com/puma/puma/issues/1755 "Issue by @vbalazs, closed 2019-07-26"
1839
+ [#1649]:https://github.com/puma/puma/pull/1649 "PR by @schneems, merged 2018-10-17"
1840
+ [#1607]:https://github.com/puma/puma/pull/1607 "PR by @harmdewit, merged 2018-08-15"
1841
+ [#1700]:https://github.com/puma/puma/pull/1700 "PR by @schneems, merged 2019-01-05"
1842
+ [#1630]:https://github.com/puma/puma/pull/1630 "PR by @eregon, merged 2018-09-11"
1843
+ [#1478]:https://github.com/puma/puma/pull/1478 "PR by @eallison91, merged 2018-05-09"
1844
+ [#1604]:https://github.com/puma/puma/pull/1604 "PR by @schneems, merged 2018-07-02"
1845
+ [#1579]:https://github.com/puma/puma/pull/1579 "PR by @schneems, merged 2018-06-14"
1846
+ [#1506]:https://github.com/puma/puma/pull/1506 "PR by @dekellum, merged 2018-05-09"
1847
+ [#1487]:https://github.com/puma/puma/pull/1487 "PR by @jxa, merged 2018-05-09"
1848
+ [#1563]:https://github.com/puma/puma/pull/1563 "PR by @dannyfallon, merged 2018-05-01"
1849
+ [#1557]:https://github.com/puma/puma/pull/1557 "PR by @swrobel, merged 2018-05-09"
1850
+ [#1529]:https://github.com/puma/puma/pull/1529 "PR by @desnudopenguino, merged 2018-03-20"
1851
+ [#1532]:https://github.com/puma/puma/pull/1532 "PR by @schneems, merged 2018-03-21"
1852
+ [#1482]:https://github.com/puma/puma/pull/1482 "PR by @shayonj, merged 2018-03-19"
1853
+ [#1511]:https://github.com/puma/puma/pull/1511 "PR by @jemiam, merged 2018-03-19"
1854
+ [#1545]:https://github.com/puma/puma/pull/1545 "PR by @hoshinotsuyoshi, merged 2018-03-28"
1855
+ [#1550]:https://github.com/puma/puma/pull/1550 "PR by @eileencodes, merged 2018-03-29"
1856
+ [#1553]:https://github.com/puma/puma/pull/1553 "PR by @eugeneius, merged 2018-04-02"
1857
+ [#1510]:https://github.com/puma/puma/issues/1510 "Issue by @vincentwoo, closed 2018-03-06"
1858
+ [#1524]:https://github.com/puma/puma/pull/1524 "PR by @tuwukee, closed 2018-03-06"
1859
+ [#1507]:https://github.com/puma/puma/issues/1507 "Issue by @vincentwoo, closed 2018-03-19"
1860
+ [#1483]:https://github.com/puma/puma/issues/1483 "Issue by @igravious, closed 2018-03-06"
1861
+ [#1502]:https://github.com/puma/puma/issues/1502 "Issue by @vincentwoo, closed 2020-03-09"
1862
+ [#1403]:https://github.com/puma/puma/pull/1403 "PR by @eileencodes, merged 2017-10-04"
1863
+ [#1435]:https://github.com/puma/puma/pull/1435 "PR by @juliancheal, merged 2017-10-11"
1864
+ [#1340]:https://github.com/puma/puma/pull/1340 "PR by @ViliusLuneckas, merged 2017-10-16"
1865
+ [#1434]:https://github.com/puma/puma/pull/1434 "PR by @jumbosushi, merged 2017-10-10"
1866
+ [#1436]:https://github.com/puma/puma/pull/1436 "PR by @luislavena, merged 2017-10-11"
1867
+ [#1418]:https://github.com/puma/puma/pull/1418 "PR by @eileencodes, merged 2017-09-22"
1868
+ [#1416]:https://github.com/puma/puma/pull/1416 "PR by @hiimtaylorjones, merged 2017-09-22"
1869
+ [#1409]:https://github.com/puma/puma/pull/1409 "PR by @olleolleolle, merged 2017-09-13"
1870
+ [#1427]:https://github.com/puma/puma/issues/1427 "Issue by @garybernhardt, closed 2017-10-04"
1871
+ [#1430]:https://github.com/puma/puma/pull/1430 "PR by @MSP-Greg, merged 2017-10-09"
1872
+ [#1429]:https://github.com/puma/puma/pull/1429 "PR by @perlun, merged 2017-10-09"
1873
+ [#1455]:https://github.com/puma/puma/pull/1455 "PR by @perlun, merged 2017-11-16"
1874
+ [#1425]:https://github.com/puma/puma/pull/1425 "PR by @vizcay, merged 2017-10-01"
1875
+ [#1452]:https://github.com/puma/puma/pull/1452 "PR by @eprothro, merged 2017-11-16"
1876
+ [#1439]:https://github.com/puma/puma/pull/1439 "PR by @MSP-Greg, merged 2017-10-16"
1877
+ [#1442]:https://github.com/puma/puma/pull/1442 "PR by @MSP-Greg, merged 2017-10-19"
1878
+ [#1464]:https://github.com/puma/puma/pull/1464 "PR by @MSP-Greg, merged 2017-11-20"
1879
+ [#1384]:https://github.com/puma/puma/pull/1384 "PR by @noahgibbs, merged 2017-08-03"
1880
+ [#1111]:https://github.com/puma/puma/pull/1111 "PR by @alexlance, merged 2017-06-04"
1881
+ [#1392]:https://github.com/puma/puma/pull/1392 "PR by @hoffm, merged 2017-08-11"
1882
+ [#1347]:https://github.com/puma/puma/pull/1347 "PR by @NikolayRys, merged 2017-06-28"
1883
+ [#1334]:https://github.com/puma/puma/pull/1334 "PR by @respire, merged 2017-06-13"
1884
+ [#1383]:https://github.com/puma/puma/pull/1383 "PR by @schneems, merged 2017-08-02"
1885
+ [#1368]:https://github.com/puma/puma/pull/1368 "PR by @bongole, merged 2017-08-03"
1886
+ [#1318]:https://github.com/puma/puma/pull/1318 "PR by @nateberkopec, merged 2017-08-03"
1887
+ [#1376]:https://github.com/puma/puma/pull/1376 "PR by @pat, merged 2017-08-03"
1888
+ [#1388]:https://github.com/puma/puma/pull/1388 "PR by @nateberkopec, merged 2017-08-08"
1889
+ [#1390]:https://github.com/puma/puma/pull/1390 "PR by @junaruga, merged 2017-08-16"
1890
+ [#1391]:https://github.com/puma/puma/pull/1391 "PR by @junaruga, merged 2017-08-16"
1891
+ [#1385]:https://github.com/puma/puma/pull/1385 "PR by @grosser, merged 2017-08-16"
1892
+ [#1377]:https://github.com/puma/puma/pull/1377 "PR by @shayonj, merged 2017-08-16"
1893
+ [#1337]:https://github.com/puma/puma/pull/1337 "PR by @shayonj, merged 2017-08-16"
1894
+ [#1325]:https://github.com/puma/puma/pull/1325 "PR by @palkan, merged 2017-06-04"
1895
+ [#1395]:https://github.com/puma/puma/pull/1395 "PR by @junaruga, merged 2017-08-16"
1896
+ [#1367]:https://github.com/puma/puma/issues/1367 "Issue by @dekellum, closed 2017-08-17"
1897
+ [#1314]:https://github.com/puma/puma/pull/1314 "PR by @grosser, merged 2017-06-02"
1898
+ [#1311]:https://github.com/puma/puma/pull/1311 "PR by @grosser, merged 2017-06-02"
1899
+ [#1313]:https://github.com/puma/puma/pull/1313 "PR by @grosser, merged 2017-06-03"
1900
+ [#1260]:https://github.com/puma/puma/pull/1260 "PR by @grosser, merged 2017-04-11"
1901
+ [#1278]:https://github.com/puma/puma/pull/1278 "PR by @evanphx, merged 2017-04-28"
1902
+ [#1306]:https://github.com/puma/puma/pull/1306 "PR by @jules2689, merged 2017-05-31"
1903
+ [#1274]:https://github.com/puma/puma/pull/1274 "PR by @evanphx, merged 2017-05-01"
1904
+ [#1261]:https://github.com/puma/puma/pull/1261 "PR by @jacksonrayhamilton, merged 2017-04-07"
1905
+ [#1259]:https://github.com/puma/puma/pull/1259 "PR by @jacksonrayhamilton, merged 2017-04-07"
1906
+ [#1248]:https://github.com/puma/puma/pull/1248 "PR by @davidarnold, merged 2017-04-18"
1907
+ [#1277]:https://github.com/puma/puma/pull/1277 "PR by @schneems, merged 2017-05-01"
1908
+ [#1290]:https://github.com/puma/puma/pull/1290 "PR by @schneems, merged 2017-05-12"
1909
+ [#1285]:https://github.com/puma/puma/pull/1285 "PR by @fmauNeko, merged 2017-05-12"
1910
+ [#1282]:https://github.com/puma/puma/pull/1282 "PR by @grosser, merged 2017-05-09"
1911
+ [#1294]:https://github.com/puma/puma/pull/1294 "PR by @masry707, merged 2017-05-15"
1912
+ [#1206]:https://github.com/puma/puma/pull/1206 "PR by @NikolayRys, closed 2017-06-27"
1913
+ [#1241]:https://github.com/puma/puma/issues/1241 "Issue by @renchap, closed 2017-03-14"
1914
+ [#1239]:https://github.com/puma/puma/pull/1239 "PR by @schneems, merged 2017-03-10"
1915
+ [#1234]:https://github.com/puma/puma/pull/1234 "PR by @schneems, merged 2017-03-09"
1916
+ [#1226]:https://github.com/puma/puma/pull/1226 "PR by @eileencodes, merged 2017-03-09"
1917
+ [#1227]:https://github.com/puma/puma/pull/1227 "PR by @sirupsen, merged 2017-02-27"
1918
+ [#1213]:https://github.com/puma/puma/pull/1213 "PR by @junaruga, merged 2017-02-28"
1919
+ [#1182]:https://github.com/puma/puma/issues/1182 "Issue by @brunowego, closed 2017-02-09"
1920
+ [#1203]:https://github.com/puma/puma/pull/1203 "PR by @twalpole, merged 2017-02-09"
1921
+ [#1129]:https://github.com/puma/puma/pull/1129 "PR by @chtitux, merged 2016-12-12"
1922
+ [#1165]:https://github.com/puma/puma/pull/1165 "PR by @sriedel, merged 2016-12-21"
1923
+ [#1175]:https://github.com/puma/puma/pull/1175 "PR by @jemiam, merged 2016-12-21"
1924
+ [#1068]:https://github.com/puma/puma/pull/1068 "PR by @junaruga, merged 2016-09-05"
1925
+ [#1091]:https://github.com/puma/puma/pull/1091 "PR by @frodsan, merged 2016-09-17"
1926
+ [#1088]:https://github.com/puma/puma/pull/1088 "PR by @frodsan, merged 2016-11-20"
1927
+ [#1160]:https://github.com/puma/puma/pull/1160 "PR by @frodsan, merged 2016-11-24"
1928
+ [#1169]:https://github.com/puma/puma/pull/1169 "PR by @scbrubaker02, merged 2016-12-12"
1929
+ [#1061]:https://github.com/puma/puma/pull/1061 "PR by @michaelsauter, merged 2016-09-05"
1930
+ [#1036]:https://github.com/puma/puma/issues/1036 "Issue by @matobinder, closed 2016-08-03"
1931
+ [#1120]:https://github.com/puma/puma/pull/1120 "PR by @prathamesh-sonpatki, merged 2016-11-21"
1932
+ [#1178]:https://github.com/puma/puma/pull/1178 "PR by @Koronen, merged 2016-12-21"
1933
+ [#1002]:https://github.com/puma/puma/issues/1002 "Issue by @mattyb, closed 2016-07-26"
1934
+ [#1063]:https://github.com/puma/puma/issues/1063 "Issue by @mperham, closed 2016-09-05"
1935
+ [#1089]:https://github.com/puma/puma/issues/1089 "Issue by @AdamBialas, closed 2016-09-17"
1936
+ [#1114]:https://github.com/puma/puma/pull/1114 "PR by @sj26, merged 2016-12-13"
1937
+ [#1110]:https://github.com/puma/puma/pull/1110 "PR by @montdidier, merged 2016-12-12"
1938
+ [#1135]:https://github.com/puma/puma/pull/1135 "PR by @jkraemer, merged 2016-11-19"
1939
+ [#1081]:https://github.com/puma/puma/pull/1081 "PR by @frodsan, merged 2016-09-08"
1940
+ [#1138]:https://github.com/puma/puma/pull/1138 "PR by @steakknife, merged 2016-12-13"
1941
+ [#1118]:https://github.com/puma/puma/pull/1118 "PR by @hiroara, merged 2016-11-20"
1942
+ [#1075]:https://github.com/puma/puma/issues/1075 "Issue by @pvalena, closed 2016-09-06"
1943
+ [#1118]:https://github.com/puma/puma/pull/1118 "PR by @hiroara, merged 2016-11-20"
1944
+ [#1036]:https://github.com/puma/puma/issues/1036 "Issue by @matobinder, closed 2016-08-03"
1945
+ [#1120]:https://github.com/puma/puma/pull/1120 "PR by @prathamesh-sonpatki, merged 2016-11-21"
1946
+ [#1002]:https://github.com/puma/puma/issues/1002 "Issue by @mattyb, closed 2016-07-26"
1947
+ [#1089]:https://github.com/puma/puma/issues/1089 "Issue by @AdamBialas, closed 2016-09-17"
1948
+ [#932]:https://github.com/puma/puma/issues/932 "Issue by @everplays, closed 2016-07-24"
1949
+ [#519]:https://github.com/puma/puma/issues/519 "Issue by @tmornini, closed 2016-07-25"
1950
+ [#828]:https://github.com/puma/puma/issues/828 "Issue by @Zapotek, closed 2016-07-24"
1951
+ [#984]:https://github.com/puma/puma/issues/984 "Issue by @erichmenge, closed 2016-07-24"
1952
+ [#1028]:https://github.com/puma/puma/issues/1028 "Issue by @matobinder, closed 2016-07-24"
1953
+ [#1023]:https://github.com/puma/puma/issues/1023 "Issue by @fera2k, closed 2016-07-24"
1954
+ [#1027]:https://github.com/puma/puma/issues/1027 "Issue by @rosenfeld, closed 2016-07-24"
1955
+ [#925]:https://github.com/puma/puma/issues/925 "Issue by @lokenmakwana, closed 2016-07-24"
1956
+ [#911]:https://github.com/puma/puma/issues/911 "Issue by @veganstraightedge, closed 2016-07-24"
1957
+ [#620]:https://github.com/puma/puma/issues/620 "Issue by @javanthropus, closed 2016-07-25"
1958
+ [#1027]:https://github.com/puma/puma/issues/1027 "Issue by @rosenfeld, closed 2016-07-24"
1959
+ [#778]:https://github.com/puma/puma/issues/778 "Issue by @niedhui, closed 2016-07-24"
1960
+ [#1021]:https://github.com/puma/puma/pull/1021 "PR by @sarahzrf, merged 2016-07-20"
1961
+ [#1022]:https://github.com/puma/puma/issues/1022 "Issue by @AKovtunov, closed 2017-08-16"
1962
+ [#958]:https://github.com/puma/puma/issues/958 "Issue by @lalitlogical, closed 2016-04-23"
1963
+ [#782]:https://github.com/puma/puma/issues/782 "Issue by @Tonkpils, closed 2016-07-19"
1964
+ [#1010]:https://github.com/puma/puma/issues/1010 "Issue by @mneumark, closed 2016-07-19"
1965
+ [#959]:https://github.com/puma/puma/issues/959 "Issue by @mwpastore, closed 2016-04-22"
1966
+ [#840]:https://github.com/puma/puma/issues/840 "Issue by @maxkwallace, closed 2016-04-07"
1967
+ [#1007]:https://github.com/puma/puma/pull/1007 "PR by @willnet, merged 2016-06-24"
1968
+ [#1014]:https://github.com/puma/puma/pull/1014 "PR by @szymon-jez, merged 2016-07-11"
1969
+ [#1015]:https://github.com/puma/puma/pull/1015 "PR by @bf4, merged 2016-07-19"
1970
+ [#1017]:https://github.com/puma/puma/pull/1017 "PR by @jorihardman, merged 2016-07-19"
1971
+ [#954]:https://github.com/puma/puma/pull/954 "PR by @jf, merged 2016-04-12"
1972
+ [#955]:https://github.com/puma/puma/pull/955 "PR by @jf, merged 2016-04-22"
1973
+ [#956]:https://github.com/puma/puma/pull/956 "PR by @maxkwallace, merged 2016-04-12"
1974
+ [#960]:https://github.com/puma/puma/pull/960 "PR by @kmayer, merged 2016-04-15"
1975
+ [#969]:https://github.com/puma/puma/pull/969 "PR by @frankwong15, merged 2016-05-10"
1976
+ [#970]:https://github.com/puma/puma/pull/970 "PR by @willnet, merged 2016-04-26"
1977
+ [#974]:https://github.com/puma/puma/pull/974 "PR by @reidmorrison, merged 2016-05-10"
1978
+ [#977]:https://github.com/puma/puma/pull/977 "PR by @snow, merged 2016-05-10"
1979
+ [#981]:https://github.com/puma/puma/pull/981 "PR by @zach-chai, merged 2016-07-19"
1980
+ [#993]:https://github.com/puma/puma/pull/993 "PR by @scorix, merged 2016-07-19"
1981
+ [#938]:https://github.com/puma/puma/issues/938 "Issue by @vandrijevik, closed 2016-04-07"
1982
+ [#529]:https://github.com/puma/puma/issues/529 "Issue by @mperham, closed 2016-04-07"
1983
+ [#788]:https://github.com/puma/puma/issues/788 "Issue by @herregroen, closed 2016-04-07"
1984
+ [#894]:https://github.com/puma/puma/issues/894 "Issue by @rafbm, closed 2016-04-07"
1985
+ [#937]:https://github.com/puma/puma/issues/937 "Issue by @huangxiangdan, closed 2016-04-07"
1986
+ [#840]:https://github.com/puma/puma/issues/840 "Issue by @maxkwallace, closed 2016-04-07"
1987
+ [#945]:https://github.com/puma/puma/pull/945 "PR by @dekellum, merged 2016-04-07"
1988
+ [#946]:https://github.com/puma/puma/pull/946 "PR by @vipulnsward, merged 2016-04-07"
1989
+ [#947]:https://github.com/puma/puma/pull/947 "PR by @vipulnsward, merged 2016-04-07"
1990
+ [#936]:https://github.com/puma/puma/pull/936 "PR by @prathamesh-sonpatki, merged 2016-04-01"
1991
+ [#940]:https://github.com/puma/puma/pull/940 "PR by @kyledrake, merged 2016-04-01"
1992
+ [#942]:https://github.com/puma/puma/pull/942 "PR by @dekellum, merged 2016-04-01"
1993
+ [#927]:https://github.com/puma/puma/pull/927 "PR by @jlecour, merged 2016-03-18"
1994
+ [#931]:https://github.com/puma/puma/pull/931 "PR by @runlevel5, merged 2016-03-18"
1995
+ [#922]:https://github.com/puma/puma/issues/922 "Issue by @LavirtheWhiolet, closed 2016-03-07"
1996
+ [#923]:https://github.com/puma/puma/issues/923 "Issue by @donv, closed 2016-03-06"
1997
+ [#912]:https://github.com/puma/puma/pull/912 "PR by @tricknotes, merged 2016-03-06"
1998
+ [#921]:https://github.com/puma/puma/pull/921 "PR by @swrobel, merged 2016-03-06"
1999
+ [#924]:https://github.com/puma/puma/pull/924 "PR by @tbrisker, merged 2016-03-07"
2000
+ [#916]:https://github.com/puma/puma/issues/916 "Issue by @ma11hew28, closed 2016-03-06"
2001
+ [#913]:https://github.com/puma/puma/issues/913 "Issue by @Casara, closed 2016-03-06"
2002
+ [#918]:https://github.com/puma/puma/issues/918 "Issue by @rodrigdav, closed 2016-03-06"
2003
+ [#910]:https://github.com/puma/puma/issues/910 "Issue by @ball-hayden, closed 2016-03-05"
2004
+ [#914]:https://github.com/puma/puma/issues/914 "Issue by @osheroff, closed 2016-03-06"
2005
+ [#901]:https://github.com/puma/puma/pull/901 "PR by @mitto, merged 2016-02-26"
2006
+ [#902]:https://github.com/puma/puma/pull/902 "PR by @corrupt952, merged 2016-02-26"
2007
+ [#905]:https://github.com/puma/puma/pull/905 "PR by @Eric-Guo, merged 2016-02-26"
2008
+ [#852]:https://github.com/puma/puma/issues/852 "Issue by @asia653, closed 2016-02-25"
2009
+ [#854]:https://github.com/puma/puma/issues/854 "Issue by @ollym, closed 2016-02-25"
2010
+ [#824]:https://github.com/puma/puma/issues/824 "Issue by @MattWalston, closed 2016-02-25"
2011
+ [#823]:https://github.com/puma/puma/issues/823 "Issue by @pneuman, closed 2016-02-25"
2012
+ [#815]:https://github.com/puma/puma/issues/815 "Issue by @nate-dipiazza, closed 2016-02-25"
2013
+ [#835]:https://github.com/puma/puma/issues/835 "Issue by @mwpastore, closed 2016-02-25"
2014
+ [#798]:https://github.com/puma/puma/issues/798 "Issue by @schneems, closed 2016-02-25"
2015
+ [#876]:https://github.com/puma/puma/issues/876 "Issue by @osheroff, closed 2016-02-25"
2016
+ [#849]:https://github.com/puma/puma/issues/849 "Issue by @apotheon, closed 2016-02-25"
2017
+ [#871]:https://github.com/puma/puma/pull/871 "PR by @deepj, merged 2016-02-25"
2018
+ [#874]:https://github.com/puma/puma/pull/874 "PR by @wallclockbuilder, merged 2016-02-25"
2019
+ [#883]:https://github.com/puma/puma/pull/883 "PR by @dadah89, merged 2016-02-25"
2020
+ [#884]:https://github.com/puma/puma/pull/884 "PR by @furkanmustafa, merged 2016-02-25"
2021
+ [#888]:https://github.com/puma/puma/pull/888 "PR by @mlarraz, merged 2016-02-25"
2022
+ [#890]:https://github.com/puma/puma/pull/890 "PR by @todd, merged 2016-02-25"
2023
+ [#891]:https://github.com/puma/puma/pull/891 "PR by @ctaintor, merged 2016-02-25"
2024
+ [#893]:https://github.com/puma/puma/pull/893 "PR by @spastorino, merged 2016-02-25"
2025
+ [#897]:https://github.com/puma/puma/pull/897 "PR by @vanchi-zendesk, merged 2016-02-25"
2026
+ [#899]:https://github.com/puma/puma/pull/899 "PR by @kch, merged 2016-02-25"
2027
+ [#859]:https://github.com/puma/puma/issues/859 "Issue by @boxofrad, closed 2016-01-28"
2028
+ [#822]:https://github.com/puma/puma/pull/822 "PR by @kwugirl, merged 2016-01-28"
2029
+ [#833]:https://github.com/puma/puma/pull/833 "PR by @joemiller, merged 2016-01-28"
2030
+ [#837]:https://github.com/puma/puma/pull/837 "PR by @YurySolovyov, merged 2016-01-28"
2031
+ [#839]:https://github.com/puma/puma/pull/839 "PR by @ka8725, merged 2016-01-15"
2032
+ [#845]:https://github.com/puma/puma/pull/845 "PR by @deepj, merged 2016-01-28"
2033
+ [#846]:https://github.com/puma/puma/pull/846 "PR by @sriedel, merged 2016-01-15"
2034
+ [#850]:https://github.com/puma/puma/pull/850 "PR by @deepj, merged 2016-01-15"
2035
+ [#853]:https://github.com/puma/puma/pull/853 "PR by @Jeffrey6052, merged 2016-01-28"
2036
+ [#857]:https://github.com/puma/puma/pull/857 "PR by @osheroff, merged 2016-01-15"
2037
+ [#858]:https://github.com/puma/puma/pull/858 "PR by @mlarraz, merged 2016-01-28"
2038
+ [#860]:https://github.com/puma/puma/pull/860 "PR by @osheroff, merged 2016-01-15"
2039
+ [#861]:https://github.com/puma/puma/pull/861 "PR by @osheroff, merged 2016-01-15"
2040
+ [#818]:https://github.com/puma/puma/pull/818 "PR by @unleashed, merged 2015-11-06"
2041
+ [#819]:https://github.com/puma/puma/pull/819 "PR by @VictorLowther, merged 2015-11-06"
2042
+ [#563]:https://github.com/puma/puma/issues/563 "Issue by @deathbob, closed 2015-11-06"
2043
+ [#803]:https://github.com/puma/puma/issues/803 "Issue by @burningTyger, closed 2016-04-07"
2044
+ [#768]:https://github.com/puma/puma/pull/768 "PR by @nathansamson, merged 2015-11-06"
2045
+ [#773]:https://github.com/puma/puma/pull/773 "PR by @rossta, merged 2015-11-06"
2046
+ [#774]:https://github.com/puma/puma/pull/774 "PR by @snow, merged 2015-11-06"
2047
+ [#781]:https://github.com/puma/puma/pull/781 "PR by @sunsations, merged 2015-11-06"
2048
+ [#791]:https://github.com/puma/puma/pull/791 "PR by @unleashed, merged 2015-10-01"
2049
+ [#793]:https://github.com/puma/puma/pull/793 "PR by @robdimarco, merged 2015-11-06"
2050
+ [#794]:https://github.com/puma/puma/pull/794 "PR by @peterkeen, merged 2015-11-06"
2051
+ [#795]:https://github.com/puma/puma/pull/795 "PR by @unleashed, merged 2015-11-06"
2052
+ [#796]:https://github.com/puma/puma/pull/796 "PR by @cschneid, merged 2015-10-13"
2053
+ [#799]:https://github.com/puma/puma/pull/799 "PR by @annawinkler, merged 2015-11-06"
2054
+ [#800]:https://github.com/puma/puma/pull/800 "PR by @liamseanbrady, merged 2015-11-06"
2055
+ [#801]:https://github.com/puma/puma/pull/801 "PR by @scottjg, merged 2015-11-06"
2056
+ [#802]:https://github.com/puma/puma/pull/802 "PR by @scottjg, merged 2015-11-06"
2057
+ [#804]:https://github.com/puma/puma/pull/804 "PR by @burningTyger, merged 2015-11-06"
2058
+ [#809]:https://github.com/puma/puma/pull/809 "PR by @unleashed, merged 2015-11-06"
2059
+ [#810]:https://github.com/puma/puma/pull/810 "PR by @vlmonk, merged 2015-11-06"
2060
+ [#814]:https://github.com/puma/puma/pull/814 "PR by @schneems, merged 2015-11-04"
2061
+ [#817]:https://github.com/puma/puma/pull/817 "PR by @unleashed, merged 2015-11-06"
2062
+ [#735]:https://github.com/puma/puma/issues/735 "Issue by @trekr5, closed 2015-08-04"
2063
+ [#769]:https://github.com/puma/puma/issues/769 "Issue by @dovestyle, closed 2015-08-16"
2064
+ [#767]:https://github.com/puma/puma/issues/767 "Issue by @kapso, closed 2015-08-15"
2065
+ [#765]:https://github.com/puma/puma/issues/765 "Issue by @monfresh, closed 2015-08-15"
2066
+ [#764]:https://github.com/puma/puma/issues/764 "Issue by @keithpitt, closed 2015-08-15"
2067
+ [#669]:https://github.com/puma/puma/pull/669 "PR by @chulkilee, closed 2015-08-14"
2068
+ [#673]:https://github.com/puma/puma/pull/673 "PR by @chulkilee, closed 2015-08-14"
2069
+ [#668]:https://github.com/puma/puma/pull/668 "PR by @kcollignon, merged 2015-08-14"
2070
+ [#754]:https://github.com/puma/puma/pull/754 "PR by @nathansamson, merged 2015-08-14"
2071
+ [#759]:https://github.com/puma/puma/pull/759 "PR by @BenV, merged 2015-08-14"
2072
+ [#761]:https://github.com/puma/puma/pull/761 "PR by @dmarcotte, merged 2015-08-14"
2073
+ [#742]:https://github.com/puma/puma/pull/742 "PR by @deivid-rodriguez, merged 2015-07-17"
2074
+ [#743]:https://github.com/puma/puma/pull/743 "PR by @matthewd, merged 2015-07-18"
2075
+ [#749]:https://github.com/puma/puma/pull/749 "PR by @huacnlee, merged 2015-08-04"
2076
+ [#751]:https://github.com/puma/puma/pull/751 "PR by @costi, merged 2015-07-31"
2077
+ [#741]:https://github.com/puma/puma/issues/741 "Issue by @GUI, closed 2015-07-17"
2078
+ [#739]:https://github.com/puma/puma/issues/739 "Issue by @hab278, closed 2015-07-17"
2079
+ [#737]:https://github.com/puma/puma/issues/737 "Issue by @dmill, closed 2015-07-16"
2080
+ [#733]:https://github.com/puma/puma/issues/733 "Issue by @Eric-Guo, closed 2015-07-15"
2081
+ [#736]:https://github.com/puma/puma/pull/736 "PR by @paulanunda, merged 2015-07-15"
2082
+ [#722]:https://github.com/puma/puma/issues/722 "Issue by @mikeki, closed 2015-07-14"
2083
+ [#694]:https://github.com/puma/puma/issues/694 "Issue by @yld, closed 2015-06-10"
2084
+ [#705]:https://github.com/puma/puma/issues/705 "Issue by @TheTeaNerd, closed 2015-07-14"
2085
+ [#686]:https://github.com/puma/puma/pull/686 "PR by @jjb, merged 2015-06-10"
2086
+ [#693]:https://github.com/puma/puma/pull/693 "PR by @rob-murray, merged 2015-06-10"
2087
+ [#697]:https://github.com/puma/puma/pull/697 "PR by @spk, merged 2015-06-10"
2088
+ [#699]:https://github.com/puma/puma/pull/699 "PR by @deees, merged 2015-05-19"
2089
+ [#701]:https://github.com/puma/puma/pull/701 "PR by @deepj, merged 2015-05-19"
2090
+ [#702]:https://github.com/puma/puma/pull/702 "PR by @OleMchls, merged 2015-06-10"
2091
+ [#703]:https://github.com/puma/puma/pull/703 "PR by @deepj, merged 2015-06-10"
2092
+ [#704]:https://github.com/puma/puma/pull/704 "PR by @grega, merged 2015-06-10"
2093
+ [#709]:https://github.com/puma/puma/pull/709 "PR by @lian, merged 2015-06-10"
2094
+ [#711]:https://github.com/puma/puma/pull/711 "PR by @julik, merged 2015-06-10"
2095
+ [#712]:https://github.com/puma/puma/pull/712 "PR by @chewi, merged 2015-07-14"
2096
+ [#715]:https://github.com/puma/puma/pull/715 "PR by @0RaymondJiang0, merged 2015-07-14"
2097
+ [#725]:https://github.com/puma/puma/pull/725 "PR by @rwz, merged 2015-07-14"
2098
+ [#726]:https://github.com/puma/puma/pull/726 "PR by @jshafton, merged 2015-07-14"
2099
+ [#729]:https://github.com/puma/puma/pull/729 "PR by @allaire, merged 2015-07-14"
2100
+ [#730]:https://github.com/puma/puma/pull/730 "PR by @iamjarvo, merged 2015-07-14"
2101
+ [#690]:https://github.com/puma/puma/issues/690 "Issue by @bachue, closed 2015-04-21"
2102
+ [#684]:https://github.com/puma/puma/issues/684 "Issue by @tomquas, closed 2015-04-13"
2103
+ [#698]:https://github.com/puma/puma/pull/698 "PR by @dmarcotte, merged 2015-05-04"
2104
+ [#683]:https://github.com/puma/puma/issues/683 "Issue by @indirect, closed 2015-04-11"
2105
+ [#657]:https://github.com/puma/puma/pull/657 "PR by @schneems, merged 2015-02-19"
2106
+ [#658]:https://github.com/puma/puma/pull/658 "PR by @tomohiro, merged 2015-02-23"
2107
+ [#662]:https://github.com/puma/puma/pull/662 "PR by @iaintshine, merged 2015-03-06"
2108
+ [#664]:https://github.com/puma/puma/pull/664 "PR by @fxposter, merged 2015-03-09"
2109
+ [#667]:https://github.com/puma/puma/pull/667 "PR by @JuanitoFatas, merged 2015-03-12"
2110
+ [#672]:https://github.com/puma/puma/pull/672 "PR by @chulkilee, merged 2015-03-15"
2111
+ [#653]:https://github.com/puma/puma/issues/653 "Issue by @dvrensk, closed 2015-02-11"
2112
+ [#644]:https://github.com/puma/puma/pull/644 "PR by @bpaquet, merged 2015-01-29"
2113
+ [#646]:https://github.com/puma/puma/pull/646 "PR by @mkonecny, merged 2015-02-05"
2114
+ [#630]:https://github.com/puma/puma/issues/630 "Issue by @jelmd, closed 2015-01-20"
2115
+ [#622]:https://github.com/puma/puma/issues/622 "Issue by @sabamotto, closed 2015-01-20"
2116
+ [#583]:https://github.com/puma/puma/issues/583 "Issue by @emq, closed 2015-01-20"
2117
+ [#586]:https://github.com/puma/puma/issues/586 "Issue by @ponchik, closed 2015-01-20"
2118
+ [#359]:https://github.com/puma/puma/issues/359 "Issue by @natew, closed 2014-12-13"
2119
+ [#633]:https://github.com/puma/puma/issues/633 "Issue by @joevandyk, closed 2015-01-20"
2120
+ [#478]:https://github.com/puma/puma/pull/478 "PR by @rubencaro, merged 2015-01-20"
2121
+ [#610]:https://github.com/puma/puma/pull/610 "PR by @kwilczynski, merged 2014-11-27"
2122
+ [#611]:https://github.com/puma/puma/pull/611 "PR by @jasonl, merged 2015-01-20"
2123
+ [#616]:https://github.com/puma/puma/pull/616 "PR by @jc00ke, merged 2014-12-10"
2124
+ [#623]:https://github.com/puma/puma/pull/623 "PR by @raldred, merged 2015-01-20"
2125
+ [#628]:https://github.com/puma/puma/pull/628 "PR by @rdpoor, merged 2015-01-20"
2126
+ [#634]:https://github.com/puma/puma/pull/634 "PR by @deepj, merged 2015-01-20"
2127
+ [#637]:https://github.com/puma/puma/pull/637 "PR by @raskhadafi, merged 2015-01-20"
2128
+ [#639]:https://github.com/puma/puma/pull/639 "PR by @ebeigarts, merged 2015-01-20"
2129
+ [#640]:https://github.com/puma/puma/pull/640 "PR by @bailsman, merged 2015-01-20"
2130
+ [#591]:https://github.com/puma/puma/issues/591 "Issue by @renier, closed 2014-11-24"
2131
+ [#606]:https://github.com/puma/puma/issues/606 "Issue by @, closed 2014-11-24"
2132
+ [#560]:https://github.com/puma/puma/pull/560 "PR by @raskhadafi, merged 2014-11-24"
2133
+ [#566]:https://github.com/puma/puma/pull/566 "PR by @sheltond, merged 2014-11-24"
2134
+ [#593]:https://github.com/puma/puma/pull/593 "PR by @andruby, merged 2014-10-30"
2135
+ [#594]:https://github.com/puma/puma/pull/594 "PR by @hassox, merged 2014-10-31"
2136
+ [#596]:https://github.com/puma/puma/pull/596 "PR by @burningTyger, merged 2014-11-01"
2137
+ [#601]:https://github.com/puma/puma/pull/601 "PR by @sorentwo, merged 2014-11-24"
2138
+ [#602]:https://github.com/puma/puma/pull/602 "PR by @1334, merged 2014-11-24"
2139
+ [#608]:https://github.com/puma/puma/pull/608 "PR by @Gu1, merged 2014-11-24"
2140
+ [#538]:https://github.com/puma/puma/pull/538 "PR by @memiux, merged 2014-11-24"
2141
+ [#550]:https://github.com/puma/puma/issues/550 "Issue by @, closed 2014-10-30"
2142
+ [#549]:https://github.com/puma/puma/pull/549 "PR by @bsnape, merged 2014-10-16"
2143
+ [#553]:https://github.com/puma/puma/pull/553 "PR by @lowjoel, merged 2014-10-16"
2144
+ [#568]:https://github.com/puma/puma/pull/568 "PR by @mariuz, merged 2014-10-16"
2145
+ [#578]:https://github.com/puma/puma/pull/578 "PR by @danielbuechele, merged 2014-10-16"
2146
+ [#581]:https://github.com/puma/puma/pull/581 "PR by @alexch, merged 2014-10-16"
2147
+ [#590]:https://github.com/puma/puma/pull/590 "PR by @dmarcotte, merged 2014-10-16"
2148
+ [#574]:https://github.com/puma/puma/issues/574 "Issue by @minasmart, closed 2014-09-05"
2149
+ [#561]:https://github.com/puma/puma/pull/561 "PR by @krasnoukhov, merged 2014-08-04"
2150
+ [#570]:https://github.com/puma/puma/pull/570 "PR by @havenwood, merged 2014-08-20"
2151
+ [#520]:https://github.com/puma/puma/pull/520 "PR by @misfo, merged 2014-06-16"
2152
+ [#530]:https://github.com/puma/puma/pull/530 "PR by @dmarcotte, merged 2014-06-16"
2153
+ [#537]:https://github.com/puma/puma/pull/537 "PR by @vlmonk, merged 2014-06-16"
2154
+ [#540]:https://github.com/puma/puma/pull/540 "PR by @allaire, merged 2014-05-27"
2155
+ [#544]:https://github.com/puma/puma/pull/544 "PR by @chulkilee, merged 2014-06-03"
2156
+ [#551]:https://github.com/puma/puma/pull/551 "PR by @jcxplorer, merged 2014-07-02"
2157
+ [#487]:https://github.com/puma/puma/pull/487 "PR by @, merged 2014-03-06"
2158
+ [#492]:https://github.com/puma/puma/pull/492 "PR by @, merged 2014-03-06"
2159
+ [#493]:https://github.com/puma/puma/pull/493 "PR by @alepore, merged 2014-03-07"
2160
+ [#503]:https://github.com/puma/puma/pull/503 "PR by @mariuz, merged 2014-04-12"
2161
+ [#505]:https://github.com/puma/puma/pull/505 "PR by @sammcj, merged 2014-04-12"
2162
+ [#506]:https://github.com/puma/puma/pull/506 "PR by @dsander, merged 2014-04-12"
2163
+ [#510]:https://github.com/puma/puma/pull/510 "PR by @momer, merged 2014-04-12"
2164
+ [#511]:https://github.com/puma/puma/pull/511 "PR by @macool, merged 2014-04-12"
2165
+ [#514]:https://github.com/puma/puma/pull/514 "PR by @nanaya, merged 2014-04-12"
2166
+ [#517]:https://github.com/puma/puma/pull/517 "PR by @misfo, merged 2014-04-12"
2167
+ [#518]:https://github.com/puma/puma/pull/518 "PR by @alxgsv, merged 2014-04-12"
2168
+ [#471]:https://github.com/puma/puma/pull/471 "PR by @arthurnn, merged 2014-02-28"
2169
+ [#485]:https://github.com/puma/puma/pull/485 "PR by @runlevel5, merged 2014-03-01"
2170
+ [#486]:https://github.com/puma/puma/pull/486 "PR by @joshwlewis, merged 2014-03-02"
2171
+ [#490]:https://github.com/puma/puma/pull/490 "PR by @tobinibot, merged 2014-03-06"
2172
+ [#491]:https://github.com/puma/puma/pull/491 "PR by @brianknight10, merged 2014-03-06"
2173
+ [#438]:https://github.com/puma/puma/issues/438 "Issue by @mperham, closed 2014-01-25"
2174
+ [#333]:https://github.com/puma/puma/issues/333 "Issue by @SamSaffron, closed 2014-01-26"
2175
+ [#440]:https://github.com/puma/puma/issues/440 "Issue by @sudara, closed 2014-01-25"
2176
+ [#449]:https://github.com/puma/puma/issues/449 "Issue by @cezarsa, closed 2014-02-04"
2177
+ [#444]:https://github.com/puma/puma/issues/444 "Issue by @le0pard, closed 2014-01-25"
2178
+ [#370]:https://github.com/puma/puma/issues/370 "Issue by @pelcasandra, closed 2014-01-26"
2179
+ [#377]:https://github.com/puma/puma/issues/377 "Issue by @mrbrdo, closed 2014-01-26"
2180
+ [#406]:https://github.com/puma/puma/issues/406 "Issue by @simonrussell, closed 2014-01-25"
2181
+ [#425]:https://github.com/puma/puma/issues/425 "Issue by @jhass, closed 2014-01-26"
2182
+ [#432]:https://github.com/puma/puma/pull/432 "PR by @anatol, closed 2014-01-25"
2183
+ [#428]:https://github.com/puma/puma/pull/428 "PR by @alexeyfrank, merged 2014-01-25"
2184
+ [#429]:https://github.com/puma/puma/pull/429 "PR by @namusyaka, merged 2013-12-16"
2185
+ [#431]:https://github.com/puma/puma/pull/431 "PR by @mrb, merged 2014-01-25"
2186
+ [#433]:https://github.com/puma/puma/pull/433 "PR by @alepore, merged 2014-02-28"
2187
+ [#437]:https://github.com/puma/puma/pull/437 "PR by @ibrahima, merged 2014-01-25"
2188
+ [#446]:https://github.com/puma/puma/pull/446 "PR by @sudara, merged 2014-01-27"
2189
+ [#451]:https://github.com/puma/puma/pull/451 "PR by @pwiebe, merged 2014-02-04"
2190
+ [#453]:https://github.com/puma/puma/pull/453 "PR by @joevandyk, merged 2014-02-28"
2191
+ [#470]:https://github.com/puma/puma/pull/470 "PR by @arthurnn, merged 2014-02-28"
2192
+ [#472]:https://github.com/puma/puma/pull/472 "PR by @rubencaro, merged 2014-02-21"
2193
+ [#480]:https://github.com/puma/puma/pull/480 "PR by @jjb, merged 2014-02-26"
2194
+ [#481]:https://github.com/puma/puma/pull/481 "PR by @schneems, merged 2014-02-25"
2195
+ [#482]:https://github.com/puma/puma/pull/482 "PR by @prathamesh-sonpatki, merged 2014-02-26"
2196
+ [#483]:https://github.com/puma/puma/pull/483 "PR by @maxilev, merged 2014-02-26"
2197
+ [#422]:https://github.com/puma/puma/issues/422 "Issue by @alexandru-calinoiu, closed 2013-12-05"
2198
+ [#334]:https://github.com/puma/puma/issues/334 "Issue by @srgpqt, closed 2013-07-18"
2199
+ [#179]:https://github.com/puma/puma/issues/179 "Issue by @betelgeuse, closed 2013-07-18"
2200
+ [#332]:https://github.com/puma/puma/issues/332 "Issue by @SamSaffron, closed 2013-07-18"
2201
+ [#317]:https://github.com/puma/puma/issues/317 "Issue by @masterkain, closed 2013-07-11"
2202
+ [#309]:https://github.com/puma/puma/issues/309 "Issue by @masterkain, closed 2013-07-09"
2203
+ [#166]:https://github.com/puma/puma/issues/166 "Issue by @emassip, closed 2013-07-06"
2204
+ [#292]:https://github.com/puma/puma/issues/292 "Issue by @pulse00, closed 2013-07-06"
2205
+ [#274]:https://github.com/puma/puma/issues/274 "Issue by @mrbrdo, closed 2013-07-06"
2206
+ [#304]:https://github.com/puma/puma/issues/304 "Issue by @nandosola, closed 2013-07-06"
2207
+ [#287]:https://github.com/puma/puma/issues/287 "Issue by @runlevel5, closed 2013-07-06"
2208
+ [#256]:https://github.com/puma/puma/issues/256 "Issue by @rkh, closed 2013-07-01"
2209
+ [#285]:https://github.com/puma/puma/issues/285 "Issue by @mkwiatkowski, closed 2013-06-20"
2210
+ [#270]:https://github.com/puma/puma/issues/270 "Issue by @iamroody, closed 2013-06-01"
2211
+ [#246]:https://github.com/puma/puma/issues/246 "Issue by @amencarini, closed 2013-06-01"
2212
+ [#278]:https://github.com/puma/puma/issues/278 "Issue by @titanous, closed 2013-06-18"
2213
+ [#251]:https://github.com/puma/puma/issues/251 "Issue by @cure, closed 2013-06-18"
2214
+ [#252]:https://github.com/puma/puma/issues/252 "Issue by @vixns, closed 2013-06-01"
2215
+ [#234]:https://github.com/puma/puma/issues/234 "Issue by @jgarber, closed 2013-04-08"
2216
+ [#228]:https://github.com/puma/puma/issues/228 "Issue by @joelmats, closed 2013-04-29"
2217
+ [#192]:https://github.com/puma/puma/issues/192 "Issue by @steverandy, closed 2013-02-09"
2218
+ [#206]:https://github.com/puma/puma/issues/206 "Issue by @moll, closed 2013-03-19"
2219
+ [#154]:https://github.com/puma/puma/issues/154 "Issue by @trevor, closed 2013-03-19"
2220
+ [#208]:https://github.com/puma/puma/issues/208 "Issue by @ochronus, closed 2013-03-18"
2221
+ [#189]:https://github.com/puma/puma/issues/189 "Issue by @tolot27, closed 2013-02-09"
2222
+ [#185]:https://github.com/puma/puma/issues/185 "Issue by @nicolai86, closed 2013-02-06"
2223
+ [#182]:https://github.com/puma/puma/issues/182 "Issue by @sriedel, closed 2013-02-05"
2224
+ [#183]:https://github.com/puma/puma/issues/183 "Issue by @concept47, closed 2013-02-05"
2225
+ [#176]:https://github.com/puma/puma/issues/176 "Issue by @cryo28, closed 2013-02-05"
2226
+ [#180]:https://github.com/puma/puma/issues/180 "Issue by @tscolari, closed 2013-02-05"
2227
+ [#170]:https://github.com/puma/puma/issues/170 "Issue by @nixme, closed 2012-11-29"
2228
+ [#148]:https://github.com/puma/puma/issues/148 "Issue by @rafaelss, closed 2012-11-18"
2229
+ [#128]:https://github.com/puma/puma/issues/128 "Issue by @fbjork, closed 2012-10-20"
2230
+ [#155]:https://github.com/puma/puma/issues/155 "Issue by @ehlertij, closed 2012-10-13"
2231
+ [#123]:https://github.com/puma/puma/pull/123 "PR by @jcoene, closed 2012-07-19"
2232
+ [#111]:https://github.com/puma/puma/pull/111 "PR by @kenkeiter, closed 2012-07-19"
2233
+ [#98]:https://github.com/puma/puma/pull/98 "PR by @Flink, closed 2012-05-15"
2234
+ [#94]:https://github.com/puma/puma/issues/94 "Issue by @ender672, closed 2012-05-08"
2235
+ [#84]:https://github.com/puma/puma/issues/84 "Issue by @sigursoft, closed 2012-04-29"
2236
+ [#78]:https://github.com/puma/puma/issues/78 "Issue by @dstrelau, closed 2012-04-28"
2237
+ [#79]:https://github.com/puma/puma/issues/79 "Issue by @jammi, closed 2012-04-28"
2238
+ [#65]:https://github.com/puma/puma/issues/65 "Issue by @bporterfield, closed 2012-04-11"
2239
+ [#54]:https://github.com/puma/puma/issues/54 "Issue by @masterkain, closed 2012-04-10"
2240
+ [#58]:https://github.com/puma/puma/pull/58 "PR by @paneq, closed 2012-04-10"
2241
+ [#61]:https://github.com/puma/puma/issues/61 "Issue by @dustalov, closed 2012-04-10"
2242
+ [#63]:https://github.com/puma/puma/issues/63 "Issue by @seamusabshere, closed 2012-04-11"
2243
+ [#60]:https://github.com/puma/puma/issues/60 "Issue by @paneq, closed 2012-04-11"
2244
+ [#53]:https://github.com/puma/puma/pull/53 "PR by @sxua, closed 2012-04-11"