puma 5.0.0 → 5.1.0

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