tiny-fast-gem 0.0.1

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