puma 5.0.2 → 5.2.0

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

Potentially problematic release.


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

Files changed (56) hide show
  1. checksums.yaml +4 -4
  2. data/History.md +667 -567
  3. data/README.md +51 -21
  4. data/bin/puma-wild +3 -9
  5. data/docs/compile_options.md +19 -0
  6. data/docs/deployment.md +6 -7
  7. data/docs/fork_worker.md +2 -0
  8. data/docs/jungle/README.md +0 -4
  9. data/docs/jungle/rc.d/puma +2 -2
  10. data/docs/kubernetes.md +66 -0
  11. data/docs/nginx.md +1 -1
  12. data/docs/plugins.md +1 -1
  13. data/docs/restart.md +46 -23
  14. data/docs/stats.md +142 -0
  15. data/docs/systemd.md +25 -3
  16. data/ext/puma_http11/ext_help.h +1 -1
  17. data/ext/puma_http11/extconf.rb +18 -5
  18. data/ext/puma_http11/http11_parser.c +45 -47
  19. data/ext/puma_http11/http11_parser.java.rl +1 -1
  20. data/ext/puma_http11/http11_parser.rl +1 -1
  21. data/ext/puma_http11/mini_ssl.c +199 -119
  22. data/ext/puma_http11/org/jruby/puma/Http11Parser.java +5 -7
  23. data/ext/puma_http11/puma_http11.c +25 -12
  24. data/lib/puma.rb +2 -2
  25. data/lib/puma/app/status.rb +44 -46
  26. data/lib/puma/binder.rb +69 -25
  27. data/lib/puma/cli.rb +4 -0
  28. data/lib/puma/client.rb +26 -79
  29. data/lib/puma/cluster.rb +37 -202
  30. data/lib/puma/cluster/worker.rb +176 -0
  31. data/lib/puma/cluster/worker_handle.rb +86 -0
  32. data/lib/puma/configuration.rb +21 -8
  33. data/lib/puma/const.rb +11 -3
  34. data/lib/puma/control_cli.rb +73 -70
  35. data/lib/puma/dsl.rb +100 -22
  36. data/lib/puma/error_logger.rb +10 -3
  37. data/lib/puma/events.rb +18 -3
  38. data/lib/puma/json.rb +96 -0
  39. data/lib/puma/launcher.rb +57 -15
  40. data/lib/puma/minissl.rb +47 -16
  41. data/lib/puma/minissl/context_builder.rb +6 -0
  42. data/lib/puma/null_io.rb +4 -0
  43. data/lib/puma/queue_close.rb +26 -0
  44. data/lib/puma/reactor.rb +85 -363
  45. data/lib/puma/request.rb +451 -0
  46. data/lib/puma/runner.rb +17 -23
  47. data/lib/puma/server.rb +164 -553
  48. data/lib/puma/single.rb +2 -2
  49. data/lib/puma/state_file.rb +5 -3
  50. data/lib/puma/systemd.rb +46 -0
  51. data/lib/puma/util.rb +11 -0
  52. metadata +15 -10
  53. data/docs/jungle/upstart/README.md +0 -61
  54. data/docs/jungle/upstart/puma-manager.conf +0 -31
  55. data/docs/jungle/upstart/puma.conf +0 -69
  56. data/lib/puma/accept_nonblock.rb +0 -29
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5288b12515ced761374a9789a16f4e0b66b6acdb94046d5d12b9999097224626
4
- data.tar.gz: 5507be3e76794c32f7cce1e72291ce1fbc93eee8fc4986fa8a99b0aac0b7efbf
3
+ metadata.gz: a4d9b1bd7562eeb74d7f1045f732667a6b9ab3c9b51fa602c1679017b79450d6
4
+ data.tar.gz: d287f603974f6aaf5e16610ae5528c086595a1b1dc026343b7155443c2c0f10a
5
5
  SHA512:
6
- metadata.gz: f0f04bf4b3b75cab397783d89ad46031c023d8b1f90e6297085d542cb3e77ef5c7dc3a278f73b13e0e7490b9a4dee15b95f9548a58e69e4a9a67f35cc332f56b
7
- data.tar.gz: b547445e6976b1cf58b221ac5810359e343ba0242b3ea58675b2f2be8367bba98c325c100f6a63766f6c02289f7763d6a93485484202895eed7f5e16c9a17753
6
+ metadata.gz: 6db9d8631ed272b1a405eec838414949314154f1e4d9cb95d825ec9a85ade7eaf66180771e89da58845089d824f34af53cd58c18b5bb85e12accb47184e1724c
7
+ data.tar.gz: 13c7da69b1dc0f25da9583baa0d235531ad67efe824f12decc9e6d65b3573bf193119d15f7800a5980cc1ca9d4e67cebb5ebf2d6d1abb4d95ca54e8ac653a327
data/History.md CHANGED
@@ -1,14 +1,81 @@
1
- ## Master
1
+ ## 5.2.0 / 2021-01-27
2
2
 
3
3
  * Features
4
- * Your feature goes here <Most recent on the top, like GitHub> (#Github Number)
4
+ * 10x latency improvement for MRI on ssl connections by reducing overhead ([#2519])
5
+ * Add option to specify the desired IO selector backend for libev ([#2522])
6
+ * Add ability to set OpenSSL verification flags (MRI only) ([#2490])
7
+ * Uses `flush` after writing messages to avoid mutating $stdout and $stderr using `sync=true` ([#2486])
5
8
 
6
9
  * Bugfixes
7
- * Your bugfix goes here <Most recent on the top, like GitHub> (#Github Number)
10
+ * MiniSSL - Update dhparam to 2048 bit for use with SSL_CTX_set_tmp_dh ([#2535])
11
+ * Change 'Goodbye!' message to be output after listeners are closed ([#2529])
12
+ * Fix ssl bind logging with 0.0.0.0 and localhost ([#2533])
13
+ * Fix compiler warnings, but skipped warnings related to ragel state machine generated code ([#1953])
14
+ * Fix phased restart errors related to nio4r gem when using the Puma control server ([#2516])
15
+ * Add `#string` method to `Puma::NullIO` ([#2520])
16
+ * Fix binding via Rack handler to IPv6 addresses ([#2521])
17
+
18
+ * Refactor
19
+ * Refactor MiniSSL::Context on MRI, fix MiniSSL::Socket#write ([#2519])
20
+ * Remove `Server#read_body` ([#2531])
21
+ * Fail build if compiling extensions raises warnings on GH Actions, configurable via `MAKE_WARNINGS_INTO_ERRORS` ([#1953])
22
+
23
+ ## 5.1.1 / 2020-12-10
24
+
25
+ * Bugfixes
26
+ * Fix over eager matching against banned header names ([#2510])
27
+
28
+ ## 5.1.0 / 2020-11-30
29
+
30
+ * Features
31
+ * Phased restart availability is now always logged, even if it is not available.
32
+ * Prints the loaded configuration if the environment variable `PUMA_LOG_CONFIG` is present ([#2472])
33
+ * Integrate with systemd's watchdog and notification features ([#2438])
34
+ * Adds max_fast_inline as a configuration option for the Server object ([#2406])
35
+ * You can now fork workers from worker 0 using SIGURG w/o fork_worker enabled [#2449]
36
+ * Add option to bind to systemd activated sockets ([#2362])
37
+ * Add compile option to change the `QUERY_STRING` max length ([#2485])
38
+
39
+ * Bugfixes
40
+ * Fix JRuby handling in Puma::DSL#ssl_bind ([#2489])
41
+ * control_cli.rb - all normal output should be to @stdout ([#2487])
42
+ * Catch 'Error in reactor loop escaped: mode not supported for this object: r' ([#2477])
43
+ * Ignore Rails' reaper thread (and any thread marked forksafe) for warning ([#2475])
44
+ * Ignore illegal (by Rack spec) response header ([#2439])
45
+ * Close idle connections immediately on shutdown ([#2460])
46
+ * Fix some instances of phased restart errors related to the `json` gem ([#2473])
47
+ * Remove use of `json` gem to fix phased restart errors ([#2479])
48
+ * Fix grouping regexp of ILLEGAL_HEADER_KEY_REGEX ([#2495])
49
+
50
+ ## 5.0.4 / 2020-10-27
51
+
52
+ * Bugfixes
53
+ * Pass preloaded application into new workers if available when using `preload_app` ([#2461], [#2454])
54
+
55
+ ## 5.0.3 / 2020-10-26
56
+
57
+ * Bugfixes
58
+ * Add Client#io_ok?, check before Reactor#register ([#2432])
59
+ * Fix hang on shutdown in refork ([#2442])
60
+ * Fix `Bundler::GemNotFound` errors for `nio4r` gem during phased restarts ([#2427], [#2018])
61
+ * Server run thread safety fix ([#2435])
62
+ * Fire `on_booted` after server starts ([#2431], [#2212])
63
+ * Cleanup daemonization in rc.d script ([#2409])
64
+
65
+ * Refactor
66
+ * Remove accept_nonblock.rb, add test_integration_ssl.rb ([#2448])
67
+ * Refactor status.rb - dry it up a bit ([#2450])
68
+ * Extract req/resp methods to new request.rb from server.rb ([#2419])
69
+ * Refactor Reactor and Client request buffering ([#2279])
70
+ * client.rb - remove JRuby specific 'finish' code ([#2412])
71
+ * Consolidate fast_write calls in Server, extract early_hints assembly ([#2405])
72
+ * Remove upstart from docs ([#2408])
73
+ * Extract worker process into separate class ([#2374])
74
+ * Consolidate option handling in Server, Server small refactors, doc changes ([#2389])
8
75
 
9
76
  ## 5.0.2 / 2020-09-28
10
77
 
11
- * Bugfixes
78
+ * Bugfixes
12
79
  * Reverted API changes to Server.
13
80
 
14
81
  ## 5.0.1 / 2020-09-28
@@ -47,13 +114,13 @@
47
114
  * min_threads now set by environment variables PUMA_MIN_THREADS and MIN_THREADS. ([#2143])
48
115
  * max_threads now set by environment variables PUMA_MAX_THREADS and MAX_THREADS. ([#2143])
49
116
  * max_threads default to 5 in MRI or 16 for all other interpreters. ([#2143])
50
- * preload by default if workers > 1 ([#2143])
117
+ * `preload_app!` is on by default if number of workers > 1 and set via `WEB_CONCURRENCY` ([#2143])
51
118
  * Puma::Plugin.workers_supported? has been removed. Use Puma.forkable? instead. ([#2143])
52
119
  * `tcp_mode` has been removed without replacement. ([#2169])
53
120
  * Daemonization has been removed without replacement. ([#2170])
54
121
  * Changed #connected_port to #connected_ports ([#2076])
55
122
  * Configuration: `environment` is read from `RAILS_ENV`, if `RACK_ENV` can't be found ([#2022])
56
- * Log binding on http:// for TCP bindings to make it clickable
123
+ * Log binding on http:// for TCP bindings to make it clickable ([#2300])
57
124
 
58
125
  * Bugfixes
59
126
  * Fix JSON loading issues on phased-restarts ([#2269])
@@ -99,6 +166,11 @@
99
166
  * Support parallel tests in verbose progress reporting ([#2223])
100
167
  * Refactor error handling in server accept loop ([#2239])
101
168
 
169
+ ## 4.3.7 / 2020-11-30
170
+
171
+ * Bugfixes
172
+ * Backport set CONTENT_LENGTH for chunked requests (Originally: [#2287], backport: [#2496])
173
+
102
174
  ## 4.3.6 / 2020-09-05
103
175
 
104
176
  * Bugfixes
@@ -1622,564 +1694,592 @@ be added back in a future date when a java Puma::MiniSSL is added.
1622
1694
  * Bugfixes
1623
1695
  * Your bugfix goes here <Most recent on the top, like GitHub> (#Github Number)
1624
1696
 
1625
- [#2384]:https://github.com/puma/puma/pull/2384 "2020-09-24 @schneems"
1626
- [#2381]:https://github.com/puma/puma/pull/2381 "2020-09-24 @joergschray"
1627
- [#2271]:https://github.com/puma/puma/pull/2271 "2020-05-17 @wjordan"
1628
- [#2377]:https://github.com/puma/puma/pull/2377 "2020-09-22 @cjlarose"
1629
- [#2376]:https://github.com/puma/puma/pull/2376 "2020-09-22 @alexeevit"
1630
- [#2372]:https://github.com/puma/puma/pull/2372 "2020-09-18 @ahorek"
1631
- [#2375]:https://github.com/puma/puma/pull/2375 "2020-09-20 @MSP-Greg"
1632
- [#2373]:https://github.com/puma/puma/pull/2373 "2020-09-19 @MSP-Greg"
1633
- [#2305]:https://github.com/puma/puma/pull/2305 "2020-07-06 @MSP-Greg"
1634
- [#2099]:https://github.com/puma/puma/pull/2099 "2020-01-04 @wjordan"
1635
- [#2079]:https://github.com/puma/puma/pull/2079 "2019-11-21 @ayufan"
1636
- [#2093]:https://github.com/puma/puma/pull/2093 "2019-12-18 @schneems"
1637
- [#2256]:https://github.com/puma/puma/pull/2256 "2020-05-11 @nateberkopec"
1638
- [#2054]:https://github.com/puma/puma/pull/2054 "2019-10-25 @composerinteralia"
1639
- [#2106]:https://github.com/puma/puma/pull/2106 "2020-01-25 @ylecuyer"
1640
- [#2167]:https://github.com/puma/puma/pull/2167 "2020-03-09 @ChrisBr"
1641
- [#2344]:https://github.com/puma/puma/pull/2344 "2020-08-23 @dentarg"
1642
- [#2203]:https://github.com/puma/puma/pull/2203 "2020-03-26 @zanker-stripe"
1643
- [#2220]:https://github.com/puma/puma/pull/2220 "2020-04-10 @wjordan"
1644
- [#2238]:https://github.com/puma/puma/pull/2238 "2020-04-27 @sthirugn"
1645
- [#2086]:https://github.com/puma/puma/pull/2086 "2019-12-09 @bdewater"
1646
- [#2253]:https://github.com/puma/puma/pull/2253 "2020-05-08 @schneems"
1647
- [#2288]:https://github.com/puma/puma/pull/2288 "2020-05-31 @FTLam11"
1648
- [#1487]:https://github.com/puma/puma/pull/1487 "2017-12-15 @jxa"
1649
- [#2143]:https://github.com/puma/puma/pull/2143 "2020-03-02 @jalevin"
1650
- [#2143]:https://github.com/puma/puma/pull/2143 "2020-03-02 @jalevin"
1651
- [#2143]:https://github.com/puma/puma/pull/2143 "2020-03-02 @jalevin"
1652
- [#2143]:https://github.com/puma/puma/pull/2143 "2020-03-02 @jalevin"
1653
- [#2143]:https://github.com/puma/puma/pull/2143 "2020-03-02 @jalevin"
1654
- [#2169]:https://github.com/puma/puma/pull/2169 "2020-03-10 @nateberkopec"
1655
- [#2170]:https://github.com/puma/puma/pull/2170 "2020-03-10 @nateberkopec"
1656
- [#2076]:https://github.com/puma/puma/pull/2076 "2019-11-19 @drews256"
1657
- [#2022]:https://github.com/puma/puma/pull/2022 "2019-10-10 @olleolleolle"
1658
- [#2269]:https://github.com/puma/puma/pull/2269 "2020-05-17 @MSP-Greg"
1659
- [#2312]:https://github.com/puma/puma/pull/2312 "2020-07-20 @MSP-Greg"
1660
- [#2338]:https://github.com/puma/puma/issues/2338 "2020-08-17 @micahhainlinestitchfix"
1661
- [#2116]:https://github.com/puma/puma/pull/2116 "2020-02-18 @MSP-Greg"
1662
- [#2074]:https://github.com/puma/puma/issues/2074 "2019-11-13 @jchristie55332"
1663
- [#2211]:https://github.com/puma/puma/pull/2211 "2020-03-29 @MSP-Greg"
1664
- [#2069]:https://github.com/puma/puma/pull/2069 "2019-11-08 @MSP-Greg"
1665
- [#2112]:https://github.com/puma/puma/pull/2112 "2020-02-08 @wjordan"
1666
- [#1893]:https://github.com/puma/puma/pull/1893 "2019-08-08 @seven1m"
1667
- [#2119]:https://github.com/puma/puma/pull/2119 "2020-02-20 @wjordan"
1668
- [#2121]:https://github.com/puma/puma/pull/2121 "2020-02-20 @wjordan"
1669
- [#2154]:https://github.com/puma/puma/pull/2154 "2020-03-07 @cjlarose"
1670
- [#1551]:https://github.com/puma/puma/issues/1551 "2018-03-29 @austinthecoder"
1671
- [#2198]:https://github.com/puma/puma/pull/2198 "2020-03-23 @eregon"
1672
- [#2216]:https://github.com/puma/puma/pull/2216 "2020-04-03 @praboud-stripe"
1673
- [#2122]:https://github.com/puma/puma/pull/2122 "2020-02-20 @wjordan"
1674
- [#2220]:https://github.com/puma/puma/pull/2220 "2020-04-10 @wjordan"
1675
- [#2177]:https://github.com/puma/puma/issues/2177 "2020-03-12 @GuiTeK"
1676
- [#2221]:https://github.com/puma/puma/pull/2221 "2020-04-10 @wjordan"
1677
- [#2233]:https://github.com/puma/puma/pull/2233 "2020-04-24 @ayufan"
1678
- [#2234]:https://github.com/puma/puma/pull/2234 "2020-04-24 @wjordan"
1679
- [#2225]:https://github.com/puma/puma/issues/2225 "2020-04-16 @nateberkopec"
1680
- [#2267]:https://github.com/puma/puma/pull/2267 "2020-05-15 @wjordan"
1681
- [#2287]:https://github.com/puma/puma/pull/2287 "2020-05-29 @eugeneius"
1682
- [#2317]:https://github.com/puma/puma/pull/2317 "2020-07-22 @MSP-Greg"
1683
- [#2312]:https://github.com/puma/puma/pull/2312 "2020-07-20 @MSP-Greg"
1684
- [#2319]:https://github.com/puma/puma/issues/2319 "2020-07-23 @AlexWayfer"
1685
- [#2326]:https://github.com/puma/puma/pull/2326 "2020-07-30 @rkistner"
1686
- [#2299]:https://github.com/puma/puma/issues/2299 "2020-06-26 @JohnPhillips31416"
1687
- [#2095]:https://github.com/puma/puma/pull/2095 "2019-12-24 @bdewater"
1688
- [#2102]:https://github.com/puma/puma/pull/2102 "2020-01-06 @bdewater"
1689
- [#2111]:https://github.com/puma/puma/pull/2111 "2020-02-07 @wjordan"
1690
- [#1980]:https://github.com/puma/puma/pull/1980 "2019-09-20 @nateberkopec"
1691
- [#2189]:https://github.com/puma/puma/pull/2189 "2020-03-18 @jkowens"
1692
- [#2220]:https://github.com/puma/puma/pull/2220 "2020-04-10 @wjordan"
1693
- [#2124]:https://github.com/puma/puma/pull/2124 "2020-02-21 @wjordan"
1694
- [#2223]:https://github.com/puma/puma/pull/2223 "2020-04-14 @wjordan"
1695
- [#2239]:https://github.com/puma/puma/pull/2239 "2020-04-27 @wjordan"
1696
- [#2304]:https://github.com/puma/puma/issues/2304 "2020-07-03 @mpeltomaa"
1697
- [#2269]:https://github.com/puma/puma/pull/2269 "2020-05-17 @MSP-Greg"
1698
- [#2132]:https://github.com/puma/puma/issues/2132 "2020-02-27 @bmclean"
1699
- [#2010]:https://github.com/puma/puma/pull/2010 "2019-10-04 @nateberkopec"
1700
- [#2012]:https://github.com/puma/puma/pull/2012 "2019-10-05 @headius"
1701
- [#2046]:https://github.com/puma/puma/pull/2046 "2019-10-20 @composerinteralia"
1702
- [#2052]:https://github.com/puma/puma/pull/2052 "2019-10-24 @composerinteralia"
1703
- [#1564]:https://github.com/puma/puma/issues/1564 "2018-04-18 @perlun"
1704
- [#2035]:https://github.com/puma/puma/pull/2035 "2019-10-15 @AndrewSpeed"
1705
- [#2048]:https://github.com/puma/puma/pull/2048 "2019-10-21 @hahmed"
1706
- [#2050]:https://github.com/puma/puma/pull/2050 "2019-10-23 @olleolleolle"
1707
- [#1842]:https://github.com/puma/puma/issues/1842 "2019-07-11 @nateberkopec"
1708
- [#1988]:https://github.com/puma/puma/issues/1988 "2019-09-24 @mcg"
1709
- [#1986]:https://github.com/puma/puma/issues/1986 "2019-09-24 @flaminestone"
1710
- [#1994]:https://github.com/puma/puma/issues/1994 "2019-09-26 @LimeBlast"
1711
- [#2006]:https://github.com/puma/puma/pull/2006 "2019-10-01 @nateberkopec"
1712
- [#1222]:https://github.com/puma/puma/issues/1222 "2017-02-20 @seanmckinley"
1713
- [#1885]:https://github.com/puma/puma/pull/1885 "2019-08-05 @spk"
1714
- [#1934]:https://github.com/puma/puma/pull/1934 "2019-08-27 @zarelit"
1715
- [#1105]:https://github.com/puma/puma/pull/1105 "2016-09-27 @daveallie"
1716
- [#1786]:https://github.com/puma/puma/pull/1786 "2019-04-25 @evanphx"
1717
- [#1320]:https://github.com/puma/puma/pull/1320 "2017-06-03 @nateberkopec"
1718
- [#1968]:https://github.com/puma/puma/pull/1968 "2019-09-15 @nateberkopec"
1719
- [#1908]:https://github.com/puma/puma/pull/1908 "2019-08-13 @MSP-Greg"
1720
- [#1952]:https://github.com/puma/puma/pull/1952 "2019-09-06 @MSP-Greg"
1721
- [#1941]:https://github.com/puma/puma/pull/1941 "2019-09-01 @MSP-Greg"
1722
- [#1961]:https://github.com/puma/puma/pull/1961 "2019-09-11 @nateberkopec"
1723
- [#1970]:https://github.com/puma/puma/pull/1970 "2019-09-15 @MSP-Greg"
1724
- [#1946]:https://github.com/puma/puma/pull/1946 "2019-09-02 @nateberkopec"
1725
- [#1941]:https://github.com/puma/puma/pull/1941 "2019-09-01 @MSP-Greg"
1726
- [#1908]:https://github.com/puma/puma/pull/1908 "2019-08-13 @MSP-Greg"
1727
- [#1831]:https://github.com/puma/puma/pull/1831 "2019-07-01 @spk"
1728
- [#1816]:https://github.com/puma/puma/pull/1816 "2019-06-10 @ylecuyer"
1729
- [#1844]:https://github.com/puma/puma/pull/1844 "2019-07-14 @ylecuyer"
1730
- [#1836]:https://github.com/puma/puma/pull/1836 "2019-07-09 @MSP-Greg"
1731
- [#1887]:https://github.com/puma/puma/pull/1887 "2019-08-06 @MSP-Greg"
1732
- [#1812]:https://github.com/puma/puma/pull/1812 "2019-06-08 @kou"
1733
- [#1491]:https://github.com/puma/puma/pull/1491 "2017-12-21 @olleolleolle"
1734
- [#1837]:https://github.com/puma/puma/pull/1837 "2019-07-10 @montanalow"
1735
- [#1857]:https://github.com/puma/puma/pull/1857 "2019-07-19 @Jesus"
1736
- [#1822]:https://github.com/puma/puma/pull/1822 "2019-06-18 @Jesus"
1737
- [#1863]:https://github.com/puma/puma/pull/1863 "2019-07-28 @dzunk"
1738
- [#1838]:https://github.com/puma/puma/pull/1838 "2019-07-10 @bogn83"
1739
- [#1882]:https://github.com/puma/puma/pull/1882 "2019-08-05 @okuramasafumi"
1740
- [#1848]:https://github.com/puma/puma/pull/1848 "2019-07-16 @nateberkopec"
1741
- [#1847]:https://github.com/puma/puma/pull/1847 "2019-07-16 @nateberkopec"
1742
- [#1846]:https://github.com/puma/puma/pull/1846 "2019-07-16 @nateberkopec"
1743
- [#1853]:https://github.com/puma/puma/pull/1853 "2019-07-18 @Jesus"
1744
- [#1850]:https://github.com/puma/puma/pull/1850 "2019-07-18 @nateberkopec"
1745
- [#1866]:https://github.com/puma/puma/pull/1866 "2019-07-28 @josacar"
1746
- [#1870]:https://github.com/puma/puma/pull/1870 "2019-07-29 @MSP-Greg"
1747
- [#1872]:https://github.com/puma/puma/pull/1872 "2019-07-29 @MSP-Greg"
1748
- [#1833]:https://github.com/puma/puma/issues/1833 "2019-07-02 @julik"
1749
- [#1888]:https://github.com/puma/puma/pull/1888 "2019-08-06 @ClikeX"
1750
- [#1842]:https://github.com/puma/puma/issues/1842 "2019-07-11 @nateberkopec"
1751
- [#1829]:https://github.com/puma/puma/pull/1829 "2019-07-01 @Fudoshiki"
1752
- [#1832]:https://github.com/puma/puma/pull/1832 "2019-07-01 @MSP-Greg"
1753
- [#1827]:https://github.com/puma/puma/pull/1827 "2019-06-27 @amrrbakry"
1754
- [#1562]:https://github.com/puma/puma/pull/1562 "2018-04-17 @skrobul"
1755
- [#1569]:https://github.com/puma/puma/pull/1569 "2018-04-24 @rianmcguire"
1756
- [#1648]:https://github.com/puma/puma/pull/1648 "2018-09-13 @wjordan"
1757
- [#1691]:https://github.com/puma/puma/pull/1691 "2018-12-20 @kares"
1758
- [#1716]:https://github.com/puma/puma/pull/1716 "2019-01-25 @mdkent"
1759
- [#1690]:https://github.com/puma/puma/pull/1690 "2018-12-19 @mic-kul"
1760
- [#1689]:https://github.com/puma/puma/pull/1689 "2018-12-19 @michaelherold"
1761
- [#1728]:https://github.com/puma/puma/pull/1728 "2019-02-20 @evanphx"
1762
- [#1824]:https://github.com/puma/puma/pull/1824 "2019-06-23 @spk"
1763
- [#1685]:https://github.com/puma/puma/pull/1685 "2018-12-08 @mainameiz"
1764
- [#1808]:https://github.com/puma/puma/pull/1808 "2019-05-30 @schneems"
1765
- [#1508]:https://github.com/puma/puma/pull/1508 "2018-01-24 @florin555"
1766
- [#1650]:https://github.com/puma/puma/pull/1650 "2018-09-18 @adam101"
1767
- [#1655]:https://github.com/puma/puma/pull/1655 "2018-09-24 @mipearson"
1768
- [#1671]:https://github.com/puma/puma/pull/1671 "2018-11-02 @eric-norcross"
1769
- [#1583]:https://github.com/puma/puma/pull/1583 "2018-05-23 @chwevans"
1770
- [#1773]:https://github.com/puma/puma/pull/1773 "2019-04-14 @enebo"
1771
- [#1731]:https://github.com/puma/puma/issues/1731 "2019-02-22 @Fudoshiki"
1772
- [#1803]:https://github.com/puma/puma/pull/1803 "2019-05-21 @Jesus"
1773
- [#1741]:https://github.com/puma/puma/pull/1741 "2019-03-12 @MSP-Greg"
1774
- [#1674]:https://github.com/puma/puma/issues/1674 "2018-11-08 @atitan"
1775
- [#1720]:https://github.com/puma/puma/issues/1720 "2019-01-31 @voxik"
1776
- [#1730]:https://github.com/puma/puma/issues/1730 "2019-02-20 @nearapogee"
1777
- [#1755]:https://github.com/puma/puma/issues/1755 "2019-03-27 @vbalazs"
1778
- [#1649]:https://github.com/puma/puma/pull/1649 "2018-09-17 @schneems"
1779
- [#1607]:https://github.com/puma/puma/pull/1607 "2018-07-05 @harmdewit"
1780
- [#1700]:https://github.com/puma/puma/pull/1700 "2019-01-04 @schneems"
1781
- [#1630]:https://github.com/puma/puma/pull/1630 "2018-08-09 @eregon"
1782
- [#1478]:https://github.com/puma/puma/pull/1478 "2017-12-01 @eallison91"
1783
- [#1604]:https://github.com/puma/puma/pull/1604 "2018-06-29 @schneems"
1784
- [#1579]:https://github.com/puma/puma/pull/1579 "2018-05-04 @schneems"
1785
- [#1506]:https://github.com/puma/puma/pull/1506 "2018-01-19 @dekellum"
1786
- [#1487]:https://github.com/puma/puma/pull/1487 "2017-12-15 @jxa"
1787
- [#1563]:https://github.com/puma/puma/pull/1563 "2018-04-17 @dannyfallon"
1788
- [#1557]:https://github.com/puma/puma/pull/1557 "2018-04-07 @swrobel"
1789
- [#1529]:https://github.com/puma/puma/pull/1529 "2018-03-11 @desnudopenguino"
1790
- [#1532]:https://github.com/puma/puma/pull/1532 "2018-03-12 @schneems"
1791
- [#1482]:https://github.com/puma/puma/pull/1482 "2017-12-07 @shayonj"
1792
- [#1511]:https://github.com/puma/puma/pull/1511 "2018-01-28 @jemiam"
1793
- [#1545]:https://github.com/puma/puma/pull/1545 "2018-03-21 @hoshinotsuyoshi"
1794
- [#1550]:https://github.com/puma/puma/pull/1550 "2018-03-28 @eileencodes"
1795
- [#1553]:https://github.com/puma/puma/pull/1553 "2018-03-31 @eugeneius"
1796
- [#1510]:https://github.com/puma/puma/issues/1510 "2018-01-26 @vincentwoo"
1797
- [#1524]:https://github.com/puma/puma/pull/1524 "2018-03-05 @tuwukee"
1798
- [#1507]:https://github.com/puma/puma/issues/1507 "2018-01-19 @vincentwoo"
1799
- [#1483]:https://github.com/puma/puma/issues/1483 "2017-12-07 @igravious"
1800
- [#1502]:https://github.com/puma/puma/issues/1502 "2018-01-10 @vincentwoo"
1801
- [#1403]:https://github.com/puma/puma/pull/1403 "2017-08-29 @eileencodes"
1802
- [#1435]:https://github.com/puma/puma/pull/1435 "2017-10-10 @juliancheal"
1803
- [#1340]:https://github.com/puma/puma/pull/1340 "2017-06-19 @ViliusLuneckas"
1804
- [#1434]:https://github.com/puma/puma/pull/1434 "2017-10-10 @jumbosushi"
1805
- [#1436]:https://github.com/puma/puma/pull/1436 "2017-10-10 @luislavena"
1806
- [#1418]:https://github.com/puma/puma/pull/1418 "2017-09-20 @eileencodes"
1807
- [#1416]:https://github.com/puma/puma/pull/1416 "2017-09-20 @hiimtaylorjones"
1808
- [#1409]:https://github.com/puma/puma/pull/1409 "2017-09-12 @olleolleolle"
1809
- [#1427]:https://github.com/puma/puma/issues/1427 "2017-10-04 @garybernhardt"
1810
- [#1430]:https://github.com/puma/puma/pull/1430 "2017-10-05 @MSP-Greg"
1811
- [#1429]:https://github.com/puma/puma/pull/1429 "2017-10-05 @perlun"
1812
- [#1455]:https://github.com/puma/puma/pull/1455 "2017-11-13 @perlun"
1813
- [#1425]:https://github.com/puma/puma/pull/1425 "2017-09-30 @vizcay"
1814
- [#1452]:https://github.com/puma/puma/pull/1452 "2017-11-10 @eprothro"
1815
- [#1439]:https://github.com/puma/puma/pull/1439 "2017-10-16 @MSP-Greg"
1816
- [#1442]:https://github.com/puma/puma/pull/1442 "2017-10-19 @MSP-Greg"
1817
- [#1464]:https://github.com/puma/puma/pull/1464 "2017-11-19 @MSP-Greg"
1818
- [#1384]:https://github.com/puma/puma/pull/1384 "2017-08-03 @noahgibbs"
1819
- [#1111]:https://github.com/puma/puma/pull/1111 "2016-10-12 @alexlance"
1820
- [#1392]:https://github.com/puma/puma/pull/1392 "2017-08-11 @hoffm"
1821
- [#1347]:https://github.com/puma/puma/pull/1347 "2017-06-27 @NikolayRys"
1822
- [#1334]:https://github.com/puma/puma/pull/1334 "2017-06-13 @respire"
1823
- [#1383]:https://github.com/puma/puma/pull/1383 "2017-08-02 @schneems"
1824
- [#1368]:https://github.com/puma/puma/pull/1368 "2017-07-14 @bongole"
1825
- [#1318]:https://github.com/puma/puma/pull/1318 "2017-06-03 @nateberkopec"
1826
- [#1376]:https://github.com/puma/puma/pull/1376 "2017-07-22 @pat"
1827
- [#1388]:https://github.com/puma/puma/pull/1388 "2017-08-08 @nateberkopec"
1828
- [#1390]:https://github.com/puma/puma/pull/1390 "2017-08-09 @junaruga"
1829
- [#1391]:https://github.com/puma/puma/pull/1391 "2017-08-09 @junaruga"
1830
- [#1385]:https://github.com/puma/puma/pull/1385 "2017-08-05 @grosser"
1831
- [#1377]:https://github.com/puma/puma/pull/1377 "2017-07-27 @shayonj"
1832
- [#1337]:https://github.com/puma/puma/pull/1337 "2017-06-19 @shayonj"
1833
- [#1325]:https://github.com/puma/puma/pull/1325 "2017-06-04 @palkan"
1834
- [#1395]:https://github.com/puma/puma/pull/1395 "2017-08-16 @junaruga"
1835
- [#1367]:https://github.com/puma/puma/issues/1367 "2017-07-12 @dekellum"
1836
- [#1314]:https://github.com/puma/puma/pull/1314 "2017-06-02 @grosser"
1837
- [#1311]:https://github.com/puma/puma/pull/1311 "2017-06-01 @grosser"
1838
- [#1313]:https://github.com/puma/puma/pull/1313 "2017-06-01 @grosser"
1839
- [#1260]:https://github.com/puma/puma/pull/1260 "2017-04-01 @grosser"
1840
- [#1278]:https://github.com/puma/puma/pull/1278 "2017-04-27 @evanphx"
1841
- [#1306]:https://github.com/puma/puma/pull/1306 "2017-05-30 @jules2689"
1842
- [#1274]:https://github.com/puma/puma/pull/1274 "2017-04-14 @evanphx"
1843
- [#1261]:https://github.com/puma/puma/pull/1261 "2017-04-01 @jacksonrayhamilton"
1844
- [#1259]:https://github.com/puma/puma/pull/1259 "2017-04-01 @jacksonrayhamilton"
1845
- [#1248]:https://github.com/puma/puma/pull/1248 "2017-03-20 @davidarnold"
1846
- [#1277]:https://github.com/puma/puma/pull/1277 "2017-04-27 @schneems"
1847
- [#1290]:https://github.com/puma/puma/pull/1290 "2017-05-12 @schneems"
1848
- [#1285]:https://github.com/puma/puma/pull/1285 "2017-05-05 @fmauNeko"
1849
- [#1282]:https://github.com/puma/puma/pull/1282 "2017-05-03 @grosser"
1850
- [#1294]:https://github.com/puma/puma/pull/1294 "2017-05-15 @masry707"
1851
- [#1206]:https://github.com/puma/puma/pull/1206 "2017-02-02 @NikolayRys"
1852
- [#1241]:https://github.com/puma/puma/issues/1241 "2017-03-12 @renchap"
1853
- [#1239]:https://github.com/puma/puma/pull/1239 "2017-03-10 @schneems"
1854
- [#1234]:https://github.com/puma/puma/pull/1234 "2017-03-06 @schneems"
1855
- [#1226]:https://github.com/puma/puma/pull/1226 "2017-02-23 @eileencodes"
1856
- [#1227]:https://github.com/puma/puma/pull/1227 "2017-02-25 @sirupsen"
1857
- [#1213]:https://github.com/puma/puma/pull/1213 "2017-02-16 @junaruga"
1858
- [#1182]:https://github.com/puma/puma/issues/1182 "2016-12-28 @brunowego"
1859
- [#1203]:https://github.com/puma/puma/pull/1203 "2017-01-31 @twalpole"
1860
- [#1129]:https://github.com/puma/puma/pull/1129 "2016-11-10 @chtitux"
1861
- [#1165]:https://github.com/puma/puma/pull/1165 "2016-11-28 @sriedel"
1862
- [#1175]:https://github.com/puma/puma/pull/1175 "2016-12-14 @jemiam"
1863
- [#1068]:https://github.com/puma/puma/pull/1068 "2016-09-01 @junaruga"
1864
- [#1091]:https://github.com/puma/puma/pull/1091 "2016-09-13 @frodsan"
1865
- [#1088]:https://github.com/puma/puma/pull/1088 "2016-09-10 @frodsan"
1866
- [#1160]:https://github.com/puma/puma/pull/1160 "2016-11-23 @frodsan"
1867
- [#1169]:https://github.com/puma/puma/pull/1169 "2016-12-04 @scbrubaker02"
1868
- [#1061]:https://github.com/puma/puma/pull/1061 "2016-08-29 @michaelsauter"
1869
- [#1036]:https://github.com/puma/puma/issues/1036 "2016-07-28 @matobinder"
1870
- [#1120]:https://github.com/puma/puma/pull/1120 "2016-10-23 @prathamesh-sonpatki"
1871
- [#1178]:https://github.com/puma/puma/pull/1178 "2016-12-16 @Koronen"
1872
- [#1002]:https://github.com/puma/puma/issues/1002 "2016-06-16 @mattyb"
1873
- [#1063]:https://github.com/puma/puma/issues/1063 "2016-08-31 @mperham"
1874
- [#1089]:https://github.com/puma/puma/issues/1089 "2016-09-13 @AdamBialas"
1875
- [#1114]:https://github.com/puma/puma/pull/1114 "2016-10-19 @sj26"
1876
- [#1110]:https://github.com/puma/puma/pull/1110 "2016-10-12 @montdidier"
1877
- [#1135]:https://github.com/puma/puma/pull/1135 "2016-11-18 @jkraemer"
1878
- [#1081]:https://github.com/puma/puma/pull/1081 "2016-09-07 @frodsan"
1879
- [#1138]:https://github.com/puma/puma/pull/1138 "2016-11-20 @steakknife"
1880
- [#1118]:https://github.com/puma/puma/pull/1118 "2016-10-21 @hiroara"
1881
- [#1075]:https://github.com/puma/puma/issues/1075 "2016-09-06 @pvalena"
1882
- [#1118]:https://github.com/puma/puma/pull/1118 "2016-10-21 @hiroara"
1883
- [#1036]:https://github.com/puma/puma/issues/1036 "2016-07-28 @matobinder"
1884
- [#1120]:https://github.com/puma/puma/pull/1120 "2016-10-23 @prathamesh-sonpatki"
1885
- [#1002]:https://github.com/puma/puma/issues/1002 "2016-06-16 @mattyb"
1886
- [#1089]:https://github.com/puma/puma/issues/1089 "2016-09-13 @AdamBialas"
1887
- [#932]:https://github.com/puma/puma/issues/932 "2016-03-20 @everplays"
1888
- [#519]:https://github.com/puma/puma/issues/519 "2014-04-14 @tmornini"
1889
- [#828]:https://github.com/puma/puma/issues/828 "2015-11-20 @Zapotek"
1890
- [#984]:https://github.com/puma/puma/issues/984 "2016-05-20 @erichmenge"
1891
- [#1028]:https://github.com/puma/puma/issues/1028 "2016-07-23 @matobinder"
1892
- [#1023]:https://github.com/puma/puma/issues/1023 "2016-07-20 @fera2k"
1893
- [#1027]:https://github.com/puma/puma/issues/1027 "2016-07-22 @rosenfeld"
1894
- [#925]:https://github.com/puma/puma/issues/925 "2016-03-07 @lokenmakwana"
1895
- [#911]:https://github.com/puma/puma/issues/911 "2016-02-28 @veganstraightedge"
1896
- [#620]:https://github.com/puma/puma/issues/620 "2014-12-11 @javanthropus"
1897
- [#1027]:https://github.com/puma/puma/issues/1027 "2016-07-22 @rosenfeld"
1898
- [#778]:https://github.com/puma/puma/issues/778 "2015-09-07 @niedhui"
1899
- [#1021]:https://github.com/puma/puma/pull/1021 "2016-07-19 @sarahzrf"
1900
- [#1022]:https://github.com/puma/puma/issues/1022 "2016-07-20 @AKovtunov"
1901
- [#958]:https://github.com/puma/puma/issues/958 "2016-04-13 @lalitlogical"
1902
- [#782]:https://github.com/puma/puma/issues/782 "2015-09-11 @Tonkpils"
1903
- [#968]:https://github.com/puma/puma/issues/968 "2016-04-23 @frankwong15"
1904
- [#968]:https://github.com/puma/puma/issues/968 "2016-04-23 @frankwong15"
1905
- [#1010]:https://github.com/puma/puma/issues/1010 "2016-06-30 @mneumark"
1906
- [#959]:https://github.com/puma/puma/issues/959 "2016-04-13 @mwpastore"
1907
- [#840]:https://github.com/puma/puma/issues/840 "2015-12-03 @maxkwallace"
1908
- [#1007]:https://github.com/puma/puma/pull/1007 "2016-06-24 @willnet"
1909
- [#1014]:https://github.com/puma/puma/pull/1014 "2016-07-11 @szymon-jez"
1910
- [#1015]:https://github.com/puma/puma/pull/1015 "2016-07-14 @bf4"
1911
- [#1017]:https://github.com/puma/puma/pull/1017 "2016-07-15 @jorihardman"
1912
- [#954]:https://github.com/puma/puma/pull/954 "2016-04-11 @jf"
1913
- [#955]:https://github.com/puma/puma/pull/955 "2016-04-11 @jf"
1914
- [#956]:https://github.com/puma/puma/pull/956 "2016-04-11 @maxkwallace"
1915
- [#960]:https://github.com/puma/puma/pull/960 "2016-04-13 @kmayer"
1916
- [#969]:https://github.com/puma/puma/pull/969 "2016-04-23 @frankwong15"
1917
- [#970]:https://github.com/puma/puma/pull/970 "2016-04-26 @willnet"
1918
- [#974]:https://github.com/puma/puma/pull/974 "2016-04-28 @reidmorrison"
1919
- [#977]:https://github.com/puma/puma/pull/977 "2016-05-03 @snow"
1920
- [#981]:https://github.com/puma/puma/pull/981 "2016-05-17 @zach-chai"
1921
- [#993]:https://github.com/puma/puma/pull/993 "2016-06-06 @scorix"
1922
- [#938]:https://github.com/puma/puma/issues/938 "2016-03-30 @vandrijevik"
1923
- [#529]:https://github.com/puma/puma/issues/529 "2014-05-04 @mperham"
1924
- [#788]:https://github.com/puma/puma/issues/788 "2015-09-21 @herregroen"
1925
- [#894]:https://github.com/puma/puma/issues/894 "2016-02-21 @rafbm"
1926
- [#937]:https://github.com/puma/puma/issues/937 "2016-03-29 @huangxiangdan"
1927
- [#840]:https://github.com/puma/puma/issues/840 "2015-12-03 @maxkwallace"
1928
- [#945]:https://github.com/puma/puma/pull/945 "2016-04-07 @dekellum"
1929
- [#946]:https://github.com/puma/puma/pull/946 "2016-04-07 @vipulnsward"
1930
- [#947]:https://github.com/puma/puma/pull/947 "2016-04-07 @vipulnsward"
1931
- [#936]:https://github.com/puma/puma/pull/936 "2016-03-26 @prathamesh-sonpatki"
1932
- [#940]:https://github.com/puma/puma/pull/940 "2016-03-30 @kyledrake"
1933
- [#942]:https://github.com/puma/puma/pull/942 "2016-04-01 @dekellum"
1934
- [#927]:https://github.com/puma/puma/pull/927 "2016-03-08 @jlecour"
1935
- [#931]:https://github.com/puma/puma/pull/931 "2016-03-17 @runlevel5"
1936
- [#922]:https://github.com/puma/puma/issues/922 "2016-03-05 @LavirtheWhiolet"
1937
- [#923]:https://github.com/puma/puma/issues/923 "2016-03-06 @donv"
1938
- [#912]:https://github.com/puma/puma/pull/912 "2016-02-29 @tricknotes"
1939
- [#921]:https://github.com/puma/puma/pull/921 "2016-03-04 @swrobel"
1940
- [#924]:https://github.com/puma/puma/pull/924 "2016-03-06 @tbrisker"
1941
- [#916]:https://github.com/puma/puma/issues/916 "2016-03-02 @ma11hew28"
1942
- [#913]:https://github.com/puma/puma/issues/913 "2016-03-01 @Casara"
1943
- [#918]:https://github.com/puma/puma/issues/918 "2016-03-02 @rodrigdav"
1944
- [#910]:https://github.com/puma/puma/issues/910 "2016-02-27 @ball-hayden"
1945
- [#914]:https://github.com/puma/puma/issues/914 "2016-03-01 @osheroff"
1946
- [#901]:https://github.com/puma/puma/pull/901 "2016-02-26 @mitto"
1947
- [#902]:https://github.com/puma/puma/pull/902 "2016-02-26 @corrupt952"
1948
- [#905]:https://github.com/puma/puma/pull/905 "2016-02-26 @Eric-Guo"
1949
- [#852]:https://github.com/puma/puma/issues/852 "2015-12-19 @asia653"
1950
- [#854]:https://github.com/puma/puma/issues/854 "2016-01-06 @ollym"
1951
- [#824]:https://github.com/puma/puma/issues/824 "2015-11-14 @MattWalston"
1952
- [#823]:https://github.com/puma/puma/issues/823 "2015-11-13 @pneuman"
1953
- [#815]:https://github.com/puma/puma/issues/815 "2015-11-04 @nate-dipiazza"
1954
- [#835]:https://github.com/puma/puma/issues/835 "2015-11-29 @mwpastore"
1955
- [#798]:https://github.com/puma/puma/issues/798 "2015-10-16 @schneems"
1956
- [#876]:https://github.com/puma/puma/issues/876 "2016-02-04 @osheroff"
1957
- [#849]:https://github.com/puma/puma/issues/849 "2015-12-15 @apotheon"
1958
- [#871]:https://github.com/puma/puma/pull/871 "2016-01-30 @deepj"
1959
- [#874]:https://github.com/puma/puma/pull/874 "2016-02-03 @wallclockbuilder"
1960
- [#883]:https://github.com/puma/puma/pull/883 "2016-02-08 @dadah89"
1961
- [#884]:https://github.com/puma/puma/pull/884 "2016-02-10 @furkanmustafa"
1962
- [#888]:https://github.com/puma/puma/pull/888 "2016-02-16 @mlarraz"
1963
- [#890]:https://github.com/puma/puma/pull/890 "2016-02-17 @todd"
1964
- [#891]:https://github.com/puma/puma/pull/891 "2016-02-18 @ctaintor"
1965
- [#893]:https://github.com/puma/puma/pull/893 "2016-02-21 @spastorino"
1966
- [#897]:https://github.com/puma/puma/pull/897 "2016-02-22 @vanchi-zendesk"
1967
- [#899]:https://github.com/puma/puma/pull/899 "2016-02-23 @kch"
1968
- [#859]:https://github.com/puma/puma/issues/859 "2016-01-15 @boxofrad"
1969
- [#822]:https://github.com/puma/puma/pull/822 "2015-11-10 @kwugirl"
1970
- [#833]:https://github.com/puma/puma/pull/833 "2015-11-29 @joemiller"
1971
- [#837]:https://github.com/puma/puma/pull/837 "2015-12-01 @YurySolovyov"
1972
- [#839]:https://github.com/puma/puma/pull/839 "2015-12-03 @ka8725"
1973
- [#845]:https://github.com/puma/puma/pull/845 "2015-12-09 @deepj"
1974
- [#846]:https://github.com/puma/puma/pull/846 "2015-12-10 @sriedel"
1975
- [#850]:https://github.com/puma/puma/pull/850 "2015-12-16 @deepj"
1976
- [#853]:https://github.com/puma/puma/pull/853 "2015-12-25 @Jeffrey6052"
1977
- [#857]:https://github.com/puma/puma/pull/857 "2016-01-15 @osheroff"
1978
- [#858]:https://github.com/puma/puma/pull/858 "2016-01-15 @mlarraz"
1979
- [#860]:https://github.com/puma/puma/pull/860 "2016-01-15 @osheroff"
1980
- [#861]:https://github.com/puma/puma/pull/861 "2016-01-15 @osheroff"
1981
- [#818]:https://github.com/puma/puma/pull/818 "2015-11-06 @unleashed"
1982
- [#819]:https://github.com/puma/puma/pull/819 "2015-11-06 @VictorLowther"
1983
- [#563]:https://github.com/puma/puma/issues/563 "2014-07-28 @deathbob"
1984
- [#803]:https://github.com/puma/puma/issues/803 "2015-10-20 @burningTyger"
1985
- [#768]:https://github.com/puma/puma/pull/768 "2015-08-15 @nathansamson"
1986
- [#773]:https://github.com/puma/puma/pull/773 "2015-08-25 @rossta"
1987
- [#774]:https://github.com/puma/puma/pull/774 "2015-08-29 @snow"
1988
- [#781]:https://github.com/puma/puma/pull/781 "2015-09-11 @sunsations"
1989
- [#791]:https://github.com/puma/puma/pull/791 "2015-10-01 @unleashed"
1990
- [#793]:https://github.com/puma/puma/pull/793 "2015-10-06 @robdimarco"
1991
- [#794]:https://github.com/puma/puma/pull/794 "2015-10-07 @peterkeen"
1992
- [#795]:https://github.com/puma/puma/pull/795 "2015-10-13 @unleashed"
1993
- [#796]:https://github.com/puma/puma/pull/796 "2015-10-13 @cschneid"
1994
- [#799]:https://github.com/puma/puma/pull/799 "2015-10-17 @annawinkler"
1995
- [#800]:https://github.com/puma/puma/pull/800 "2015-10-17 @liamseanbrady"
1996
- [#801]:https://github.com/puma/puma/pull/801 "2015-10-20 @scottjg"
1997
- [#802]:https://github.com/puma/puma/pull/802 "2015-10-20 @scottjg"
1998
- [#804]:https://github.com/puma/puma/pull/804 "2015-10-20 @burningTyger"
1999
- [#809]:https://github.com/puma/puma/pull/809 "2015-10-27 @unleashed"
2000
- [#810]:https://github.com/puma/puma/pull/810 "2015-10-28 @vlmonk"
2001
- [#814]:https://github.com/puma/puma/pull/814 "2015-11-03 @schneems"
2002
- [#817]:https://github.com/puma/puma/pull/817 "2015-11-06 @unleashed"
2003
- [#735]:https://github.com/puma/puma/issues/735 "2015-07-15 @trekr5"
2004
- [#769]:https://github.com/puma/puma/issues/769 "2015-08-16 @dovestyle"
2005
- [#767]:https://github.com/puma/puma/issues/767 "2015-08-15 @kapso"
2006
- [#765]:https://github.com/puma/puma/issues/765 "2015-08-15 @monfresh"
2007
- [#764]:https://github.com/puma/puma/issues/764 "2015-08-15 @keithpitt"
2008
- [#669]:https://github.com/puma/puma/pull/669 "2015-03-13 @chulkilee"
2009
- [#673]:https://github.com/puma/puma/pull/673 "2015-03-15 @chulkilee"
2010
- [#668]:https://github.com/puma/puma/pull/668 "2015-03-12 @kcollignon"
2011
- [#754]:https://github.com/puma/puma/pull/754 "2015-08-06 @nathansamson"
2012
- [#759]:https://github.com/puma/puma/pull/759 "2015-08-12 @BenV"
2013
- [#761]:https://github.com/puma/puma/pull/761 "2015-08-12 @dmarcotte"
2014
- [#742]:https://github.com/puma/puma/pull/742 "2015-07-17 @deivid-rodriguez"
2015
- [#743]:https://github.com/puma/puma/pull/743 "2015-07-17 @matthewd"
2016
- [#749]:https://github.com/puma/puma/pull/749 "2015-07-27 @huacnlee"
2017
- [#751]:https://github.com/puma/puma/pull/751 "2015-07-31 @costi"
2018
- [#741]:https://github.com/puma/puma/issues/741 "2015-07-17 @GUI"
2019
- [#739]:https://github.com/puma/puma/issues/739 "2015-07-16 @hab278"
2020
- [#737]:https://github.com/puma/puma/issues/737 "2015-07-15 @dmill"
2021
- [#733]:https://github.com/puma/puma/issues/733 "2015-07-15 @Eric-Guo"
2022
- [#736]:https://github.com/puma/puma/pull/736 "2015-07-15 @paulanunda"
2023
- [#722]:https://github.com/puma/puma/issues/722 "2015-06-28 @mikeki"
2024
- [#694]:https://github.com/puma/puma/issues/694 "2015-04-27 @yld"
2025
- [#705]:https://github.com/puma/puma/issues/705 "2015-05-28 @TheTeaNerd"
2026
- [#686]:https://github.com/puma/puma/pull/686 "2015-04-15 @jjb"
2027
- [#693]:https://github.com/puma/puma/pull/693 "2015-04-24 @rob-murray"
2028
- [#697]:https://github.com/puma/puma/pull/697 "2015-04-29 @spk"
2029
- [#699]:https://github.com/puma/puma/pull/699 "2015-05-05 @deees"
2030
- [#701]:https://github.com/puma/puma/pull/701 "2015-05-19 @deepj"
2031
- [#702]:https://github.com/puma/puma/pull/702 "2015-05-20 @OleMchls"
2032
- [#703]:https://github.com/puma/puma/pull/703 "2015-05-26 @deepj"
2033
- [#704]:https://github.com/puma/puma/pull/704 "2015-05-27 @grega"
2034
- [#709]:https://github.com/puma/puma/pull/709 "2015-06-06 @lian"
2035
- [#711]:https://github.com/puma/puma/pull/711 "2015-06-08 @julik"
2036
- [#712]:https://github.com/puma/puma/pull/712 "2015-06-11 @chewi"
2037
- [#715]:https://github.com/puma/puma/pull/715 "2015-06-20 @0RaymondJiang0"
2038
- [#725]:https://github.com/puma/puma/pull/725 "2015-07-01 @rwz"
2039
- [#726]:https://github.com/puma/puma/pull/726 "2015-07-02 @jshafton"
2040
- [#729]:https://github.com/puma/puma/pull/729 "2015-07-09 @allaire"
2041
- [#730]:https://github.com/puma/puma/pull/730 "2015-07-14 @iamjarvo"
2042
- [#690]:https://github.com/puma/puma/issues/690 "2015-04-20 @bachue"
2043
- [#684]:https://github.com/puma/puma/issues/684 "2015-04-12 @tomquas"
2044
- [#698]:https://github.com/puma/puma/pull/698 "2015-05-04 @dmarcotte"
2045
- [#683]:https://github.com/puma/puma/issues/683 "2015-04-11 @indirect"
2046
- [#657]:https://github.com/puma/puma/pull/657 "2015-02-16 @schneems"
2047
- [#658]:https://github.com/puma/puma/pull/658 "2015-02-23 @tomohiro"
2048
- [#662]:https://github.com/puma/puma/pull/662 "2015-03-06 @iaintshine"
2049
- [#664]:https://github.com/puma/puma/pull/664 "2015-03-07 @fxposter"
2050
- [#667]:https://github.com/puma/puma/pull/667 "2015-03-12 @JuanitoFatas"
2051
- [#672]:https://github.com/puma/puma/pull/672 "2015-03-15 @chulkilee"
2052
- [#653]:https://github.com/puma/puma/issues/653 "2015-02-10 @dvrensk"
2053
- [#644]:https://github.com/puma/puma/pull/644 "2015-01-29 @bpaquet"
2054
- [#646]:https://github.com/puma/puma/pull/646 "2015-02-01 @mkonecny"
2055
- [#630]:https://github.com/puma/puma/issues/630 "2014-12-26 @jelmd"
2056
- [#622]:https://github.com/puma/puma/issues/622 "2014-12-13 @sabamotto"
2057
- [#583]:https://github.com/puma/puma/issues/583 "2014-09-19 @emq"
2058
- [#586]:https://github.com/puma/puma/issues/586 "2014-09-27 @ponchik"
2059
- [#359]:https://github.com/puma/puma/issues/359 "2013-08-27 @natew"
2060
- [#633]:https://github.com/puma/puma/issues/633 "2014-12-31 @joevandyk"
2061
- [#478]:https://github.com/puma/puma/pull/478 "2014-02-25 @rubencaro"
2062
- [#610]:https://github.com/puma/puma/pull/610 "2014-11-27 @kwilczynski"
2063
- [#611]:https://github.com/puma/puma/pull/611 "2014-12-01 @jasonl"
2064
- [#616]:https://github.com/puma/puma/pull/616 "2014-12-10 @jc00ke"
2065
- [#623]:https://github.com/puma/puma/pull/623 "2014-12-14 @raldred"
2066
- [#628]:https://github.com/puma/puma/pull/628 "2014-12-20 @rdpoor"
2067
- [#634]:https://github.com/puma/puma/pull/634 "2015-01-06 @deepj"
2068
- [#637]:https://github.com/puma/puma/pull/637 "2015-01-13 @raskhadafi"
2069
- [#639]:https://github.com/puma/puma/pull/639 "2015-01-15 @ebeigarts"
2070
- [#640]:https://github.com/puma/puma/pull/640 "2015-01-20 @bailsman"
2071
- [#591]:https://github.com/puma/puma/issues/591 "2014-10-17 @renier"
2072
- [#606]:https://github.com/puma/puma/issues/606 "2014-11-21"
2073
- [#560]:https://github.com/puma/puma/pull/560 "2014-07-23 @raskhadafi"
2074
- [#566]:https://github.com/puma/puma/pull/566 "2014-08-01 @sheltond"
2075
- [#593]:https://github.com/puma/puma/pull/593 "2014-10-30 @andruby"
2076
- [#594]:https://github.com/puma/puma/pull/594 "2014-10-31 @hassox"
2077
- [#596]:https://github.com/puma/puma/pull/596 "2014-11-01 @burningTyger"
2078
- [#601]:https://github.com/puma/puma/pull/601 "2014-11-14 @sorentwo"
2079
- [#602]:https://github.com/puma/puma/pull/602 "2014-11-15 @1334"
2080
- [#608]:https://github.com/puma/puma/pull/608 "2014-11-24 @Gu1"
2081
- [#538]:https://github.com/puma/puma/pull/538 "2014-05-25 @memiux"
2082
- [#550]:https://github.com/puma/puma/issues/550 "2014-07-01"
2083
- [#549]:https://github.com/puma/puma/pull/549 "2014-07-01 @bsnape"
2084
- [#553]:https://github.com/puma/puma/pull/553 "2014-07-13 @lowjoel"
2085
- [#568]:https://github.com/puma/puma/pull/568 "2014-08-08 @mariuz"
2086
- [#578]:https://github.com/puma/puma/pull/578 "2014-09-11 @danielbuechele"
2087
- [#581]:https://github.com/puma/puma/pull/581 "2014-09-16 @alexch"
2088
- [#590]:https://github.com/puma/puma/pull/590 "2014-10-16 @dmarcotte"
2089
- [#574]:https://github.com/puma/puma/issues/574 "2014-09-03 @minasmart"
2090
- [#561]:https://github.com/puma/puma/pull/561 "2014-07-27 @krasnoukhov"
2091
- [#570]:https://github.com/puma/puma/pull/570 "2014-08-20 @havenwood"
2092
- [#520]:https://github.com/puma/puma/pull/520 "2014-04-14 @misfo"
2093
- [#530]:https://github.com/puma/puma/pull/530 "2014-05-05 @dmarcotte"
2094
- [#537]:https://github.com/puma/puma/pull/537 "2014-05-24 @vlmonk"
2095
- [#540]:https://github.com/puma/puma/pull/540 "2014-05-27 @allaire"
2096
- [#544]:https://github.com/puma/puma/pull/544 "2014-06-02 @chulkilee"
2097
- [#551]:https://github.com/puma/puma/pull/551 "2014-07-02 @jcxplorer"
2098
- [#487]:https://github.com/puma/puma/pull/487 "2014-03-01"
2099
- [#492]:https://github.com/puma/puma/pull/492 "2014-03-06"
2100
- [#493]:https://github.com/puma/puma/pull/493 "2014-03-07 @alepore"
2101
- [#503]:https://github.com/puma/puma/pull/503 "2014-03-17 @mariuz"
2102
- [#505]:https://github.com/puma/puma/pull/505 "2014-03-18 @sammcj"
2103
- [#506]:https://github.com/puma/puma/pull/506 "2014-03-26 @dsander"
2104
- [#510]:https://github.com/puma/puma/pull/510 "2014-03-28 @momer"
2105
- [#511]:https://github.com/puma/puma/pull/511 "2014-04-02 @macool"
2106
- [#514]:https://github.com/puma/puma/pull/514 "2014-04-08 @nanaya"
2107
- [#517]:https://github.com/puma/puma/pull/517 "2014-04-09 @misfo"
2108
- [#518]:https://github.com/puma/puma/pull/518 "2014-04-10 @alxgsv"
2109
- [#471]:https://github.com/puma/puma/pull/471 "2014-02-17 @arthurnn"
2110
- [#485]:https://github.com/puma/puma/pull/485 "2014-02-28 @runlevel5"
2111
- [#486]:https://github.com/puma/puma/pull/486 "2014-03-01 @joshwlewis"
2112
- [#490]:https://github.com/puma/puma/pull/490 "2014-03-05 @tobinibot"
2113
- [#491]:https://github.com/puma/puma/pull/491 "2014-03-05 @brianknight10"
2114
- [#438]:https://github.com/puma/puma/issues/438 "2014-01-17 @mperham"
2115
- [#333]:https://github.com/puma/puma/issues/333 "2013-07-18 @SamSaffron"
2116
- [#440]:https://github.com/puma/puma/issues/440 "2014-01-21 @sudara"
2117
- [#449]:https://github.com/puma/puma/issues/449 "2014-01-30 @cezarsa"
2118
- [#444]:https://github.com/puma/puma/issues/444 "2014-01-23 @le0pard"
2119
- [#370]:https://github.com/puma/puma/issues/370 "2013-09-12 @pelcasandra"
2120
- [#377]:https://github.com/puma/puma/issues/377 "2013-09-23 @mrbrdo"
2121
- [#406]:https://github.com/puma/puma/issues/406 "2013-11-06 @simonrussell"
2122
- [#425]:https://github.com/puma/puma/issues/425 "2013-12-06 @jhass"
2123
- [#432]:https://github.com/puma/puma/pull/432 "2013-12-21 @anatol"
2124
- [#428]:https://github.com/puma/puma/pull/428 "2013-12-10 @alexeyfrank"
2125
- [#429]:https://github.com/puma/puma/pull/429 "2013-12-14 @namusyaka"
2126
- [#431]:https://github.com/puma/puma/pull/431 "2013-12-20 @mrb"
2127
- [#433]:https://github.com/puma/puma/pull/433 "2013-12-22 @alepore"
2128
- [#437]:https://github.com/puma/puma/pull/437 "2014-01-06 @ibrahima"
2129
- [#446]:https://github.com/puma/puma/pull/446 "2014-01-27 @sudara"
2130
- [#451]:https://github.com/puma/puma/pull/451 "2014-01-30 @pwiebe"
2131
- [#453]:https://github.com/puma/puma/pull/453 "2014-02-04 @joevandyk"
2132
- [#470]:https://github.com/puma/puma/pull/470 "2014-02-17 @arthurnn"
2133
- [#472]:https://github.com/puma/puma/pull/472 "2014-02-21 @rubencaro"
2134
- [#480]:https://github.com/puma/puma/pull/480 "2014-02-25 @jjb"
2135
- [#481]:https://github.com/puma/puma/pull/481 "2014-02-25 @schneems"
2136
- [#482]:https://github.com/puma/puma/pull/482 "2014-02-25 @prathamesh-sonpatki"
2137
- [#483]:https://github.com/puma/puma/pull/483 "2014-02-26 @maxilev"
2138
- [#422]:https://github.com/puma/puma/issues/422 "2013-12-04 @alexandru-calinoiu"
2139
- [#334]:https://github.com/puma/puma/issues/334 "2013-07-18 @srgpqt"
2140
- [#179]:https://github.com/puma/puma/issues/179 "2012-12-30 @betelgeuse"
2141
- [#332]:https://github.com/puma/puma/issues/332 "2013-07-18 @SamSaffron"
2142
- [#317]:https://github.com/puma/puma/issues/317 "2013-07-11 @masterkain"
2143
- [#309]:https://github.com/puma/puma/issues/309 "2013-07-07 @masterkain"
2144
- [#166]:https://github.com/puma/puma/issues/166 "2012-11-21 @emassip"
2145
- [#292]:https://github.com/puma/puma/issues/292 "2013-06-26 @pulse00"
2146
- [#274]:https://github.com/puma/puma/issues/274 "2013-06-07 @mrbrdo"
2147
- [#304]:https://github.com/puma/puma/issues/304 "2013-07-05 @nandosola"
2148
- [#287]:https://github.com/puma/puma/issues/287 "2013-06-23 @runlevel5"
2149
- [#256]:https://github.com/puma/puma/issues/256 "2013-05-13 @rkh"
2150
- [#285]:https://github.com/puma/puma/issues/285 "2013-06-19 @mkwiatkowski"
2151
- [#270]:https://github.com/puma/puma/issues/270 "2013-06-01 @iamroody"
2152
- [#246]:https://github.com/puma/puma/issues/246 "2013-05-01 @amencarini"
2153
- [#278]:https://github.com/puma/puma/issues/278 "2013-06-13 @titanous"
2154
- [#251]:https://github.com/puma/puma/issues/251 "2013-05-06 @cure"
2155
- [#252]:https://github.com/puma/puma/issues/252 "2013-05-08 @vixns"
2156
- [#234]:https://github.com/puma/puma/issues/234 "2013-04-08 @jgarber"
2157
- [#228]:https://github.com/puma/puma/issues/228 "2013-03-28 @joelmats"
2158
- [#192]:https://github.com/puma/puma/issues/192 "2013-02-09 @steverandy"
2159
- [#206]:https://github.com/puma/puma/issues/206 "2013-03-01 @moll"
2160
- [#154]:https://github.com/puma/puma/issues/154 "2012-10-09 @trevor"
2161
- [#208]:https://github.com/puma/puma/issues/208 "2013-03-03 @ochronus"
2162
- [#189]:https://github.com/puma/puma/issues/189 "2013-02-08 @tolot27"
2163
- [#185]:https://github.com/puma/puma/issues/185 "2013-02-06 @nicolai86"
2164
- [#182]:https://github.com/puma/puma/issues/182 "2013-01-17 @sriedel"
2165
- [#183]:https://github.com/puma/puma/issues/183 "2013-01-21 @concept47"
2166
- [#176]:https://github.com/puma/puma/issues/176 "2012-12-18 @cryo28"
2167
- [#180]:https://github.com/puma/puma/issues/180 "2013-01-04 @tscolari"
2168
- [#170]:https://github.com/puma/puma/issues/170 "2012-11-28 @nixme"
2169
- [#148]:https://github.com/puma/puma/issues/148 "2012-09-12 @rafaelss"
2170
- [#128]:https://github.com/puma/puma/issues/128 "2012-07-31 @fbjork"
2171
- [#155]:https://github.com/puma/puma/issues/155 "2012-10-12 @ehlertij"
2172
- [#123]:https://github.com/puma/puma/pull/123 "2012-07-19 @jcoene"
2173
- [#111]:https://github.com/puma/puma/pull/111 "2012-06-28 @kenkeiter"
2174
- [#98]:https://github.com/puma/puma/pull/98 "2012-05-15 @Flink"
2175
- [#94]:https://github.com/puma/puma/issues/94 "2012-05-08 @ender672"
2176
- [#84]:https://github.com/puma/puma/issues/84 "2012-04-29 @sigursoft"
2177
- [#78]:https://github.com/puma/puma/issues/78 "2012-04-27 @dstrelau"
2178
- [#79]:https://github.com/puma/puma/issues/79 "2012-04-28 @jammi"
2179
- [#65]:https://github.com/puma/puma/issues/65 "2012-04-11 @bporterfield"
2180
- [#54]:https://github.com/puma/puma/issues/54 "2012-03-31 @masterkain"
2181
- [#58]:https://github.com/puma/puma/pull/58 "2012-04-07 @paneq"
2182
- [#61]:https://github.com/puma/puma/issues/61 "2012-04-09 @dustalov"
2183
- [#63]:https://github.com/puma/puma/issues/63 "2012-04-11 @seamusabshere"
2184
- [#60]:https://github.com/puma/puma/issues/60 "2012-04-08 @paneq"
2185
- [#53]:https://github.com/puma/puma/pull/53 "2012-03-31 @sxua"
1697
+ [#2519]:https://github.com/puma/puma/pull/2519 "PR by @MSP-Greg, merged 2021-01-26"
1698
+ [#2522]:https://github.com/puma/puma/pull/2522 "PR by @jcmfernandes, merged 2021-01-12"
1699
+ [#2490]:https://github.com/puma/puma/pull/2490 "PR by @Bonias, merged 2020-12-07"
1700
+ [#2486]:https://github.com/puma/puma/pull/2486 "PR by @ccverak, merged 2020-12-02"
1701
+ [#2535]:https://github.com/puma/puma/pull/2535 "PR by @MSP-Greg, merged 2021-01-27"
1702
+ [#2529]:https://github.com/puma/puma/pull/2529 "PR by @MSP-Greg, merged 2021-01-24"
1703
+ [#2533]:https://github.com/puma/puma/pull/2533 "PR by @MSP-Greg, merged 2021-01-24"
1704
+ [#1953]:https://github.com/puma/puma/issues/1953 "Issue by @nateberkopec, closed 2020-12-01"
1705
+ [#2516]:https://github.com/puma/puma/pull/2516 "PR by @cjlarose, merged 2020-12-17"
1706
+ [#2520]:https://github.com/puma/puma/pull/2520 "PR by @dentarg, merged 2021-01-04"
1707
+ [#2521]:https://github.com/puma/puma/pull/2521 "PR by @ojab, merged 2021-01-04"
1708
+ [#2531]:https://github.com/puma/puma/pull/2531 "PR by @wjordan, merged 2021-01-19"
1709
+ [#2510]:https://github.com/puma/puma/pull/2510 "PR by @micke, merged 2020-12-10"
1710
+ [#2472]:https://github.com/puma/puma/pull/2472 "PR by @ccverak, merged 2020-11-02"
1711
+ [#2438]:https://github.com/puma/puma/pull/2438 "PR by @ekohl, merged 2020-10-26"
1712
+ [#2406]:https://github.com/puma/puma/pull/2406 "PR by @fdel15, merged 2020-10-19"
1713
+ [#2449]:https://github.com/puma/puma/pull/2449 "PR by @MSP-Greg, merged 2020-10-28"
1714
+ [#2362]:https://github.com/puma/puma/pull/2362 "PR by @ekohl, merged 2020-11-10"
1715
+ [#2485]:https://github.com/puma/puma/pull/2485 "PR by @elct9620, merged 2020-11-18"
1716
+ [#2489]:https://github.com/puma/puma/pull/2489 "PR by @MSP-Greg, merged 2020-11-27"
1717
+ [#2487]:https://github.com/puma/puma/pull/2487 "PR by @MSP-Greg, merged 2020-11-17"
1718
+ [#2477]:https://github.com/puma/puma/pull/2477 "PR by @MSP-Greg, merged 2020-11-16"
1719
+ [#2475]:https://github.com/puma/puma/pull/2475 "PR by @nateberkopec, merged 2020-11-02"
1720
+ [#2439]:https://github.com/puma/puma/pull/2439 "PR by @kuei0221, merged 2020-10-26"
1721
+ [#2460]:https://github.com/puma/puma/pull/2460 "PR by @cjlarose, merged 2020-10-27"
1722
+ [#2473]:https://github.com/puma/puma/pull/2473 "PR by @cjlarose, merged 2020-11-01"
1723
+ [#2479]:https://github.com/puma/puma/pull/2479 "PR by @cjlarose, merged 2020-11-10"
1724
+ [#2495]:https://github.com/puma/puma/pull/2495 "PR by @JuanitoFatas, merged 2020-11-27"
1725
+ [#2461]:https://github.com/puma/puma/pull/2461 "PR by @cjlarose, merged 2020-10-27"
1726
+ [#2454]:https://github.com/puma/puma/issues/2454 "Issue by @majksner, closed 2020-10-27"
1727
+ [#2432]:https://github.com/puma/puma/pull/2432 "PR by @MSP-Greg, merged 2020-10-25"
1728
+ [#2442]:https://github.com/puma/puma/pull/2442 "PR by @wjordan, merged 2020-10-22"
1729
+ [#2427]:https://github.com/puma/puma/pull/2427 "PR by @cjlarose, merged 2020-10-20"
1730
+ [#2018]:https://github.com/puma/puma/issues/2018 "Issue by @gingerlime, closed 2020-10-20"
1731
+ [#2435]:https://github.com/puma/puma/pull/2435 "PR by @wjordan, merged 2020-10-20"
1732
+ [#2431]:https://github.com/puma/puma/pull/2431 "PR by @wjordan, merged 2020-10-16"
1733
+ [#2212]:https://github.com/puma/puma/issues/2212 "Issue by @junaruga, closed 2020-10-16"
1734
+ [#2409]:https://github.com/puma/puma/pull/2409 "PR by @fliiiix, merged 2020-10-03"
1735
+ [#2448]:https://github.com/puma/puma/pull/2448 "PR by @MSP-Greg, merged 2020-10-25"
1736
+ [#2450]:https://github.com/puma/puma/pull/2450 "PR by @MSP-Greg, merged 2020-10-25"
1737
+ [#2419]:https://github.com/puma/puma/pull/2419 "PR by @MSP-Greg, merged 2020-10-09"
1738
+ [#2279]:https://github.com/puma/puma/pull/2279 "PR by @wjordan, merged 2020-10-06"
1739
+ [#2412]:https://github.com/puma/puma/pull/2412 "PR by @MSP-Greg, merged 2020-10-06"
1740
+ [#2405]:https://github.com/puma/puma/pull/2405 "PR by @MSP-Greg, merged 2020-10-05"
1741
+ [#2408]:https://github.com/puma/puma/pull/2408 "PR by @fliiiix, merged 2020-10-03"
1742
+ [#2374]:https://github.com/puma/puma/pull/2374 "PR by @cjlarose, merged 2020-09-29"
1743
+ [#2389]:https://github.com/puma/puma/pull/2389 "PR by @MSP-Greg, merged 2020-09-29"
1744
+ [#2381]:https://github.com/puma/puma/pull/2381 "PR by @joergschray, merged 2020-09-24"
1745
+ [#2271]:https://github.com/puma/puma/pull/2271 "PR by @wjordan, merged 2020-09-24"
1746
+ [#2377]:https://github.com/puma/puma/pull/2377 "PR by @cjlarose, merged 2020-09-23"
1747
+ [#2376]:https://github.com/puma/puma/pull/2376 "PR by @alexeevit, merged 2020-09-22"
1748
+ [#2372]:https://github.com/puma/puma/pull/2372 "PR by @ahorek, merged 2020-09-22"
1749
+ [#2384]:https://github.com/puma/puma/pull/2384 "PR by @schneems, merged 2020-09-27"
1750
+ [#2375]:https://github.com/puma/puma/pull/2375 "PR by @MSP-Greg, merged 2020-09-23"
1751
+ [#2373]:https://github.com/puma/puma/pull/2373 "PR by @MSP-Greg, merged 2020-09-23"
1752
+ [#2305]:https://github.com/puma/puma/pull/2305 "PR by @MSP-Greg, merged 2020-09-14"
1753
+ [#2099]:https://github.com/puma/puma/pull/2099 "PR by @wjordan, merged 2020-05-11"
1754
+ [#2079]:https://github.com/puma/puma/pull/2079 "PR by @ayufan, merged 2020-05-11"
1755
+ [#2093]:https://github.com/puma/puma/pull/2093 "PR by @schneems, merged 2019-12-18"
1756
+ [#2256]:https://github.com/puma/puma/pull/2256 "PR by @nateberkopec, merged 2020-05-11"
1757
+ [#2054]:https://github.com/puma/puma/pull/2054 "PR by @composerinteralia, merged 2019-11-11"
1758
+ [#2106]:https://github.com/puma/puma/pull/2106 "PR by @ylecuyer, merged 2020-02-11"
1759
+ [#2167]:https://github.com/puma/puma/pull/2167 "PR by @ChrisBr, closed 2020-07-06"
1760
+ [#2344]:https://github.com/puma/puma/pull/2344 "PR by @dentarg, merged 2020-08-26"
1761
+ [#2203]:https://github.com/puma/puma/pull/2203 "PR by @zanker-stripe, merged 2020-03-31"
1762
+ [#2220]:https://github.com/puma/puma/pull/2220 "PR by @wjordan, merged 2020-04-14"
1763
+ [#2238]:https://github.com/puma/puma/pull/2238 "PR by @sthirugn, merged 2020-05-07"
1764
+ [#2086]:https://github.com/puma/puma/pull/2086 "PR by @bdewater, merged 2019-12-17"
1765
+ [#2253]:https://github.com/puma/puma/pull/2253 "PR by @schneems, merged 2020-05-11"
1766
+ [#2288]:https://github.com/puma/puma/pull/2288 "PR by @FTLam11, merged 2020-06-02"
1767
+ [#1487]:https://github.com/puma/puma/pull/1487 "PR by @jxa, merged 2018-05-09"
1768
+ [#2143]:https://github.com/puma/puma/pull/2143 "PR by @jalevin, merged 2020-04-21"
1769
+ [#2169]:https://github.com/puma/puma/pull/2169 "PR by @nateberkopec, merged 2020-03-10"
1770
+ [#2170]:https://github.com/puma/puma/pull/2170 "PR by @nateberkopec, merged 2020-03-10"
1771
+ [#2076]:https://github.com/puma/puma/pull/2076 "PR by @drews256, merged 2020-02-27"
1772
+ [#2022]:https://github.com/puma/puma/pull/2022 "PR by @olleolleolle, merged 2019-11-11"
1773
+ [#2300]:https://github.com/puma/puma/pull/2300 "PR by @alexeevit, merged 2020-07-06"
1774
+ [#2269]:https://github.com/puma/puma/pull/2269 "PR by @MSP-Greg, merged 2020-08-31"
1775
+ [#2312]:https://github.com/puma/puma/pull/2312 "PR by @MSP-Greg, merged 2020-07-20"
1776
+ [#2338]:https://github.com/puma/puma/issues/2338 "Issue by @micahhainlinestitchfix, closed 2020-08-18"
1777
+ [#2116]:https://github.com/puma/puma/pull/2116 "PR by @MSP-Greg, merged 2020-05-15"
1778
+ [#2074]:https://github.com/puma/puma/issues/2074 "Issue by @jchristie55332, closed 2020-02-19"
1779
+ [#2211]:https://github.com/puma/puma/pull/2211 "PR by @MSP-Greg, merged 2020-03-30"
1780
+ [#2069]:https://github.com/puma/puma/pull/2069 "PR by @MSP-Greg, merged 2019-11-09"
1781
+ [#2112]:https://github.com/puma/puma/pull/2112 "PR by @wjordan, merged 2020-03-03"
1782
+ [#1893]:https://github.com/puma/puma/pull/1893 "PR by @seven1m, merged 2020-02-18"
1783
+ [#2119]:https://github.com/puma/puma/pull/2119 "PR by @wjordan, merged 2020-02-20"
1784
+ [#2121]:https://github.com/puma/puma/pull/2121 "PR by @wjordan, merged 2020-02-21"
1785
+ [#2154]:https://github.com/puma/puma/pull/2154 "PR by @cjlarose, merged 2020-03-10"
1786
+ [#1551]:https://github.com/puma/puma/issues/1551 "Issue by @austinthecoder, closed 2020-03-10"
1787
+ [#2198]:https://github.com/puma/puma/pull/2198 "PR by @eregon, merged 2020-03-24"
1788
+ [#2216]:https://github.com/puma/puma/pull/2216 "PR by @praboud-stripe, merged 2020-04-06"
1789
+ [#2122]:https://github.com/puma/puma/pull/2122 "PR by @wjordan, merged 2020-04-10"
1790
+ [#2177]:https://github.com/puma/puma/issues/2177 "Issue by @GuiTeK, closed 2020-04-08"
1791
+ [#2221]:https://github.com/puma/puma/pull/2221 "PR by @wjordan, merged 2020-04-17"
1792
+ [#2233]:https://github.com/puma/puma/pull/2233 "PR by @ayufan, merged 2020-04-25"
1793
+ [#2234]:https://github.com/puma/puma/pull/2234 "PR by @wjordan, merged 2020-04-30"
1794
+ [#2225]:https://github.com/puma/puma/issues/2225 "Issue by @nateberkopec, closed 2020-04-27"
1795
+ [#2267]:https://github.com/puma/puma/pull/2267 "PR by @wjordan, merged 2020-05-20"
1796
+ [#2287]:https://github.com/puma/puma/pull/2287 "PR by @eugeneius, merged 2020-05-31"
1797
+ [#2317]:https://github.com/puma/puma/pull/2317 "PR by @MSP-Greg, merged 2020-09-01"
1798
+ [#2319]:https://github.com/puma/puma/issues/2319 "Issue by @AlexWayfer, closed 2020-09-03"
1799
+ [#2326]:https://github.com/puma/puma/pull/2326 "PR by @rkistner, closed 2020-09-04"
1800
+ [#2299]:https://github.com/puma/puma/issues/2299 "Issue by @JohnPhillips31416, closed 2020-09-17"
1801
+ [#2095]:https://github.com/puma/puma/pull/2095 "PR by @bdewater, merged 2019-12-25"
1802
+ [#2102]:https://github.com/puma/puma/pull/2102 "PR by @bdewater, merged 2020-02-07"
1803
+ [#2111]:https://github.com/puma/puma/pull/2111 "PR by @wjordan, merged 2020-02-20"
1804
+ [#1980]:https://github.com/puma/puma/pull/1980 "PR by @nateberkopec, merged 2020-02-27"
1805
+ [#2189]:https://github.com/puma/puma/pull/2189 "PR by @jkowens, merged 2020-03-19"
1806
+ [#2124]:https://github.com/puma/puma/pull/2124 "PR by @wjordan, merged 2020-04-14"
1807
+ [#2223]:https://github.com/puma/puma/pull/2223 "PR by @wjordan, merged 2020-04-20"
1808
+ [#2239]:https://github.com/puma/puma/pull/2239 "PR by @wjordan, merged 2020-05-15"
1809
+ [#2496]:https://github.com/puma/puma/pull/2496 "PR by @TheRusskiy, merged 2020-11-30"
1810
+ [#2304]:https://github.com/puma/puma/issues/2304 "Issue by @mpeltomaa, closed 2020-09-05"
1811
+ [#2132]:https://github.com/puma/puma/issues/2132 "Issue by @bmclean, closed 2020-02-28"
1812
+ [#2010]:https://github.com/puma/puma/pull/2010 "PR by @nateberkopec, merged 2019-10-07"
1813
+ [#2012]:https://github.com/puma/puma/pull/2012 "PR by @headius, merged 2019-10-07"
1814
+ [#2046]:https://github.com/puma/puma/pull/2046 "PR by @composerinteralia, merged 2019-10-21"
1815
+ [#2052]:https://github.com/puma/puma/pull/2052 "PR by @composerinteralia, merged 2019-11-02"
1816
+ [#1564]:https://github.com/puma/puma/issues/1564 "Issue by @perlun, closed 2019-10-07"
1817
+ [#2035]:https://github.com/puma/puma/pull/2035 "PR by @AndrewSpeed, merged 2019-10-18"
1818
+ [#2048]:https://github.com/puma/puma/pull/2048 "PR by @hahmed, merged 2019-10-21"
1819
+ [#2050]:https://github.com/puma/puma/pull/2050 "PR by @olleolleolle, merged 2019-10-25"
1820
+ [#1842]:https://github.com/puma/puma/issues/1842 "Issue by @nateberkopec, closed 2019-09-18"
1821
+ [#1988]:https://github.com/puma/puma/issues/1988 "Issue by @mcg, closed 2019-10-01"
1822
+ [#1986]:https://github.com/puma/puma/issues/1986 "Issue by @flaminestone, closed 2019-10-01"
1823
+ [#1994]:https://github.com/puma/puma/issues/1994 "Issue by @LimeBlast, closed 2019-10-01"
1824
+ [#2006]:https://github.com/puma/puma/pull/2006 "PR by @nateberkopec, merged 2019-10-01"
1825
+ [#1222]:https://github.com/puma/puma/issues/1222 "Issue by @seanmckinley, closed 2019-10-04"
1826
+ [#1885]:https://github.com/puma/puma/pull/1885 "PR by @spk, merged 2019-08-10"
1827
+ [#1934]:https://github.com/puma/puma/pull/1934 "PR by @zarelit, merged 2019-08-28"
1828
+ [#1105]:https://github.com/puma/puma/pull/1105 "PR by @daveallie, merged 2019-09-02"
1829
+ [#1786]:https://github.com/puma/puma/pull/1786 "PR by @evanphx, merged 2019-09-11"
1830
+ [#1320]:https://github.com/puma/puma/pull/1320 "PR by @nateberkopec, merged 2019-09-12"
1831
+ [#1968]:https://github.com/puma/puma/pull/1968 "PR by @nateberkopec, merged 2019-09-15"
1832
+ [#1908]:https://github.com/puma/puma/pull/1908 "PR by @MSP-Greg, merged 2019-08-23"
1833
+ [#1952]:https://github.com/puma/puma/pull/1952 "PR by @MSP-Greg, merged 2019-09-19"
1834
+ [#1941]:https://github.com/puma/puma/pull/1941 "PR by @MSP-Greg, merged 2019-09-02"
1835
+ [#1961]:https://github.com/puma/puma/pull/1961 "PR by @nateberkopec, merged 2019-09-11"
1836
+ [#1970]:https://github.com/puma/puma/pull/1970 "PR by @MSP-Greg, merged 2019-09-18"
1837
+ [#1946]:https://github.com/puma/puma/pull/1946 "PR by @nateberkopec, merged 2019-09-02"
1838
+ [#1831]:https://github.com/puma/puma/pull/1831 "PR by @spk, merged 2019-07-27"
1839
+ [#1816]:https://github.com/puma/puma/pull/1816 "PR by @ylecuyer, merged 2019-08-01"
1840
+ [#1844]:https://github.com/puma/puma/pull/1844 "PR by @ylecuyer, merged 2019-08-01"
1841
+ [#1836]:https://github.com/puma/puma/pull/1836 "PR by @MSP-Greg, merged 2019-08-06"
1842
+ [#1887]:https://github.com/puma/puma/pull/1887 "PR by @MSP-Greg, merged 2019-08-06"
1843
+ [#1812]:https://github.com/puma/puma/pull/1812 "PR by @kou, merged 2019-08-03"
1844
+ [#1491]:https://github.com/puma/puma/pull/1491 "PR by @olleolleolle, merged 2019-07-17"
1845
+ [#1837]:https://github.com/puma/puma/pull/1837 "PR by @montanalow, merged 2019-07-25"
1846
+ [#1857]:https://github.com/puma/puma/pull/1857 "PR by @Jesus, merged 2019-08-03"
1847
+ [#1822]:https://github.com/puma/puma/pull/1822 "PR by @Jesus, merged 2019-08-01"
1848
+ [#1863]:https://github.com/puma/puma/pull/1863 "PR by @dzunk, merged 2019-08-04"
1849
+ [#1838]:https://github.com/puma/puma/pull/1838 "PR by @bogn83, merged 2019-07-14"
1850
+ [#1882]:https://github.com/puma/puma/pull/1882 "PR by @okuramasafumi, merged 2019-08-06"
1851
+ [#1848]:https://github.com/puma/puma/pull/1848 "PR by @nateberkopec, merged 2019-07-16"
1852
+ [#1847]:https://github.com/puma/puma/pull/1847 "PR by @nateberkopec, merged 2019-07-16"
1853
+ [#1846]:https://github.com/puma/puma/pull/1846 "PR by @nateberkopec, merged 2019-07-16"
1854
+ [#1853]:https://github.com/puma/puma/pull/1853 "PR by @Jesus, merged 2019-07-18"
1855
+ [#1850]:https://github.com/puma/puma/pull/1850 "PR by @nateberkopec, merged 2019-07-27"
1856
+ [#1866]:https://github.com/puma/puma/pull/1866 "PR by @josacar, merged 2019-07-28"
1857
+ [#1870]:https://github.com/puma/puma/pull/1870 "PR by @MSP-Greg, merged 2019-07-30"
1858
+ [#1872]:https://github.com/puma/puma/pull/1872 "PR by @MSP-Greg, merged 2019-07-30"
1859
+ [#1833]:https://github.com/puma/puma/issues/1833 "Issue by @julik, closed 2019-07-09"
1860
+ [#1888]:https://github.com/puma/puma/pull/1888 "PR by @ClikeX, merged 2019-08-06"
1861
+ [#1829]:https://github.com/puma/puma/pull/1829 "PR by @Fudoshiki, merged 2019-07-09"
1862
+ [#1832]:https://github.com/puma/puma/pull/1832 "PR by @MSP-Greg, merged 2019-07-08"
1863
+ [#1827]:https://github.com/puma/puma/pull/1827 "PR by @amrrbakry, merged 2019-06-27"
1864
+ [#1562]:https://github.com/puma/puma/pull/1562 "PR by @skrobul, merged 2019-02-20"
1865
+ [#1569]:https://github.com/puma/puma/pull/1569 "PR by @rianmcguire, merged 2019-02-20"
1866
+ [#1648]:https://github.com/puma/puma/pull/1648 "PR by @wjordan, merged 2019-02-20"
1867
+ [#1691]:https://github.com/puma/puma/pull/1691 "PR by @kares, merged 2019-02-20"
1868
+ [#1716]:https://github.com/puma/puma/pull/1716 "PR by @mdkent, merged 2019-02-20"
1869
+ [#1690]:https://github.com/puma/puma/pull/1690 "PR by @mic-kul, merged 2019-03-11"
1870
+ [#1689]:https://github.com/puma/puma/pull/1689 "PR by @michaelherold, merged 2019-03-11"
1871
+ [#1728]:https://github.com/puma/puma/pull/1728 "PR by @evanphx, merged 2019-03-20"
1872
+ [#1824]:https://github.com/puma/puma/pull/1824 "PR by @spk, merged 2019-06-24"
1873
+ [#1685]:https://github.com/puma/puma/pull/1685 "PR by @mainameiz, merged 2019-02-20"
1874
+ [#1808]:https://github.com/puma/puma/pull/1808 "PR by @schneems, merged 2019-06-10"
1875
+ [#1508]:https://github.com/puma/puma/pull/1508 "PR by @florin555, merged 2019-02-20"
1876
+ [#1650]:https://github.com/puma/puma/pull/1650 "PR by @adam101, merged 2019-02-20"
1877
+ [#1655]:https://github.com/puma/puma/pull/1655 "PR by @mipearson, merged 2019-02-20"
1878
+ [#1671]:https://github.com/puma/puma/pull/1671 "PR by @eric-norcross, merged 2019-02-20"
1879
+ [#1583]:https://github.com/puma/puma/pull/1583 "PR by @chwevans, merged 2019-02-20"
1880
+ [#1773]:https://github.com/puma/puma/pull/1773 "PR by @enebo, merged 2019-04-14"
1881
+ [#1731]:https://github.com/puma/puma/issues/1731 "Issue by @Fudoshiki, closed 2019-03-20"
1882
+ [#1803]:https://github.com/puma/puma/pull/1803 "PR by @Jesus, merged 2019-05-28"
1883
+ [#1741]:https://github.com/puma/puma/pull/1741 "PR by @MSP-Greg, merged 2019-03-19"
1884
+ [#1674]:https://github.com/puma/puma/issues/1674 "Issue by @atitan, closed 2019-06-12"
1885
+ [#1720]:https://github.com/puma/puma/issues/1720 "Issue by @voxik, closed 2019-03-20"
1886
+ [#1730]:https://github.com/puma/puma/issues/1730 "Issue by @nearapogee, closed 2019-07-16"
1887
+ [#1755]:https://github.com/puma/puma/issues/1755 "Issue by @vbalazs, closed 2019-07-26"
1888
+ [#1649]:https://github.com/puma/puma/pull/1649 "PR by @schneems, merged 2018-10-17"
1889
+ [#1607]:https://github.com/puma/puma/pull/1607 "PR by @harmdewit, merged 2018-08-15"
1890
+ [#1700]:https://github.com/puma/puma/pull/1700 "PR by @schneems, merged 2019-01-05"
1891
+ [#1630]:https://github.com/puma/puma/pull/1630 "PR by @eregon, merged 2018-09-11"
1892
+ [#1478]:https://github.com/puma/puma/pull/1478 "PR by @eallison91, merged 2018-05-09"
1893
+ [#1604]:https://github.com/puma/puma/pull/1604 "PR by @schneems, merged 2018-07-02"
1894
+ [#1579]:https://github.com/puma/puma/pull/1579 "PR by @schneems, merged 2018-06-14"
1895
+ [#1506]:https://github.com/puma/puma/pull/1506 "PR by @dekellum, merged 2018-05-09"
1896
+ [#1563]:https://github.com/puma/puma/pull/1563 "PR by @dannyfallon, merged 2018-05-01"
1897
+ [#1557]:https://github.com/puma/puma/pull/1557 "PR by @swrobel, merged 2018-05-09"
1898
+ [#1529]:https://github.com/puma/puma/pull/1529 "PR by @desnudopenguino, merged 2018-03-20"
1899
+ [#1532]:https://github.com/puma/puma/pull/1532 "PR by @schneems, merged 2018-03-21"
1900
+ [#1482]:https://github.com/puma/puma/pull/1482 "PR by @shayonj, merged 2018-03-19"
1901
+ [#1511]:https://github.com/puma/puma/pull/1511 "PR by @jemiam, merged 2018-03-19"
1902
+ [#1545]:https://github.com/puma/puma/pull/1545 "PR by @hoshinotsuyoshi, merged 2018-03-28"
1903
+ [#1550]:https://github.com/puma/puma/pull/1550 "PR by @eileencodes, merged 2018-03-29"
1904
+ [#1553]:https://github.com/puma/puma/pull/1553 "PR by @eugeneius, merged 2018-04-02"
1905
+ [#1510]:https://github.com/puma/puma/issues/1510 "Issue by @vincentwoo, closed 2018-03-06"
1906
+ [#1524]:https://github.com/puma/puma/pull/1524 "PR by @tuwukee, closed 2018-03-06"
1907
+ [#1507]:https://github.com/puma/puma/issues/1507 "Issue by @vincentwoo, closed 2018-03-19"
1908
+ [#1483]:https://github.com/puma/puma/issues/1483 "Issue by @igravious, closed 2018-03-06"
1909
+ [#1502]:https://github.com/puma/puma/issues/1502 "Issue by @vincentwoo, closed 2020-03-09"
1910
+ [#1403]:https://github.com/puma/puma/pull/1403 "PR by @eileencodes, merged 2017-10-04"
1911
+ [#1435]:https://github.com/puma/puma/pull/1435 "PR by @juliancheal, merged 2017-10-11"
1912
+ [#1340]:https://github.com/puma/puma/pull/1340 "PR by @ViliusLuneckas, merged 2017-10-16"
1913
+ [#1434]:https://github.com/puma/puma/pull/1434 "PR by @jumbosushi, merged 2017-10-10"
1914
+ [#1436]:https://github.com/puma/puma/pull/1436 "PR by @luislavena, merged 2017-10-11"
1915
+ [#1418]:https://github.com/puma/puma/pull/1418 "PR by @eileencodes, merged 2017-09-22"
1916
+ [#1416]:https://github.com/puma/puma/pull/1416 "PR by @hiimtaylorjones, merged 2017-09-22"
1917
+ [#1409]:https://github.com/puma/puma/pull/1409 "PR by @olleolleolle, merged 2017-09-13"
1918
+ [#1427]:https://github.com/puma/puma/issues/1427 "Issue by @garybernhardt, closed 2017-10-04"
1919
+ [#1430]:https://github.com/puma/puma/pull/1430 "PR by @MSP-Greg, merged 2017-10-09"
1920
+ [#1429]:https://github.com/puma/puma/pull/1429 "PR by @perlun, merged 2017-10-09"
1921
+ [#1455]:https://github.com/puma/puma/pull/1455 "PR by @perlun, merged 2017-11-16"
1922
+ [#1425]:https://github.com/puma/puma/pull/1425 "PR by @vizcay, merged 2017-10-01"
1923
+ [#1452]:https://github.com/puma/puma/pull/1452 "PR by @eprothro, merged 2017-11-16"
1924
+ [#1439]:https://github.com/puma/puma/pull/1439 "PR by @MSP-Greg, merged 2017-10-16"
1925
+ [#1442]:https://github.com/puma/puma/pull/1442 "PR by @MSP-Greg, merged 2017-10-19"
1926
+ [#1464]:https://github.com/puma/puma/pull/1464 "PR by @MSP-Greg, merged 2017-11-20"
1927
+ [#1384]:https://github.com/puma/puma/pull/1384 "PR by @noahgibbs, merged 2017-08-03"
1928
+ [#1111]:https://github.com/puma/puma/pull/1111 "PR by @alexlance, merged 2017-06-04"
1929
+ [#1392]:https://github.com/puma/puma/pull/1392 "PR by @hoffm, merged 2017-08-11"
1930
+ [#1347]:https://github.com/puma/puma/pull/1347 "PR by @NikolayRys, merged 2017-06-28"
1931
+ [#1334]:https://github.com/puma/puma/pull/1334 "PR by @respire, merged 2017-06-13"
1932
+ [#1383]:https://github.com/puma/puma/pull/1383 "PR by @schneems, merged 2017-08-02"
1933
+ [#1368]:https://github.com/puma/puma/pull/1368 "PR by @bongole, merged 2017-08-03"
1934
+ [#1318]:https://github.com/puma/puma/pull/1318 "PR by @nateberkopec, merged 2017-08-03"
1935
+ [#1376]:https://github.com/puma/puma/pull/1376 "PR by @pat, merged 2017-08-03"
1936
+ [#1388]:https://github.com/puma/puma/pull/1388 "PR by @nateberkopec, merged 2017-08-08"
1937
+ [#1390]:https://github.com/puma/puma/pull/1390 "PR by @junaruga, merged 2017-08-16"
1938
+ [#1391]:https://github.com/puma/puma/pull/1391 "PR by @junaruga, merged 2017-08-16"
1939
+ [#1385]:https://github.com/puma/puma/pull/1385 "PR by @grosser, merged 2017-08-16"
1940
+ [#1377]:https://github.com/puma/puma/pull/1377 "PR by @shayonj, merged 2017-08-16"
1941
+ [#1337]:https://github.com/puma/puma/pull/1337 "PR by @shayonj, merged 2017-08-16"
1942
+ [#1325]:https://github.com/puma/puma/pull/1325 "PR by @palkan, merged 2017-06-04"
1943
+ [#1395]:https://github.com/puma/puma/pull/1395 "PR by @junaruga, merged 2017-08-16"
1944
+ [#1367]:https://github.com/puma/puma/issues/1367 "Issue by @dekellum, closed 2017-08-17"
1945
+ [#1314]:https://github.com/puma/puma/pull/1314 "PR by @grosser, merged 2017-06-02"
1946
+ [#1311]:https://github.com/puma/puma/pull/1311 "PR by @grosser, merged 2017-06-02"
1947
+ [#1313]:https://github.com/puma/puma/pull/1313 "PR by @grosser, merged 2017-06-03"
1948
+ [#1260]:https://github.com/puma/puma/pull/1260 "PR by @grosser, merged 2017-04-11"
1949
+ [#1278]:https://github.com/puma/puma/pull/1278 "PR by @evanphx, merged 2017-04-28"
1950
+ [#1306]:https://github.com/puma/puma/pull/1306 "PR by @jules2689, merged 2017-05-31"
1951
+ [#1274]:https://github.com/puma/puma/pull/1274 "PR by @evanphx, merged 2017-05-01"
1952
+ [#1261]:https://github.com/puma/puma/pull/1261 "PR by @jacksonrayhamilton, merged 2017-04-07"
1953
+ [#1259]:https://github.com/puma/puma/pull/1259 "PR by @jacksonrayhamilton, merged 2017-04-07"
1954
+ [#1248]:https://github.com/puma/puma/pull/1248 "PR by @davidarnold, merged 2017-04-18"
1955
+ [#1277]:https://github.com/puma/puma/pull/1277 "PR by @schneems, merged 2017-05-01"
1956
+ [#1290]:https://github.com/puma/puma/pull/1290 "PR by @schneems, merged 2017-05-12"
1957
+ [#1285]:https://github.com/puma/puma/pull/1285 "PR by @fmauNeko, merged 2017-05-12"
1958
+ [#1282]:https://github.com/puma/puma/pull/1282 "PR by @grosser, merged 2017-05-09"
1959
+ [#1294]:https://github.com/puma/puma/pull/1294 "PR by @masry707, merged 2017-05-15"
1960
+ [#1206]:https://github.com/puma/puma/pull/1206 "PR by @NikolayRys, closed 2017-06-27"
1961
+ [#1241]:https://github.com/puma/puma/issues/1241 "Issue by @renchap, closed 2017-03-14"
1962
+ [#1239]:https://github.com/puma/puma/pull/1239 "PR by @schneems, merged 2017-03-10"
1963
+ [#1234]:https://github.com/puma/puma/pull/1234 "PR by @schneems, merged 2017-03-09"
1964
+ [#1226]:https://github.com/puma/puma/pull/1226 "PR by @eileencodes, merged 2017-03-09"
1965
+ [#1227]:https://github.com/puma/puma/pull/1227 "PR by @sirupsen, merged 2017-02-27"
1966
+ [#1213]:https://github.com/puma/puma/pull/1213 "PR by @junaruga, merged 2017-02-28"
1967
+ [#1182]:https://github.com/puma/puma/issues/1182 "Issue by @brunowego, closed 2017-02-09"
1968
+ [#1203]:https://github.com/puma/puma/pull/1203 "PR by @twalpole, merged 2017-02-09"
1969
+ [#1129]:https://github.com/puma/puma/pull/1129 "PR by @chtitux, merged 2016-12-12"
1970
+ [#1165]:https://github.com/puma/puma/pull/1165 "PR by @sriedel, merged 2016-12-21"
1971
+ [#1175]:https://github.com/puma/puma/pull/1175 "PR by @jemiam, merged 2016-12-21"
1972
+ [#1068]:https://github.com/puma/puma/pull/1068 "PR by @junaruga, merged 2016-09-05"
1973
+ [#1091]:https://github.com/puma/puma/pull/1091 "PR by @frodsan, merged 2016-09-17"
1974
+ [#1088]:https://github.com/puma/puma/pull/1088 "PR by @frodsan, merged 2016-11-20"
1975
+ [#1160]:https://github.com/puma/puma/pull/1160 "PR by @frodsan, merged 2016-11-24"
1976
+ [#1169]:https://github.com/puma/puma/pull/1169 "PR by @scbrubaker02, merged 2016-12-12"
1977
+ [#1061]:https://github.com/puma/puma/pull/1061 "PR by @michaelsauter, merged 2016-09-05"
1978
+ [#1036]:https://github.com/puma/puma/issues/1036 "Issue by @matobinder, closed 2016-08-03"
1979
+ [#1120]:https://github.com/puma/puma/pull/1120 "PR by @prathamesh-sonpatki, merged 2016-11-21"
1980
+ [#1178]:https://github.com/puma/puma/pull/1178 "PR by @Koronen, merged 2016-12-21"
1981
+ [#1002]:https://github.com/puma/puma/issues/1002 "Issue by @mattyb, closed 2016-07-26"
1982
+ [#1063]:https://github.com/puma/puma/issues/1063 "Issue by @mperham, closed 2016-09-05"
1983
+ [#1089]:https://github.com/puma/puma/issues/1089 "Issue by @AdamBialas, closed 2016-09-17"
1984
+ [#1114]:https://github.com/puma/puma/pull/1114 "PR by @sj26, merged 2016-12-13"
1985
+ [#1110]:https://github.com/puma/puma/pull/1110 "PR by @montdidier, merged 2016-12-12"
1986
+ [#1135]:https://github.com/puma/puma/pull/1135 "PR by @jkraemer, merged 2016-11-19"
1987
+ [#1081]:https://github.com/puma/puma/pull/1081 "PR by @frodsan, merged 2016-09-08"
1988
+ [#1138]:https://github.com/puma/puma/pull/1138 "PR by @steakknife, merged 2016-12-13"
1989
+ [#1118]:https://github.com/puma/puma/pull/1118 "PR by @hiroara, merged 2016-11-20"
1990
+ [#1075]:https://github.com/puma/puma/issues/1075 "Issue by @pvalena, closed 2016-09-06"
1991
+ [#932]:https://github.com/puma/puma/issues/932 "Issue by @everplays, closed 2016-07-24"
1992
+ [#519]:https://github.com/puma/puma/issues/519 "Issue by @tmornini, closed 2016-07-25"
1993
+ [#828]:https://github.com/puma/puma/issues/828 "Issue by @Zapotek, closed 2016-07-24"
1994
+ [#984]:https://github.com/puma/puma/issues/984 "Issue by @erichmenge, closed 2016-07-24"
1995
+ [#1028]:https://github.com/puma/puma/issues/1028 "Issue by @matobinder, closed 2016-07-24"
1996
+ [#1023]:https://github.com/puma/puma/issues/1023 "Issue by @fera2k, closed 2016-07-24"
1997
+ [#1027]:https://github.com/puma/puma/issues/1027 "Issue by @rosenfeld, closed 2016-07-24"
1998
+ [#925]:https://github.com/puma/puma/issues/925 "Issue by @lokenmakwana, closed 2016-07-24"
1999
+ [#911]:https://github.com/puma/puma/issues/911 "Issue by @veganstraightedge, closed 2016-07-24"
2000
+ [#620]:https://github.com/puma/puma/issues/620 "Issue by @javanthropus, closed 2016-07-25"
2001
+ [#778]:https://github.com/puma/puma/issues/778 "Issue by @niedhui, closed 2016-07-24"
2002
+ [#1021]:https://github.com/puma/puma/pull/1021 "PR by @sarahzrf, merged 2016-07-20"
2003
+ [#1022]:https://github.com/puma/puma/issues/1022 "Issue by @AKovtunov, closed 2017-08-16"
2004
+ [#958]:https://github.com/puma/puma/issues/958 "Issue by @lalitlogical, closed 2016-04-23"
2005
+ [#782]:https://github.com/puma/puma/issues/782 "Issue by @Tonkpils, closed 2016-07-19"
2006
+ [#1010]:https://github.com/puma/puma/issues/1010 "Issue by @mneumark, closed 2016-07-19"
2007
+ [#959]:https://github.com/puma/puma/issues/959 "Issue by @mwpastore, closed 2016-04-22"
2008
+ [#840]:https://github.com/puma/puma/issues/840 "Issue by @maxkwallace, closed 2016-04-07"
2009
+ [#1007]:https://github.com/puma/puma/pull/1007 "PR by @willnet, merged 2016-06-24"
2010
+ [#1014]:https://github.com/puma/puma/pull/1014 "PR by @szymon-jez, merged 2016-07-11"
2011
+ [#1015]:https://github.com/puma/puma/pull/1015 "PR by @bf4, merged 2016-07-19"
2012
+ [#1017]:https://github.com/puma/puma/pull/1017 "PR by @jorihardman, merged 2016-07-19"
2013
+ [#954]:https://github.com/puma/puma/pull/954 "PR by @jf, merged 2016-04-12"
2014
+ [#955]:https://github.com/puma/puma/pull/955 "PR by @jf, merged 2016-04-22"
2015
+ [#956]:https://github.com/puma/puma/pull/956 "PR by @maxkwallace, merged 2016-04-12"
2016
+ [#960]:https://github.com/puma/puma/pull/960 "PR by @kmayer, merged 2016-04-15"
2017
+ [#969]:https://github.com/puma/puma/pull/969 "PR by @frankwong15, merged 2016-05-10"
2018
+ [#970]:https://github.com/puma/puma/pull/970 "PR by @willnet, merged 2016-04-26"
2019
+ [#974]:https://github.com/puma/puma/pull/974 "PR by @reidmorrison, merged 2016-05-10"
2020
+ [#977]:https://github.com/puma/puma/pull/977 "PR by @snow, merged 2016-05-10"
2021
+ [#981]:https://github.com/puma/puma/pull/981 "PR by @zach-chai, merged 2016-07-19"
2022
+ [#993]:https://github.com/puma/puma/pull/993 "PR by @scorix, merged 2016-07-19"
2023
+ [#938]:https://github.com/puma/puma/issues/938 "Issue by @vandrijevik, closed 2016-04-07"
2024
+ [#529]:https://github.com/puma/puma/issues/529 "Issue by @mperham, closed 2016-04-07"
2025
+ [#788]:https://github.com/puma/puma/issues/788 "Issue by @herregroen, closed 2016-04-07"
2026
+ [#894]:https://github.com/puma/puma/issues/894 "Issue by @rafbm, closed 2016-04-07"
2027
+ [#937]:https://github.com/puma/puma/issues/937 "Issue by @huangxiangdan, closed 2016-04-07"
2028
+ [#945]:https://github.com/puma/puma/pull/945 "PR by @dekellum, merged 2016-04-07"
2029
+ [#946]:https://github.com/puma/puma/pull/946 "PR by @vipulnsward, merged 2016-04-07"
2030
+ [#947]:https://github.com/puma/puma/pull/947 "PR by @vipulnsward, merged 2016-04-07"
2031
+ [#936]:https://github.com/puma/puma/pull/936 "PR by @prathamesh-sonpatki, merged 2016-04-01"
2032
+ [#940]:https://github.com/puma/puma/pull/940 "PR by @kyledrake, merged 2016-04-01"
2033
+ [#942]:https://github.com/puma/puma/pull/942 "PR by @dekellum, merged 2016-04-01"
2034
+ [#927]:https://github.com/puma/puma/pull/927 "PR by @jlecour, merged 2016-03-18"
2035
+ [#931]:https://github.com/puma/puma/pull/931 "PR by @runlevel5, merged 2016-03-18"
2036
+ [#922]:https://github.com/puma/puma/issues/922 "Issue by @LavirtheWhiolet, closed 2016-03-07"
2037
+ [#923]:https://github.com/puma/puma/issues/923 "Issue by @donv, closed 2016-03-06"
2038
+ [#912]:https://github.com/puma/puma/pull/912 "PR by @tricknotes, merged 2016-03-06"
2039
+ [#921]:https://github.com/puma/puma/pull/921 "PR by @swrobel, merged 2016-03-06"
2040
+ [#924]:https://github.com/puma/puma/pull/924 "PR by @tbrisker, merged 2016-03-07"
2041
+ [#916]:https://github.com/puma/puma/issues/916 "Issue by @ma11hew28, closed 2016-03-06"
2042
+ [#913]:https://github.com/puma/puma/issues/913 "Issue by @Casara, closed 2016-03-06"
2043
+ [#918]:https://github.com/puma/puma/issues/918 "Issue by @rodrigdav, closed 2016-03-06"
2044
+ [#910]:https://github.com/puma/puma/issues/910 "Issue by @ball-hayden, closed 2016-03-05"
2045
+ [#914]:https://github.com/puma/puma/issues/914 "Issue by @osheroff, closed 2016-03-06"
2046
+ [#901]:https://github.com/puma/puma/pull/901 "PR by @mitto, merged 2016-02-26"
2047
+ [#902]:https://github.com/puma/puma/pull/902 "PR by @corrupt952, merged 2016-02-26"
2048
+ [#905]:https://github.com/puma/puma/pull/905 "PR by @Eric-Guo, merged 2016-02-26"
2049
+ [#852]:https://github.com/puma/puma/issues/852 "Issue by @asia653, closed 2016-02-25"
2050
+ [#854]:https://github.com/puma/puma/issues/854 "Issue by @ollym, closed 2016-02-25"
2051
+ [#824]:https://github.com/puma/puma/issues/824 "Issue by @MattWalston, closed 2016-02-25"
2052
+ [#823]:https://github.com/puma/puma/issues/823 "Issue by @pneuman, closed 2016-02-25"
2053
+ [#815]:https://github.com/puma/puma/issues/815 "Issue by @nate-dipiazza, closed 2016-02-25"
2054
+ [#835]:https://github.com/puma/puma/issues/835 "Issue by @mwpastore, closed 2016-02-25"
2055
+ [#798]:https://github.com/puma/puma/issues/798 "Issue by @schneems, closed 2016-02-25"
2056
+ [#876]:https://github.com/puma/puma/issues/876 "Issue by @osheroff, closed 2016-02-25"
2057
+ [#849]:https://github.com/puma/puma/issues/849 "Issue by @apotheon, closed 2016-02-25"
2058
+ [#871]:https://github.com/puma/puma/pull/871 "PR by @deepj, merged 2016-02-25"
2059
+ [#874]:https://github.com/puma/puma/pull/874 "PR by @wallclockbuilder, merged 2016-02-25"
2060
+ [#883]:https://github.com/puma/puma/pull/883 "PR by @dadah89, merged 2016-02-25"
2061
+ [#884]:https://github.com/puma/puma/pull/884 "PR by @furkanmustafa, merged 2016-02-25"
2062
+ [#888]:https://github.com/puma/puma/pull/888 "PR by @mlarraz, merged 2016-02-25"
2063
+ [#890]:https://github.com/puma/puma/pull/890 "PR by @todd, merged 2016-02-25"
2064
+ [#891]:https://github.com/puma/puma/pull/891 "PR by @ctaintor, merged 2016-02-25"
2065
+ [#893]:https://github.com/puma/puma/pull/893 "PR by @spastorino, merged 2016-02-25"
2066
+ [#897]:https://github.com/puma/puma/pull/897 "PR by @vanchi-zendesk, merged 2016-02-25"
2067
+ [#899]:https://github.com/puma/puma/pull/899 "PR by @kch, merged 2016-02-25"
2068
+ [#859]:https://github.com/puma/puma/issues/859 "Issue by @boxofrad, closed 2016-01-28"
2069
+ [#822]:https://github.com/puma/puma/pull/822 "PR by @kwugirl, merged 2016-01-28"
2070
+ [#833]:https://github.com/puma/puma/pull/833 "PR by @joemiller, merged 2016-01-28"
2071
+ [#837]:https://github.com/puma/puma/pull/837 "PR by @YurySolovyov, merged 2016-01-28"
2072
+ [#839]:https://github.com/puma/puma/pull/839 "PR by @ka8725, merged 2016-01-15"
2073
+ [#845]:https://github.com/puma/puma/pull/845 "PR by @deepj, merged 2016-01-28"
2074
+ [#846]:https://github.com/puma/puma/pull/846 "PR by @sriedel, merged 2016-01-15"
2075
+ [#850]:https://github.com/puma/puma/pull/850 "PR by @deepj, merged 2016-01-15"
2076
+ [#853]:https://github.com/puma/puma/pull/853 "PR by @Jeffrey6052, merged 2016-01-28"
2077
+ [#857]:https://github.com/puma/puma/pull/857 "PR by @osheroff, merged 2016-01-15"
2078
+ [#858]:https://github.com/puma/puma/pull/858 "PR by @mlarraz, merged 2016-01-28"
2079
+ [#860]:https://github.com/puma/puma/pull/860 "PR by @osheroff, merged 2016-01-15"
2080
+ [#861]:https://github.com/puma/puma/pull/861 "PR by @osheroff, merged 2016-01-15"
2081
+ [#818]:https://github.com/puma/puma/pull/818 "PR by @unleashed, merged 2015-11-06"
2082
+ [#819]:https://github.com/puma/puma/pull/819 "PR by @VictorLowther, merged 2015-11-06"
2083
+ [#563]:https://github.com/puma/puma/issues/563 "Issue by @deathbob, closed 2015-11-06"
2084
+ [#803]:https://github.com/puma/puma/issues/803 "Issue by @burningTyger, closed 2016-04-07"
2085
+ [#768]:https://github.com/puma/puma/pull/768 "PR by @nathansamson, merged 2015-11-06"
2086
+ [#773]:https://github.com/puma/puma/pull/773 "PR by @rossta, merged 2015-11-06"
2087
+ [#774]:https://github.com/puma/puma/pull/774 "PR by @snow, merged 2015-11-06"
2088
+ [#781]:https://github.com/puma/puma/pull/781 "PR by @sunsations, merged 2015-11-06"
2089
+ [#791]:https://github.com/puma/puma/pull/791 "PR by @unleashed, merged 2015-10-01"
2090
+ [#793]:https://github.com/puma/puma/pull/793 "PR by @robdimarco, merged 2015-11-06"
2091
+ [#794]:https://github.com/puma/puma/pull/794 "PR by @peterkeen, merged 2015-11-06"
2092
+ [#795]:https://github.com/puma/puma/pull/795 "PR by @unleashed, merged 2015-11-06"
2093
+ [#796]:https://github.com/puma/puma/pull/796 "PR by @cschneid, merged 2015-10-13"
2094
+ [#799]:https://github.com/puma/puma/pull/799 "PR by @annawinkler, merged 2015-11-06"
2095
+ [#800]:https://github.com/puma/puma/pull/800 "PR by @liamseanbrady, merged 2015-11-06"
2096
+ [#801]:https://github.com/puma/puma/pull/801 "PR by @scottjg, merged 2015-11-06"
2097
+ [#802]:https://github.com/puma/puma/pull/802 "PR by @scottjg, merged 2015-11-06"
2098
+ [#804]:https://github.com/puma/puma/pull/804 "PR by @burningTyger, merged 2015-11-06"
2099
+ [#809]:https://github.com/puma/puma/pull/809 "PR by @unleashed, merged 2015-11-06"
2100
+ [#810]:https://github.com/puma/puma/pull/810 "PR by @vlmonk, merged 2015-11-06"
2101
+ [#814]:https://github.com/puma/puma/pull/814 "PR by @schneems, merged 2015-11-04"
2102
+ [#817]:https://github.com/puma/puma/pull/817 "PR by @unleashed, merged 2015-11-06"
2103
+ [#735]:https://github.com/puma/puma/issues/735 "Issue by @trekr5, closed 2015-08-04"
2104
+ [#769]:https://github.com/puma/puma/issues/769 "Issue by @dovestyle, closed 2015-08-16"
2105
+ [#767]:https://github.com/puma/puma/issues/767 "Issue by @kapso, closed 2015-08-15"
2106
+ [#765]:https://github.com/puma/puma/issues/765 "Issue by @monfresh, closed 2015-08-15"
2107
+ [#764]:https://github.com/puma/puma/issues/764 "Issue by @keithpitt, closed 2015-08-15"
2108
+ [#669]:https://github.com/puma/puma/pull/669 "PR by @chulkilee, closed 2015-08-14"
2109
+ [#673]:https://github.com/puma/puma/pull/673 "PR by @chulkilee, closed 2015-08-14"
2110
+ [#668]:https://github.com/puma/puma/pull/668 "PR by @kcollignon, merged 2015-08-14"
2111
+ [#754]:https://github.com/puma/puma/pull/754 "PR by @nathansamson, merged 2015-08-14"
2112
+ [#759]:https://github.com/puma/puma/pull/759 "PR by @BenV, merged 2015-08-14"
2113
+ [#761]:https://github.com/puma/puma/pull/761 "PR by @dmarcotte, merged 2015-08-14"
2114
+ [#742]:https://github.com/puma/puma/pull/742 "PR by @deivid-rodriguez, merged 2015-07-17"
2115
+ [#743]:https://github.com/puma/puma/pull/743 "PR by @matthewd, merged 2015-07-18"
2116
+ [#749]:https://github.com/puma/puma/pull/749 "PR by @huacnlee, merged 2015-08-04"
2117
+ [#751]:https://github.com/puma/puma/pull/751 "PR by @costi, merged 2015-07-31"
2118
+ [#741]:https://github.com/puma/puma/issues/741 "Issue by @GUI, closed 2015-07-17"
2119
+ [#739]:https://github.com/puma/puma/issues/739 "Issue by @hab278, closed 2015-07-17"
2120
+ [#737]:https://github.com/puma/puma/issues/737 "Issue by @dmill, closed 2015-07-16"
2121
+ [#733]:https://github.com/puma/puma/issues/733 "Issue by @Eric-Guo, closed 2015-07-15"
2122
+ [#736]:https://github.com/puma/puma/pull/736 "PR by @paulanunda, merged 2015-07-15"
2123
+ [#722]:https://github.com/puma/puma/issues/722 "Issue by @mikeki, closed 2015-07-14"
2124
+ [#694]:https://github.com/puma/puma/issues/694 "Issue by @yld, closed 2015-06-10"
2125
+ [#705]:https://github.com/puma/puma/issues/705 "Issue by @TheTeaNerd, closed 2015-07-14"
2126
+ [#686]:https://github.com/puma/puma/pull/686 "PR by @jjb, merged 2015-06-10"
2127
+ [#693]:https://github.com/puma/puma/pull/693 "PR by @rob-murray, merged 2015-06-10"
2128
+ [#697]:https://github.com/puma/puma/pull/697 "PR by @spk, merged 2015-06-10"
2129
+ [#699]:https://github.com/puma/puma/pull/699 "PR by @deees, merged 2015-05-19"
2130
+ [#701]:https://github.com/puma/puma/pull/701 "PR by @deepj, merged 2015-05-19"
2131
+ [#702]:https://github.com/puma/puma/pull/702 "PR by @OleMchls, merged 2015-06-10"
2132
+ [#703]:https://github.com/puma/puma/pull/703 "PR by @deepj, merged 2015-06-10"
2133
+ [#704]:https://github.com/puma/puma/pull/704 "PR by @grega, merged 2015-06-10"
2134
+ [#709]:https://github.com/puma/puma/pull/709 "PR by @lian, merged 2015-06-10"
2135
+ [#711]:https://github.com/puma/puma/pull/711 "PR by @julik, merged 2015-06-10"
2136
+ [#712]:https://github.com/puma/puma/pull/712 "PR by @chewi, merged 2015-07-14"
2137
+ [#715]:https://github.com/puma/puma/pull/715 "PR by @0RaymondJiang0, merged 2015-07-14"
2138
+ [#725]:https://github.com/puma/puma/pull/725 "PR by @rwz, merged 2015-07-14"
2139
+ [#726]:https://github.com/puma/puma/pull/726 "PR by @jshafton, merged 2015-07-14"
2140
+ [#729]:https://github.com/puma/puma/pull/729 "PR by @allaire, merged 2015-07-14"
2141
+ [#730]:https://github.com/puma/puma/pull/730 "PR by @iamjarvo, merged 2015-07-14"
2142
+ [#690]:https://github.com/puma/puma/issues/690 "Issue by @bachue, closed 2015-04-21"
2143
+ [#684]:https://github.com/puma/puma/issues/684 "Issue by @tomquas, closed 2015-04-13"
2144
+ [#698]:https://github.com/puma/puma/pull/698 "PR by @dmarcotte, merged 2015-05-04"
2145
+ [#683]:https://github.com/puma/puma/issues/683 "Issue by @indirect, closed 2015-04-11"
2146
+ [#657]:https://github.com/puma/puma/pull/657 "PR by @schneems, merged 2015-02-19"
2147
+ [#658]:https://github.com/puma/puma/pull/658 "PR by @tomohiro, merged 2015-02-23"
2148
+ [#662]:https://github.com/puma/puma/pull/662 "PR by @iaintshine, merged 2015-03-06"
2149
+ [#664]:https://github.com/puma/puma/pull/664 "PR by @fxposter, merged 2015-03-09"
2150
+ [#667]:https://github.com/puma/puma/pull/667 "PR by @JuanitoFatas, merged 2015-03-12"
2151
+ [#672]:https://github.com/puma/puma/pull/672 "PR by @chulkilee, merged 2015-03-15"
2152
+ [#653]:https://github.com/puma/puma/issues/653 "Issue by @dvrensk, closed 2015-02-11"
2153
+ [#644]:https://github.com/puma/puma/pull/644 "PR by @bpaquet, merged 2015-01-29"
2154
+ [#646]:https://github.com/puma/puma/pull/646 "PR by @mkonecny, merged 2015-02-05"
2155
+ [#630]:https://github.com/puma/puma/issues/630 "Issue by @jelmd, closed 2015-01-20"
2156
+ [#622]:https://github.com/puma/puma/issues/622 "Issue by @sabamotto, closed 2015-01-20"
2157
+ [#583]:https://github.com/puma/puma/issues/583 "Issue by @rwojsznis, closed 2015-01-20"
2158
+ [#586]:https://github.com/puma/puma/issues/586 "Issue by @ponchik, closed 2015-01-20"
2159
+ [#359]:https://github.com/puma/puma/issues/359 "Issue by @natew, closed 2014-12-13"
2160
+ [#633]:https://github.com/puma/puma/issues/633 "Issue by @joevandyk, closed 2015-01-20"
2161
+ [#478]:https://github.com/puma/puma/pull/478 "PR by @rubencaro, merged 2015-01-20"
2162
+ [#610]:https://github.com/puma/puma/pull/610 "PR by @kwilczynski, merged 2014-11-27"
2163
+ [#611]:https://github.com/puma/puma/pull/611 "PR by @jasonl, merged 2015-01-20"
2164
+ [#616]:https://github.com/puma/puma/pull/616 "PR by @jc00ke, merged 2014-12-10"
2165
+ [#623]:https://github.com/puma/puma/pull/623 "PR by @raldred, merged 2015-01-20"
2166
+ [#628]:https://github.com/puma/puma/pull/628 "PR by @rdpoor, merged 2015-01-20"
2167
+ [#634]:https://github.com/puma/puma/pull/634 "PR by @deepj, merged 2015-01-20"
2168
+ [#637]:https://github.com/puma/puma/pull/637 "PR by @raskhadafi, merged 2015-01-20"
2169
+ [#639]:https://github.com/puma/puma/pull/639 "PR by @ebeigarts, merged 2015-01-20"
2170
+ [#640]:https://github.com/puma/puma/pull/640 "PR by @bailsman, merged 2015-01-20"
2171
+ [#591]:https://github.com/puma/puma/issues/591 "Issue by @renier, closed 2014-11-24"
2172
+ [#606]:https://github.com/puma/puma/issues/606 "Issue by @, closed 2014-11-24"
2173
+ [#560]:https://github.com/puma/puma/pull/560 "PR by @raskhadafi, merged 2014-11-24"
2174
+ [#566]:https://github.com/puma/puma/pull/566 "PR by @sheltond, merged 2014-11-24"
2175
+ [#593]:https://github.com/puma/puma/pull/593 "PR by @andruby, merged 2014-10-30"
2176
+ [#594]:https://github.com/puma/puma/pull/594 "PR by @hassox, merged 2014-10-31"
2177
+ [#596]:https://github.com/puma/puma/pull/596 "PR by @burningTyger, merged 2014-11-01"
2178
+ [#601]:https://github.com/puma/puma/pull/601 "PR by @sorentwo, merged 2014-11-24"
2179
+ [#602]:https://github.com/puma/puma/pull/602 "PR by @1334, merged 2014-11-24"
2180
+ [#608]:https://github.com/puma/puma/pull/608 "PR by @Gu1, merged 2014-11-24"
2181
+ [#538]:https://github.com/puma/puma/pull/538 "PR by @memiux, merged 2014-11-24"
2182
+ [#550]:https://github.com/puma/puma/issues/550 "Issue by @, closed 2014-10-30"
2183
+ [#549]:https://github.com/puma/puma/pull/549 "PR by @bsnape, merged 2014-10-16"
2184
+ [#553]:https://github.com/puma/puma/pull/553 "PR by @lowjoel, merged 2014-10-16"
2185
+ [#568]:https://github.com/puma/puma/pull/568 "PR by @mariuz, merged 2014-10-16"
2186
+ [#578]:https://github.com/puma/puma/pull/578 "PR by @danielbuechele, merged 2014-10-16"
2187
+ [#581]:https://github.com/puma/puma/pull/581 "PR by @alexch, merged 2014-10-16"
2188
+ [#590]:https://github.com/puma/puma/pull/590 "PR by @dmarcotte, merged 2014-10-16"
2189
+ [#574]:https://github.com/puma/puma/issues/574 "Issue by @minasmart, closed 2014-09-05"
2190
+ [#561]:https://github.com/puma/puma/pull/561 "PR by @krasnoukhov, merged 2014-08-04"
2191
+ [#570]:https://github.com/puma/puma/pull/570 "PR by @havenwood, merged 2014-08-20"
2192
+ [#520]:https://github.com/puma/puma/pull/520 "PR by @misfo, merged 2014-06-16"
2193
+ [#530]:https://github.com/puma/puma/pull/530 "PR by @dmarcotte, merged 2014-06-16"
2194
+ [#537]:https://github.com/puma/puma/pull/537 "PR by @vlmonk, merged 2014-06-16"
2195
+ [#540]:https://github.com/puma/puma/pull/540 "PR by @allaire, merged 2014-05-27"
2196
+ [#544]:https://github.com/puma/puma/pull/544 "PR by @chulkilee, merged 2014-06-03"
2197
+ [#551]:https://github.com/puma/puma/pull/551 "PR by @jcxplorer, merged 2014-07-02"
2198
+ [#487]:https://github.com/puma/puma/pull/487 "PR by @, merged 2014-03-06"
2199
+ [#492]:https://github.com/puma/puma/pull/492 "PR by @, merged 2014-03-06"
2200
+ [#493]:https://github.com/puma/puma/pull/493 "PR by @alepore, merged 2014-03-07"
2201
+ [#503]:https://github.com/puma/puma/pull/503 "PR by @mariuz, merged 2014-04-12"
2202
+ [#505]:https://github.com/puma/puma/pull/505 "PR by @sammcj, merged 2014-04-12"
2203
+ [#506]:https://github.com/puma/puma/pull/506 "PR by @dsander, merged 2014-04-12"
2204
+ [#510]:https://github.com/puma/puma/pull/510 "PR by @momer, merged 2014-04-12"
2205
+ [#511]:https://github.com/puma/puma/pull/511 "PR by @macool, merged 2014-04-12"
2206
+ [#514]:https://github.com/puma/puma/pull/514 "PR by @nanaya, merged 2014-04-12"
2207
+ [#517]:https://github.com/puma/puma/pull/517 "PR by @misfo, merged 2014-04-12"
2208
+ [#518]:https://github.com/puma/puma/pull/518 "PR by @alxgsv, merged 2014-04-12"
2209
+ [#471]:https://github.com/puma/puma/pull/471 "PR by @arthurnn, merged 2014-02-28"
2210
+ [#485]:https://github.com/puma/puma/pull/485 "PR by @runlevel5, merged 2014-03-01"
2211
+ [#486]:https://github.com/puma/puma/pull/486 "PR by @joshwlewis, merged 2014-03-02"
2212
+ [#490]:https://github.com/puma/puma/pull/490 "PR by @tobinibot, merged 2014-03-06"
2213
+ [#491]:https://github.com/puma/puma/pull/491 "PR by @brianknight10, merged 2014-03-06"
2214
+ [#438]:https://github.com/puma/puma/issues/438 "Issue by @mperham, closed 2014-01-25"
2215
+ [#333]:https://github.com/puma/puma/issues/333 "Issue by @SamSaffron, closed 2014-01-26"
2216
+ [#440]:https://github.com/puma/puma/issues/440 "Issue by @sudara, closed 2014-01-25"
2217
+ [#449]:https://github.com/puma/puma/issues/449 "Issue by @cezarsa, closed 2014-02-04"
2218
+ [#444]:https://github.com/puma/puma/issues/444 "Issue by @le0pard, closed 2014-01-25"
2219
+ [#370]:https://github.com/puma/puma/issues/370 "Issue by @pelcasandra, closed 2014-01-26"
2220
+ [#377]:https://github.com/puma/puma/issues/377 "Issue by @mrbrdo, closed 2014-01-26"
2221
+ [#406]:https://github.com/puma/puma/issues/406 "Issue by @simonrussell, closed 2014-01-25"
2222
+ [#425]:https://github.com/puma/puma/issues/425 "Issue by @jhass, closed 2014-01-26"
2223
+ [#432]:https://github.com/puma/puma/pull/432 "PR by @anatol, closed 2014-01-25"
2224
+ [#428]:https://github.com/puma/puma/pull/428 "PR by @alexeyfrank, merged 2014-01-25"
2225
+ [#429]:https://github.com/puma/puma/pull/429 "PR by @namusyaka, merged 2013-12-16"
2226
+ [#431]:https://github.com/puma/puma/pull/431 "PR by @mrb, merged 2014-01-25"
2227
+ [#433]:https://github.com/puma/puma/pull/433 "PR by @alepore, merged 2014-02-28"
2228
+ [#437]:https://github.com/puma/puma/pull/437 "PR by @ibrahima, merged 2014-01-25"
2229
+ [#446]:https://github.com/puma/puma/pull/446 "PR by @sudara, merged 2014-01-27"
2230
+ [#451]:https://github.com/puma/puma/pull/451 "PR by @pwiebe, merged 2014-02-04"
2231
+ [#453]:https://github.com/puma/puma/pull/453 "PR by @joevandyk, merged 2014-02-28"
2232
+ [#470]:https://github.com/puma/puma/pull/470 "PR by @arthurnn, merged 2014-02-28"
2233
+ [#472]:https://github.com/puma/puma/pull/472 "PR by @rubencaro, merged 2014-02-21"
2234
+ [#480]:https://github.com/puma/puma/pull/480 "PR by @jjb, merged 2014-02-26"
2235
+ [#481]:https://github.com/puma/puma/pull/481 "PR by @schneems, merged 2014-02-25"
2236
+ [#482]:https://github.com/puma/puma/pull/482 "PR by @prathamesh-sonpatki, merged 2014-02-26"
2237
+ [#483]:https://github.com/puma/puma/pull/483 "PR by @maxilev, merged 2014-02-26"
2238
+ [#422]:https://github.com/puma/puma/issues/422 "Issue by @alexandru-calinoiu, closed 2013-12-05"
2239
+ [#334]:https://github.com/puma/puma/issues/334 "Issue by @srgpqt, closed 2013-07-18"
2240
+ [#179]:https://github.com/puma/puma/issues/179 "Issue by @betelgeuse, closed 2013-07-18"
2241
+ [#332]:https://github.com/puma/puma/issues/332 "Issue by @SamSaffron, closed 2013-07-18"
2242
+ [#317]:https://github.com/puma/puma/issues/317 "Issue by @masterkain, closed 2013-07-11"
2243
+ [#309]:https://github.com/puma/puma/issues/309 "Issue by @masterkain, closed 2013-07-09"
2244
+ [#166]:https://github.com/puma/puma/issues/166 "Issue by @emassip, closed 2013-07-06"
2245
+ [#292]:https://github.com/puma/puma/issues/292 "Issue by @pulse00, closed 2013-07-06"
2246
+ [#274]:https://github.com/puma/puma/issues/274 "Issue by @mrbrdo, closed 2013-07-06"
2247
+ [#304]:https://github.com/puma/puma/issues/304 "Issue by @nandosola, closed 2013-07-06"
2248
+ [#287]:https://github.com/puma/puma/issues/287 "Issue by @runlevel5, closed 2013-07-06"
2249
+ [#256]:https://github.com/puma/puma/issues/256 "Issue by @rkh, closed 2013-07-01"
2250
+ [#285]:https://github.com/puma/puma/issues/285 "Issue by @mkwiatkowski, closed 2013-06-20"
2251
+ [#270]:https://github.com/puma/puma/issues/270 "Issue by @iamroody, closed 2013-06-01"
2252
+ [#246]:https://github.com/puma/puma/issues/246 "Issue by @amencarini, closed 2013-06-01"
2253
+ [#278]:https://github.com/puma/puma/issues/278 "Issue by @titanous, closed 2013-06-18"
2254
+ [#251]:https://github.com/puma/puma/issues/251 "Issue by @cure, closed 2013-06-18"
2255
+ [#252]:https://github.com/puma/puma/issues/252 "Issue by @vixns, closed 2013-06-01"
2256
+ [#234]:https://github.com/puma/puma/issues/234 "Issue by @jgarber, closed 2013-04-08"
2257
+ [#228]:https://github.com/puma/puma/issues/228 "Issue by @joelmats, closed 2013-04-29"
2258
+ [#192]:https://github.com/puma/puma/issues/192 "Issue by @steverandy, closed 2013-02-09"
2259
+ [#206]:https://github.com/puma/puma/issues/206 "Issue by @moll, closed 2013-03-19"
2260
+ [#154]:https://github.com/puma/puma/issues/154 "Issue by @trevor, closed 2013-03-19"
2261
+ [#208]:https://github.com/puma/puma/issues/208 "Issue by @ochronus, closed 2013-03-18"
2262
+ [#189]:https://github.com/puma/puma/issues/189 "Issue by @tolot27, closed 2013-02-09"
2263
+ [#185]:https://github.com/puma/puma/issues/185 "Issue by @nicolai86, closed 2013-02-06"
2264
+ [#182]:https://github.com/puma/puma/issues/182 "Issue by @sriedel, closed 2013-02-05"
2265
+ [#183]:https://github.com/puma/puma/issues/183 "Issue by @concept47, closed 2013-02-05"
2266
+ [#176]:https://github.com/puma/puma/issues/176 "Issue by @cryo28, closed 2013-02-05"
2267
+ [#180]:https://github.com/puma/puma/issues/180 "Issue by @tscolari, closed 2013-02-05"
2268
+ [#170]:https://github.com/puma/puma/issues/170 "Issue by @nixme, closed 2012-11-29"
2269
+ [#148]:https://github.com/puma/puma/issues/148 "Issue by @rafaelss, closed 2012-11-18"
2270
+ [#128]:https://github.com/puma/puma/issues/128 "Issue by @fbjork, closed 2012-10-20"
2271
+ [#155]:https://github.com/puma/puma/issues/155 "Issue by @ehlertij, closed 2012-10-13"
2272
+ [#123]:https://github.com/puma/puma/pull/123 "PR by @jcoene, closed 2012-07-19"
2273
+ [#111]:https://github.com/puma/puma/pull/111 "PR by @kenkeiter, closed 2012-07-19"
2274
+ [#98]:https://github.com/puma/puma/pull/98 "PR by @Flink, closed 2012-05-15"
2275
+ [#94]:https://github.com/puma/puma/issues/94 "Issue by @ender672, closed 2012-05-08"
2276
+ [#84]:https://github.com/puma/puma/issues/84 "Issue by @sigursoft, closed 2012-04-29"
2277
+ [#78]:https://github.com/puma/puma/issues/78 "Issue by @dstrelau, closed 2012-04-28"
2278
+ [#79]:https://github.com/puma/puma/issues/79 "Issue by @jammi, closed 2012-04-28"
2279
+ [#65]:https://github.com/puma/puma/issues/65 "Issue by @bporterfield, closed 2012-04-11"
2280
+ [#54]:https://github.com/puma/puma/issues/54 "Issue by @masterkain, closed 2012-04-10"
2281
+ [#58]:https://github.com/puma/puma/pull/58 "PR by @paneq, closed 2012-04-10"
2282
+ [#61]:https://github.com/puma/puma/issues/61 "Issue by @dustalov, closed 2012-04-10"
2283
+ [#63]:https://github.com/puma/puma/issues/63 "Issue by @seamusabshere, closed 2012-04-11"
2284
+ [#60]:https://github.com/puma/puma/issues/60 "Issue by @paneq, closed 2012-04-11"
2285
+ [#53]:https://github.com/puma/puma/pull/53 "PR by @sxua, closed 2012-04-11"