puma 5.0.0-java → 5.0.1-java
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 +1126 -574
- data/ext/puma_http11/http11_parser.c +64 -64
- data/lib/puma.rb +5 -2
- data/lib/puma/binder.rb +2 -0
- data/lib/puma/client.rb +5 -1
- data/lib/puma/cluster.rb +2 -0
- data/lib/puma/const.rb +1 -1
- data/lib/puma/error_logger.rb +2 -2
- data/lib/puma/events.rb +5 -3
- data/lib/puma/launcher.rb +8 -0
- data/lib/puma/minissl.rb +8 -0
- data/lib/puma/puma_http11.jar +0 -0
- data/lib/puma/reactor.rb +2 -13
- data/lib/puma/runner.rb +4 -17
- data/lib/puma/server.rb +92 -64
- data/lib/puma/single.rb +1 -0
- data/lib/puma/thread_pool.rb +22 -2
- data/lib/puma/util.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f8714e4e2dc2f93e740852757eb2f4b27d1a8b798272cf3fdaeeb5149ee342c5
|
4
|
+
data.tar.gz: 3864f8df894c0bed555b3894d2d0898bfe0c0f562e7be0888ac93a73888dda02
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9f84284f5271ab83e46a4c848781617e967a649a677113689710ca980bea589654904ac55a6a62fbd9c1e859a803b0b0b0f1ed3c97253de9cf91bdf4ec79e2b0
|
7
|
+
data.tar.gz: e7ee67654a659b782d0aab408a044cbc37c5cc0bf5e4653919c2c653b570e745a8f8fe780e9d1707ae64c969a850e6636d4d735299a02e154d4b028f87758087
|
data/History.md
CHANGED
@@ -1,82 +1,104 @@
|
|
1
|
-
##
|
1
|
+
## Master
|
2
|
+
|
3
|
+
* Features
|
4
|
+
* Your feature goes here <Most recent on the top, like GitHub> (#Github Number)
|
5
|
+
|
6
|
+
* Bugfixes
|
7
|
+
* Your bugfix goes here <Most recent on the top, like GitHub> (#Github Number)
|
8
|
+
|
9
|
+
## 5.0.1 / 2020-09-28
|
10
|
+
|
11
|
+
* Bugfixes
|
12
|
+
* Fix LoadError in CentOS 8 ([#2381])
|
13
|
+
* Better error handling during force shutdown ([#2271])
|
14
|
+
* Prevent connections from entering Reactor after shutdown begins ([#2377])
|
15
|
+
* Fix error backtrace debug logging && Do not log request dump if it is not parsed ([#2376])
|
16
|
+
* Split TCP_CORK and TCP_INFO ([#2372])
|
17
|
+
* Do not log EOFError when a client connection is closed without write ([#2384])
|
18
|
+
|
19
|
+
* Refactor
|
20
|
+
* Change Events#ssl_error signature from (error, peeraddr, peercert) to (error, ssl_socket) ([#2375])
|
21
|
+
* Consolidate option handling in Server, Server small refactors, doc chang ([#2373])
|
22
|
+
|
23
|
+
## 5.0.0 / 2020-09-17
|
2
24
|
|
3
25
|
* Features
|
4
|
-
* Allow compiling without OpenSSL and dynamically load files needed for SSL, add 'no ssl' CI (#2305)
|
5
|
-
* EXPERIMENTAL: Add `fork_worker` option and `refork` command for reduced memory usage by forking from a worker process instead of the master process. (#2099)
|
6
|
-
* EXPERIMENTAL: Added `wait_for_less_busy_worker` config. This may reduce latency on MRI through inserting a small delay before re-listening on the socket if worker is busy (#2079).
|
7
|
-
* EXPERIMENTAL: Added `nakayoshi_fork` option. Reduce memory usage in preloaded cluster-mode apps by GCing before fork and compacting, where available. (#2093, #2256)
|
8
|
-
* Added pumactl `thread-backtraces` command to print thread backtraces (#2054)
|
9
|
-
* Added incrementing `requests_count` to `Puma.stats`. (#2106)
|
10
|
-
* Increased maximum URI path length from 2048 to 8192 bytes (#2167, #2344)
|
11
|
-
* `lowlevel_error_handler` is now called during a forced threadpool shutdown, and if a callable with 3 arguments is set, we now also pass the status code (#2203)
|
12
|
-
* Faster phased restart and worker timeout (#2220)
|
13
|
-
* Added `state_permission` to config DSL to set state file permissions (#2238)
|
14
|
-
* Added `Puma.stats_hash`, which returns a stats in Hash instead of a JSON string (#2086, #2253)
|
15
|
-
* `rack.multithread` and `rack.multiprocess` now dynamically resolved by `max_thread` and `workers` respectively (#2288)
|
26
|
+
* Allow compiling without OpenSSL and dynamically load files needed for SSL, add 'no ssl' CI ([#2305])
|
27
|
+
* EXPERIMENTAL: Add `fork_worker` option and `refork` command for reduced memory usage by forking from a worker process instead of the master process. ([#2099])
|
28
|
+
* EXPERIMENTAL: Added `wait_for_less_busy_worker` config. This may reduce latency on MRI through inserting a small delay before re-listening on the socket if worker is busy ([#2079]).
|
29
|
+
* EXPERIMENTAL: Added `nakayoshi_fork` option. Reduce memory usage in preloaded cluster-mode apps by GCing before fork and compacting, where available. ([#2093], [#2256])
|
30
|
+
* Added pumactl `thread-backtraces` command to print thread backtraces ([#2054])
|
31
|
+
* Added incrementing `requests_count` to `Puma.stats`. ([#2106])
|
32
|
+
* Increased maximum URI path length from 2048 to 8192 bytes ([#2167], [#2344])
|
33
|
+
* `lowlevel_error_handler` is now called during a forced threadpool shutdown, and if a callable with 3 arguments is set, we now also pass the status code ([#2203])
|
34
|
+
* Faster phased restart and worker timeout ([#2220])
|
35
|
+
* Added `state_permission` to config DSL to set state file permissions ([#2238])
|
36
|
+
* Added `Puma.stats_hash`, which returns a stats in Hash instead of a JSON string ([#2086], [#2253])
|
37
|
+
* `rack.multithread` and `rack.multiprocess` now dynamically resolved by `max_thread` and `workers` respectively ([#2288])
|
16
38
|
|
17
39
|
* Deprecations, Removals and Breaking API Changes
|
18
|
-
* `--control` has been removed. Use `--control-url` (#1487)
|
40
|
+
* `--control` has been removed. Use `--control-url` ([#1487])
|
19
41
|
* `worker_directory` has been removed. Use `directory`.
|
20
|
-
* min_threads now set by environment variables PUMA_MIN_THREADS and MIN_THREADS. (#2143)
|
21
|
-
* max_threads now set by environment variables PUMA_MAX_THREADS and MAX_THREADS. (#2143)
|
22
|
-
* max_threads default to 5 in MRI or 16 for all other interpreters. (#2143)
|
23
|
-
* preload by default if workers > 1 (#2143)
|
24
|
-
* Puma::Plugin.workers_supported? has been removed. Use Puma.forkable? instead. (#2143)
|
25
|
-
* `tcp_mode` has been removed without replacement. (#2169)
|
26
|
-
* Daemonization has been removed without replacement. (#2170)
|
27
|
-
* Changed #connected_port to #connected_ports (#2076)
|
28
|
-
* Configuration: `environment` is read from `RAILS_ENV`, if `RACK_ENV` can't be found (#2022)
|
42
|
+
* min_threads now set by environment variables PUMA_MIN_THREADS and MIN_THREADS. ([#2143])
|
43
|
+
* max_threads now set by environment variables PUMA_MAX_THREADS and MAX_THREADS. ([#2143])
|
44
|
+
* max_threads default to 5 in MRI or 16 for all other interpreters. ([#2143])
|
45
|
+
* preload by default if workers > 1 ([#2143])
|
46
|
+
* Puma::Plugin.workers_supported? has been removed. Use Puma.forkable? instead. ([#2143])
|
47
|
+
* `tcp_mode` has been removed without replacement. ([#2169])
|
48
|
+
* Daemonization has been removed without replacement. ([#2170])
|
49
|
+
* Changed #connected_port to #connected_ports ([#2076])
|
50
|
+
* Configuration: `environment` is read from `RAILS_ENV`, if `RACK_ENV` can't be found ([#2022])
|
29
51
|
* Log binding on http:// for TCP bindings to make it clickable
|
30
52
|
|
31
53
|
* Bugfixes
|
32
|
-
* Fix JSON loading issues on phased-restarts (#2269)
|
33
|
-
* Improve shutdown reliability (#2312, #2338)
|
34
|
-
* Close client http connections made to an ssl server with TLSv1.3 (#2116)
|
35
|
-
* Do not set user_config to quiet by default to allow for file config (#2074)
|
36
|
-
* Always close SSL connection in Puma::ControlCLI (#2211)
|
37
|
-
* Windows update extconf.rb for use with ssp and varied Ruby/MSYS2 combinations (#2069)
|
38
|
-
* Ensure control server Unix socket is closed on shutdown (#2112)
|
39
|
-
* Preserve `BUNDLE_GEMFILE` env var when using `prune_bundler` (#1893)
|
40
|
-
* Send 408 request timeout even when queue requests is disabled (#2119)
|
41
|
-
* Rescue IO::WaitReadable instead of EAGAIN for blocking read (#2121)
|
42
|
-
* Ensure `BUNDLE_GEMFILE` is unspecified in workers if unspecified in master when using `prune_bundler` (#2154)
|
43
|
-
* Rescue and log exceptions in hooks defined by users (on_worker_boot, after_worker_fork etc) (#1551)
|
44
|
-
* Read directly from the socket in #read_and_drop to avoid raising further SSL errors (#2198)
|
45
|
-
* Set `Connection: closed` header when queue requests is disabled (#2216)
|
46
|
-
* Pass queued requests to thread pool on server shutdown (#2122)
|
47
|
-
* Fixed a few minor concurrency bugs in ThreadPool that may have affected non-GVL Rubies (#2220)
|
48
|
-
* Fix `out_of_band` hook never executed if the number of worker threads is > 1 (#2177)
|
49
|
-
* Fix ThreadPool#shutdown timeout accuracy (#2221)
|
50
|
-
* Fix `UserFileDefaultOptions#fetch` to properly use `default` (#2233)
|
51
|
-
* Improvements to `out_of_band` hook (#2234)
|
52
|
-
* Prefer the rackup file specified by the CLI (#2225)
|
53
|
-
* Fix for spawning subprocesses with fork_worker option (#2267)
|
54
|
-
* Set `CONTENT_LENGTH` for chunked requests (#2287)
|
55
|
-
* JRuby - Add Puma::MiniSSL::Engine#init? and #teardown methods, run all SSL tests (#2317)
|
56
|
-
* Improve shutdown reliability (#2312)
|
54
|
+
* Fix JSON loading issues on phased-restarts ([#2269])
|
55
|
+
* Improve shutdown reliability ([#2312], [#2338])
|
56
|
+
* Close client http connections made to an ssl server with TLSv1.3 ([#2116])
|
57
|
+
* Do not set user_config to quiet by default to allow for file config ([#2074])
|
58
|
+
* Always close SSL connection in Puma::ControlCLI ([#2211])
|
59
|
+
* Windows update extconf.rb for use with ssp and varied Ruby/MSYS2 combinations ([#2069])
|
60
|
+
* Ensure control server Unix socket is closed on shutdown ([#2112])
|
61
|
+
* Preserve `BUNDLE_GEMFILE` env var when using `prune_bundler` ([#1893])
|
62
|
+
* Send 408 request timeout even when queue requests is disabled ([#2119])
|
63
|
+
* Rescue IO::WaitReadable instead of EAGAIN for blocking read ([#2121])
|
64
|
+
* Ensure `BUNDLE_GEMFILE` is unspecified in workers if unspecified in master when using `prune_bundler` ([#2154])
|
65
|
+
* Rescue and log exceptions in hooks defined by users (on_worker_boot, after_worker_fork etc) ([#1551])
|
66
|
+
* Read directly from the socket in #read_and_drop to avoid raising further SSL errors ([#2198])
|
67
|
+
* Set `Connection: closed` header when queue requests is disabled ([#2216])
|
68
|
+
* Pass queued requests to thread pool on server shutdown ([#2122])
|
69
|
+
* Fixed a few minor concurrency bugs in ThreadPool that may have affected non-GVL Rubies ([#2220])
|
70
|
+
* Fix `out_of_band` hook never executed if the number of worker threads is > 1 ([#2177])
|
71
|
+
* Fix ThreadPool#shutdown timeout accuracy ([#2221])
|
72
|
+
* Fix `UserFileDefaultOptions#fetch` to properly use `default` ([#2233])
|
73
|
+
* Improvements to `out_of_band` hook ([#2234])
|
74
|
+
* Prefer the rackup file specified by the CLI ([#2225])
|
75
|
+
* Fix for spawning subprocesses with fork_worker option ([#2267])
|
76
|
+
* Set `CONTENT_LENGTH` for chunked requests ([#2287])
|
77
|
+
* JRuby - Add Puma::MiniSSL::Engine#init? and #teardown methods, run all SSL tests ([#2317])
|
78
|
+
* Improve shutdown reliability ([#2312])
|
57
79
|
* Resolve issue with threadpool waiting counter decrement when thread is killed
|
58
80
|
* Constrain rake-compiler version to 0.9.4 to fix `ClassNotFound` exception when using MiniSSL with Java8.
|
59
|
-
* Fix recursive `prune_bundler` (#2319).
|
81
|
+
* Fix recursive `prune_bundler` ([#2319]).
|
60
82
|
* Ensure that TCP_CORK is usable
|
61
|
-
* Fix corner case when request body is chunked (#2326)
|
62
|
-
* Fix filehandle leak in MiniSSL (#2299)
|
83
|
+
* Fix corner case when request body is chunked ([#2326])
|
84
|
+
* Fix filehandle leak in MiniSSL ([#2299])
|
63
85
|
|
64
86
|
* Refactor
|
65
|
-
* Remove unused loader argument from Plugin initializer (#2095)
|
66
|
-
* Simplify `Configuration.random_token` and remove insecure fallback (#2102)
|
67
|
-
* Simplify `Runner#start_control` URL parsing (#2111)
|
68
|
-
* Removed the IOBuffer extension and replaced with Ruby (#1980)
|
69
|
-
* Update `Rack::Handler::Puma.run` to use `**options` (#2189)
|
70
|
-
* ThreadPool concurrency refactoring (#2220)
|
71
|
-
* JSON parse cluster worker stats instead of regex (#2124)
|
72
|
-
* Support parallel tests in verbose progress reporting (#2223)
|
73
|
-
* Refactor error handling in server accept loop (#2239)
|
87
|
+
* Remove unused loader argument from Plugin initializer ([#2095])
|
88
|
+
* Simplify `Configuration.random_token` and remove insecure fallback ([#2102])
|
89
|
+
* Simplify `Runner#start_control` URL parsing ([#2111])
|
90
|
+
* Removed the IOBuffer extension and replaced with Ruby ([#1980])
|
91
|
+
* Update `Rack::Handler::Puma.run` to use `**options` ([#2189])
|
92
|
+
* ThreadPool concurrency refactoring ([#2220])
|
93
|
+
* JSON parse cluster worker stats instead of regex ([#2124])
|
94
|
+
* Support parallel tests in verbose progress reporting ([#2223])
|
95
|
+
* Refactor error handling in server accept loop ([#2239])
|
74
96
|
|
75
97
|
## 4.3.6 / 2020-09-05
|
76
98
|
|
77
99
|
* Bugfixes
|
78
|
-
* Explicitly include ctype.h to fix compilation warning and build error on macOS with Xcode 12 (#2304)
|
79
|
-
* Don't require json at boot (#2269)
|
100
|
+
* Explicitly include ctype.h to fix compilation warning and build error on macOS with Xcode 12 ([#2304])
|
101
|
+
* Don't require json at boot ([#2269])
|
80
102
|
|
81
103
|
## 4.3.4/4.3.5 and 3.12.5/3.12.6 / 2020-05-22
|
82
104
|
|
@@ -88,7 +110,7 @@ Each patchlevel release contains a separate security fix. We recommend simply up
|
|
88
110
|
## 4.3.3 and 3.12.4 / 2020-02-28
|
89
111
|
|
90
112
|
* Bugfixes
|
91
|
-
* Fix: Fixes a problem where we weren't splitting headers correctly on newlines (#2132)
|
113
|
+
* Fix: Fixes a problem where we weren't splitting headers correctly on newlines ([#2132])
|
92
114
|
* Security
|
93
115
|
* Fix: Prevent HTTP Response splitting via CR in early hints. CVE-2020-5249.
|
94
116
|
|
@@ -105,152 +127,146 @@ Each patchlevel release contains a separate security fix. We recommend simply up
|
|
105
127
|
## 4.3.0 / 2019-11-07
|
106
128
|
|
107
129
|
* Features
|
108
|
-
* Strip whitespace at end of HTTP headers (#2010)
|
109
|
-
* Optimize HTTP parser for JRuby (#2012)
|
110
|
-
* Add SSL support for the control app and cli (#2046, #2052)
|
130
|
+
* Strip whitespace at end of HTTP headers ([#2010])
|
131
|
+
* Optimize HTTP parser for JRuby ([#2012])
|
132
|
+
* Add SSL support for the control app and cli ([#2046], [#2052])
|
111
133
|
|
112
134
|
* Bugfixes
|
113
|
-
* Fix Errno::EINVAL when SSL is enabled and browser rejects cert (#1564)
|
114
|
-
* Fix pumactl defaulting puma to development if an environment was not specified (#2035)
|
115
|
-
* Fix closing file stream when reading pid from pidfile (#2048)
|
116
|
-
* Fix a typo in configuration option `--extra_runtime_dependencies` (#2050)
|
135
|
+
* Fix Errno::EINVAL when SSL is enabled and browser rejects cert ([#1564])
|
136
|
+
* Fix pumactl defaulting puma to development if an environment was not specified ([#2035])
|
137
|
+
* Fix closing file stream when reading pid from pidfile ([#2048])
|
138
|
+
* Fix a typo in configuration option `--extra_runtime_dependencies` ([#2050])
|
117
139
|
|
118
140
|
## 4.2.1 / 2019-10-07
|
119
141
|
|
120
142
|
* 3 bugfixes
|
121
|
-
* Fix socket activation of systemd (pre-existing) unix binder files (#1842, #1988)
|
122
|
-
* Deal with multiple calls to bind correctly (#1986, #1994, #2006)
|
123
|
-
* Accepts symbols for `verify_mode` (#1222)
|
143
|
+
* Fix socket activation of systemd (pre-existing) unix binder files ([#1842], [#1988])
|
144
|
+
* Deal with multiple calls to bind correctly ([#1986], [#1994], [#2006])
|
145
|
+
* Accepts symbols for `verify_mode` ([#1222])
|
124
146
|
|
125
147
|
## 4.2.0 / 2019-09-23
|
126
148
|
|
127
149
|
* 6 features
|
128
|
-
* Pumactl has a new -e environment option and reads `config/puma/<environment>.rb` config files (#1885)
|
129
|
-
* Semicolons are now allowed in URL paths (MRI only), useful for Angular or Redmine (#1934)
|
130
|
-
* Allow extra dependencies to be defined when using prune_bundler (#1105)
|
131
|
-
* Puma now reports the correct port when binding to port 0, also reports other listeners when binding to localhost (#1786)
|
132
|
-
* Sending SIGINFO to any Puma worker now prints currently active threads and their backtraces (#1320)
|
133
|
-
* Puma threads all now have their name set on Ruby 2.3+ (#1968)
|
150
|
+
* Pumactl has a new -e environment option and reads `config/puma/<environment>.rb` config files ([#1885])
|
151
|
+
* Semicolons are now allowed in URL paths (MRI only), useful for Angular or Redmine ([#1934])
|
152
|
+
* Allow extra dependencies to be defined when using prune_bundler ([#1105])
|
153
|
+
* Puma now reports the correct port when binding to port 0, also reports other listeners when binding to localhost ([#1786])
|
154
|
+
* Sending SIGINFO to any Puma worker now prints currently active threads and their backtraces ([#1320])
|
155
|
+
* Puma threads all now have their name set on Ruby 2.3+ ([#1968])
|
134
156
|
* 4 bugfixes
|
135
|
-
* Fix some misbehavior with phased restart and externally SIGTERMed workers (#1908, #1952)
|
136
|
-
* Fix socket closing on error (#1941)
|
137
|
-
* Removed unnecessary SIGINT trap for JRuby that caused some race conditions (#1961)
|
138
|
-
* Fix socket files being left around after process stopped (#1970)
|
157
|
+
* Fix some misbehavior with phased restart and externally SIGTERMed workers ([#1908], [#1952])
|
158
|
+
* Fix socket closing on error ([#1941])
|
159
|
+
* Removed unnecessary SIGINT trap for JRuby that caused some race conditions ([#1961])
|
160
|
+
* Fix socket files being left around after process stopped ([#1970])
|
139
161
|
* Absolutely thousands of lines of test improvements and fixes thanks to @MSP-Greg
|
140
162
|
|
141
163
|
## 4.1.1 / 2019-09-05
|
142
164
|
|
143
165
|
* 3 bugfixes
|
144
|
-
* Revert our attempt to not dup STDOUT/STDERR (#1946)
|
145
|
-
* Fix socket close on error (#1941)
|
146
|
-
* Fix workers not shutting down correctly (#1908)
|
166
|
+
* Revert our attempt to not dup STDOUT/STDERR ([#1946])
|
167
|
+
* Fix socket close on error ([#1941])
|
168
|
+
* Fix workers not shutting down correctly ([#1908])
|
147
169
|
|
148
170
|
## 4.1.0 / 2019-08-08
|
149
171
|
|
150
172
|
* 4 features
|
151
|
-
* Add REQUEST_PATH on parse error message (#1831)
|
152
|
-
* You can now easily add custom log formatters with the `log_formatter` config option (#1816)
|
153
|
-
* Puma.stats now provides process start times (#1844)
|
154
|
-
* Add support for disabling TLSv1.1 (#1836)
|
173
|
+
* Add REQUEST_PATH on parse error message ([#1831])
|
174
|
+
* You can now easily add custom log formatters with the `log_formatter` config option ([#1816])
|
175
|
+
* Puma.stats now provides process start times ([#1844])
|
176
|
+
* Add support for disabling TLSv1.1 ([#1836])
|
155
177
|
|
156
178
|
* 7 bugfixes
|
157
|
-
* Fix issue where Puma was creating zombie process entries (#1887)
|
158
|
-
* Fix bugs with line-endings and chunked encoding (#1812)
|
159
|
-
* RACK_URL_SCHEME is now set correctly in all conditions (#1491)
|
160
|
-
* We no longer mutate global STDOUT/STDERR, particularly the sync setting (#1837)
|
161
|
-
* SSL read_nonblock no longer blocks (#1857)
|
162
|
-
* Swallow connection errors when sending early hints (#1822)
|
163
|
-
* Backtrace no longer dumped when invalid pumactl commands are run (#1863)
|
179
|
+
* Fix issue where Puma was creating zombie process entries ([#1887])
|
180
|
+
* Fix bugs with line-endings and chunked encoding ([#1812])
|
181
|
+
* RACK_URL_SCHEME is now set correctly in all conditions ([#1491])
|
182
|
+
* We no longer mutate global STDOUT/STDERR, particularly the sync setting ([#1837])
|
183
|
+
* SSL read_nonblock no longer blocks ([#1857])
|
184
|
+
* Swallow connection errors when sending early hints ([#1822])
|
185
|
+
* Backtrace no longer dumped when invalid pumactl commands are run ([#1863])
|
164
186
|
|
165
187
|
* 5 other
|
166
|
-
* Avoid casting worker_timeout twice (#1838)
|
167
|
-
* Removed a call to private that wasn't doing anything (#1882)
|
168
|
-
* README, Rakefile, docs and test cleanups (#1848, #1847, #1846, #1853, #1859, #1850, #1866, #1870, #1872, #1833, #1888)
|
188
|
+
* Avoid casting worker_timeout twice ([#1838])
|
189
|
+
* Removed a call to private that wasn't doing anything ([#1882])
|
190
|
+
* README, Rakefile, docs and test cleanups ([#1848], [#1847], [#1846], [#1853], #1859, [#1850], [#1866], [#1870], [#1872], [#1833], [#1888])
|
169
191
|
* Puma.io has proper documentation now (https://puma.io/puma/)
|
170
192
|
* Added the Contributor Covenant CoC
|
171
193
|
|
172
194
|
* 1 known issue
|
173
|
-
* Some users are still experiencing issues surrounding socket activation and Unix sockets (#1842)
|
195
|
+
* Some users are still experiencing issues surrounding socket activation and Unix sockets ([#1842])
|
174
196
|
|
175
197
|
## 4.0.1 / 2019-07-11
|
176
198
|
|
177
199
|
* 2 bugfixes
|
178
|
-
* Fix socket removed after reload - should fix problems with systemd socket activation. (#1829)
|
179
|
-
* Add extconf tests for DTLS_method & TLS_server_method, use in minissl.rb. Should fix "undefined symbol: DTLS_method" when compiling against old OpenSSL versions. (#1832)
|
200
|
+
* Fix socket removed after reload - should fix problems with systemd socket activation. ([#1829])
|
201
|
+
* Add extconf tests for DTLS_method & TLS_server_method, use in minissl.rb. Should fix "undefined symbol: DTLS_method" when compiling against old OpenSSL versions. ([#1832])
|
180
202
|
* 1 other
|
181
|
-
* Removed unnecessary RUBY_VERSION checks. (#1827)
|
203
|
+
* Removed unnecessary RUBY_VERSION checks. ([#1827])
|
182
204
|
|
183
205
|
## 4.0.0 / 2019-06-25
|
184
206
|
|
185
207
|
* 9 features
|
186
|
-
* Add support for disabling TLSv1.0 (#1562)
|
187
|
-
* Request body read time metric (#1569)
|
188
|
-
* Add out_of_band hook (#1648)
|
189
|
-
* Re-implement (native) IOBuffer for JRuby (#1691)
|
190
|
-
* Min worker timeout (#1716)
|
191
|
-
* Add option to suppress SignalException on SIGTERM (#1690)
|
192
|
-
* Allow mutual TLS CA to be set using `ssl_bind` DSL (#1689)
|
193
|
-
* Reactor now uses nio4r instead of `select` (#1728)
|
194
|
-
* Add status to pumactl with pidfile (#1824)
|
208
|
+
* Add support for disabling TLSv1.0 ([#1562])
|
209
|
+
* Request body read time metric ([#1569])
|
210
|
+
* Add out_of_band hook ([#1648])
|
211
|
+
* Re-implement (native) IOBuffer for JRuby ([#1691])
|
212
|
+
* Min worker timeout ([#1716])
|
213
|
+
* Add option to suppress SignalException on SIGTERM ([#1690])
|
214
|
+
* Allow mutual TLS CA to be set using `ssl_bind` DSL ([#1689])
|
215
|
+
* Reactor now uses nio4r instead of `select` ([#1728])
|
216
|
+
* Add status to pumactl with pidfile ([#1824])
|
195
217
|
|
196
218
|
* 10 bugfixes
|
197
|
-
* Do not accept new requests on shutdown (#1685, #1808)
|
198
|
-
* Fix 3 corner cases when request body is chunked (#1508)
|
199
|
-
* Change pid existence check's condition branches (#1650)
|
200
|
-
* Don't call .stop on a server that doesn't exist (#1655)
|
201
|
-
* Implemented NID_X9_62_prime256v1 (P-256) curve over P-521 (#1671)
|
202
|
-
* Fix @notify.close can't modify frozen IOError (RuntimeError) (#1583)
|
203
|
-
* Fix Java 8 support (#1773)
|
204
|
-
* Fix error `uninitialized constant Puma::Cluster` (#1731)
|
205
|
-
* Fix `not_token` being able to be set to true (#1803)
|
206
|
-
* Fix "Hang on SIGTERM with ruby 2.6 in clustered mode" (
|
207
|
-
|
208
|
-
[PR #1741]: https://github.com/puma/puma/pull/1741
|
209
|
-
[#1674]: https://github.com/puma/puma/issues/1674
|
210
|
-
[#1720]: https://github.com/puma/puma/issues/1720
|
211
|
-
[#1730]: https://github.com/puma/puma/issues/1730
|
212
|
-
[#1755]: https://github.com/puma/puma/issues/1755
|
219
|
+
* Do not accept new requests on shutdown ([#1685], [#1808])
|
220
|
+
* Fix 3 corner cases when request body is chunked ([#1508])
|
221
|
+
* Change pid existence check's condition branches ([#1650])
|
222
|
+
* Don't call .stop on a server that doesn't exist ([#1655])
|
223
|
+
* Implemented NID_X9_62_prime256v1 (P-256) curve over P-521 ([#1671])
|
224
|
+
* Fix @notify.close can't modify frozen IOError (RuntimeError) ([#1583])
|
225
|
+
* Fix Java 8 support ([#1773])
|
226
|
+
* Fix error `uninitialized constant Puma::Cluster` ([#1731])
|
227
|
+
* Fix `not_token` being able to be set to true ([#1803])
|
228
|
+
* Fix "Hang on SIGTERM with ruby 2.6 in clustered mode" (PR [#1741], [#1674], [#1720], [#1730], [#1755])
|
213
229
|
|
214
230
|
## 3.12.1 / 2019-03-19
|
215
231
|
|
216
232
|
* 1 features
|
217
|
-
* Internal strings are frozen (#1649)
|
233
|
+
* Internal strings are frozen ([#1649])
|
218
234
|
* 3 bugfixes
|
219
|
-
* Fix chunked ending check (#1607)
|
220
|
-
* Rack handler should use provided default host (#1700)
|
221
|
-
* Better support for detecting runtimes that support `fork` (#1630)
|
235
|
+
* Fix chunked ending check ([#1607])
|
236
|
+
* Rack handler should use provided default host ([#1700])
|
237
|
+
* Better support for detecting runtimes that support `fork` ([#1630])
|
222
238
|
|
223
239
|
## 3.12.0 / 2018-07-13
|
224
240
|
|
225
241
|
* 5 features:
|
226
|
-
* You can now specify which SSL ciphers the server should support, default is unchanged (#1478)
|
227
|
-
* The setting for Puma's `max_threads` is now in `Puma.stats` (#1604)
|
228
|
-
* Pool capacity is now in `Puma.stats` (#1579)
|
229
|
-
* Installs restricted to Ruby 2.2+ (#1506)
|
230
|
-
* `--control` is now deprecated in favor of `--control-url` (#1487)
|
242
|
+
* You can now specify which SSL ciphers the server should support, default is unchanged ([#1478])
|
243
|
+
* The setting for Puma's `max_threads` is now in `Puma.stats` ([#1604])
|
244
|
+
* Pool capacity is now in `Puma.stats` ([#1579])
|
245
|
+
* Installs restricted to Ruby 2.2+ ([#1506])
|
246
|
+
* `--control` is now deprecated in favor of `--control-url` ([#1487])
|
231
247
|
|
232
248
|
* 2 bugfixes:
|
233
|
-
* Workers will no longer accept more web requests than they have capacity to process. This prevents an issue where one worker would accept lots of requests while starving other workers (#1563)
|
234
|
-
* In a test env puma now emits the stack on an exception (#1557)
|
249
|
+
* Workers will no longer accept more web requests than they have capacity to process. This prevents an issue where one worker would accept lots of requests while starving other workers ([#1563])
|
250
|
+
* In a test env puma now emits the stack on an exception ([#1557])
|
235
251
|
|
236
252
|
## 3.11.4 / 2018-04-12
|
237
253
|
|
238
254
|
* 2 features:
|
239
|
-
* Manage puma as a service using rc.d (#1529)
|
240
|
-
* Server stats are now available from a top level method (#1532)
|
255
|
+
* Manage puma as a service using rc.d ([#1529])
|
256
|
+
* Server stats are now available from a top level method ([#1532])
|
241
257
|
* 5 bugfixes:
|
242
|
-
* Fix parsing CLI options (#1482)
|
243
|
-
* Order of stderr and stdout is made before redirecting to a log file (#1511)
|
244
|
-
* Init.d fix of `ps -p` to check if pid exists (#1545)
|
245
|
-
* Early hints bugfix (#1550)
|
246
|
-
* Purge interrupt queue when closing socket fails (#1553)
|
258
|
+
* Fix parsing CLI options ([#1482])
|
259
|
+
* Order of stderr and stdout is made before redirecting to a log file ([#1511])
|
260
|
+
* Init.d fix of `ps -p` to check if pid exists ([#1545])
|
261
|
+
* Early hints bugfix ([#1550])
|
262
|
+
* Purge interrupt queue when closing socket fails ([#1553])
|
247
263
|
|
248
264
|
## 3.11.3 / 2018-03-05
|
249
265
|
|
250
266
|
* 3 bugfixes:
|
251
|
-
* Add closed? to MiniSSL::Socket for use in reactor (#1510)
|
252
|
-
* Handle EOFError at the toplevel of the server threads (#1524) (#1507)
|
253
|
-
* Deal with zero sized bodies when using SSL (#1483)
|
267
|
+
* Add closed? to MiniSSL::Socket for use in reactor ([#1510])
|
268
|
+
* Handle EOFError at the toplevel of the server threads ([#1524]) ([#1507])
|
269
|
+
* Deal with zero sized bodies when using SSL ([#1483])
|
254
270
|
|
255
271
|
## 3.11.2 / 2018-01-19
|
256
272
|
|
@@ -260,83 +276,83 @@ Each patchlevel release contains a separate security fix. We recommend simply up
|
|
260
276
|
## 3.11.1 / 2018-01-18
|
261
277
|
|
262
278
|
* 1 bugfix:
|
263
|
-
* Handle read\_nonblock returning nil when the socket close (#1502)
|
279
|
+
* Handle read\_nonblock returning nil when the socket close ([#1502])
|
264
280
|
|
265
281
|
## 3.11.0 / 2017-11-20
|
266
282
|
|
267
283
|
* 2 features:
|
268
|
-
* HTTP 103 Early Hints (#1403)
|
269
|
-
* 421/451 status codes now have correct status messages attached (#1435)
|
284
|
+
* HTTP 103 Early Hints ([#1403])
|
285
|
+
* 421/451 status codes now have correct status messages attached ([#1435])
|
270
286
|
|
271
287
|
* 9 bugfixes:
|
272
|
-
* Environment config files (/config/puma/<ENV>.rb) load correctly (#1340)
|
273
|
-
* Specify windows dependencies correctly (#1434, #1436)
|
274
|
-
* puma/events required in test helper (#1418)
|
275
|
-
* Correct control CLI's option help text (#1416)
|
276
|
-
* Remove a warning for unused variable in mini_ssl (#1409)
|
277
|
-
* Correct pumactl docs argument ordering (#1427)
|
278
|
-
* Fix an uninitialized variable warning in server.rb (#1430)
|
279
|
-
* Fix docs typo/error in Launcher init (#1429)
|
280
|
-
* Deal with leading spaces in RUBYOPT (#1455)
|
288
|
+
* Environment config files (/config/puma/<ENV>.rb) load correctly ([#1340])
|
289
|
+
* Specify windows dependencies correctly ([#1434], [#1436])
|
290
|
+
* puma/events required in test helper ([#1418])
|
291
|
+
* Correct control CLI's option help text ([#1416])
|
292
|
+
* Remove a warning for unused variable in mini_ssl ([#1409])
|
293
|
+
* Correct pumactl docs argument ordering ([#1427])
|
294
|
+
* Fix an uninitialized variable warning in server.rb ([#1430])
|
295
|
+
* Fix docs typo/error in Launcher init ([#1429])
|
296
|
+
* Deal with leading spaces in RUBYOPT ([#1455])
|
281
297
|
|
282
298
|
* 2 other:
|
283
|
-
* Add docs about internals (#1425, #1452)
|
284
|
-
* Tons of test fixes from @MSP-Greg (#1439, #1442, #1464)
|
299
|
+
* Add docs about internals ([#1425], [#1452])
|
300
|
+
* Tons of test fixes from @MSP-Greg ([#1439], [#1442], [#1464])
|
285
301
|
|
286
302
|
## 3.10.0 / 2017-08-17
|
287
303
|
|
288
304
|
* 3 features:
|
289
|
-
* The status server has a new /gc and /gc-status command. (#1384)
|
290
|
-
* The persistent and first data timeouts are now configurable (#1111)
|
291
|
-
* Implemented RFC 2324 (#1392)
|
305
|
+
* The status server has a new /gc and /gc-status command. ([#1384])
|
306
|
+
* The persistent and first data timeouts are now configurable ([#1111])
|
307
|
+
* Implemented RFC 2324 ([#1392])
|
292
308
|
|
293
309
|
* 12 bugfixes:
|
294
|
-
* Not really a Puma bug, but @NickolasVashchenko created a gem to workaround a Ruby bug that some users of Puma may be experiencing. See README for more. (#1347)
|
295
|
-
* Fix hangups with SSL and persistent connections. (#1334)
|
296
|
-
* Fix Rails double-binding to a port (#1383)
|
297
|
-
* Fix incorrect thread names (#1368)
|
298
|
-
* Fix issues with /etc/hosts and JRuby where localhost addresses were not correct. (#1318)
|
299
|
-
* Fix compatibility with RUBYOPT="--enable-frozen-string-literal" (#1376)
|
300
|
-
* Fixed some compiler warnings (#1388)
|
301
|
-
* We actually run the integration tests in CI now (#1390)
|
302
|
-
* No longer shipping unnecessary directories in the gemfile (#1391)
|
303
|
-
* If RUBYOPT is nil, we no longer blow up on restart. (#1385)
|
304
|
-
* Correct response to SIGINT (#1377)
|
305
|
-
* Proper exit code returned when we receive a TERM signal (#1337)
|
310
|
+
* Not really a Puma bug, but @NickolasVashchenko created a gem to workaround a Ruby bug that some users of Puma may be experiencing. See README for more. ([#1347])
|
311
|
+
* Fix hangups with SSL and persistent connections. ([#1334])
|
312
|
+
* Fix Rails double-binding to a port ([#1383])
|
313
|
+
* Fix incorrect thread names ([#1368])
|
314
|
+
* Fix issues with /etc/hosts and JRuby where localhost addresses were not correct. ([#1318])
|
315
|
+
* Fix compatibility with RUBYOPT="--enable-frozen-string-literal" ([#1376])
|
316
|
+
* Fixed some compiler warnings ([#1388])
|
317
|
+
* We actually run the integration tests in CI now ([#1390])
|
318
|
+
* No longer shipping unnecessary directories in the gemfile ([#1391])
|
319
|
+
* If RUBYOPT is nil, we no longer blow up on restart. ([#1385])
|
320
|
+
* Correct response to SIGINT ([#1377])
|
321
|
+
* Proper exit code returned when we receive a TERM signal ([#1337])
|
306
322
|
|
307
323
|
* 3 refactors:
|
308
324
|
* Various test improvements from @grosser
|
309
|
-
* Rubocop (#1325)
|
310
|
-
* Hoe has been removed (#1395)
|
325
|
+
* Rubocop ([#1325])
|
326
|
+
* Hoe has been removed ([#1395])
|
311
327
|
|
312
328
|
* 1 known issue:
|
313
|
-
* Socket activation doesn't work in JRuby. Their fault, not ours. (#1367)
|
329
|
+
* Socket activation doesn't work in JRuby. Their fault, not ours. ([#1367])
|
314
330
|
|
315
331
|
## 3.9.1 / 2017-06-03
|
316
332
|
|
317
333
|
* 2 bugfixes:
|
318
|
-
* Fixed compatibility with older Bundler versions (#1314)
|
319
|
-
* Some internal test/development cleanup (#1311, #1313)
|
334
|
+
* Fixed compatibility with older Bundler versions ([#1314])
|
335
|
+
* Some internal test/development cleanup ([#1311], [#1313])
|
320
336
|
|
321
337
|
## 3.9.0 / 2017-06-01
|
322
338
|
|
323
339
|
* 2 features:
|
324
|
-
* The ENV is now reset to its original values when Puma restarts via USR1/USR2 (#1260) (MRI only, no JRuby support)
|
325
|
-
* Puma will no longer accept more clients than the maximum number of threads. (#1278)
|
340
|
+
* The ENV is now reset to its original values when Puma restarts via USR1/USR2 ([#1260]) (MRI only, no JRuby support)
|
341
|
+
* Puma will no longer accept more clients than the maximum number of threads. ([#1278])
|
326
342
|
|
327
343
|
* 9 bugfixes:
|
328
|
-
* Reduce information leakage by preventing HTTP parse errors from writing environment hashes to STDERR (#1306)
|
329
|
-
* Fix SSL/WebSocket compatibility (#1274)
|
330
|
-
* HTTP headers with empty values are no longer omitted from responses. (#1261)
|
331
|
-
* Fix a Rack env key which was set to nil. (#1259)
|
332
|
-
* peercert has been implemented for JRuby (#1248)
|
333
|
-
* Fix port settings when using rails s (#1277, #1290)
|
334
|
-
* Fix compat w/LibreSSL (#1285)
|
335
|
-
* Fix restarting Puma w/symlinks and a new Gemfile (#1282)
|
336
|
-
* Replace Dir.exists? with Dir.exist? (#1294)
|
344
|
+
* Reduce information leakage by preventing HTTP parse errors from writing environment hashes to STDERR ([#1306])
|
345
|
+
* Fix SSL/WebSocket compatibility ([#1274])
|
346
|
+
* HTTP headers with empty values are no longer omitted from responses. ([#1261])
|
347
|
+
* Fix a Rack env key which was set to nil. ([#1259])
|
348
|
+
* peercert has been implemented for JRuby ([#1248])
|
349
|
+
* Fix port settings when using rails s ([#1277], [#1290])
|
350
|
+
* Fix compat w/LibreSSL ([#1285])
|
351
|
+
* Fix restarting Puma w/symlinks and a new Gemfile ([#1282])
|
352
|
+
* Replace Dir.exists? with Dir.exist? ([#1294])
|
337
353
|
|
338
354
|
* 1 known issue:
|
339
|
-
* A bug in MRI 2.2+ can result in IOError: stream closed. See #1206. This issue has existed since at least Puma 3.6, and probably further back.
|
355
|
+
* A bug in MRI 2.2+ can result in IOError: stream closed. See [#1206]. This issue has existed since at least Puma 3.6, and probably further back.
|
340
356
|
|
341
357
|
* 1 refactor:
|
342
358
|
* Lots of test fixups from @grosser.
|
@@ -344,75 +360,75 @@ Each patchlevel release contains a separate security fix. We recommend simply up
|
|
344
360
|
## 3.8.2 / 2017-03-14
|
345
361
|
|
346
362
|
* 1 bugfix:
|
347
|
-
* Deal with getsockopt with TCP\_INFO failing for sockets that say they're TCP but aren't really. (#1241)
|
363
|
+
* Deal with getsockopt with TCP\_INFO failing for sockets that say they're TCP but aren't really. ([#1241])
|
348
364
|
|
349
365
|
## 3.8.1 / 2017-03-10
|
350
366
|
|
351
367
|
* 1 bugfix:
|
352
|
-
* Remove method call to method that no longer exists (#1239)
|
368
|
+
* Remove method call to method that no longer exists ([#1239])
|
353
369
|
|
354
370
|
## 3.8.0 / 2017-03-09
|
355
371
|
|
356
372
|
* 2 bugfixes:
|
357
|
-
* Port from rack handler does not take precedence over config file in Rails 5.1.0.beta2+ and 5.0.1.rc3+ (#1234)
|
358
|
-
* The `tmp/restart.txt` plugin no longer restricts the user from running more than one server from the same folder at a time (#1226)
|
373
|
+
* Port from rack handler does not take precedence over config file in Rails 5.1.0.beta2+ and 5.0.1.rc3+ ([#1234])
|
374
|
+
* The `tmp/restart.txt` plugin no longer restricts the user from running more than one server from the same folder at a time ([#1226])
|
359
375
|
|
360
376
|
* 1 feature:
|
361
|
-
* Closed clients are aborted to save capacity (#1227)
|
377
|
+
* Closed clients are aborted to save capacity ([#1227])
|
362
378
|
|
363
379
|
* 1 refactor:
|
364
|
-
* Bundler is no longer a dependency from tests (#1213)
|
380
|
+
* Bundler is no longer a dependency from tests ([#1213])
|
365
381
|
|
366
382
|
## 3.7.1 / 2017-02-20
|
367
383
|
|
368
384
|
* 2 bugfixes:
|
369
|
-
* Fix typo which blew up MiniSSL (#1182)
|
370
|
-
* Stop overriding command-line options with the config file (#1203)
|
385
|
+
* Fix typo which blew up MiniSSL ([#1182])
|
386
|
+
* Stop overriding command-line options with the config file ([#1203])
|
371
387
|
|
372
388
|
## 3.7.0 / 2017-01-04
|
373
389
|
|
374
390
|
* 6 minor features:
|
375
|
-
* Allow rack handler to accept ssl host. (#1129)
|
376
|
-
* Refactor TTOU processing. TTOU now handles multiple signals at once. (#1165)
|
391
|
+
* Allow rack handler to accept ssl host. ([#1129])
|
392
|
+
* Refactor TTOU processing. TTOU now handles multiple signals at once. ([#1165])
|
377
393
|
* Pickup any remaining chunk data as the next request.
|
378
394
|
* Prevent short term thread churn - increased auto trim default to 30 seconds.
|
379
|
-
* Raise error when `stdout` or `stderr` is not writable. (#1175)
|
380
|
-
* Add Rack 2.0 support to gemspec. (#1068)
|
395
|
+
* Raise error when `stdout` or `stderr` is not writable. ([#1175])
|
396
|
+
* Add Rack 2.0 support to gemspec. ([#1068])
|
381
397
|
|
382
398
|
* 5 refactors:
|
383
|
-
* Compare host and server name only once per call. (#1091)
|
384
|
-
* Minor refactor on Thread pool (#1088)
|
399
|
+
* Compare host and server name only once per call. ([#1091])
|
400
|
+
* Minor refactor on Thread pool ([#1088])
|
385
401
|
* Removed a ton of unused constants, variables and files.
|
386
402
|
* Use MRI macros when allocating heap memory
|
387
|
-
* Use hooks for on\_booted event. (#1160)
|
403
|
+
* Use hooks for on\_booted event. ([#1160])
|
388
404
|
|
389
405
|
* 14 bugfixes:
|
390
|
-
* Add eof? method to NullIO? (#1169)
|
391
|
-
* Fix Puma startup in provided init.d script (#1061)
|
392
|
-
* Fix default SSL mode back to none. (#1036)
|
393
|
-
* Fixed the issue of @listeners getting nil io (#1120)
|
394
|
-
* Make `get_dh1024` compatible with OpenSSL v1.1.0 (#1178)
|
395
|
-
* More gracefully deal with SSL sessions. Fixes #1002
|
396
|
-
* Move puma.rb to just autoloads. Fixes #1063
|
397
|
-
* MiniSSL: Provide write as <<. Fixes #1089
|
398
|
-
* Prune bundler should inherit fds (#1114)
|
399
|
-
* Replace use of Process.getpgid which does not behave as intended on all platforms (#1110)
|
400
|
-
* Transfer encoding header should be downcased before comparison (#1135)
|
401
|
-
* Use same write log logic for hijacked requests. (#1081)
|
402
|
-
* Fix `uninitialized constant Puma::StateFile` (#1138)
|
403
|
-
* Fix access priorities of each level in LeveledOptions (#1118)
|
406
|
+
* Add eof? method to NullIO? ([#1169])
|
407
|
+
* Fix Puma startup in provided init.d script ([#1061])
|
408
|
+
* Fix default SSL mode back to none. ([#1036])
|
409
|
+
* Fixed the issue of @listeners getting nil io ([#1120])
|
410
|
+
* Make `get_dh1024` compatible with OpenSSL v1.1.0 ([#1178])
|
411
|
+
* More gracefully deal with SSL sessions. Fixes [#1002]
|
412
|
+
* Move puma.rb to just autoloads. Fixes [#1063]
|
413
|
+
* MiniSSL: Provide write as <<. Fixes [#1089]
|
414
|
+
* Prune bundler should inherit fds ([#1114])
|
415
|
+
* Replace use of Process.getpgid which does not behave as intended on all platforms ([#1110])
|
416
|
+
* Transfer encoding header should be downcased before comparison ([#1135])
|
417
|
+
* Use same write log logic for hijacked requests. ([#1081])
|
418
|
+
* Fix `uninitialized constant Puma::StateFile` ([#1138])
|
419
|
+
* Fix access priorities of each level in LeveledOptions ([#1118])
|
404
420
|
|
405
421
|
* 3 others:
|
406
422
|
|
407
423
|
* Lots of tests added/fixed/improved. Switched to Minitest from Test::Unit. Big thanks to @frodsan.
|
408
424
|
* Lots of documentation added/improved.
|
409
|
-
* Add license indicators to the HTTP extension. (#1075)
|
425
|
+
* Add license indicators to the HTTP extension. ([#1075])
|
410
426
|
|
411
427
|
## 3.6.2 / 2016-11-22
|
412
428
|
|
413
429
|
* 1 bug fix:
|
414
430
|
|
415
|
-
* Revert #1118/Fix access priorities of each level in LeveledOptions. This
|
431
|
+
* Revert [#1118]/Fix access priorities of each level in LeveledOptions. This
|
416
432
|
had an unintentional side effect of changing the importance of command line
|
417
433
|
options, such as -p.
|
418
434
|
|
@@ -421,11 +437,11 @@ Each patchlevel release contains a separate security fix. We recommend simply up
|
|
421
437
|
* 8 bug fixes:
|
422
438
|
|
423
439
|
* Fix Puma start in init.d script.
|
424
|
-
* Fix default SSL mode back to none. Fixes #1036
|
425
|
-
* Fixed the issue of @listeners getting nil io, fix rails restart (#1120)
|
426
|
-
* More gracefully deal with SSL sessions. Fixes #1002
|
440
|
+
* Fix default SSL mode back to none. Fixes [#1036]
|
441
|
+
* Fixed the issue of @listeners getting nil io, fix rails restart ([#1120])
|
442
|
+
* More gracefully deal with SSL sessions. Fixes [#1002]
|
427
443
|
* Prevent short term thread churn.
|
428
|
-
* Provide write as <<. Fixes #1089
|
444
|
+
* Provide write as <<. Fixes [#1089]
|
429
445
|
* Fix access priorities of each level in LeveledOptions - fixes TTIN.
|
430
446
|
* Stub description files updated for init.d.
|
431
447
|
|
@@ -437,18 +453,18 @@ Each patchlevel release contains a separate security fix. We recommend simply up
|
|
437
453
|
## 3.6.0 / 2016-07-24
|
438
454
|
|
439
455
|
* 12 bug fixes:
|
440
|
-
* Add ability to detect a shutting down server. Fixes #932
|
441
|
-
* Add support for Expect: 100-continue. Fixes #519
|
442
|
-
* Check SSLContext better. Fixes #828
|
443
|
-
* Clarify behavior of '-t num'. Fixes #984
|
444
|
-
* Don't default to VERIFY_PEER. Fixes #1028
|
445
|
-
* Don't use ENV['PWD'] on windows. Fixes #1023
|
446
|
-
* Enlarge the scope of catching app exceptions. Fixes #1027
|
447
|
-
* Execute background hooks after daemonizing. Fixes #925
|
448
|
-
* Handle HUP as a stop unless there is IO redirection. Fixes #911
|
449
|
-
* Implement chunked request handling. Fixes #620
|
450
|
-
* Just rescue exception to return a 500. Fixes #1027
|
451
|
-
* Redirect IO in the jruby daemon mode. Fixes #778
|
456
|
+
* Add ability to detect a shutting down server. Fixes [#932]
|
457
|
+
* Add support for Expect: 100-continue. Fixes [#519]
|
458
|
+
* Check SSLContext better. Fixes [#828]
|
459
|
+
* Clarify behavior of '-t num'. Fixes [#984]
|
460
|
+
* Don't default to VERIFY_PEER. Fixes [#1028]
|
461
|
+
* Don't use ENV['PWD'] on windows. Fixes [#1023]
|
462
|
+
* Enlarge the scope of catching app exceptions. Fixes [#1027]
|
463
|
+
* Execute background hooks after daemonizing. Fixes [#925]
|
464
|
+
* Handle HUP as a stop unless there is IO redirection. Fixes [#911]
|
465
|
+
* Implement chunked request handling. Fixes [#620]
|
466
|
+
* Just rescue exception to return a 500. Fixes [#1027]
|
467
|
+
* Redirect IO in the jruby daemon mode. Fixes [#778]
|
452
468
|
|
453
469
|
## 3.5.2 / 2016-07-20
|
454
470
|
|
@@ -456,12 +472,12 @@ Each patchlevel release contains a separate security fix. We recommend simply up
|
|
456
472
|
* Don't let persistent_timeout be nil
|
457
473
|
|
458
474
|
* 1 PR merged:
|
459
|
-
* Merge pull request #1021 from benzrf/patch-1
|
475
|
+
* Merge pull request [#1021] from benzrf/patch-1
|
460
476
|
|
461
477
|
## 3.5.1 / 2016-07-20
|
462
478
|
|
463
479
|
* 1 bug fix:
|
464
|
-
* Be sure to only listen on host:port combos once. Fixes #1022
|
480
|
+
* Be sure to only listen on host:port combos once. Fixes [#1022]
|
465
481
|
|
466
482
|
## 3.5.0 / 2016-07-18
|
467
483
|
|
@@ -469,14 +485,14 @@ Each patchlevel release contains a separate security fix. We recommend simply up
|
|
469
485
|
* Allow persistent_timeout to be configured via the dsl.
|
470
486
|
|
471
487
|
* 9 bug fixes:
|
472
|
-
* Allow a bare % in a query string. Fixes #958
|
473
|
-
* Explicitly listen on all localhost addresses. Fixes #782
|
488
|
+
* Allow a bare % in a query string. Fixes [#958]
|
489
|
+
* Explicitly listen on all localhost addresses. Fixes [#782]
|
474
490
|
* Fix `TCPLogger` log error in tcp cluster mode.
|
475
|
-
* Fix puma/puma#968 Cannot bind SSL port due to missing verify_mode option
|
476
|
-
* Fix puma/puma#968 Default verify_mode to peer
|
477
|
-
* Log any exceptions in ThreadPool. Fixes #1010
|
478
|
-
* Silence connection errors in the reactor. Fixes #959
|
479
|
-
* Tiny fixes in hook documentation for #840
|
491
|
+
* Fix puma/puma[#968] Cannot bind SSL port due to missing verify_mode option
|
492
|
+
* Fix puma/puma[#968] Default verify_mode to peer
|
493
|
+
* Log any exceptions in ThreadPool. Fixes [#1010]
|
494
|
+
* Silence connection errors in the reactor. Fixes [#959]
|
495
|
+
* Tiny fixes in hook documentation for [#840]
|
480
496
|
* It should not log requests if we want it to be quiet
|
481
497
|
|
482
498
|
* 5 doc fixes:
|
@@ -487,43 +503,43 @@ Each patchlevel release contains a separate security fix. We recommend simply up
|
|
487
503
|
* Fix typo in example config
|
488
504
|
|
489
505
|
* 14 PRs merged:
|
490
|
-
* Merge pull request #1007 from willnet/patch-1
|
491
|
-
* Merge pull request #1014 from jeznet/patch-1
|
492
|
-
* Merge pull request #1015 from bf4/patch-1
|
493
|
-
* Merge pull request #1017 from jorihardman/configurable_persistent_timeout
|
494
|
-
* Merge pull request #954 from jf/master
|
495
|
-
* Merge pull request #955 from jf/add-request-info-to-standard-error-rescue
|
496
|
-
* Merge pull request #956 from maxkwallace/master
|
497
|
-
* Merge pull request #960 from kmayer/kmayer-plugins-heroku-restart
|
498
|
-
* Merge pull request #969 from frankwong15/master
|
499
|
-
* Merge pull request #970 from willnet/delete-blank-document
|
500
|
-
* Merge pull request #974 from rocketjob/feature/name_threads
|
501
|
-
* Merge pull request #977 from snow/master
|
502
|
-
* Merge pull request #981 from zach-chai/patch-1
|
503
|
-
* Merge pull request #993 from scorix/master
|
506
|
+
* Merge pull request [#1007] from willnet/patch-1
|
507
|
+
* Merge pull request [#1014] from jeznet/patch-1
|
508
|
+
* Merge pull request [#1015] from bf4/patch-1
|
509
|
+
* Merge pull request [#1017] from jorihardman/configurable_persistent_timeout
|
510
|
+
* Merge pull request [#954] from jf/master
|
511
|
+
* Merge pull request [#955] from jf/add-request-info-to-standard-error-rescue
|
512
|
+
* Merge pull request [#956] from maxkwallace/master
|
513
|
+
* Merge pull request [#960] from kmayer/kmayer-plugins-heroku-restart
|
514
|
+
* Merge pull request [#969] from frankwong15/master
|
515
|
+
* Merge pull request [#970] from willnet/delete-blank-document
|
516
|
+
* Merge pull request [#974] from rocketjob/feature/name_threads
|
517
|
+
* Merge pull request [#977] from snow/master
|
518
|
+
* Merge pull request [#981] from zach-chai/patch-1
|
519
|
+
* Merge pull request [#993] from scorix/master
|
504
520
|
|
505
521
|
## 3.4.0 / 2016-04-07
|
506
522
|
|
507
523
|
* 2 minor features:
|
508
|
-
* Add ability to force threads to stop on shutdown. Fixes #938
|
509
|
-
* Detect and commit seppuku when fork(2) fails. Fixes #529
|
524
|
+
* Add ability to force threads to stop on shutdown. Fixes [#938]
|
525
|
+
* Detect and commit seppuku when fork(2) fails. Fixes [#529]
|
510
526
|
|
511
527
|
* 3 unknowns:
|
512
|
-
* Ignore errors trying to update the backport tables. Fixes #788
|
513
|
-
* Invoke the lowlevel_error in more places to allow for exception tracking. Fixes #894
|
514
|
-
* Update the query string when an absolute URI is used. Fixes #937
|
528
|
+
* Ignore errors trying to update the backport tables. Fixes [#788]
|
529
|
+
* Invoke the lowlevel_error in more places to allow for exception tracking. Fixes [#894]
|
530
|
+
* Update the query string when an absolute URI is used. Fixes [#937]
|
515
531
|
|
516
532
|
* 5 doc fixes:
|
517
533
|
* Add Process Monitors section to top-level README
|
518
|
-
* Better document the hooks. Fixes #840
|
534
|
+
* Better document the hooks. Fixes [#840]
|
519
535
|
* docs/system.md sample config refinements and elaborations
|
520
536
|
* Fix typos at couple of places.
|
521
537
|
* Cleanup warnings
|
522
538
|
|
523
539
|
* 3 PRs merged:
|
524
|
-
* Merge pull request #945 from dekellum/systemd-docs-refined
|
525
|
-
* Merge pull request #946 from vipulnsward/rm-pid
|
526
|
-
* Merge pull request #947 from vipulnsward/housekeeping-typos
|
540
|
+
* Merge pull request [#945] from dekellum/systemd-docs-refined
|
541
|
+
* Merge pull request [#946] from vipulnsward/rm-pid
|
542
|
+
* Merge pull request [#947] from vipulnsward/housekeeping-typos
|
527
543
|
|
528
544
|
## 3.3.0 / 2016-04-05
|
529
545
|
|
@@ -536,9 +552,9 @@ Each patchlevel release contains a separate security fix. We recommend simply up
|
|
536
552
|
* Document UNIX signals with cluster on README.md
|
537
553
|
|
538
554
|
* 3 PRs merged:
|
539
|
-
* Merge pull request #936 from prathamesh-sonpatki/allow-overriding-config-options
|
540
|
-
* Merge pull request #940 from kyledrake/signalsdoc
|
541
|
-
* Merge pull request #942 from dekellum/socket-activate-improve
|
555
|
+
* Merge pull request [#936] from prathamesh-sonpatki/allow-overriding-config-options
|
556
|
+
* Merge pull request [#940] from kyledrake/signalsdoc
|
557
|
+
* Merge pull request [#942] from dekellum/socket-activate-improve
|
542
558
|
|
543
559
|
## 3.2.0 / 2016-03-20
|
544
560
|
|
@@ -551,32 +567,32 @@ Each patchlevel release contains a separate security fix. We recommend simply up
|
|
551
567
|
* Speed up phased-restart start
|
552
568
|
|
553
569
|
* 2 PRs merged:
|
554
|
-
* Merge pull request #927 from jlecour/gemfile_variants
|
555
|
-
* Merge pull request #931 from joneslee85/patch-10
|
570
|
+
* Merge pull request [#927] from jlecour/gemfile_variants
|
571
|
+
* Merge pull request [#931] from joneslee85/patch-10
|
556
572
|
|
557
573
|
## 3.1.1 / 2016-03-17
|
558
574
|
|
559
575
|
* 4 bug fixes:
|
560
576
|
* Disable USR1 usage on JRuby
|
561
|
-
* Fixes #922 - Correctly define file encoding as UTF-8
|
577
|
+
* Fixes [#922] - Correctly define file encoding as UTF-8
|
562
578
|
* Set a more explicit SERVER_SOFTWARE Rack variable
|
563
|
-
* Show RUBY_ENGINE_VERSION if available. Fixes #923
|
579
|
+
* Show RUBY_ENGINE_VERSION if available. Fixes [#923]
|
564
580
|
|
565
581
|
* 3 PRs merged:
|
566
|
-
* Merge pull request #912 from tricknotes/fix-allow-failures-in-travis-yml
|
567
|
-
* Merge pull request #921 from swrobel/patch-1
|
568
|
-
* Merge pull request #924 from tbrisker/patch-1
|
582
|
+
* Merge pull request [#912] from tricknotes/fix-allow-failures-in-travis-yml
|
583
|
+
* Merge pull request [#921] from swrobel/patch-1
|
584
|
+
* Merge pull request [#924] from tbrisker/patch-1
|
569
585
|
|
570
586
|
## 3.1.0 / 2016-03-05
|
571
587
|
|
572
588
|
* 1 minor feature:
|
573
|
-
* Add 'import' directive to config file. Fixes #916
|
589
|
+
* Add 'import' directive to config file. Fixes [#916]
|
574
590
|
|
575
591
|
* 5 bug fixes:
|
576
|
-
* Add 'fetch' to options. Fixes #913
|
577
|
-
* Fix jruby daemonization. Fixes #918
|
578
|
-
* Recreate the proper args manually. Fixes #910
|
579
|
-
* Require 'time' to get iso8601. Fixes #914
|
592
|
+
* Add 'fetch' to options. Fixes [#913]
|
593
|
+
* Fix jruby daemonization. Fixes [#918]
|
594
|
+
* Recreate the proper args manually. Fixes [#910]
|
595
|
+
* Require 'time' to get iso8601. Fixes [#914]
|
580
596
|
|
581
597
|
## 3.0.2 / 2016-02-26
|
582
598
|
|
@@ -590,9 +606,9 @@ Each patchlevel release contains a separate security fix. We recommend simply up
|
|
590
606
|
|
591
607
|
* 3 PRs merged:
|
592
608
|
|
593
|
-
* Merge pull request #901 from mitto/fix-pumactl-uninitialized-constant-statefile
|
594
|
-
* Merge pull request #902 from corrupt952/fix_undefined_method_and_variable_when_execute_pumactl
|
595
|
-
* Merge pull request #905 from Eric-Guo/master
|
609
|
+
* Merge pull request [#901] from mitto/fix-pumactl-uninitialized-constant-statefile
|
610
|
+
* Merge pull request [#902] from corrupt952/fix_undefined_method_and_variable_when_execute_pumactl
|
611
|
+
* Merge pull request [#905] from Eric-Guo/master
|
596
612
|
|
597
613
|
## 3.0.1 / 2016-02-25
|
598
614
|
|
@@ -609,7 +625,7 @@ Each patchlevel release contains a separate security fix. We recommend simply up
|
|
609
625
|
* Ruby pre-2.0 is no longer supported. We'll do our best to not add
|
610
626
|
features that break those rubies but will no longer be testing
|
611
627
|
with them.
|
612
|
-
* Don't log requests by default. Fixes #852
|
628
|
+
* Don't log requests by default. Fixes [#852]
|
613
629
|
|
614
630
|
* 2 major features:
|
615
631
|
|
@@ -621,36 +637,36 @@ Each patchlevel release contains a separate security fix. We recommend simply up
|
|
621
637
|
|
622
638
|
* Listen to unix socket with provided backlog if any
|
623
639
|
* Improves the clustered stats to report worker stats
|
624
|
-
* Pass the env to the lowlevel_error handler. Fixes #854
|
625
|
-
* Treat path-like hosts as unix sockets. Fixes #824
|
640
|
+
* Pass the env to the lowlevel_error handler. Fixes [#854]
|
641
|
+
* Treat path-like hosts as unix sockets. Fixes [#824]
|
626
642
|
|
627
643
|
* 5 bug fixes:
|
628
644
|
|
629
|
-
* Clean thread locals when using keepalive. Fixes #823
|
630
|
-
* Cleanup compiler warnings. Fixes #815
|
631
|
-
* Expose closed? for use by the reactor. Fixes #835
|
632
|
-
* Move signal handlers to separate method to prevent space leak. Fixes #798
|
633
|
-
* Signal not full on worker exit #876
|
645
|
+
* Clean thread locals when using keepalive. Fixes [#823]
|
646
|
+
* Cleanup compiler warnings. Fixes [#815]
|
647
|
+
* Expose closed? for use by the reactor. Fixes [#835]
|
648
|
+
* Move signal handlers to separate method to prevent space leak. Fixes [#798]
|
649
|
+
* Signal not full on worker exit [#876]
|
634
650
|
|
635
651
|
* 5 doc fixes:
|
636
652
|
|
637
653
|
* Update README.md with various grammar fixes
|
638
654
|
* Use newest version of Minitest
|
639
655
|
* Add directory configuration docs, fix typo [ci skip]
|
640
|
-
* Remove old COPYING notice. Fixes #849
|
656
|
+
* Remove old COPYING notice. Fixes [#849]
|
641
657
|
|
642
658
|
* 10 merged PRs:
|
643
659
|
|
644
|
-
* Merge pull request #871 from deepj/travis
|
645
|
-
* Merge pull request #874 from wallclockbuilder/master
|
646
|
-
* Merge pull request #883 from dadah89/igor/trim_only_worker
|
647
|
-
* Merge pull request #884 from uistudio/async-callback
|
648
|
-
* Merge pull request #888 from mlarraz/tick_minitest
|
649
|
-
* Merge pull request #890 from todd/directory_docs
|
650
|
-
* Merge pull request #891 from ctaintor/improve_clustered_status
|
651
|
-
* Merge pull request #893 from spastorino/add_missing_require
|
652
|
-
* Merge pull request #897 from zendesk/master
|
653
|
-
* Merge pull request #899 from kch/kch-readme-fixes
|
660
|
+
* Merge pull request [#871] from deepj/travis
|
661
|
+
* Merge pull request [#874] from wallclockbuilder/master
|
662
|
+
* Merge pull request [#883] from dadah89/igor/trim_only_worker
|
663
|
+
* Merge pull request [#884] from uistudio/async-callback
|
664
|
+
* Merge pull request [#888] from mlarraz/tick_minitest
|
665
|
+
* Merge pull request [#890] from todd/directory_docs
|
666
|
+
* Merge pull request [#891] from ctaintor/improve_clustered_status
|
667
|
+
* Merge pull request [#893] from spastorino/add_missing_require
|
668
|
+
* Merge pull request [#897] from zendesk/master
|
669
|
+
* Merge pull request [#899] from kch/kch-readme-fixes
|
654
670
|
|
655
671
|
## 2.16.0 / 2016-01-27
|
656
672
|
|
@@ -667,7 +683,7 @@ Each patchlevel release contains a separate security fix. We recommend simply up
|
|
667
683
|
* 7 bug fixes:
|
668
684
|
|
669
685
|
* Don't persist before_fork hook in state file
|
670
|
-
* Reload bundler before pulling in rack. Fixes #859
|
686
|
+
* Reload bundler before pulling in rack. Fixes [#859]
|
671
687
|
* Remove NEWRELIC_DISPATCHER env variable
|
672
688
|
* Cleanup C code
|
673
689
|
* Use Timeout.timeout instead of Object.timeout
|
@@ -679,18 +695,18 @@ Each patchlevel release contains a separate security fix. We recommend simply up
|
|
679
695
|
* Test against the latest Ruby 2.1, 2.2, 2.3, head and JRuby 9.0.4.0 on Travis
|
680
696
|
|
681
697
|
* 12 merged PRs
|
682
|
-
* Merge pull request #822 from kwugirl/remove_NEWRELIC_DISPATCHER
|
683
|
-
* Merge pull request #833 from joemiller/jruby-client-tls-auth
|
684
|
-
* Merge pull request #837 from YuriSolovyov/ssl-keystore-jruby
|
685
|
-
* Merge pull request #839 from mezuka/master
|
686
|
-
* Merge pull request #845 from deepj/timeout-deprecation
|
687
|
-
* Merge pull request #846 from sriedel/strip_before_fork
|
688
|
-
* Merge pull request #850 from deepj/travis
|
689
|
-
* Merge pull request #853 from Jeffrey6052/patch-1
|
690
|
-
* Merge pull request #857 from zendesk/faster_phased_restarts
|
691
|
-
* Merge pull request #858 from mlarraz/fix_some_warnings
|
692
|
-
* Merge pull request #860 from zendesk/expose_old_worker_count
|
693
|
-
* Merge pull request #861 from zendesk/allow_control_url_umask
|
698
|
+
* Merge pull request [#822] from kwugirl/remove_NEWRELIC_DISPATCHER
|
699
|
+
* Merge pull request [#833] from joemiller/jruby-client-tls-auth
|
700
|
+
* Merge pull request [#837] from YuriSolovyov/ssl-keystore-jruby
|
701
|
+
* Merge pull request [#839] from mezuka/master
|
702
|
+
* Merge pull request [#845] from deepj/timeout-deprecation
|
703
|
+
* Merge pull request [#846] from sriedel/strip_before_fork
|
704
|
+
* Merge pull request [#850] from deepj/travis
|
705
|
+
* Merge pull request [#853] from Jeffrey6052/patch-1
|
706
|
+
* Merge pull request [#857] from zendesk/faster_phased_restarts
|
707
|
+
* Merge pull request [#858] from mlarraz/fix_some_warnings
|
708
|
+
* Merge pull request [#860] from zendesk/expose_old_worker_count
|
709
|
+
* Merge pull request [#861] from zendesk/allow_control_url_umask
|
694
710
|
|
695
711
|
## 2.15.3 / 2015-11-07
|
696
712
|
|
@@ -705,8 +721,8 @@ Each patchlevel release contains a separate security fix. We recommend simply up
|
|
705
721
|
* Only set ctx.ca iff there is a params['ca'] to set with.
|
706
722
|
|
707
723
|
* 2 PRs merged:
|
708
|
-
* Merge pull request #818 from unleashed/support-duplicate-headers
|
709
|
-
* Merge pull request #819 from VictorLowther/fix-ca-and-verify_null-exception
|
724
|
+
* Merge pull request [#818] from unleashed/support-duplicate-headers
|
725
|
+
* Merge pull request [#819] from VictorLowther/fix-ca-and-verify_null-exception
|
710
726
|
|
711
727
|
## 2.15.1 / 2015-11-06
|
712
728
|
|
@@ -728,7 +744,7 @@ Each patchlevel release contains a separate security fix. We recommend simply up
|
|
728
744
|
* Disable SSL Compression
|
729
745
|
* Fix bug setting worker_directory when using a symlink directory
|
730
746
|
* Fix error message in DSL that was slightly inaccurate
|
731
|
-
* Pumactl: set correct process name. Fixes #563
|
747
|
+
* Pumactl: set correct process name. Fixes [#563]
|
732
748
|
* thread_pool: fix race condition when shutting down workers
|
733
749
|
|
734
750
|
* 10 doc fixes:
|
@@ -738,30 +754,30 @@ Each patchlevel release contains a separate security fix. We recommend simply up
|
|
738
754
|
* Fix spelling errors.
|
739
755
|
* Fix typo in deployment description
|
740
756
|
* Fix typos (it's -> its) in events.rb and server.rb
|
741
|
-
* fixing for typo mentioned in #803
|
757
|
+
* fixing for typo mentioned in [#803]
|
742
758
|
* Spelling correction for README
|
743
759
|
* thread_pool: fix typos in comment
|
744
760
|
* More explicit docs for worker_timeout
|
745
761
|
|
746
762
|
* 18 PRs merged:
|
747
|
-
* Merge pull request #768 from nathansamson/patch-1
|
748
|
-
* Merge pull request #773 from rossta/spelling_corrections
|
749
|
-
* Merge pull request #774 from snow/master
|
750
|
-
* Merge pull request #781 from sunsations/fix-typo
|
751
|
-
* Merge pull request #791 from unleashed/allow_empty_tags
|
752
|
-
* Merge pull request #793 from robdimarco/fix-working-directory-symlink-bug
|
753
|
-
* Merge pull request #794 from peterkeen/patch-1
|
754
|
-
* Merge pull request #795 from unleashed/redirects-from-cmdline
|
755
|
-
* Merge pull request #796 from cschneid/fix_dsl_message
|
756
|
-
* Merge pull request #799 from annafw/master
|
757
|
-
* Merge pull request #800 from liamseanbrady/fix_typo
|
758
|
-
* Merge pull request #801 from scottjg/ssl-chain-file
|
759
|
-
* Merge pull request #802 from scottjg/ssl-crimes
|
760
|
-
* Merge pull request #804 from burningTyger/patch-2
|
761
|
-
* Merge pull request #809 from unleashed/threadpool-fix-race-in-shutdown
|
762
|
-
* Merge pull request #810 from vlmonk/fix-pumactl-restart-bug
|
763
|
-
* Merge pull request #814 from schneems/schneems/worker_timeout-docs
|
764
|
-
* Merge pull request #817 from unleashed/worker-boot-timeout
|
763
|
+
* Merge pull request [#768] from nathansamson/patch-1
|
764
|
+
* Merge pull request [#773] from rossta/spelling_corrections
|
765
|
+
* Merge pull request [#774] from snow/master
|
766
|
+
* Merge pull request [#781] from sunsations/fix-typo
|
767
|
+
* Merge pull request [#791] from unleashed/allow_empty_tags
|
768
|
+
* Merge pull request [#793] from robdimarco/fix-working-directory-symlink-bug
|
769
|
+
* Merge pull request [#794] from peterkeen/patch-1
|
770
|
+
* Merge pull request [#795] from unleashed/redirects-from-cmdline
|
771
|
+
* Merge pull request [#796] from cschneid/fix_dsl_message
|
772
|
+
* Merge pull request [#799] from annafw/master
|
773
|
+
* Merge pull request [#800] from liamseanbrady/fix_typo
|
774
|
+
* Merge pull request [#801] from scottjg/ssl-chain-file
|
775
|
+
* Merge pull request [#802] from scottjg/ssl-crimes
|
776
|
+
* Merge pull request [#804] from burningTyger/patch-2
|
777
|
+
* Merge pull request [#809] from unleashed/threadpool-fix-race-in-shutdown
|
778
|
+
* Merge pull request [#810] from vlmonk/fix-pumactl-restart-bug
|
779
|
+
* Merge pull request [#814] from schneems/schneems/worker_timeout-docs
|
780
|
+
* Merge pull request [#817] from unleashed/worker-boot-timeout
|
765
781
|
|
766
782
|
## 2.14.0 / 2015-09-18
|
767
783
|
|
@@ -769,7 +785,7 @@ Each patchlevel release contains a separate security fix. We recommend simply up
|
|
769
785
|
* Make building with SSL support optional
|
770
786
|
|
771
787
|
* 1 bug fix:
|
772
|
-
* Use Rack::Builder if available. Fixes #735
|
788
|
+
* Use Rack::Builder if available. Fixes [#735]
|
773
789
|
|
774
790
|
## 2.13.4 / 2015-08-16
|
775
791
|
|
@@ -782,20 +798,20 @@ Each patchlevel release contains a separate security fix. We recommend simply up
|
|
782
798
|
Seriously, I need to revamp config with tests.
|
783
799
|
|
784
800
|
* 1 bug fix:
|
785
|
-
* Fix preserving options before cleaning for state. Fixes #769
|
801
|
+
* Fix preserving options before cleaning for state. Fixes [#769]
|
786
802
|
|
787
803
|
## 2.13.2 / 2015-08-15
|
788
804
|
|
789
805
|
The "clearly I don't have enough tests for the config" release.
|
790
806
|
|
791
807
|
* 1 bug fix:
|
792
|
-
* Fix another place binds wasn't initialized. Fixes #767
|
808
|
+
* Fix another place binds wasn't initialized. Fixes [#767]
|
793
809
|
|
794
810
|
## 2.13.1 / 2015-08-15
|
795
811
|
|
796
812
|
* 2 bug fixes:
|
797
|
-
* Fix binds being masked in config files. Fixes #765
|
798
|
-
* Use options from the config file properly in pumactl. Fixes #764
|
813
|
+
* Fix binds being masked in config files. Fixes [#765]
|
814
|
+
* Use options from the config file properly in pumactl. Fixes [#764]
|
799
815
|
|
800
816
|
## 2.13.0 / 2015-08-14
|
801
817
|
|
@@ -805,16 +821,16 @@ The "clearly I don't have enough tests for the config" release.
|
|
805
821
|
* 3 bug fixes:
|
806
822
|
* Check for OPENSSL_NO_ECDH before using ECDH
|
807
823
|
* Eliminate logging overhead from JRuby SSL
|
808
|
-
* Prefer cli options over config file ones. Fixes #669
|
824
|
+
* Prefer cli options over config file ones. Fixes [#669]
|
809
825
|
|
810
826
|
* 1 deprecation:
|
811
|
-
* Add deprecation warning to capistrano.rb. Fixes #673
|
827
|
+
* Add deprecation warning to capistrano.rb. Fixes [#673]
|
812
828
|
|
813
829
|
* 4 PRs merged:
|
814
|
-
* Merge pull request #668 from kcollignon/patch-1
|
815
|
-
* Merge pull request #754 from nathansamson/before_boot
|
816
|
-
* Merge pull request #759 from BenV/fix-centos6-build
|
817
|
-
* Merge pull request #761 from looker/no-log
|
830
|
+
* Merge pull request [#668] from kcollignon/patch-1
|
831
|
+
* Merge pull request [#754] from nathansamson/before_boot
|
832
|
+
* Merge pull request [#759] from BenV/fix-centos6-build
|
833
|
+
* Merge pull request [#761] from looker/no-log
|
818
834
|
|
819
835
|
## 2.12.3 / 2015-08-03
|
820
836
|
|
@@ -829,10 +845,10 @@ The "clearly I don't have enough tests for the config" release.
|
|
829
845
|
* ruby 1.8.7 compatibility patches
|
830
846
|
|
831
847
|
* 4 PRs merged:
|
832
|
-
* Merge pull request #742 from deivid-rodriguez/fix_missing_require
|
833
|
-
* Merge pull request #743 from matthewd/skip-empty-chunks
|
834
|
-
* Merge pull request #749 from huacnlee/fix-cap-uninitialized-puma-error
|
835
|
-
* Merge pull request #751 from costi/compat_1_8_7
|
848
|
+
* Merge pull request [#742] from deivid-rodriguez/fix_missing_require
|
849
|
+
* Merge pull request [#743] from matthewd/skip-empty-chunks
|
850
|
+
* Merge pull request [#749] from huacnlee/fix-cap-uninitialized-puma-error
|
851
|
+
* Merge pull request [#751] from costi/compat_1_8_7
|
836
852
|
|
837
853
|
* 1 test fix:
|
838
854
|
* Add 1.8.7, rbx-1 (allow failures) to Travis.
|
@@ -840,20 +856,20 @@ The "clearly I don't have enough tests for the config" release.
|
|
840
856
|
## 2.12.2 / 2015-07-17
|
841
857
|
|
842
858
|
* 2 bug fix:
|
843
|
-
* Pull over and use Rack::URLMap. Fixes #741
|
844
|
-
* Stub out peercert on JRuby for now. Fixes #739
|
859
|
+
* Pull over and use Rack::URLMap. Fixes [#741]
|
860
|
+
* Stub out peercert on JRuby for now. Fixes [#739]
|
845
861
|
|
846
862
|
## 2.12.1 / 2015-07-16
|
847
863
|
|
848
864
|
* 2 bug fixes:
|
849
|
-
* Use a constant format. Fixes #737
|
850
|
-
* Use strerror for Windows sake. Fixes #733
|
865
|
+
* Use a constant format. Fixes [#737]
|
866
|
+
* Use strerror for Windows sake. Fixes [#733]
|
851
867
|
|
852
868
|
* 1 doc change:
|
853
869
|
* typo fix: occured -> occurred
|
854
870
|
|
855
871
|
* 1 PR merged:
|
856
|
-
* Merge pull request #736 from paulanunda/paulanunda/typo-fix
|
872
|
+
* Merge pull request [#736] from paulanunda/paulanunda/typo-fix
|
857
873
|
|
858
874
|
## 2.12.0 / 2015-07-14
|
859
875
|
|
@@ -863,12 +879,12 @@ The "clearly I don't have enough tests for the config" release.
|
|
863
879
|
* Do not suppress Content-Length on partial hijack
|
864
880
|
* Don't allow any exceptions to terminate a thread
|
865
881
|
* Handle ENOTCONN client disconnects when setting REMOTE_ADDR
|
866
|
-
* Handle very early exit of cluster mode. Fixes #722
|
882
|
+
* Handle very early exit of cluster mode. Fixes [#722]
|
867
883
|
* Install rack when running tests on travis to use rack/lint
|
868
884
|
* Make puma -v and -h return success exit code
|
869
885
|
* Make pumactl load config/puma.rb by default
|
870
|
-
* Pass options from pumactl properly when pruning. Fixes #694
|
871
|
-
* Remove rack dependency. Fixes #705
|
886
|
+
* Pass options from pumactl properly when pruning. Fixes [#694]
|
887
|
+
* Remove rack dependency. Fixes [#705]
|
872
888
|
* Remove the default Content-Type: text/plain
|
873
889
|
* Add Client Side Certificate Auth
|
874
890
|
|
@@ -887,33 +903,33 @@ The "clearly I don't have enough tests for the config" release.
|
|
887
903
|
* capistrano: Add additional env when start rails
|
888
904
|
|
889
905
|
* 16 PRs merged:
|
890
|
-
* Merge pull request #686 from jjb/patch-2
|
891
|
-
* Merge pull request #693 from rob-murray/update-example-config
|
892
|
-
* Merge pull request #697 from spk/tests-bind-on-rackup-file
|
893
|
-
* Merge pull request #699 from deees/fix/require_rack_builder
|
894
|
-
* Merge pull request #701 from deepj/master
|
895
|
-
* Merge pull request #702 from Jimdo/thread-reaping
|
896
|
-
* Merge pull request #703 from deepj/travis
|
897
|
-
* Merge pull request #704 from grega/master
|
898
|
-
* Merge pull request #709 from lian/master
|
899
|
-
* Merge pull request #711 from julik/master
|
900
|
-
* Merge pull request #712 from yakara-ltd/pumactl-default-config
|
901
|
-
* Merge pull request #715 from RobotJiang/master
|
902
|
-
* Merge pull request #725 from rwz/master
|
903
|
-
* Merge pull request #726 from strenuus/handle-client-disconnect
|
904
|
-
* Merge pull request #729 from allaire/patch-1
|
905
|
-
* Merge pull request #730 from iamjarvo/container-infrastructure
|
906
|
+
* Merge pull request [#686] from jjb/patch-2
|
907
|
+
* Merge pull request [#693] from rob-murray/update-example-config
|
908
|
+
* Merge pull request [#697] from spk/tests-bind-on-rackup-file
|
909
|
+
* Merge pull request [#699] from deees/fix/require_rack_builder
|
910
|
+
* Merge pull request [#701] from deepj/master
|
911
|
+
* Merge pull request [#702] from Jimdo/thread-reaping
|
912
|
+
* Merge pull request [#703] from deepj/travis
|
913
|
+
* Merge pull request [#704] from grega/master
|
914
|
+
* Merge pull request [#709] from lian/master
|
915
|
+
* Merge pull request [#711] from julik/master
|
916
|
+
* Merge pull request [#712] from yakara-ltd/pumactl-default-config
|
917
|
+
* Merge pull request [#715] from RobotJiang/master
|
918
|
+
* Merge pull request [#725] from rwz/master
|
919
|
+
* Merge pull request [#726] from strenuus/handle-client-disconnect
|
920
|
+
* Merge pull request [#729] from allaire/patch-1
|
921
|
+
* Merge pull request [#730] from iamjarvo/container-infrastructure
|
906
922
|
|
907
923
|
## 2.11.3 / 2015-05-18
|
908
924
|
|
909
925
|
* 5 bug fixes:
|
910
|
-
* Be sure to unlink tempfiles after a request. Fixes #690
|
911
|
-
* Coerce the key to a string before checking. (thar be symbols). Fixes #684
|
926
|
+
* Be sure to unlink tempfiles after a request. Fixes [#690]
|
927
|
+
* Coerce the key to a string before checking. (thar be symbols). Fixes [#684]
|
912
928
|
* Fix hang on bad SSL handshake
|
913
929
|
* Remove `enable_SSLv3` support from JRuby
|
914
930
|
|
915
931
|
* 1 PR merged:
|
916
|
-
* Merge pull request #698 from looker/hang-handshake
|
932
|
+
* Merge pull request [#698] from looker/hang-handshake
|
917
933
|
|
918
934
|
## 2.11.2 / 2015-04-11
|
919
935
|
|
@@ -922,7 +938,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
922
938
|
* Add shutdown_debug config option
|
923
939
|
|
924
940
|
* 4 bug fixes:
|
925
|
-
* Fix the Config constants not being available in the DSL. Fixes #683
|
941
|
+
* Fix the Config constants not being available in the DSL. Fixes [#683]
|
926
942
|
* Ignore multiple port declarations
|
927
943
|
* Proper 'Connection' header handling compatible with HTTP 1.[01] protocols
|
928
944
|
* Use "Puma" instead of "puma" to reporting to New Relic
|
@@ -931,55 +947,55 @@ The "clearly I don't have enough tests for the config" release.
|
|
931
947
|
* Add Gitter badge.
|
932
948
|
|
933
949
|
* 6 PRs merged:
|
934
|
-
* Merge pull request #657 from schneems/schneems/puma-once-port
|
935
|
-
* Merge pull request #658 from Tomohiro/newrelic-dispatcher-default-update
|
936
|
-
* Merge pull request #662 from basecrm/connection-compatibility
|
937
|
-
* Merge pull request #664 from fxposter/on-worker-fork
|
938
|
-
* Merge pull request #667 from JuanitoFatas/doc/gemspec
|
939
|
-
* Merge pull request #672 from chulkilee/refactor
|
950
|
+
* Merge pull request [#657] from schneems/schneems/puma-once-port
|
951
|
+
* Merge pull request [#658] from Tomohiro/newrelic-dispatcher-default-update
|
952
|
+
* Merge pull request [#662] from basecrm/connection-compatibility
|
953
|
+
* Merge pull request [#664] from fxposter/on-worker-fork
|
954
|
+
* Merge pull request [#667] from JuanitoFatas/doc/gemspec
|
955
|
+
* Merge pull request [#672] from chulkilee/refactor
|
940
956
|
|
941
957
|
## 2.11.1 / 2015-02-11
|
942
958
|
|
943
959
|
* 2 bug fixes:
|
944
960
|
* Avoid crash in strange restart conditions
|
945
|
-
* Inject the GEM_HOME that bundler into puma-wild's env. Fixes #653
|
961
|
+
* Inject the GEM_HOME that bundler into puma-wild's env. Fixes [#653]
|
946
962
|
|
947
963
|
* 2 PRs merged:
|
948
|
-
* Merge pull request #644 from bpaquet/master
|
949
|
-
* Merge pull request #646 from mkonecny/master
|
964
|
+
* Merge pull request [#644] from bpaquet/master
|
965
|
+
* Merge pull request [#646] from mkonecny/master
|
950
966
|
|
951
967
|
## 2.11.0 / 2015-01-20
|
952
968
|
|
953
969
|
* 9 bug fixes:
|
954
|
-
* Add mode as an additional bind option to unix sockets. Fixes #630
|
970
|
+
* Add mode as an additional bind option to unix sockets. Fixes [#630]
|
955
971
|
* Advertise HTTPS properly after a hot restart
|
956
972
|
* Don't write lowlevel_error_handler to state
|
957
973
|
* Fix phased restart with stuck requests
|
958
|
-
* Handle spaces in the path properly. Fixes #622
|
959
|
-
* Set a default REMOTE_ADDR to avoid using peeraddr on unix sockets. Fixes #583
|
960
|
-
* Skip device number checking on jruby. Fixes #586
|
974
|
+
* Handle spaces in the path properly. Fixes [#622]
|
975
|
+
* Set a default REMOTE_ADDR to avoid using peeraddr on unix sockets. Fixes [#583]
|
976
|
+
* Skip device number checking on jruby. Fixes [#586]
|
961
977
|
* Update extconf.rb to compile correctly on OS X
|
962
|
-
* redirect io right after daemonizing so startup errors are shown. Fixes #359
|
978
|
+
* redirect io right after daemonizing so startup errors are shown. Fixes [#359]
|
963
979
|
|
964
980
|
* 6 minor features:
|
965
981
|
* Add a configuration option that prevents puma from queueing requests.
|
966
982
|
* Add reload_worker_directory
|
967
983
|
* Add the ability to pass environment variables to the init script (for Jungle).
|
968
|
-
* Add the proctitle tag to the worker. Fixes #633
|
984
|
+
* Add the proctitle tag to the worker. Fixes [#633]
|
969
985
|
* Infer a proctitle tag based on the directory
|
970
986
|
* Update lowlevel error message to be more meaningful.
|
971
987
|
|
972
988
|
* 10 PRs merged:
|
973
|
-
* Merge pull request #478 from rubencaro/master
|
974
|
-
* Merge pull request #610 from kwilczynski/master
|
975
|
-
* Merge pull request #611 from jasonl/better-lowlevel-message
|
976
|
-
* Merge pull request #616 from jc00ke/master
|
977
|
-
* Merge pull request #623 from raldred/patch-1
|
978
|
-
* Merge pull request #628 from rdpoor/master
|
979
|
-
* Merge pull request #634 from deepj/master
|
980
|
-
* Merge pull request #637 from raskhadafi/patch-1
|
981
|
-
* Merge pull request #639 from ebeigarts/fix-phased-restarts
|
982
|
-
* Merge pull request #640 from codehotter/issue-612-dependent-requests-deadlock
|
989
|
+
* Merge pull request [#478] from rubencaro/master
|
990
|
+
* Merge pull request [#610] from kwilczynski/master
|
991
|
+
* Merge pull request [#611] from jasonl/better-lowlevel-message
|
992
|
+
* Merge pull request [#616] from jc00ke/master
|
993
|
+
* Merge pull request [#623] from raldred/patch-1
|
994
|
+
* Merge pull request [#628] from rdpoor/master
|
995
|
+
* Merge pull request [#634] from deepj/master
|
996
|
+
* Merge pull request [#637] from raskhadafi/patch-1
|
997
|
+
* Merge pull request [#639] from ebeigarts/fix-phased-restarts
|
998
|
+
* Merge pull request [#640] from codehotter/issue-612-dependent-requests-deadlock
|
983
999
|
|
984
1000
|
## 2.10.2 / 2014-11-26
|
985
1001
|
|
@@ -1009,9 +1025,9 @@ The "clearly I don't have enough tests for the config" release.
|
|
1009
1025
|
|
1010
1026
|
* 5 bug fixes:
|
1011
1027
|
* Clean out a threads local data before doing work
|
1012
|
-
* Disable SSLv3. Fixes #591
|
1028
|
+
* Disable SSLv3. Fixes [#591]
|
1013
1029
|
* First change the directory to use the correct Gemfile.
|
1014
|
-
* Only use config.ru binds if specified. Fixes #606
|
1030
|
+
* Only use config.ru binds if specified. Fixes [#606]
|
1015
1031
|
* Strongish cipher suite with FS support for some browsers
|
1016
1032
|
|
1017
1033
|
* 2 doc changes:
|
@@ -1019,20 +1035,20 @@ The "clearly I don't have enough tests for the config" release.
|
|
1019
1035
|
* fix typo in README.md
|
1020
1036
|
|
1021
1037
|
* 9 Merged PRs:
|
1022
|
-
* Merge pull request #560 from raskhadafi/prune_bundler-bug
|
1023
|
-
* Merge pull request #566 from sheltond/master
|
1024
|
-
* Merge pull request #593 from andruby/patch-1
|
1025
|
-
* Merge pull request #594 from hassox/thread-cleanliness
|
1026
|
-
* Merge pull request #596 from burningTyger/patch-1
|
1027
|
-
* Merge pull request #601 from sorentwo/friendly-umask
|
1028
|
-
* Merge pull request #602 from 1334/patch-1
|
1029
|
-
* Merge pull request #608 from Gu1/master
|
1030
|
-
* Merge
|
1038
|
+
* Merge pull request [#560] from raskhadafi/prune_bundler-bug
|
1039
|
+
* Merge pull request [#566] from sheltond/master
|
1040
|
+
* Merge pull request [#593] from andruby/patch-1
|
1041
|
+
* Merge pull request [#594] from hassox/thread-cleanliness
|
1042
|
+
* Merge pull request [#596] from burningTyger/patch-1
|
1043
|
+
* Merge pull request [#601] from sorentwo/friendly-umask
|
1044
|
+
* Merge pull request [#602] from 1334/patch-1
|
1045
|
+
* Merge pull request [#608] from Gu1/master
|
1046
|
+
* Merge pull request [#538] from memiux/?
|
1031
1047
|
|
1032
1048
|
## 2.9.2 / 2014-10-25
|
1033
1049
|
|
1034
1050
|
* 8 bug fixes:
|
1035
|
-
* Fix puma-wild handling a restart properly. Fixes #550
|
1051
|
+
* Fix puma-wild handling a restart properly. Fixes [#550]
|
1036
1052
|
* JRuby SSL POODLE update
|
1037
1053
|
* Keep deprecated features warnings
|
1038
1054
|
* Log the current time when Puma shuts down.
|
@@ -1042,24 +1058,24 @@ The "clearly I don't have enough tests for the config" release.
|
|
1042
1058
|
* Fixing sexist error messages
|
1043
1059
|
|
1044
1060
|
* 6 PRs merged:
|
1045
|
-
* Merge pull request #549 from bsnape/log-shutdown-time
|
1046
|
-
* Merge pull request #553 from lowjoel/master
|
1047
|
-
* Merge pull request #568 from mariuz/patch-1
|
1048
|
-
* Merge pull request #578 from danielbuechele/patch-1
|
1049
|
-
* Merge pull request #581 from alexch/slightly-better-logging
|
1050
|
-
* Merge pull request #590 from looker/jruby_disable_sslv3
|
1061
|
+
* Merge pull request [#549] from bsnape/log-shutdown-time
|
1062
|
+
* Merge pull request [#553] from lowjoel/master
|
1063
|
+
* Merge pull request [#568] from mariuz/patch-1
|
1064
|
+
* Merge pull request [#578] from danielbuechele/patch-1
|
1065
|
+
* Merge pull request [#581] from alexch/slightly-better-logging
|
1066
|
+
* Merge pull request [#590] from looker/jruby_disable_sslv3
|
1051
1067
|
|
1052
1068
|
## 2.9.1 / 2014-09-05
|
1053
1069
|
|
1054
1070
|
* 4 bug fixes:
|
1055
1071
|
* Cleanup the SSL related structures properly, fixes memory leak
|
1056
1072
|
* Fix thread spawning edge case.
|
1057
|
-
* Force a worker check after a worker boots, don't wait 5sec. Fixes #574
|
1073
|
+
* Force a worker check after a worker boots, don't wait 5sec. Fixes [#574]
|
1058
1074
|
* Implement SIGHUP for logs reopening
|
1059
1075
|
|
1060
1076
|
* 2 PRs merged:
|
1061
|
-
* Merge pull request #561 from theoldreader/sighup
|
1062
|
-
* Merge pull request #570 from havenwood/spawn-thread-edge-case
|
1077
|
+
* Merge pull request [#561] from theoldreader/sighup
|
1078
|
+
* Merge pull request [#570] from havenwood/spawn-thread-edge-case
|
1063
1079
|
|
1064
1080
|
## 2.9.0 / 2014-07-12
|
1065
1081
|
|
@@ -1078,12 +1094,12 @@ The "clearly I don't have enough tests for the config" release.
|
|
1078
1094
|
* Update README.md
|
1079
1095
|
|
1080
1096
|
* 6 PRs merged:
|
1081
|
-
* Merge pull request #520 from misfo/patch-2
|
1082
|
-
* Merge pull request #530 from looker/jruby-ssl
|
1083
|
-
* Merge pull request #537 from vlmonk/patch-1
|
1084
|
-
* Merge pull request #540 from allaire/patch-1
|
1085
|
-
* Merge pull request #544 from chulkilee/bsd-3-clause
|
1086
|
-
* Merge pull request #551 from jcxplorer/patch-1
|
1097
|
+
* Merge pull request [#520] from misfo/patch-2
|
1098
|
+
* Merge pull request [#530] from looker/jruby-ssl
|
1099
|
+
* Merge pull request [#537] from vlmonk/patch-1
|
1100
|
+
* Merge pull request [#540] from allaire/patch-1
|
1101
|
+
* Merge pull request [#544] from chulkilee/bsd-3-clause
|
1102
|
+
* Merge pull request [#551] from jcxplorer/patch-1
|
1087
1103
|
|
1088
1104
|
## 2.8.2 / 2014-04-12
|
1089
1105
|
|
@@ -1100,17 +1116,17 @@ The "clearly I don't have enough tests for the config" release.
|
|
1100
1116
|
* allow changing of worker_timeout in config file
|
1101
1117
|
|
1102
1118
|
* 11 PRs merged:
|
1103
|
-
* Merge pull request #487 from ckuttruff/master
|
1104
|
-
* Merge pull request #492 from ckuttruff/master
|
1105
|
-
* Merge pull request #493 from alepore/config_tag
|
1106
|
-
* Merge pull request #503 from mariuz/patch-1
|
1107
|
-
* Merge pull request #505 from sammcj/patch-1
|
1108
|
-
* Merge pull request #506 from FlavourSys/config_worker_timeout
|
1109
|
-
* Merge pull request #510 from momer/rescue-block-handle-servers-fix
|
1110
|
-
* Merge pull request #511 from macool/patch-1
|
1111
|
-
* Merge pull request #514 from edogawaconan/refactor_env
|
1112
|
-
* Merge pull request #517 from misfo/patch-1
|
1113
|
-
* Merge pull request #518 from LongMan/master
|
1119
|
+
* Merge pull request [#487] from ckuttruff/master
|
1120
|
+
* Merge pull request [#492] from ckuttruff/master
|
1121
|
+
* Merge pull request [#493] from alepore/config_tag
|
1122
|
+
* Merge pull request [#503] from mariuz/patch-1
|
1123
|
+
* Merge pull request [#505] from sammcj/patch-1
|
1124
|
+
* Merge pull request [#506] from FlavourSys/config_worker_timeout
|
1125
|
+
* Merge pull request [#510] from momer/rescue-block-handle-servers-fix
|
1126
|
+
* Merge pull request [#511] from macool/patch-1
|
1127
|
+
* Merge pull request [#514] from edogawaconan/refactor_env
|
1128
|
+
* Merge pull request [#517] from misfo/patch-1
|
1129
|
+
* Merge pull request [#518] from LongMan/master
|
1114
1130
|
|
1115
1131
|
## 2.8.1 / 2014-03-06
|
1116
1132
|
|
@@ -1122,60 +1138,59 @@ The "clearly I don't have enough tests for the config" release.
|
|
1122
1138
|
* Start the deployment doc
|
1123
1139
|
|
1124
1140
|
* 6 PRs merged:
|
1125
|
-
* Merge pull request #471 from arthurnn/fix_test
|
1126
|
-
* Merge pull request #485 from joneslee85/patch-9
|
1127
|
-
* Merge pull request #486 from joshwlewis/patch-1
|
1128
|
-
* Merge pull request #490 from tobinibot/patch-1
|
1129
|
-
* Merge pull request #491 from brianknight10/clarify-no-config
|
1141
|
+
* Merge pull request [#471] from arthurnn/fix_test
|
1142
|
+
* Merge pull request [#485] from joneslee85/patch-9
|
1143
|
+
* Merge pull request [#486] from joshwlewis/patch-1
|
1144
|
+
* Merge pull request [#490] from tobinibot/patch-1
|
1145
|
+
* Merge pull request [#491] from brianknight10/clarify-no-config
|
1130
1146
|
|
1131
1147
|
## 2.8.0 / 2014-02-28
|
1132
1148
|
|
1133
1149
|
* 8 minor features:
|
1134
|
-
* Add ability to autoload a config file. Fixes #438
|
1135
|
-
* Add ability to detect and terminate hung workers. Fixes #333
|
1150
|
+
* Add ability to autoload a config file. Fixes [#438]
|
1151
|
+
* Add ability to detect and terminate hung workers. Fixes [#333]
|
1136
1152
|
* Add booted_workers to stats response
|
1137
1153
|
* Add config to customize the default error message
|
1138
1154
|
* Add prune_bundler option
|
1139
|
-
* Add worker indexes, expose them via on_worker_boot. Fixes #440
|
1155
|
+
* Add worker indexes, expose them via on_worker_boot. Fixes [#440]
|
1140
1156
|
* Add pretty process name
|
1141
1157
|
* Show the ruby version in use
|
1142
1158
|
|
1143
1159
|
* 7 bug fixes:
|
1144
1160
|
* Added 408 status on timeout.
|
1145
|
-
* Be more hostile with sockets that write block. Fixes #449
|
1146
|
-
* Expect at_exit to exclusively remove the pidfile. Fixes #444
|
1147
|
-
* Expose latency and listen backlog via bind query. Fixes #370
|
1148
|
-
* JRuby raises IOError if the socket is there. Fixes #377
|
1149
|
-
* Process requests fairly. Fixes #406
|
1150
|
-
* Rescue SystemCallError as well. Fixes #425
|
1161
|
+
* Be more hostile with sockets that write block. Fixes [#449]
|
1162
|
+
* Expect at_exit to exclusively remove the pidfile. Fixes [#444]
|
1163
|
+
* Expose latency and listen backlog via bind query. Fixes [#370]
|
1164
|
+
* JRuby raises IOError if the socket is there. Fixes [#377]
|
1165
|
+
* Process requests fairly. Fixes [#406]
|
1166
|
+
* Rescue SystemCallError as well. Fixes [#425]
|
1151
1167
|
|
1152
1168
|
* 4 doc changes:
|
1153
1169
|
* Add 2.1.0 to the matrix
|
1154
1170
|
* Add Code Climate badge to README
|
1155
1171
|
* Create signals.md
|
1156
|
-
* Set the license to BSD. Fixes #432
|
1172
|
+
* Set the license to BSD. Fixes [#432]
|
1157
1173
|
|
1158
1174
|
* 14 PRs merged:
|
1159
|
-
* Merge pull request #428 from alexeyfrank/capistrano_default_hooks
|
1160
|
-
* Merge pull request #429 from namusyaka/revert-const_defined
|
1161
|
-
* Merge pull request #431 from mrb/master
|
1162
|
-
* Merge pull request #433 from alepore/process-name
|
1163
|
-
* Merge pull request #437 from ibrahima/master
|
1164
|
-
* Merge pull request #446 from sudara/master
|
1165
|
-
* Merge pull request #451 from pwiebe/status_408
|
1166
|
-
* Merge pull request #453 from joevandyk/patch-1
|
1167
|
-
* Merge pull request #470 from arthurnn/fix_458
|
1168
|
-
* Merge pull request #472 from rubencaro/master
|
1169
|
-
* Merge pull request #480 from jjb/docs-on-running-test-suite
|
1170
|
-
* Merge pull request #481 from schneems/master
|
1171
|
-
* Merge pull request #482 from prathamesh-sonpatki/signals-doc-cleanup
|
1172
|
-
* Merge pull request #483 from YotpoLtd/master
|
1175
|
+
* Merge pull request [#428] from alexeyfrank/capistrano_default_hooks
|
1176
|
+
* Merge pull request [#429] from namusyaka/revert-const_defined
|
1177
|
+
* Merge pull request [#431] from mrb/master
|
1178
|
+
* Merge pull request [#433] from alepore/process-name
|
1179
|
+
* Merge pull request [#437] from ibrahima/master
|
1180
|
+
* Merge pull request [#446] from sudara/master
|
1181
|
+
* Merge pull request [#451] from pwiebe/status_408
|
1182
|
+
* Merge pull request [#453] from joevandyk/patch-1
|
1183
|
+
* Merge pull request [#470] from arthurnn/fix_458
|
1184
|
+
* Merge pull request [#472] from rubencaro/master
|
1185
|
+
* Merge pull request [#480] from jjb/docs-on-running-test-suite
|
1186
|
+
* Merge pull request [#481] from schneems/master
|
1187
|
+
* Merge pull request [#482] from prathamesh-sonpatki/signals-doc-cleanup
|
1188
|
+
* Merge pull request [#483] from YotpoLtd/master
|
1173
1189
|
|
1174
1190
|
## 2.7.1 / 2013-12-05
|
1175
1191
|
|
1176
1192
|
* 1 bug fix:
|
1177
|
-
|
1178
|
-
* Keep STDOUT/STDERR the right mode. Fixes #422
|
1193
|
+
* Keep STDOUT/STDERR the right mode. Fixes [#422]
|
1179
1194
|
|
1180
1195
|
## 2.7.0 / 2013-12-03
|
1181
1196
|
|
@@ -1210,7 +1225,6 @@ The "clearly I don't have enough tests for the config" release.
|
|
1210
1225
|
## 2.5.1 / 2013-08-13
|
1211
1226
|
|
1212
1227
|
* 2 bug fixes:
|
1213
|
-
|
1214
1228
|
* Keep jruby daemon mode from retrying on a hot restart
|
1215
1229
|
* Extract version from const.rb in gemspec
|
1216
1230
|
|
@@ -1252,30 +1266,28 @@ The "clearly I don't have enough tests for the config" release.
|
|
1252
1266
|
|
1253
1267
|
* 10 bug fixes:
|
1254
1268
|
|
1255
|
-
* Be sure to only delete the pid in the master. Fixes #334
|
1269
|
+
* Be sure to only delete the pid in the master. Fixes [#334]
|
1256
1270
|
* Call out -C/--config flags
|
1257
|
-
* Change parser symbol names to avoid clash. Fixes #179
|
1271
|
+
* Change parser symbol names to avoid clash. Fixes [#179]
|
1258
1272
|
* Convert thread pool sizes to integers
|
1259
1273
|
* Detect when the jruby daemon child doesn't start properly
|
1260
1274
|
* Fix typo in CLI help
|
1261
|
-
* Improve the logging output when hijack is used. Fixes #332
|
1275
|
+
* Improve the logging output when hijack is used. Fixes [#332]
|
1262
1276
|
* Remove unnecessary thread pool size conversions
|
1263
|
-
* Setup :worker_boot as an Array. Fixes #317
|
1264
|
-
* Use 127.0.0.1 as REMOTE_ADDR of unix client. Fixes #309
|
1277
|
+
* Setup :worker_boot as an Array. Fixes [#317]
|
1278
|
+
* Use 127.0.0.1 as REMOTE_ADDR of unix client. Fixes [#309]
|
1265
1279
|
|
1266
1280
|
|
1267
1281
|
## 2.3.2 / 2013-07-08
|
1268
1282
|
|
1269
1283
|
* 1 bug fix:
|
1270
|
-
|
1271
1284
|
* Move starting control server to after daemonization.
|
1272
1285
|
|
1273
1286
|
## 2.3.1 / 2013-07-06
|
1274
1287
|
|
1275
1288
|
* 2 bug fixes:
|
1276
|
-
|
1277
1289
|
* Include the right files in the Manifest.
|
1278
|
-
* Disable inheriting connections on restart on windows. Fixes #166
|
1290
|
+
* Disable inheriting connections on restart on windows. Fixes [#166]
|
1279
1291
|
|
1280
1292
|
* 1 doc change:
|
1281
1293
|
* Better document some platform constraints
|
@@ -1283,47 +1295,39 @@ The "clearly I don't have enough tests for the config" release.
|
|
1283
1295
|
## 2.3.0 / 2013-07-05
|
1284
1296
|
|
1285
1297
|
* 1 major bug fix:
|
1286
|
-
|
1287
1298
|
* Stabilize control server, add support in cluster mode
|
1288
1299
|
|
1289
1300
|
* 5 minor bug fixes:
|
1290
|
-
|
1291
1301
|
* Add ability to cleanup stale unix sockets
|
1292
|
-
* Check status data better. Fixes #292
|
1293
|
-
* Convert raw IO errors to ConnectionError. Fixes #274
|
1294
|
-
* Fix sending Content-Type and Content-Length for no body status. Fixes #304
|
1295
|
-
* Pass state path through to `pumactl start`. Fixes #287
|
1302
|
+
* Check status data better. Fixes [#292]
|
1303
|
+
* Convert raw IO errors to ConnectionError. Fixes [#274]
|
1304
|
+
* Fix sending Content-Type and Content-Length for no body status. Fixes [#304]
|
1305
|
+
* Pass state path through to `pumactl start`. Fixes [#287]
|
1296
1306
|
|
1297
1307
|
* 2 internal changes:
|
1298
|
-
|
1299
1308
|
* Refactored modes into seperate classes that CLI uses
|
1300
1309
|
* Changed CLI to take an Events object instead of stdout/stderr (API change)
|
1301
1310
|
|
1302
1311
|
## 2.2.2 / 2013-07-02
|
1303
1312
|
|
1304
1313
|
* 1 bug fix:
|
1305
|
-
|
1306
1314
|
* Fix restart_command in the config
|
1307
1315
|
|
1308
1316
|
## 2.2.1 / 2013-07-02
|
1309
1317
|
|
1310
1318
|
* 1 minor feature:
|
1311
|
-
|
1312
1319
|
* Introduce preload flag
|
1313
1320
|
|
1314
1321
|
* 1 bug fix:
|
1315
|
-
|
1316
1322
|
* Pass custom restart command in JRuby
|
1317
1323
|
|
1318
1324
|
## 2.2.0 / 2013-07-01
|
1319
1325
|
|
1320
1326
|
* 1 major feature:
|
1321
|
-
|
1322
1327
|
* Add ability to preload rack app
|
1323
1328
|
|
1324
1329
|
* 2 minor bugfixes:
|
1325
|
-
|
1326
|
-
* Don't leak info when not in development. Fixes #256
|
1330
|
+
* Don't leak info when not in development. Fixes [#256]
|
1327
1331
|
* Load the app, then bind the ports
|
1328
1332
|
|
1329
1333
|
## 2.1.1 / 2013-06-20
|
@@ -1331,7 +1335,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
1331
1335
|
* 2 minor bug fixes:
|
1332
1336
|
|
1333
1337
|
* Fix daemonization on jruby
|
1334
|
-
* Load the application before daemonizing. Fixes #285
|
1338
|
+
* Load the application before daemonizing. Fixes [#285]
|
1335
1339
|
|
1336
1340
|
## 2.1.0 / 2013-06-18
|
1337
1341
|
|
@@ -1341,7 +1345,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
1341
1345
|
* Support systemd socket activation
|
1342
1346
|
|
1343
1347
|
* 15 bug fixes:
|
1344
|
-
* Deal with pipes closing while stopping. Fixes #270
|
1348
|
+
* Deal with pipes closing while stopping. Fixes [#270]
|
1345
1349
|
* Error out early if there is no app configured
|
1346
1350
|
* Handle ConnectionError rather than the lowlevel exceptions
|
1347
1351
|
* tune with `-C` config file and `on_worker_boot`
|
@@ -1350,11 +1354,11 @@ The "clearly I don't have enough tests for the config" release.
|
|
1350
1354
|
* Make sure to use bytesize instead of size (MiniSSL write)
|
1351
1355
|
* Fix an error in puma-manager.conf
|
1352
1356
|
* fix: stop leaking sockets on restart (affects ruby 1.9.3 or before)
|
1353
|
-
* Ignore errors on the cross-thread pipe. Fixes #246
|
1357
|
+
* Ignore errors on the cross-thread pipe. Fixes [#246]
|
1354
1358
|
* Ignore errors while uncorking the socket (it might already be closed)
|
1355
|
-
* Ignore the body on a HEAD request. Fixes #278
|
1356
|
-
* Handle all engine data when possible. Fixes #251.
|
1357
|
-
* Handle all read exceptions properly. Fixes #252
|
1359
|
+
* Ignore the body on a HEAD request. Fixes [#278]
|
1360
|
+
* Handle all engine data when possible. Fixes [#251].
|
1361
|
+
* Handle all read exceptions properly. Fixes [#252]
|
1358
1362
|
* Handle errors from the server better
|
1359
1363
|
|
1360
1364
|
* 3 doc changes:
|
@@ -1365,7 +1369,6 @@ The "clearly I don't have enough tests for the config" release.
|
|
1365
1369
|
## 2.0.1 / 2013-04-30
|
1366
1370
|
|
1367
1371
|
* 1 bug fix:
|
1368
|
-
|
1369
1372
|
* Fix not starting on JRuby properly
|
1370
1373
|
|
1371
1374
|
## 2.0.0 / 2013-04-29
|
@@ -1377,8 +1380,8 @@ RailsConf 2013 edition!
|
|
1377
1380
|
* Minor doc fixes in the README.md, Capistrano section
|
1378
1381
|
|
1379
1382
|
* 2 bug fixes:
|
1380
|
-
* Fix reading RACK_ENV properly. Fixes #234
|
1381
|
-
* Make cap recipe handle tmp/sockets; fixes #228
|
1383
|
+
* Fix reading RACK_ENV properly. Fixes [#234]
|
1384
|
+
* Make cap recipe handle tmp/sockets; fixes [#228]
|
1382
1385
|
|
1383
1386
|
* 3 minor changes:
|
1384
1387
|
* Fix capistrano recipe
|
@@ -1388,7 +1391,6 @@ RailsConf 2013 edition!
|
|
1388
1391
|
## 2.0.0.b7 / 2013-03-18
|
1389
1392
|
|
1390
1393
|
* 5 minor enhancements:
|
1391
|
-
|
1392
1394
|
* Add -q option for :start
|
1393
1395
|
* Add -V, --version
|
1394
1396
|
* Add default Rack handler helper
|
@@ -1396,30 +1398,27 @@ RailsConf 2013 edition!
|
|
1396
1398
|
* Set worker directory from configuration file
|
1397
1399
|
|
1398
1400
|
* 12 bug fixes:
|
1399
|
-
|
1400
|
-
*
|
1401
|
-
* Handle early term in workers. Fixes #206
|
1401
|
+
* Close the binder in the right place. Fixes [#192]
|
1402
|
+
* Handle early term in workers. Fixes [#206]
|
1402
1403
|
* Make sure that the default port is 80 when the request doesn't include HTTP_X_FORWARDED_PROTO.
|
1403
1404
|
* Prevent Errno::EBADF errors on restart when running ruby 2.0
|
1404
1405
|
* Record the proper @master_pid
|
1405
1406
|
* Respect the header HTTP_X_FORWARDED_PROTO when the host doesn't include a port number.
|
1406
1407
|
* Retry EAGAIN/EWOULDBLOCK during syswrite
|
1407
|
-
* Run exec properly to restart. Fixes #154
|
1408
|
+
* Run exec properly to restart. Fixes [#154]
|
1408
1409
|
* Set Rack run_once to false
|
1409
|
-
* Syncronize all access to @timeouts. Fixes #208
|
1410
|
-
* Write out the state post-daemonize. Fixes #189
|
1410
|
+
* Syncronize all access to @timeouts. Fixes [#208]
|
1411
|
+
* Write out the state post-daemonize. Fixes [#189]
|
1411
1412
|
* Prevent crash when all workers are gone
|
1412
1413
|
|
1413
1414
|
## 2.0.0.b6 / 2013-02-06
|
1414
1415
|
|
1415
1416
|
* 2 minor enhancements:
|
1416
|
-
|
1417
1417
|
* Add hook for running when a worker boots
|
1418
1418
|
* Advertise the Configuration object for apps to use.
|
1419
1419
|
|
1420
1420
|
* 1 bug fix:
|
1421
|
-
|
1422
|
-
* Change directory in working during upgrade. Fixes #185
|
1421
|
+
* Change directory in working during upgrade. Fixes [#185]
|
1423
1422
|
|
1424
1423
|
## 2.0.0.b5 / 2013-02-05
|
1425
1424
|
|
@@ -1432,16 +1431,16 @@ RailsConf 2013 edition!
|
|
1432
1431
|
* Add config file option to specify the restart command
|
1433
1432
|
|
1434
1433
|
* 5 bug fixes:
|
1435
|
-
* Cleanup pipes properly. Fixes #182
|
1436
|
-
* Daemonize earlier so that we don't lose app threads. Fixes #183
|
1437
|
-
* Drain the notification pipe. Fixes #176, thanks @cryo28
|
1438
|
-
* Move write_pid to after we daemonize. Fixes #180
|
1434
|
+
* Cleanup pipes properly. Fixes [#182]
|
1435
|
+
* Daemonize earlier so that we don't lose app threads. Fixes [#183]
|
1436
|
+
* Drain the notification pipe. Fixes [#176], thanks @cryo28
|
1437
|
+
* Move write_pid to after we daemonize. Fixes [#180]
|
1439
1438
|
* Redirect IO properly and emit message for checkpointing
|
1440
1439
|
|
1441
1440
|
## 2.0.0.b4 / 2012-12-12
|
1442
1441
|
|
1443
1442
|
* 4 bug fixes:
|
1444
|
-
* Properly check #syswrite's value for variable sized buffers. Fixes #170
|
1443
|
+
* Properly check #syswrite's value for variable sized buffers. Fixes [#170]
|
1445
1444
|
* Shutdown status server properly
|
1446
1445
|
* Handle char vs byte and mixing syswrite with write properly
|
1447
1446
|
* made MiniSSL validate key/cert file existence
|
@@ -1461,12 +1460,12 @@ RailsConf 2013 edition!
|
|
1461
1460
|
* Add options to daemonize puma
|
1462
1461
|
|
1463
1462
|
* 7 bug fixes:
|
1464
|
-
* Reset the IOBuffer properly. Fixes #148
|
1463
|
+
* Reset the IOBuffer properly. Fixes [#148]
|
1465
1464
|
* Shutdown gracefully on JRuby with Ctrl-C
|
1466
|
-
* Various methods to get newrelic to start. Fixes #128
|
1465
|
+
* Various methods to get newrelic to start. Fixes [#128]
|
1467
1466
|
* fixing syntax error at capistrano recipe
|
1468
1467
|
* Force ECONNRESET when read returns nil
|
1469
|
-
* Be sure to empty the drain the todo before shutting down. Fixes #155
|
1468
|
+
* Be sure to empty the drain the todo before shutting down. Fixes [#155]
|
1470
1469
|
* allow for alternate locations for status app
|
1471
1470
|
|
1472
1471
|
## 2.0.0.b1 / 2012-09-11
|
@@ -1518,7 +1517,7 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1518
1517
|
|
1519
1518
|
* 6 bug fixes:
|
1520
1519
|
* Define RSTRING_NOT_MODIFIED for Rubinius
|
1521
|
-
* Convert status to integer. Fixes #123
|
1520
|
+
* Convert status to integer. Fixes [#123]
|
1522
1521
|
* Delete pidfile when stopping the server
|
1523
1522
|
* Allow compilation with -Werror=format-security option
|
1524
1523
|
* Fix wrong HTTP version for a HTTP/1.0 request
|
@@ -1526,7 +1525,7 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1526
1525
|
|
1527
1526
|
* 3 minor features:
|
1528
1527
|
* Added support for setting RACK_ENV via the CLI, config file, and rack app
|
1529
|
-
* Allow Server#run to run sync. Fixes #111
|
1528
|
+
* Allow Server#run to run sync. Fixes [#111]
|
1530
1529
|
* Puma can now run on windows
|
1531
1530
|
|
1532
1531
|
## 1.4.0 / 2012-06-04
|
@@ -1541,7 +1540,7 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1541
1540
|
|
1542
1541
|
* 2 bug fixes:
|
1543
1542
|
* use #bytesize instead of #length for Content-Length header
|
1544
|
-
* Use StringIO properly. Fixes #98
|
1543
|
+
* Use StringIO properly. Fixes [#98]
|
1545
1544
|
|
1546
1545
|
## 1.3.0 / 2012-05-08
|
1547
1546
|
|
@@ -1550,10 +1549,10 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1550
1549
|
* Add -I option to specify $LOAD_PATH directories
|
1551
1550
|
|
1552
1551
|
* 4 bug fixes:
|
1553
|
-
* Don't join the server thread inside the signal handle. Fixes #94
|
1552
|
+
* Don't join the server thread inside the signal handle. Fixes [#94]
|
1554
1553
|
* Make NullIO#read mimic IO#read
|
1555
|
-
* Only stop the status server if it's started. Fixes #84
|
1556
|
-
* Set RACK_ENV early in cli also. Fixes #78
|
1554
|
+
* Only stop the status server if it's started. Fixes [#84]
|
1555
|
+
* Set RACK_ENV early in cli also. Fixes [#78]
|
1557
1556
|
|
1558
1557
|
* 1 new contributor:
|
1559
1558
|
* Jesse Cooke
|
@@ -1561,58 +1560,49 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1561
1560
|
## 1.2.2 / 2012-04-28
|
1562
1561
|
|
1563
1562
|
* 4 bug fixes:
|
1564
|
-
|
1565
1563
|
* Report a lowlevel error to stderr
|
1566
1564
|
* Set a fallback SERVER_NAME and SERVER_PORT
|
1567
|
-
* Keep the encoding of the body correct. Fixes #79
|
1565
|
+
* Keep the encoding of the body correct. Fixes [#79]
|
1568
1566
|
* show error.to_s along with backtrace for low-level error
|
1569
1567
|
|
1570
1568
|
## 1.2.1 / 2012-04-11
|
1571
1569
|
|
1572
|
-
1 bug fix:
|
1573
|
-
|
1574
|
-
* Fix rack.url_scheme for SSL servers. Fixes #65
|
1570
|
+
* 1 bug fix:
|
1571
|
+
* Fix rack.url_scheme for SSL servers. Fixes [#65]
|
1575
1572
|
|
1576
1573
|
## 1.2.0 / 2012-04-11
|
1577
1574
|
|
1578
|
-
1 major feature:
|
1579
|
-
|
1580
|
-
|
1581
|
-
the server sockets remains open, so no connections are lost.
|
1582
|
-
|
1583
|
-
1 minor feature:
|
1584
|
-
|
1585
|
-
* More helpful fallback error message
|
1586
|
-
|
1587
|
-
6 bug fixes:
|
1575
|
+
* 1 major feature:
|
1576
|
+
* When possible, the internal restart does a "hot restart" meaning
|
1577
|
+
the server sockets remains open, so no connections are lost.
|
1588
1578
|
|
1589
|
-
|
1590
|
-
|
1591
|
-
* Fix reporting https only on a true SSL connection
|
1592
|
-
* Set the default content type to 'text/plain'. Fixes #63
|
1593
|
-
* Use REUSEADDR. Fixes #60
|
1594
|
-
* Shutdown gracefully on SIGTERM. Fixes #53
|
1579
|
+
* 1 minor feature:
|
1580
|
+
* More helpful fallback error message
|
1595
1581
|
|
1596
|
-
|
1582
|
+
* 6 bug fixes:
|
1583
|
+
* Pass the proper args to unknown_error. Fixes [#54], [#58]
|
1584
|
+
* Stop the control server before restarting. Fixes [#61]
|
1585
|
+
* Fix reporting https only on a true SSL connection
|
1586
|
+
* Set the default content type to 'text/plain'. Fixes [#63]
|
1587
|
+
* Use REUSEADDR. Fixes [#60]
|
1588
|
+
* Shutdown gracefully on SIGTERM. Fixes [#53]
|
1597
1589
|
|
1598
|
-
|
1599
|
-
|
1590
|
+
* 2 new contributors:
|
1591
|
+
* Seamus Abshere
|
1592
|
+
* Steve Richert
|
1600
1593
|
|
1601
1594
|
## 1.1.1 / 2012-03-30
|
1602
1595
|
|
1603
|
-
1 bugfix:
|
1604
|
-
|
1605
|
-
* Include puma/compat.rb in the gem (oops!)
|
1596
|
+
* 1 bugfix:
|
1597
|
+
* Include puma/compat.rb in the gem (oops!)
|
1606
1598
|
|
1607
1599
|
## 1.1.0 / 2012-03-30
|
1608
1600
|
|
1609
|
-
1 bugfix:
|
1610
|
-
|
1611
|
-
* Make sure that the unix socket has the perms 0777 by default
|
1612
|
-
|
1613
|
-
1 minor feature:
|
1601
|
+
* 1 bugfix:
|
1602
|
+
* Make sure that the unix socket has the perms 0777 by default
|
1614
1603
|
|
1615
|
-
|
1604
|
+
* 1 minor feature:
|
1605
|
+
* Add umask param to the unix:// bind to set the umask
|
1616
1606
|
|
1617
1607
|
## 1.0.0 / 2012-03-29
|
1618
1608
|
|
@@ -1622,7 +1612,569 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1622
1612
|
## Master
|
1623
1613
|
|
1624
1614
|
* Features
|
1625
|
-
* Your feature goes here (#Github Number)
|
1615
|
+
* Your feature goes here <Most recent on the top, like GitHub> (#Github Number)
|
1626
1616
|
|
1627
1617
|
* Bugfixes
|
1628
|
-
* Your bugfix goes here (#Github Number)
|
1618
|
+
* Your bugfix goes here <Most recent on the top, like GitHub> (#Github Number)
|
1619
|
+
|
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"
|