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