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