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