puma 4.3.5 → 6.0.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of puma might be problematic. Click here for more details.

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