puma 3.12.1 → 5.6.7

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