puma 3.11.1 → 6.6.0

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