jun-puma 1.0.0-java

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