puma 5.0.1 → 5.1.1

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

Potentially problematic release.


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

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