puma 5.0.0.beta1-java → 5.0.3-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 +1188 -559
- data/README.md +15 -8
- data/bin/puma-wild +3 -9
- data/docs/architecture.md +3 -3
- data/docs/deployment.md +10 -7
- data/docs/jungle/README.md +0 -4
- data/docs/jungle/rc.d/puma +2 -2
- data/docs/nginx.md +1 -1
- data/docs/restart.md +46 -23
- data/docs/signals.md +7 -7
- data/docs/systemd.md +1 -1
- data/ext/puma_http11/ext_help.h +1 -1
- data/ext/puma_http11/http11_parser.c +3 -1
- data/ext/puma_http11/http11_parser.rl +3 -1
- data/ext/puma_http11/mini_ssl.c +53 -38
- data/ext/puma_http11/no_ssl/PumaHttp11Service.java +15 -0
- data/ext/puma_http11/org/jruby/puma/MiniSSL.java +77 -18
- data/ext/puma_http11/puma_http11.c +22 -11
- data/lib/puma.rb +16 -0
- data/lib/puma/app/status.rb +47 -44
- data/lib/puma/binder.rb +40 -12
- data/lib/puma/client.rb +68 -82
- data/lib/puma/cluster.rb +30 -187
- data/lib/puma/cluster/worker.rb +170 -0
- data/lib/puma/cluster/worker_handle.rb +83 -0
- data/lib/puma/commonlogger.rb +2 -2
- data/lib/puma/configuration.rb +9 -7
- data/lib/puma/const.rb +2 -1
- data/lib/puma/control_cli.rb +2 -0
- data/lib/puma/detect.rb +9 -0
- data/lib/puma/dsl.rb +77 -39
- data/lib/puma/error_logger.rb +97 -0
- data/lib/puma/events.rb +37 -31
- data/lib/puma/launcher.rb +20 -10
- data/lib/puma/minissl.rb +55 -10
- data/lib/puma/minissl/context_builder.rb +0 -3
- data/lib/puma/puma_http11.jar +0 -0
- data/lib/puma/queue_close.rb +26 -0
- data/lib/puma/reactor.rb +77 -373
- data/lib/puma/request.rb +438 -0
- data/lib/puma/runner.rb +7 -19
- data/lib/puma/server.rb +229 -506
- data/lib/puma/single.rb +3 -2
- data/lib/puma/state_file.rb +1 -1
- data/lib/puma/thread_pool.rb +32 -5
- data/lib/puma/util.rb +12 -0
- metadata +12 -10
- data/docs/jungle/upstart/README.md +0 -61
- data/docs/jungle/upstart/puma-manager.conf +0 -31
- data/docs/jungle/upstart/puma.conf +0 -69
- data/lib/puma/accept_nonblock.rb +0 -29
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a4af95359f9391a0466a24c2322f7bf9eb659a55e2224a40859997788312c2c7
|
4
|
+
data.tar.gz: 2aded26c06eeb4666121ffb95490bfba84afdeba51aa6a8aa8a2037bf5ec3a7b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad30f6d29a968120aa3c093acc3a7818b278a133f23a1450762f9f8c157732ce9b7bf113ffa30dc1f0d2fc0bb5248d8d4ab7711d6e7a0ba4d58e716767a8677e
|
7
|
+
data.tar.gz: b998815c4886d8300ea5acc3ebaf5a5fbac41a662014ddb2d7f75ea971a2023589dbbe1f0bceddd156273c403b7b9024b4c0ee4a8988d644da9d66ceff04bafe
|
data/History.md
CHANGED
@@ -1,64 +1,133 @@
|
|
1
|
-
## 5.0.
|
1
|
+
## 5.0.3 / 2020-10-26
|
2
|
+
|
3
|
+
* Bugfixes
|
4
|
+
* Add Client#io_ok?, check before Reactor#register ([#2432])
|
5
|
+
* Fix hang on shutdown in refork ([#2442])
|
6
|
+
* Fix `Bundler::GemNotFound` errors for `nio4r` gem during phased restarts ([#2427], [#2018])
|
7
|
+
* Server run thread safety fix ([#2435])
|
8
|
+
* Fire `on_booted` after server starts ([#2431], [#2212])
|
9
|
+
* Cleanup daemonization in rc.d script ([#2409])
|
10
|
+
|
11
|
+
* Refactor
|
12
|
+
* Remove accept_nonblock.rb, add test_integration_ssl.rb ([#2448])
|
13
|
+
* Refactor status.rb - dry it up a bit ([#2450])
|
14
|
+
* Extract req/resp methods to new request.rb from server.rb ([#2419])
|
15
|
+
* Refactor Reactor and Client request buffering ([#2279])
|
16
|
+
* client.rb - remove JRuby specific 'finish' code ([#2412])
|
17
|
+
* Consolidate fast_write calls in Server, extract early_hints assembly ([#2405])
|
18
|
+
* Remove upstart from docs ([#2408])
|
19
|
+
* Consolidate option handling in Server, Server small refactors, doc changes ([#2389])
|
20
|
+
|
21
|
+
## 5.0.2 / 2020-09-28
|
22
|
+
|
23
|
+
* Bugfixes
|
24
|
+
* Reverted API changes to Server.
|
25
|
+
|
26
|
+
## 5.0.1 / 2020-09-28
|
27
|
+
|
28
|
+
* Bugfixes
|
29
|
+
* Fix LoadError in CentOS 8 ([#2381])
|
30
|
+
* Better error handling during force shutdown ([#2271])
|
31
|
+
* Prevent connections from entering Reactor after shutdown begins ([#2377])
|
32
|
+
* Fix error backtrace debug logging && Do not log request dump if it is not parsed ([#2376])
|
33
|
+
* Split TCP_CORK and TCP_INFO ([#2372])
|
34
|
+
* Do not log EOFError when a client connection is closed without write ([#2384])
|
35
|
+
|
36
|
+
* Refactor
|
37
|
+
* Change Events#ssl_error signature from (error, peeraddr, peercert) to (error, ssl_socket) ([#2375])
|
38
|
+
* Consolidate option handling in Server, Server small refactors, doc chang ([#2373])
|
39
|
+
|
40
|
+
## 5.0.0 / 2020-09-17
|
2
41
|
|
3
42
|
* Features
|
4
|
-
*
|
5
|
-
* EXPERIMENTAL:
|
6
|
-
* EXPERIMENTAL: Added `
|
7
|
-
* Added
|
8
|
-
* Added
|
9
|
-
*
|
10
|
-
*
|
11
|
-
*
|
12
|
-
*
|
13
|
-
* Added `
|
43
|
+
* Allow compiling without OpenSSL and dynamically load files needed for SSL, add 'no ssl' CI ([#2305])
|
44
|
+
* EXPERIMENTAL: Add `fork_worker` option and `refork` command for reduced memory usage by forking from a worker process instead of the master process. ([#2099])
|
45
|
+
* 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]).
|
46
|
+
* EXPERIMENTAL: Added `nakayoshi_fork` option. Reduce memory usage in preloaded cluster-mode apps by GCing before fork and compacting, where available. ([#2093], [#2256])
|
47
|
+
* Added pumactl `thread-backtraces` command to print thread backtraces ([#2054])
|
48
|
+
* Added incrementing `requests_count` to `Puma.stats`. ([#2106])
|
49
|
+
* Increased maximum URI path length from 2048 to 8192 bytes ([#2167], [#2344])
|
50
|
+
* `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])
|
51
|
+
* Faster phased restart and worker timeout ([#2220])
|
52
|
+
* Added `state_permission` to config DSL to set state file permissions ([#2238])
|
53
|
+
* Added `Puma.stats_hash`, which returns a stats in Hash instead of a JSON string ([#2086], [#2253])
|
54
|
+
* `rack.multithread` and `rack.multiprocess` now dynamically resolved by `max_thread` and `workers` respectively ([#2288])
|
14
55
|
|
15
56
|
* Deprecations, Removals and Breaking API Changes
|
16
|
-
* `--control` has been removed. Use `--control-url` (#1487)
|
57
|
+
* `--control` has been removed. Use `--control-url` ([#1487])
|
17
58
|
* `worker_directory` has been removed. Use `directory`.
|
18
|
-
* min_threads now set by environment variables PUMA_MIN_THREADS and MIN_THREADS. (#2143)
|
19
|
-
* max_threads now set by environment variables PUMA_MAX_THREADS and MAX_THREADS. (#2143)
|
20
|
-
* max_threads default to 5 in MRI or 16 for all other interpreters. (#2143)
|
21
|
-
* preload by default if workers > 1 (#2143)
|
22
|
-
* Puma::Plugin.workers_supported? has been removed. Use Puma.forkable? instead. (#2143)
|
23
|
-
* `tcp_mode` has been removed without replacement. (#2169)
|
24
|
-
* Daemonization has been removed without replacement. (#2170)
|
25
|
-
* Changed #connected_port to #connected_ports (#2076)
|
26
|
-
* Configuration: `environment` is read from `RAILS_ENV`, if `RACK_ENV` can't be found (#2022)
|
59
|
+
* min_threads now set by environment variables PUMA_MIN_THREADS and MIN_THREADS. ([#2143])
|
60
|
+
* max_threads now set by environment variables PUMA_MAX_THREADS and MAX_THREADS. ([#2143])
|
61
|
+
* max_threads default to 5 in MRI or 16 for all other interpreters. ([#2143])
|
62
|
+
* preload by default if workers > 1 ([#2143])
|
63
|
+
* Puma::Plugin.workers_supported? has been removed. Use Puma.forkable? instead. ([#2143])
|
64
|
+
* `tcp_mode` has been removed without replacement. ([#2169])
|
65
|
+
* Daemonization has been removed without replacement. ([#2170])
|
66
|
+
* Changed #connected_port to #connected_ports ([#2076])
|
67
|
+
* Configuration: `environment` is read from `RAILS_ENV`, if `RACK_ENV` can't be found ([#2022])
|
68
|
+
* Log binding on http:// for TCP bindings to make it clickable
|
27
69
|
|
28
70
|
* Bugfixes
|
29
|
-
*
|
30
|
-
*
|
31
|
-
*
|
32
|
-
*
|
33
|
-
*
|
34
|
-
*
|
35
|
-
*
|
36
|
-
*
|
37
|
-
*
|
38
|
-
*
|
39
|
-
*
|
40
|
-
*
|
41
|
-
*
|
42
|
-
*
|
43
|
-
*
|
44
|
-
*
|
45
|
-
*
|
46
|
-
*
|
71
|
+
* Fix JSON loading issues on phased-restarts ([#2269])
|
72
|
+
* Improve shutdown reliability ([#2312], [#2338])
|
73
|
+
* Close client http connections made to an ssl server with TLSv1.3 ([#2116])
|
74
|
+
* Do not set user_config to quiet by default to allow for file config ([#2074])
|
75
|
+
* Always close SSL connection in Puma::ControlCLI ([#2211])
|
76
|
+
* Windows update extconf.rb for use with ssp and varied Ruby/MSYS2 combinations ([#2069])
|
77
|
+
* Ensure control server Unix socket is closed on shutdown ([#2112])
|
78
|
+
* Preserve `BUNDLE_GEMFILE` env var when using `prune_bundler` ([#1893])
|
79
|
+
* Send 408 request timeout even when queue requests is disabled ([#2119])
|
80
|
+
* Rescue IO::WaitReadable instead of EAGAIN for blocking read ([#2121])
|
81
|
+
* Ensure `BUNDLE_GEMFILE` is unspecified in workers if unspecified in master when using `prune_bundler` ([#2154])
|
82
|
+
* Rescue and log exceptions in hooks defined by users (on_worker_boot, after_worker_fork etc) ([#1551])
|
83
|
+
* Read directly from the socket in #read_and_drop to avoid raising further SSL errors ([#2198])
|
84
|
+
* Set `Connection: closed` header when queue requests is disabled ([#2216])
|
85
|
+
* Pass queued requests to thread pool on server shutdown ([#2122])
|
86
|
+
* Fixed a few minor concurrency bugs in ThreadPool that may have affected non-GVL Rubies ([#2220])
|
87
|
+
* Fix `out_of_band` hook never executed if the number of worker threads is > 1 ([#2177])
|
88
|
+
* Fix ThreadPool#shutdown timeout accuracy ([#2221])
|
89
|
+
* Fix `UserFileDefaultOptions#fetch` to properly use `default` ([#2233])
|
90
|
+
* Improvements to `out_of_band` hook ([#2234])
|
91
|
+
* Prefer the rackup file specified by the CLI ([#2225])
|
92
|
+
* Fix for spawning subprocesses with fork_worker option ([#2267])
|
93
|
+
* Set `CONTENT_LENGTH` for chunked requests ([#2287])
|
94
|
+
* JRuby - Add Puma::MiniSSL::Engine#init? and #teardown methods, run all SSL tests ([#2317])
|
95
|
+
* Improve shutdown reliability ([#2312])
|
96
|
+
* Resolve issue with threadpool waiting counter decrement when thread is killed
|
97
|
+
* Constrain rake-compiler version to 0.9.4 to fix `ClassNotFound` exception when using MiniSSL with Java8.
|
98
|
+
* Fix recursive `prune_bundler` ([#2319]).
|
99
|
+
* Ensure that TCP_CORK is usable
|
100
|
+
* Fix corner case when request body is chunked ([#2326])
|
101
|
+
* Fix filehandle leak in MiniSSL ([#2299])
|
47
102
|
|
48
103
|
* Refactor
|
49
|
-
* Remove unused loader argument from Plugin initializer (#2095)
|
50
|
-
* Simplify `Configuration.random_token` and remove insecure fallback (#2102)
|
51
|
-
* Simplify `Runner#start_control` URL parsing (#2111)
|
52
|
-
* Removed the IOBuffer extension and replaced with Ruby (#1980)
|
53
|
-
* Update `Rack::Handler::Puma.run` to use `**options` (#2189)
|
54
|
-
* ThreadPool concurrency refactoring (#2220)
|
55
|
-
* JSON parse cluster worker stats instead of regex (#2124)
|
56
|
-
* Support parallel tests in verbose progress reporting (#2223)
|
104
|
+
* Remove unused loader argument from Plugin initializer ([#2095])
|
105
|
+
* Simplify `Configuration.random_token` and remove insecure fallback ([#2102])
|
106
|
+
* Simplify `Runner#start_control` URL parsing ([#2111])
|
107
|
+
* Removed the IOBuffer extension and replaced with Ruby ([#1980])
|
108
|
+
* Update `Rack::Handler::Puma.run` to use `**options` ([#2189])
|
109
|
+
* ThreadPool concurrency refactoring ([#2220])
|
110
|
+
* JSON parse cluster worker stats instead of regex ([#2124])
|
111
|
+
* Support parallel tests in verbose progress reporting ([#2223])
|
112
|
+
* Refactor error handling in server accept loop ([#2239])
|
113
|
+
|
114
|
+
## 4.3.6 / 2020-09-05
|
115
|
+
|
116
|
+
* Bugfixes
|
117
|
+
* Explicitly include ctype.h to fix compilation warning and build error on macOS with Xcode 12 ([#2304])
|
118
|
+
* Don't require json at boot ([#2269])
|
119
|
+
|
120
|
+
## 4.3.4/4.3.5 and 3.12.5/3.12.6 / 2020-05-22
|
121
|
+
|
122
|
+
Each patchlevel release contains a separate security fix. We recommend simply upgrading to 4.3.5/3.12.6.
|
123
|
+
|
124
|
+
* Security
|
125
|
+
* Fix: Fixed two separate HTTP smuggling vulnerabilities that used the Transfer-Encoding header. CVE-2020-11076 and CVE-2020-11077.
|
57
126
|
|
58
127
|
## 4.3.3 and 3.12.4 / 2020-02-28
|
59
128
|
|
60
129
|
* Bugfixes
|
61
|
-
* Fix: Fixes a problem where we weren't splitting headers correctly on newlines (#2132)
|
130
|
+
* Fix: Fixes a problem where we weren't splitting headers correctly on newlines ([#2132])
|
62
131
|
* Security
|
63
132
|
* Fix: Prevent HTTP Response splitting via CR in early hints. CVE-2020-5249.
|
64
133
|
|
@@ -75,152 +144,146 @@
|
|
75
144
|
## 4.3.0 / 2019-11-07
|
76
145
|
|
77
146
|
* Features
|
78
|
-
* Strip whitespace at end of HTTP headers (#2010)
|
79
|
-
* Optimize HTTP parser for JRuby (#2012)
|
80
|
-
* Add SSL support for the control app and cli (#2046, #2052)
|
147
|
+
* Strip whitespace at end of HTTP headers ([#2010])
|
148
|
+
* Optimize HTTP parser for JRuby ([#2012])
|
149
|
+
* Add SSL support for the control app and cli ([#2046], [#2052])
|
81
150
|
|
82
151
|
* Bugfixes
|
83
|
-
* Fix Errno::EINVAL when SSL is enabled and browser rejects cert (#1564)
|
84
|
-
* Fix pumactl defaulting puma to development if an environment was not specified (#2035)
|
85
|
-
* Fix closing file stream when reading pid from pidfile (#2048)
|
86
|
-
* Fix a typo in configuration option `--extra_runtime_dependencies` (#2050)
|
152
|
+
* Fix Errno::EINVAL when SSL is enabled and browser rejects cert ([#1564])
|
153
|
+
* Fix pumactl defaulting puma to development if an environment was not specified ([#2035])
|
154
|
+
* Fix closing file stream when reading pid from pidfile ([#2048])
|
155
|
+
* Fix a typo in configuration option `--extra_runtime_dependencies` ([#2050])
|
87
156
|
|
88
157
|
## 4.2.1 / 2019-10-07
|
89
158
|
|
90
159
|
* 3 bugfixes
|
91
|
-
* Fix socket activation of systemd (pre-existing) unix binder files (#1842, #1988)
|
92
|
-
* Deal with multiple calls to bind correctly (#1986, #1994, #2006)
|
93
|
-
* Accepts symbols for `verify_mode` (#1222)
|
160
|
+
* Fix socket activation of systemd (pre-existing) unix binder files ([#1842], [#1988])
|
161
|
+
* Deal with multiple calls to bind correctly ([#1986], [#1994], [#2006])
|
162
|
+
* Accepts symbols for `verify_mode` ([#1222])
|
94
163
|
|
95
164
|
## 4.2.0 / 2019-09-23
|
96
165
|
|
97
166
|
* 6 features
|
98
|
-
* Pumactl has a new -e environment option and reads `config/puma/<environment>.rb` config files (#1885)
|
99
|
-
* Semicolons are now allowed in URL paths (MRI only), useful for Angular or Redmine (#1934)
|
100
|
-
* Allow extra dependencies to be defined when using prune_bundler (#1105)
|
101
|
-
* Puma now reports the correct port when binding to port 0, also reports other listeners when binding to localhost (#1786)
|
102
|
-
* Sending SIGINFO to any Puma worker now prints currently active threads and their backtraces (#1320)
|
103
|
-
* Puma threads all now have their name set on Ruby 2.3+ (#1968)
|
167
|
+
* Pumactl has a new -e environment option and reads `config/puma/<environment>.rb` config files ([#1885])
|
168
|
+
* Semicolons are now allowed in URL paths (MRI only), useful for Angular or Redmine ([#1934])
|
169
|
+
* Allow extra dependencies to be defined when using prune_bundler ([#1105])
|
170
|
+
* Puma now reports the correct port when binding to port 0, also reports other listeners when binding to localhost ([#1786])
|
171
|
+
* Sending SIGINFO to any Puma worker now prints currently active threads and their backtraces ([#1320])
|
172
|
+
* Puma threads all now have their name set on Ruby 2.3+ ([#1968])
|
104
173
|
* 4 bugfixes
|
105
|
-
* Fix some misbehavior with phased restart and externally SIGTERMed workers (#1908, #1952)
|
106
|
-
* Fix socket closing on error (#1941)
|
107
|
-
* Removed unnecessary SIGINT trap for JRuby that caused some race conditions (#1961)
|
108
|
-
* Fix socket files being left around after process stopped (#1970)
|
174
|
+
* Fix some misbehavior with phased restart and externally SIGTERMed workers ([#1908], [#1952])
|
175
|
+
* Fix socket closing on error ([#1941])
|
176
|
+
* Removed unnecessary SIGINT trap for JRuby that caused some race conditions ([#1961])
|
177
|
+
* Fix socket files being left around after process stopped ([#1970])
|
109
178
|
* Absolutely thousands of lines of test improvements and fixes thanks to @MSP-Greg
|
110
179
|
|
111
180
|
## 4.1.1 / 2019-09-05
|
112
181
|
|
113
182
|
* 3 bugfixes
|
114
|
-
* Revert our attempt to not dup STDOUT/STDERR (#1946)
|
115
|
-
* Fix socket close on error (#1941)
|
116
|
-
* Fix workers not shutting down correctly (#1908)
|
183
|
+
* Revert our attempt to not dup STDOUT/STDERR ([#1946])
|
184
|
+
* Fix socket close on error ([#1941])
|
185
|
+
* Fix workers not shutting down correctly ([#1908])
|
117
186
|
|
118
187
|
## 4.1.0 / 2019-08-08
|
119
188
|
|
120
189
|
* 4 features
|
121
|
-
* Add REQUEST_PATH on parse error message (#1831)
|
122
|
-
* You can now easily add custom log formatters with the `log_formatter` config option (#1816)
|
123
|
-
* Puma.stats now provides process start times (#1844)
|
124
|
-
* Add support for disabling TLSv1.1 (#1836)
|
190
|
+
* Add REQUEST_PATH on parse error message ([#1831])
|
191
|
+
* You can now easily add custom log formatters with the `log_formatter` config option ([#1816])
|
192
|
+
* Puma.stats now provides process start times ([#1844])
|
193
|
+
* Add support for disabling TLSv1.1 ([#1836])
|
125
194
|
|
126
195
|
* 7 bugfixes
|
127
|
-
* Fix issue where Puma was creating zombie process entries (#1887)
|
128
|
-
* Fix bugs with line-endings and chunked encoding (#1812)
|
129
|
-
* RACK_URL_SCHEME is now set correctly in all conditions (#1491)
|
130
|
-
* We no longer mutate global STDOUT/STDERR, particularly the sync setting (#1837)
|
131
|
-
* SSL read_nonblock no longer blocks (#1857)
|
132
|
-
* Swallow connection errors when sending early hints (#1822)
|
133
|
-
* Backtrace no longer dumped when invalid pumactl commands are run (#1863)
|
196
|
+
* Fix issue where Puma was creating zombie process entries ([#1887])
|
197
|
+
* Fix bugs with line-endings and chunked encoding ([#1812])
|
198
|
+
* RACK_URL_SCHEME is now set correctly in all conditions ([#1491])
|
199
|
+
* We no longer mutate global STDOUT/STDERR, particularly the sync setting ([#1837])
|
200
|
+
* SSL read_nonblock no longer blocks ([#1857])
|
201
|
+
* Swallow connection errors when sending early hints ([#1822])
|
202
|
+
* Backtrace no longer dumped when invalid pumactl commands are run ([#1863])
|
134
203
|
|
135
204
|
* 5 other
|
136
|
-
* Avoid casting worker_timeout twice (#1838)
|
137
|
-
* Removed a call to private that wasn't doing anything (#1882)
|
138
|
-
* README, Rakefile, docs and test cleanups (#1848, #1847, #1846, #1853, #1859, #1850, #1866, #1870, #1872, #1833, #1888)
|
205
|
+
* Avoid casting worker_timeout twice ([#1838])
|
206
|
+
* Removed a call to private that wasn't doing anything ([#1882])
|
207
|
+
* README, Rakefile, docs and test cleanups ([#1848], [#1847], [#1846], [#1853], #1859, [#1850], [#1866], [#1870], [#1872], [#1833], [#1888])
|
139
208
|
* Puma.io has proper documentation now (https://puma.io/puma/)
|
140
209
|
* Added the Contributor Covenant CoC
|
141
210
|
|
142
211
|
* 1 known issue
|
143
|
-
* Some users are still experiencing issues surrounding socket activation and Unix sockets (#1842)
|
212
|
+
* Some users are still experiencing issues surrounding socket activation and Unix sockets ([#1842])
|
144
213
|
|
145
214
|
## 4.0.1 / 2019-07-11
|
146
215
|
|
147
216
|
* 2 bugfixes
|
148
|
-
* Fix socket removed after reload - should fix problems with systemd socket activation. (#1829)
|
149
|
-
* 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)
|
217
|
+
* Fix socket removed after reload - should fix problems with systemd socket activation. ([#1829])
|
218
|
+
* 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])
|
150
219
|
* 1 other
|
151
|
-
* Removed unnecessary RUBY_VERSION checks. (#1827)
|
220
|
+
* Removed unnecessary RUBY_VERSION checks. ([#1827])
|
152
221
|
|
153
222
|
## 4.0.0 / 2019-06-25
|
154
223
|
|
155
224
|
* 9 features
|
156
|
-
* Add support for disabling TLSv1.0 (#1562)
|
157
|
-
* Request body read time metric (#1569)
|
158
|
-
* Add out_of_band hook (#1648)
|
159
|
-
* Re-implement (native) IOBuffer for JRuby (#1691)
|
160
|
-
* Min worker timeout (#1716)
|
161
|
-
* Add option to suppress SignalException on SIGTERM (#1690)
|
162
|
-
* Allow mutual TLS CA to be set using `ssl_bind` DSL (#1689)
|
163
|
-
* Reactor now uses nio4r instead of `select` (#1728)
|
164
|
-
* Add status to pumactl with pidfile (#1824)
|
225
|
+
* Add support for disabling TLSv1.0 ([#1562])
|
226
|
+
* Request body read time metric ([#1569])
|
227
|
+
* Add out_of_band hook ([#1648])
|
228
|
+
* Re-implement (native) IOBuffer for JRuby ([#1691])
|
229
|
+
* Min worker timeout ([#1716])
|
230
|
+
* Add option to suppress SignalException on SIGTERM ([#1690])
|
231
|
+
* Allow mutual TLS CA to be set using `ssl_bind` DSL ([#1689])
|
232
|
+
* Reactor now uses nio4r instead of `select` ([#1728])
|
233
|
+
* Add status to pumactl with pidfile ([#1824])
|
165
234
|
|
166
235
|
* 10 bugfixes
|
167
|
-
* Do not accept new requests on shutdown (#1685, #1808)
|
168
|
-
* Fix 3 corner cases when request body is chunked (#1508)
|
169
|
-
* Change pid existence check's condition branches (#1650)
|
170
|
-
* Don't call .stop on a server that doesn't exist (#1655)
|
171
|
-
* Implemented NID_X9_62_prime256v1 (P-256) curve over P-521 (#1671)
|
172
|
-
* Fix @notify.close can't modify frozen IOError (RuntimeError) (#1583)
|
173
|
-
* Fix Java 8 support (#1773)
|
174
|
-
* Fix error `uninitialized constant Puma::Cluster` (#1731)
|
175
|
-
* Fix `not_token` being able to be set to true (#1803)
|
176
|
-
* Fix "Hang on SIGTERM with ruby 2.6 in clustered mode" (
|
177
|
-
|
178
|
-
[PR #1741]: https://github.com/puma/puma/pull/1741
|
179
|
-
[#1674]: https://github.com/puma/puma/issues/1674
|
180
|
-
[#1720]: https://github.com/puma/puma/issues/1720
|
181
|
-
[#1730]: https://github.com/puma/puma/issues/1730
|
182
|
-
[#1755]: https://github.com/puma/puma/issues/1755
|
236
|
+
* Do not accept new requests on shutdown ([#1685], [#1808])
|
237
|
+
* Fix 3 corner cases when request body is chunked ([#1508])
|
238
|
+
* Change pid existence check's condition branches ([#1650])
|
239
|
+
* Don't call .stop on a server that doesn't exist ([#1655])
|
240
|
+
* Implemented NID_X9_62_prime256v1 (P-256) curve over P-521 ([#1671])
|
241
|
+
* Fix @notify.close can't modify frozen IOError (RuntimeError) ([#1583])
|
242
|
+
* Fix Java 8 support ([#1773])
|
243
|
+
* Fix error `uninitialized constant Puma::Cluster` ([#1731])
|
244
|
+
* Fix `not_token` being able to be set to true ([#1803])
|
245
|
+
* Fix "Hang on SIGTERM with ruby 2.6 in clustered mode" (PR [#1741], [#1674], [#1720], [#1730], [#1755])
|
183
246
|
|
184
247
|
## 3.12.1 / 2019-03-19
|
185
248
|
|
186
249
|
* 1 features
|
187
|
-
* Internal strings are frozen (#1649)
|
250
|
+
* Internal strings are frozen ([#1649])
|
188
251
|
* 3 bugfixes
|
189
|
-
* Fix chunked ending check (#1607)
|
190
|
-
* Rack handler should use provided default host (#1700)
|
191
|
-
* Better support for detecting runtimes that support `fork` (#1630)
|
252
|
+
* Fix chunked ending check ([#1607])
|
253
|
+
* Rack handler should use provided default host ([#1700])
|
254
|
+
* Better support for detecting runtimes that support `fork` ([#1630])
|
192
255
|
|
193
256
|
## 3.12.0 / 2018-07-13
|
194
257
|
|
195
258
|
* 5 features:
|
196
|
-
* You can now specify which SSL ciphers the server should support, default is unchanged (#1478)
|
197
|
-
* The setting for Puma's `max_threads` is now in `Puma.stats` (#1604)
|
198
|
-
* Pool capacity is now in `Puma.stats` (#1579)
|
199
|
-
* Installs restricted to Ruby 2.2+ (#1506)
|
200
|
-
* `--control` is now deprecated in favor of `--control-url` (#1487)
|
259
|
+
* You can now specify which SSL ciphers the server should support, default is unchanged ([#1478])
|
260
|
+
* The setting for Puma's `max_threads` is now in `Puma.stats` ([#1604])
|
261
|
+
* Pool capacity is now in `Puma.stats` ([#1579])
|
262
|
+
* Installs restricted to Ruby 2.2+ ([#1506])
|
263
|
+
* `--control` is now deprecated in favor of `--control-url` ([#1487])
|
201
264
|
|
202
265
|
* 2 bugfixes:
|
203
|
-
* 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)
|
204
|
-
* In a test env puma now emits the stack on an exception (#1557)
|
266
|
+
* 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])
|
267
|
+
* In a test env puma now emits the stack on an exception ([#1557])
|
205
268
|
|
206
269
|
## 3.11.4 / 2018-04-12
|
207
270
|
|
208
271
|
* 2 features:
|
209
|
-
* Manage puma as a service using rc.d (#1529)
|
210
|
-
* Server stats are now available from a top level method (#1532)
|
272
|
+
* Manage puma as a service using rc.d ([#1529])
|
273
|
+
* Server stats are now available from a top level method ([#1532])
|
211
274
|
* 5 bugfixes:
|
212
|
-
* Fix parsing CLI options (#1482)
|
213
|
-
* Order of stderr and stdout is made before redirecting to a log file (#1511)
|
214
|
-
* Init.d fix of `ps -p` to check if pid exists (#1545)
|
215
|
-
* Early hints bugfix (#1550)
|
216
|
-
* Purge interrupt queue when closing socket fails (#1553)
|
275
|
+
* Fix parsing CLI options ([#1482])
|
276
|
+
* Order of stderr and stdout is made before redirecting to a log file ([#1511])
|
277
|
+
* Init.d fix of `ps -p` to check if pid exists ([#1545])
|
278
|
+
* Early hints bugfix ([#1550])
|
279
|
+
* Purge interrupt queue when closing socket fails ([#1553])
|
217
280
|
|
218
281
|
## 3.11.3 / 2018-03-05
|
219
282
|
|
220
283
|
* 3 bugfixes:
|
221
|
-
* Add closed? to MiniSSL::Socket for use in reactor (#1510)
|
222
|
-
* Handle EOFError at the toplevel of the server threads (#1524) (#1507)
|
223
|
-
* Deal with zero sized bodies when using SSL (#1483)
|
284
|
+
* Add closed? to MiniSSL::Socket for use in reactor ([#1510])
|
285
|
+
* Handle EOFError at the toplevel of the server threads ([#1524]) ([#1507])
|
286
|
+
* Deal with zero sized bodies when using SSL ([#1483])
|
224
287
|
|
225
288
|
## 3.11.2 / 2018-01-19
|
226
289
|
|
@@ -230,83 +293,83 @@
|
|
230
293
|
## 3.11.1 / 2018-01-18
|
231
294
|
|
232
295
|
* 1 bugfix:
|
233
|
-
* Handle read\_nonblock returning nil when the socket close (#1502)
|
296
|
+
* Handle read\_nonblock returning nil when the socket close ([#1502])
|
234
297
|
|
235
298
|
## 3.11.0 / 2017-11-20
|
236
299
|
|
237
300
|
* 2 features:
|
238
|
-
* HTTP 103 Early Hints (#1403)
|
239
|
-
* 421/451 status codes now have correct status messages attached (#1435)
|
301
|
+
* HTTP 103 Early Hints ([#1403])
|
302
|
+
* 421/451 status codes now have correct status messages attached ([#1435])
|
240
303
|
|
241
304
|
* 9 bugfixes:
|
242
|
-
* Environment config files (/config/puma/<ENV>.rb) load correctly (#1340)
|
243
|
-
* Specify windows dependencies correctly (#1434, #1436)
|
244
|
-
* puma/events required in test helper (#1418)
|
245
|
-
* Correct control CLI's option help text (#1416)
|
246
|
-
* Remove a warning for unused variable in mini_ssl (#1409)
|
247
|
-
* Correct pumactl docs argument ordering (#1427)
|
248
|
-
* Fix an uninitialized variable warning in server.rb (#1430)
|
249
|
-
* Fix docs typo/error in Launcher init (#1429)
|
250
|
-
* Deal with leading spaces in RUBYOPT (#1455)
|
305
|
+
* Environment config files (/config/puma/<ENV>.rb) load correctly ([#1340])
|
306
|
+
* Specify windows dependencies correctly ([#1434], [#1436])
|
307
|
+
* puma/events required in test helper ([#1418])
|
308
|
+
* Correct control CLI's option help text ([#1416])
|
309
|
+
* Remove a warning for unused variable in mini_ssl ([#1409])
|
310
|
+
* Correct pumactl docs argument ordering ([#1427])
|
311
|
+
* Fix an uninitialized variable warning in server.rb ([#1430])
|
312
|
+
* Fix docs typo/error in Launcher init ([#1429])
|
313
|
+
* Deal with leading spaces in RUBYOPT ([#1455])
|
251
314
|
|
252
315
|
* 2 other:
|
253
|
-
* Add docs about internals (#1425, #1452)
|
254
|
-
* Tons of test fixes from @MSP-Greg (#1439, #1442, #1464)
|
316
|
+
* Add docs about internals ([#1425], [#1452])
|
317
|
+
* Tons of test fixes from @MSP-Greg ([#1439], [#1442], [#1464])
|
255
318
|
|
256
319
|
## 3.10.0 / 2017-08-17
|
257
320
|
|
258
321
|
* 3 features:
|
259
|
-
* The status server has a new /gc and /gc-status command. (#1384)
|
260
|
-
* The persistent and first data timeouts are now configurable (#1111)
|
261
|
-
* Implemented RFC 2324 (#1392)
|
322
|
+
* The status server has a new /gc and /gc-status command. ([#1384])
|
323
|
+
* The persistent and first data timeouts are now configurable ([#1111])
|
324
|
+
* Implemented RFC 2324 ([#1392])
|
262
325
|
|
263
326
|
* 12 bugfixes:
|
264
|
-
* 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)
|
265
|
-
* Fix hangups with SSL and persistent connections. (#1334)
|
266
|
-
* Fix Rails double-binding to a port (#1383)
|
267
|
-
* Fix incorrect thread names (#1368)
|
268
|
-
* Fix issues with /etc/hosts and JRuby where localhost addresses were not correct. (#1318)
|
269
|
-
* Fix compatibility with RUBYOPT="--enable-frozen-string-literal" (#1376)
|
270
|
-
* Fixed some compiler warnings (#1388)
|
271
|
-
* We actually run the integration tests in CI now (#1390)
|
272
|
-
* No longer shipping unnecessary directories in the gemfile (#1391)
|
273
|
-
* If RUBYOPT is nil, we no longer blow up on restart. (#1385)
|
274
|
-
* Correct response to SIGINT (#1377)
|
275
|
-
* Proper exit code returned when we receive a TERM signal (#1337)
|
327
|
+
* 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])
|
328
|
+
* Fix hangups with SSL and persistent connections. ([#1334])
|
329
|
+
* Fix Rails double-binding to a port ([#1383])
|
330
|
+
* Fix incorrect thread names ([#1368])
|
331
|
+
* Fix issues with /etc/hosts and JRuby where localhost addresses were not correct. ([#1318])
|
332
|
+
* Fix compatibility with RUBYOPT="--enable-frozen-string-literal" ([#1376])
|
333
|
+
* Fixed some compiler warnings ([#1388])
|
334
|
+
* We actually run the integration tests in CI now ([#1390])
|
335
|
+
* No longer shipping unnecessary directories in the gemfile ([#1391])
|
336
|
+
* If RUBYOPT is nil, we no longer blow up on restart. ([#1385])
|
337
|
+
* Correct response to SIGINT ([#1377])
|
338
|
+
* Proper exit code returned when we receive a TERM signal ([#1337])
|
276
339
|
|
277
340
|
* 3 refactors:
|
278
341
|
* Various test improvements from @grosser
|
279
|
-
* Rubocop (#1325)
|
280
|
-
* Hoe has been removed (#1395)
|
342
|
+
* Rubocop ([#1325])
|
343
|
+
* Hoe has been removed ([#1395])
|
281
344
|
|
282
345
|
* 1 known issue:
|
283
|
-
* Socket activation doesn't work in JRuby. Their fault, not ours. (#1367)
|
346
|
+
* Socket activation doesn't work in JRuby. Their fault, not ours. ([#1367])
|
284
347
|
|
285
348
|
## 3.9.1 / 2017-06-03
|
286
349
|
|
287
350
|
* 2 bugfixes:
|
288
|
-
* Fixed compatibility with older Bundler versions (#1314)
|
289
|
-
* Some internal test/development cleanup (#1311, #1313)
|
351
|
+
* Fixed compatibility with older Bundler versions ([#1314])
|
352
|
+
* Some internal test/development cleanup ([#1311], [#1313])
|
290
353
|
|
291
354
|
## 3.9.0 / 2017-06-01
|
292
355
|
|
293
356
|
* 2 features:
|
294
|
-
* The ENV is now reset to its original values when Puma restarts via USR1/USR2 (#1260) (MRI only, no JRuby support)
|
295
|
-
* Puma will no longer accept more clients than the maximum number of threads. (#1278)
|
357
|
+
* The ENV is now reset to its original values when Puma restarts via USR1/USR2 ([#1260]) (MRI only, no JRuby support)
|
358
|
+
* Puma will no longer accept more clients than the maximum number of threads. ([#1278])
|
296
359
|
|
297
360
|
* 9 bugfixes:
|
298
|
-
* Reduce information leakage by preventing HTTP parse errors from writing environment hashes to STDERR (#1306)
|
299
|
-
* Fix SSL/WebSocket compatibility (#1274)
|
300
|
-
* HTTP headers with empty values are no longer omitted from responses. (#1261)
|
301
|
-
* Fix a Rack env key which was set to nil. (#1259)
|
302
|
-
* peercert has been implemented for JRuby (#1248)
|
303
|
-
* Fix port settings when using rails s (#1277, #1290)
|
304
|
-
* Fix compat w/LibreSSL (#1285)
|
305
|
-
* Fix restarting Puma w/symlinks and a new Gemfile (#1282)
|
306
|
-
* Replace Dir.exists? with Dir.exist? (#1294)
|
361
|
+
* Reduce information leakage by preventing HTTP parse errors from writing environment hashes to STDERR ([#1306])
|
362
|
+
* Fix SSL/WebSocket compatibility ([#1274])
|
363
|
+
* HTTP headers with empty values are no longer omitted from responses. ([#1261])
|
364
|
+
* Fix a Rack env key which was set to nil. ([#1259])
|
365
|
+
* peercert has been implemented for JRuby ([#1248])
|
366
|
+
* Fix port settings when using rails s ([#1277], [#1290])
|
367
|
+
* Fix compat w/LibreSSL ([#1285])
|
368
|
+
* Fix restarting Puma w/symlinks and a new Gemfile ([#1282])
|
369
|
+
* Replace Dir.exists? with Dir.exist? ([#1294])
|
307
370
|
|
308
371
|
* 1 known issue:
|
309
|
-
* 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.
|
372
|
+
* 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.
|
310
373
|
|
311
374
|
* 1 refactor:
|
312
375
|
* Lots of test fixups from @grosser.
|
@@ -314,75 +377,75 @@
|
|
314
377
|
## 3.8.2 / 2017-03-14
|
315
378
|
|
316
379
|
* 1 bugfix:
|
317
|
-
* Deal with getsockopt with TCP\_INFO failing for sockets that say they're TCP but aren't really. (#1241)
|
380
|
+
* Deal with getsockopt with TCP\_INFO failing for sockets that say they're TCP but aren't really. ([#1241])
|
318
381
|
|
319
382
|
## 3.8.1 / 2017-03-10
|
320
383
|
|
321
384
|
* 1 bugfix:
|
322
|
-
* Remove method call to method that no longer exists (#1239)
|
385
|
+
* Remove method call to method that no longer exists ([#1239])
|
323
386
|
|
324
387
|
## 3.8.0 / 2017-03-09
|
325
388
|
|
326
389
|
* 2 bugfixes:
|
327
|
-
* Port from rack handler does not take precedence over config file in Rails 5.1.0.beta2+ and 5.0.1.rc3+ (#1234)
|
328
|
-
* The `tmp/restart.txt` plugin no longer restricts the user from running more than one server from the same folder at a time (#1226)
|
390
|
+
* Port from rack handler does not take precedence over config file in Rails 5.1.0.beta2+ and 5.0.1.rc3+ ([#1234])
|
391
|
+
* The `tmp/restart.txt` plugin no longer restricts the user from running more than one server from the same folder at a time ([#1226])
|
329
392
|
|
330
393
|
* 1 feature:
|
331
|
-
* Closed clients are aborted to save capacity (#1227)
|
394
|
+
* Closed clients are aborted to save capacity ([#1227])
|
332
395
|
|
333
396
|
* 1 refactor:
|
334
|
-
* Bundler is no longer a dependency from tests (#1213)
|
397
|
+
* Bundler is no longer a dependency from tests ([#1213])
|
335
398
|
|
336
399
|
## 3.7.1 / 2017-02-20
|
337
400
|
|
338
401
|
* 2 bugfixes:
|
339
|
-
* Fix typo which blew up MiniSSL (#1182)
|
340
|
-
* Stop overriding command-line options with the config file (#1203)
|
402
|
+
* Fix typo which blew up MiniSSL ([#1182])
|
403
|
+
* Stop overriding command-line options with the config file ([#1203])
|
341
404
|
|
342
405
|
## 3.7.0 / 2017-01-04
|
343
406
|
|
344
407
|
* 6 minor features:
|
345
|
-
* Allow rack handler to accept ssl host. (#1129)
|
346
|
-
* Refactor TTOU processing. TTOU now handles multiple signals at once. (#1165)
|
408
|
+
* Allow rack handler to accept ssl host. ([#1129])
|
409
|
+
* Refactor TTOU processing. TTOU now handles multiple signals at once. ([#1165])
|
347
410
|
* Pickup any remaining chunk data as the next request.
|
348
411
|
* Prevent short term thread churn - increased auto trim default to 30 seconds.
|
349
|
-
* Raise error when `stdout` or `stderr` is not writable. (#1175)
|
350
|
-
* Add Rack 2.0 support to gemspec. (#1068)
|
412
|
+
* Raise error when `stdout` or `stderr` is not writable. ([#1175])
|
413
|
+
* Add Rack 2.0 support to gemspec. ([#1068])
|
351
414
|
|
352
415
|
* 5 refactors:
|
353
|
-
* Compare host and server name only once per call. (#1091)
|
354
|
-
* Minor refactor on Thread pool (#1088)
|
416
|
+
* Compare host and server name only once per call. ([#1091])
|
417
|
+
* Minor refactor on Thread pool ([#1088])
|
355
418
|
* Removed a ton of unused constants, variables and files.
|
356
419
|
* Use MRI macros when allocating heap memory
|
357
|
-
* Use hooks for on\_booted event. (#1160)
|
420
|
+
* Use hooks for on\_booted event. ([#1160])
|
358
421
|
|
359
422
|
* 14 bugfixes:
|
360
|
-
* Add eof? method to NullIO? (#1169)
|
361
|
-
* Fix Puma startup in provided init.d script (#1061)
|
362
|
-
* Fix default SSL mode back to none. (#1036)
|
363
|
-
* Fixed the issue of @listeners getting nil io (#1120)
|
364
|
-
* Make `get_dh1024` compatible with OpenSSL v1.1.0 (#1178)
|
365
|
-
* More gracefully deal with SSL sessions. Fixes #1002
|
366
|
-
* Move puma.rb to just autoloads. Fixes #1063
|
367
|
-
* MiniSSL: Provide write as <<. Fixes #1089
|
368
|
-
* Prune bundler should inherit fds (#1114)
|
369
|
-
* Replace use of Process.getpgid which does not behave as intended on all platforms (#1110)
|
370
|
-
* Transfer encoding header should be downcased before comparison (#1135)
|
371
|
-
* Use same write log logic for hijacked requests. (#1081)
|
372
|
-
* Fix `uninitialized constant Puma::StateFile` (#1138)
|
373
|
-
* Fix access priorities of each level in LeveledOptions (#1118)
|
423
|
+
* Add eof? method to NullIO? ([#1169])
|
424
|
+
* Fix Puma startup in provided init.d script ([#1061])
|
425
|
+
* Fix default SSL mode back to none. ([#1036])
|
426
|
+
* Fixed the issue of @listeners getting nil io ([#1120])
|
427
|
+
* Make `get_dh1024` compatible with OpenSSL v1.1.0 ([#1178])
|
428
|
+
* More gracefully deal with SSL sessions. Fixes [#1002]
|
429
|
+
* Move puma.rb to just autoloads. Fixes [#1063]
|
430
|
+
* MiniSSL: Provide write as <<. Fixes [#1089]
|
431
|
+
* Prune bundler should inherit fds ([#1114])
|
432
|
+
* Replace use of Process.getpgid which does not behave as intended on all platforms ([#1110])
|
433
|
+
* Transfer encoding header should be downcased before comparison ([#1135])
|
434
|
+
* Use same write log logic for hijacked requests. ([#1081])
|
435
|
+
* Fix `uninitialized constant Puma::StateFile` ([#1138])
|
436
|
+
* Fix access priorities of each level in LeveledOptions ([#1118])
|
374
437
|
|
375
438
|
* 3 others:
|
376
439
|
|
377
440
|
* Lots of tests added/fixed/improved. Switched to Minitest from Test::Unit. Big thanks to @frodsan.
|
378
441
|
* Lots of documentation added/improved.
|
379
|
-
* Add license indicators to the HTTP extension. (#1075)
|
442
|
+
* Add license indicators to the HTTP extension. ([#1075])
|
380
443
|
|
381
444
|
## 3.6.2 / 2016-11-22
|
382
445
|
|
383
446
|
* 1 bug fix:
|
384
447
|
|
385
|
-
* Revert #1118/Fix access priorities of each level in LeveledOptions. This
|
448
|
+
* Revert [#1118]/Fix access priorities of each level in LeveledOptions. This
|
386
449
|
had an unintentional side effect of changing the importance of command line
|
387
450
|
options, such as -p.
|
388
451
|
|
@@ -391,11 +454,11 @@
|
|
391
454
|
* 8 bug fixes:
|
392
455
|
|
393
456
|
* Fix Puma start in init.d script.
|
394
|
-
* Fix default SSL mode back to none. Fixes #1036
|
395
|
-
* Fixed the issue of @listeners getting nil io, fix rails restart (#1120)
|
396
|
-
* More gracefully deal with SSL sessions. Fixes #1002
|
457
|
+
* Fix default SSL mode back to none. Fixes [#1036]
|
458
|
+
* Fixed the issue of @listeners getting nil io, fix rails restart ([#1120])
|
459
|
+
* More gracefully deal with SSL sessions. Fixes [#1002]
|
397
460
|
* Prevent short term thread churn.
|
398
|
-
* Provide write as <<. Fixes #1089
|
461
|
+
* Provide write as <<. Fixes [#1089]
|
399
462
|
* Fix access priorities of each level in LeveledOptions - fixes TTIN.
|
400
463
|
* Stub description files updated for init.d.
|
401
464
|
|
@@ -407,18 +470,18 @@
|
|
407
470
|
## 3.6.0 / 2016-07-24
|
408
471
|
|
409
472
|
* 12 bug fixes:
|
410
|
-
* Add ability to detect a shutting down server. Fixes #932
|
411
|
-
* Add support for Expect: 100-continue. Fixes #519
|
412
|
-
* Check SSLContext better. Fixes #828
|
413
|
-
* Clarify behavior of '-t num'. Fixes #984
|
414
|
-
* Don't default to VERIFY_PEER. Fixes #1028
|
415
|
-
* Don't use ENV['PWD'] on windows. Fixes #1023
|
416
|
-
* Enlarge the scope of catching app exceptions. Fixes #1027
|
417
|
-
* Execute background hooks after daemonizing. Fixes #925
|
418
|
-
* Handle HUP as a stop unless there is IO redirection. Fixes #911
|
419
|
-
* Implement chunked request handling. Fixes #620
|
420
|
-
* Just rescue exception to return a 500. Fixes #1027
|
421
|
-
* Redirect IO in the jruby daemon mode. Fixes #778
|
473
|
+
* Add ability to detect a shutting down server. Fixes [#932]
|
474
|
+
* Add support for Expect: 100-continue. Fixes [#519]
|
475
|
+
* Check SSLContext better. Fixes [#828]
|
476
|
+
* Clarify behavior of '-t num'. Fixes [#984]
|
477
|
+
* Don't default to VERIFY_PEER. Fixes [#1028]
|
478
|
+
* Don't use ENV['PWD'] on windows. Fixes [#1023]
|
479
|
+
* Enlarge the scope of catching app exceptions. Fixes [#1027]
|
480
|
+
* Execute background hooks after daemonizing. Fixes [#925]
|
481
|
+
* Handle HUP as a stop unless there is IO redirection. Fixes [#911]
|
482
|
+
* Implement chunked request handling. Fixes [#620]
|
483
|
+
* Just rescue exception to return a 500. Fixes [#1027]
|
484
|
+
* Redirect IO in the jruby daemon mode. Fixes [#778]
|
422
485
|
|
423
486
|
## 3.5.2 / 2016-07-20
|
424
487
|
|
@@ -426,12 +489,12 @@
|
|
426
489
|
* Don't let persistent_timeout be nil
|
427
490
|
|
428
491
|
* 1 PR merged:
|
429
|
-
* Merge pull request #1021 from benzrf/patch-1
|
492
|
+
* Merge pull request [#1021] from benzrf/patch-1
|
430
493
|
|
431
494
|
## 3.5.1 / 2016-07-20
|
432
495
|
|
433
496
|
* 1 bug fix:
|
434
|
-
* Be sure to only listen on host:port combos once. Fixes #1022
|
497
|
+
* Be sure to only listen on host:port combos once. Fixes [#1022]
|
435
498
|
|
436
499
|
## 3.5.0 / 2016-07-18
|
437
500
|
|
@@ -439,14 +502,14 @@
|
|
439
502
|
* Allow persistent_timeout to be configured via the dsl.
|
440
503
|
|
441
504
|
* 9 bug fixes:
|
442
|
-
* Allow a bare % in a query string. Fixes #958
|
443
|
-
* Explicitly listen on all localhost addresses. Fixes #782
|
505
|
+
* Allow a bare % in a query string. Fixes [#958]
|
506
|
+
* Explicitly listen on all localhost addresses. Fixes [#782]
|
444
507
|
* Fix `TCPLogger` log error in tcp cluster mode.
|
445
|
-
* Fix puma/puma#968 Cannot bind SSL port due to missing verify_mode option
|
446
|
-
* Fix puma/puma#968 Default verify_mode to peer
|
447
|
-
* Log any exceptions in ThreadPool. Fixes #1010
|
448
|
-
* Silence connection errors in the reactor. Fixes #959
|
449
|
-
* Tiny fixes in hook documentation for #840
|
508
|
+
* Fix puma/puma[#968] Cannot bind SSL port due to missing verify_mode option
|
509
|
+
* Fix puma/puma[#968] Default verify_mode to peer
|
510
|
+
* Log any exceptions in ThreadPool. Fixes [#1010]
|
511
|
+
* Silence connection errors in the reactor. Fixes [#959]
|
512
|
+
* Tiny fixes in hook documentation for [#840]
|
450
513
|
* It should not log requests if we want it to be quiet
|
451
514
|
|
452
515
|
* 5 doc fixes:
|
@@ -457,43 +520,43 @@
|
|
457
520
|
* Fix typo in example config
|
458
521
|
|
459
522
|
* 14 PRs merged:
|
460
|
-
* Merge pull request #1007 from willnet/patch-1
|
461
|
-
* Merge pull request #1014 from jeznet/patch-1
|
462
|
-
* Merge pull request #1015 from bf4/patch-1
|
463
|
-
* Merge pull request #1017 from jorihardman/configurable_persistent_timeout
|
464
|
-
* Merge pull request #954 from jf/master
|
465
|
-
* Merge pull request #955 from jf/add-request-info-to-standard-error-rescue
|
466
|
-
* Merge pull request #956 from maxkwallace/master
|
467
|
-
* Merge pull request #960 from kmayer/kmayer-plugins-heroku-restart
|
468
|
-
* Merge pull request #969 from frankwong15/master
|
469
|
-
* Merge pull request #970 from willnet/delete-blank-document
|
470
|
-
* Merge pull request #974 from rocketjob/feature/name_threads
|
471
|
-
* Merge pull request #977 from snow/master
|
472
|
-
* Merge pull request #981 from zach-chai/patch-1
|
473
|
-
* Merge pull request #993 from scorix/master
|
523
|
+
* Merge pull request [#1007] from willnet/patch-1
|
524
|
+
* Merge pull request [#1014] from jeznet/patch-1
|
525
|
+
* Merge pull request [#1015] from bf4/patch-1
|
526
|
+
* Merge pull request [#1017] from jorihardman/configurable_persistent_timeout
|
527
|
+
* Merge pull request [#954] from jf/master
|
528
|
+
* Merge pull request [#955] from jf/add-request-info-to-standard-error-rescue
|
529
|
+
* Merge pull request [#956] from maxkwallace/master
|
530
|
+
* Merge pull request [#960] from kmayer/kmayer-plugins-heroku-restart
|
531
|
+
* Merge pull request [#969] from frankwong15/master
|
532
|
+
* Merge pull request [#970] from willnet/delete-blank-document
|
533
|
+
* Merge pull request [#974] from rocketjob/feature/name_threads
|
534
|
+
* Merge pull request [#977] from snow/master
|
535
|
+
* Merge pull request [#981] from zach-chai/patch-1
|
536
|
+
* Merge pull request [#993] from scorix/master
|
474
537
|
|
475
538
|
## 3.4.0 / 2016-04-07
|
476
539
|
|
477
540
|
* 2 minor features:
|
478
|
-
* Add ability to force threads to stop on shutdown. Fixes #938
|
479
|
-
* Detect and commit seppuku when fork(2) fails. Fixes #529
|
541
|
+
* Add ability to force threads to stop on shutdown. Fixes [#938]
|
542
|
+
* Detect and commit seppuku when fork(2) fails. Fixes [#529]
|
480
543
|
|
481
544
|
* 3 unknowns:
|
482
|
-
* Ignore errors trying to update the backport tables. Fixes #788
|
483
|
-
* Invoke the lowlevel_error in more places to allow for exception tracking. Fixes #894
|
484
|
-
* Update the query string when an absolute URI is used. Fixes #937
|
545
|
+
* Ignore errors trying to update the backport tables. Fixes [#788]
|
546
|
+
* Invoke the lowlevel_error in more places to allow for exception tracking. Fixes [#894]
|
547
|
+
* Update the query string when an absolute URI is used. Fixes [#937]
|
485
548
|
|
486
549
|
* 5 doc fixes:
|
487
550
|
* Add Process Monitors section to top-level README
|
488
|
-
* Better document the hooks. Fixes #840
|
551
|
+
* Better document the hooks. Fixes [#840]
|
489
552
|
* docs/system.md sample config refinements and elaborations
|
490
553
|
* Fix typos at couple of places.
|
491
554
|
* Cleanup warnings
|
492
555
|
|
493
556
|
* 3 PRs merged:
|
494
|
-
* Merge pull request #945 from dekellum/systemd-docs-refined
|
495
|
-
* Merge pull request #946 from vipulnsward/rm-pid
|
496
|
-
* Merge pull request #947 from vipulnsward/housekeeping-typos
|
557
|
+
* Merge pull request [#945] from dekellum/systemd-docs-refined
|
558
|
+
* Merge pull request [#946] from vipulnsward/rm-pid
|
559
|
+
* Merge pull request [#947] from vipulnsward/housekeeping-typos
|
497
560
|
|
498
561
|
## 3.3.0 / 2016-04-05
|
499
562
|
|
@@ -506,9 +569,9 @@
|
|
506
569
|
* Document UNIX signals with cluster on README.md
|
507
570
|
|
508
571
|
* 3 PRs merged:
|
509
|
-
* Merge pull request #936 from prathamesh-sonpatki/allow-overriding-config-options
|
510
|
-
* Merge pull request #940 from kyledrake/signalsdoc
|
511
|
-
* Merge pull request #942 from dekellum/socket-activate-improve
|
572
|
+
* Merge pull request [#936] from prathamesh-sonpatki/allow-overriding-config-options
|
573
|
+
* Merge pull request [#940] from kyledrake/signalsdoc
|
574
|
+
* Merge pull request [#942] from dekellum/socket-activate-improve
|
512
575
|
|
513
576
|
## 3.2.0 / 2016-03-20
|
514
577
|
|
@@ -521,32 +584,32 @@
|
|
521
584
|
* Speed up phased-restart start
|
522
585
|
|
523
586
|
* 2 PRs merged:
|
524
|
-
* Merge pull request #927 from jlecour/gemfile_variants
|
525
|
-
* Merge pull request #931 from joneslee85/patch-10
|
587
|
+
* Merge pull request [#927] from jlecour/gemfile_variants
|
588
|
+
* Merge pull request [#931] from joneslee85/patch-10
|
526
589
|
|
527
590
|
## 3.1.1 / 2016-03-17
|
528
591
|
|
529
592
|
* 4 bug fixes:
|
530
593
|
* Disable USR1 usage on JRuby
|
531
|
-
* Fixes #922 - Correctly define file encoding as UTF-8
|
594
|
+
* Fixes [#922] - Correctly define file encoding as UTF-8
|
532
595
|
* Set a more explicit SERVER_SOFTWARE Rack variable
|
533
|
-
* Show RUBY_ENGINE_VERSION if available. Fixes #923
|
596
|
+
* Show RUBY_ENGINE_VERSION if available. Fixes [#923]
|
534
597
|
|
535
598
|
* 3 PRs merged:
|
536
|
-
* Merge pull request #912 from tricknotes/fix-allow-failures-in-travis-yml
|
537
|
-
* Merge pull request #921 from swrobel/patch-1
|
538
|
-
* Merge pull request #924 from tbrisker/patch-1
|
599
|
+
* Merge pull request [#912] from tricknotes/fix-allow-failures-in-travis-yml
|
600
|
+
* Merge pull request [#921] from swrobel/patch-1
|
601
|
+
* Merge pull request [#924] from tbrisker/patch-1
|
539
602
|
|
540
603
|
## 3.1.0 / 2016-03-05
|
541
604
|
|
542
605
|
* 1 minor feature:
|
543
|
-
* Add 'import' directive to config file. Fixes #916
|
606
|
+
* Add 'import' directive to config file. Fixes [#916]
|
544
607
|
|
545
608
|
* 5 bug fixes:
|
546
|
-
* Add 'fetch' to options. Fixes #913
|
547
|
-
* Fix jruby daemonization. Fixes #918
|
548
|
-
* Recreate the proper args manually. Fixes #910
|
549
|
-
* Require 'time' to get iso8601. Fixes #914
|
609
|
+
* Add 'fetch' to options. Fixes [#913]
|
610
|
+
* Fix jruby daemonization. Fixes [#918]
|
611
|
+
* Recreate the proper args manually. Fixes [#910]
|
612
|
+
* Require 'time' to get iso8601. Fixes [#914]
|
550
613
|
|
551
614
|
## 3.0.2 / 2016-02-26
|
552
615
|
|
@@ -560,9 +623,9 @@
|
|
560
623
|
|
561
624
|
* 3 PRs merged:
|
562
625
|
|
563
|
-
* Merge pull request #901 from mitto/fix-pumactl-uninitialized-constant-statefile
|
564
|
-
* Merge pull request #902 from corrupt952/fix_undefined_method_and_variable_when_execute_pumactl
|
565
|
-
* Merge pull request #905 from Eric-Guo/master
|
626
|
+
* Merge pull request [#901] from mitto/fix-pumactl-uninitialized-constant-statefile
|
627
|
+
* Merge pull request [#902] from corrupt952/fix_undefined_method_and_variable_when_execute_pumactl
|
628
|
+
* Merge pull request [#905] from Eric-Guo/master
|
566
629
|
|
567
630
|
## 3.0.1 / 2016-02-25
|
568
631
|
|
@@ -579,7 +642,7 @@
|
|
579
642
|
* Ruby pre-2.0 is no longer supported. We'll do our best to not add
|
580
643
|
features that break those rubies but will no longer be testing
|
581
644
|
with them.
|
582
|
-
* Don't log requests by default. Fixes #852
|
645
|
+
* Don't log requests by default. Fixes [#852]
|
583
646
|
|
584
647
|
* 2 major features:
|
585
648
|
|
@@ -591,36 +654,36 @@
|
|
591
654
|
|
592
655
|
* Listen to unix socket with provided backlog if any
|
593
656
|
* Improves the clustered stats to report worker stats
|
594
|
-
* Pass the env to the lowlevel_error handler. Fixes #854
|
595
|
-
* Treat path-like hosts as unix sockets. Fixes #824
|
657
|
+
* Pass the env to the lowlevel_error handler. Fixes [#854]
|
658
|
+
* Treat path-like hosts as unix sockets. Fixes [#824]
|
596
659
|
|
597
660
|
* 5 bug fixes:
|
598
661
|
|
599
|
-
* Clean thread locals when using keepalive. Fixes #823
|
600
|
-
* Cleanup compiler warnings. Fixes #815
|
601
|
-
* Expose closed? for use by the reactor. Fixes #835
|
602
|
-
* Move signal handlers to separate method to prevent space leak. Fixes #798
|
603
|
-
* Signal not full on worker exit #876
|
662
|
+
* Clean thread locals when using keepalive. Fixes [#823]
|
663
|
+
* Cleanup compiler warnings. Fixes [#815]
|
664
|
+
* Expose closed? for use by the reactor. Fixes [#835]
|
665
|
+
* Move signal handlers to separate method to prevent space leak. Fixes [#798]
|
666
|
+
* Signal not full on worker exit [#876]
|
604
667
|
|
605
668
|
* 5 doc fixes:
|
606
669
|
|
607
670
|
* Update README.md with various grammar fixes
|
608
671
|
* Use newest version of Minitest
|
609
672
|
* Add directory configuration docs, fix typo [ci skip]
|
610
|
-
* Remove old COPYING notice. Fixes #849
|
673
|
+
* Remove old COPYING notice. Fixes [#849]
|
611
674
|
|
612
675
|
* 10 merged PRs:
|
613
676
|
|
614
|
-
* Merge pull request #871 from deepj/travis
|
615
|
-
* Merge pull request #874 from wallclockbuilder/master
|
616
|
-
* Merge pull request #883 from dadah89/igor/trim_only_worker
|
617
|
-
* Merge pull request #884 from uistudio/async-callback
|
618
|
-
* Merge pull request #888 from mlarraz/tick_minitest
|
619
|
-
* Merge pull request #890 from todd/directory_docs
|
620
|
-
* Merge pull request #891 from ctaintor/improve_clustered_status
|
621
|
-
* Merge pull request #893 from spastorino/add_missing_require
|
622
|
-
* Merge pull request #897 from zendesk/master
|
623
|
-
* Merge pull request #899 from kch/kch-readme-fixes
|
677
|
+
* Merge pull request [#871] from deepj/travis
|
678
|
+
* Merge pull request [#874] from wallclockbuilder/master
|
679
|
+
* Merge pull request [#883] from dadah89/igor/trim_only_worker
|
680
|
+
* Merge pull request [#884] from uistudio/async-callback
|
681
|
+
* Merge pull request [#888] from mlarraz/tick_minitest
|
682
|
+
* Merge pull request [#890] from todd/directory_docs
|
683
|
+
* Merge pull request [#891] from ctaintor/improve_clustered_status
|
684
|
+
* Merge pull request [#893] from spastorino/add_missing_require
|
685
|
+
* Merge pull request [#897] from zendesk/master
|
686
|
+
* Merge pull request [#899] from kch/kch-readme-fixes
|
624
687
|
|
625
688
|
## 2.16.0 / 2016-01-27
|
626
689
|
|
@@ -637,7 +700,7 @@
|
|
637
700
|
* 7 bug fixes:
|
638
701
|
|
639
702
|
* Don't persist before_fork hook in state file
|
640
|
-
* Reload bundler before pulling in rack. Fixes #859
|
703
|
+
* Reload bundler before pulling in rack. Fixes [#859]
|
641
704
|
* Remove NEWRELIC_DISPATCHER env variable
|
642
705
|
* Cleanup C code
|
643
706
|
* Use Timeout.timeout instead of Object.timeout
|
@@ -649,18 +712,18 @@
|
|
649
712
|
* Test against the latest Ruby 2.1, 2.2, 2.3, head and JRuby 9.0.4.0 on Travis
|
650
713
|
|
651
714
|
* 12 merged PRs
|
652
|
-
* Merge pull request #822 from kwugirl/remove_NEWRELIC_DISPATCHER
|
653
|
-
* Merge pull request #833 from joemiller/jruby-client-tls-auth
|
654
|
-
* Merge pull request #837 from YuriSolovyov/ssl-keystore-jruby
|
655
|
-
* Merge pull request #839 from mezuka/master
|
656
|
-
* Merge pull request #845 from deepj/timeout-deprecation
|
657
|
-
* Merge pull request #846 from sriedel/strip_before_fork
|
658
|
-
* Merge pull request #850 from deepj/travis
|
659
|
-
* Merge pull request #853 from Jeffrey6052/patch-1
|
660
|
-
* Merge pull request #857 from zendesk/faster_phased_restarts
|
661
|
-
* Merge pull request #858 from mlarraz/fix_some_warnings
|
662
|
-
* Merge pull request #860 from zendesk/expose_old_worker_count
|
663
|
-
* Merge pull request #861 from zendesk/allow_control_url_umask
|
715
|
+
* Merge pull request [#822] from kwugirl/remove_NEWRELIC_DISPATCHER
|
716
|
+
* Merge pull request [#833] from joemiller/jruby-client-tls-auth
|
717
|
+
* Merge pull request [#837] from YuriSolovyov/ssl-keystore-jruby
|
718
|
+
* Merge pull request [#839] from mezuka/master
|
719
|
+
* Merge pull request [#845] from deepj/timeout-deprecation
|
720
|
+
* Merge pull request [#846] from sriedel/strip_before_fork
|
721
|
+
* Merge pull request [#850] from deepj/travis
|
722
|
+
* Merge pull request [#853] from Jeffrey6052/patch-1
|
723
|
+
* Merge pull request [#857] from zendesk/faster_phased_restarts
|
724
|
+
* Merge pull request [#858] from mlarraz/fix_some_warnings
|
725
|
+
* Merge pull request [#860] from zendesk/expose_old_worker_count
|
726
|
+
* Merge pull request [#861] from zendesk/allow_control_url_umask
|
664
727
|
|
665
728
|
## 2.15.3 / 2015-11-07
|
666
729
|
|
@@ -675,8 +738,8 @@
|
|
675
738
|
* Only set ctx.ca iff there is a params['ca'] to set with.
|
676
739
|
|
677
740
|
* 2 PRs merged:
|
678
|
-
* Merge pull request #818 from unleashed/support-duplicate-headers
|
679
|
-
* Merge pull request #819 from VictorLowther/fix-ca-and-verify_null-exception
|
741
|
+
* Merge pull request [#818] from unleashed/support-duplicate-headers
|
742
|
+
* Merge pull request [#819] from VictorLowther/fix-ca-and-verify_null-exception
|
680
743
|
|
681
744
|
## 2.15.1 / 2015-11-06
|
682
745
|
|
@@ -698,7 +761,7 @@
|
|
698
761
|
* Disable SSL Compression
|
699
762
|
* Fix bug setting worker_directory when using a symlink directory
|
700
763
|
* Fix error message in DSL that was slightly inaccurate
|
701
|
-
* Pumactl: set correct process name. Fixes #563
|
764
|
+
* Pumactl: set correct process name. Fixes [#563]
|
702
765
|
* thread_pool: fix race condition when shutting down workers
|
703
766
|
|
704
767
|
* 10 doc fixes:
|
@@ -708,30 +771,30 @@
|
|
708
771
|
* Fix spelling errors.
|
709
772
|
* Fix typo in deployment description
|
710
773
|
* Fix typos (it's -> its) in events.rb and server.rb
|
711
|
-
* fixing for typo mentioned in #803
|
774
|
+
* fixing for typo mentioned in [#803]
|
712
775
|
* Spelling correction for README
|
713
776
|
* thread_pool: fix typos in comment
|
714
777
|
* More explicit docs for worker_timeout
|
715
778
|
|
716
779
|
* 18 PRs merged:
|
717
|
-
* Merge pull request #768 from nathansamson/patch-1
|
718
|
-
* Merge pull request #773 from rossta/spelling_corrections
|
719
|
-
* Merge pull request #774 from snow/master
|
720
|
-
* Merge pull request #781 from sunsations/fix-typo
|
721
|
-
* Merge pull request #791 from unleashed/allow_empty_tags
|
722
|
-
* Merge pull request #793 from robdimarco/fix-working-directory-symlink-bug
|
723
|
-
* Merge pull request #794 from peterkeen/patch-1
|
724
|
-
* Merge pull request #795 from unleashed/redirects-from-cmdline
|
725
|
-
* Merge pull request #796 from cschneid/fix_dsl_message
|
726
|
-
* Merge pull request #799 from annafw/master
|
727
|
-
* Merge pull request #800 from liamseanbrady/fix_typo
|
728
|
-
* Merge pull request #801 from scottjg/ssl-chain-file
|
729
|
-
* Merge pull request #802 from scottjg/ssl-crimes
|
730
|
-
* Merge pull request #804 from burningTyger/patch-2
|
731
|
-
* Merge pull request #809 from unleashed/threadpool-fix-race-in-shutdown
|
732
|
-
* Merge pull request #810 from vlmonk/fix-pumactl-restart-bug
|
733
|
-
* Merge pull request #814 from schneems/schneems/worker_timeout-docs
|
734
|
-
* Merge pull request #817 from unleashed/worker-boot-timeout
|
780
|
+
* Merge pull request [#768] from nathansamson/patch-1
|
781
|
+
* Merge pull request [#773] from rossta/spelling_corrections
|
782
|
+
* Merge pull request [#774] from snow/master
|
783
|
+
* Merge pull request [#781] from sunsations/fix-typo
|
784
|
+
* Merge pull request [#791] from unleashed/allow_empty_tags
|
785
|
+
* Merge pull request [#793] from robdimarco/fix-working-directory-symlink-bug
|
786
|
+
* Merge pull request [#794] from peterkeen/patch-1
|
787
|
+
* Merge pull request [#795] from unleashed/redirects-from-cmdline
|
788
|
+
* Merge pull request [#796] from cschneid/fix_dsl_message
|
789
|
+
* Merge pull request [#799] from annafw/master
|
790
|
+
* Merge pull request [#800] from liamseanbrady/fix_typo
|
791
|
+
* Merge pull request [#801] from scottjg/ssl-chain-file
|
792
|
+
* Merge pull request [#802] from scottjg/ssl-crimes
|
793
|
+
* Merge pull request [#804] from burningTyger/patch-2
|
794
|
+
* Merge pull request [#809] from unleashed/threadpool-fix-race-in-shutdown
|
795
|
+
* Merge pull request [#810] from vlmonk/fix-pumactl-restart-bug
|
796
|
+
* Merge pull request [#814] from schneems/schneems/worker_timeout-docs
|
797
|
+
* Merge pull request [#817] from unleashed/worker-boot-timeout
|
735
798
|
|
736
799
|
## 2.14.0 / 2015-09-18
|
737
800
|
|
@@ -739,7 +802,7 @@
|
|
739
802
|
* Make building with SSL support optional
|
740
803
|
|
741
804
|
* 1 bug fix:
|
742
|
-
* Use Rack::Builder if available. Fixes #735
|
805
|
+
* Use Rack::Builder if available. Fixes [#735]
|
743
806
|
|
744
807
|
## 2.13.4 / 2015-08-16
|
745
808
|
|
@@ -752,20 +815,20 @@
|
|
752
815
|
Seriously, I need to revamp config with tests.
|
753
816
|
|
754
817
|
* 1 bug fix:
|
755
|
-
* Fix preserving options before cleaning for state. Fixes #769
|
818
|
+
* Fix preserving options before cleaning for state. Fixes [#769]
|
756
819
|
|
757
820
|
## 2.13.2 / 2015-08-15
|
758
821
|
|
759
822
|
The "clearly I don't have enough tests for the config" release.
|
760
823
|
|
761
824
|
* 1 bug fix:
|
762
|
-
* Fix another place binds wasn't initialized. Fixes #767
|
825
|
+
* Fix another place binds wasn't initialized. Fixes [#767]
|
763
826
|
|
764
827
|
## 2.13.1 / 2015-08-15
|
765
828
|
|
766
829
|
* 2 bug fixes:
|
767
|
-
* Fix binds being masked in config files. Fixes #765
|
768
|
-
* Use options from the config file properly in pumactl. Fixes #764
|
830
|
+
* Fix binds being masked in config files. Fixes [#765]
|
831
|
+
* Use options from the config file properly in pumactl. Fixes [#764]
|
769
832
|
|
770
833
|
## 2.13.0 / 2015-08-14
|
771
834
|
|
@@ -775,16 +838,16 @@ The "clearly I don't have enough tests for the config" release.
|
|
775
838
|
* 3 bug fixes:
|
776
839
|
* Check for OPENSSL_NO_ECDH before using ECDH
|
777
840
|
* Eliminate logging overhead from JRuby SSL
|
778
|
-
* Prefer cli options over config file ones. Fixes #669
|
841
|
+
* Prefer cli options over config file ones. Fixes [#669]
|
779
842
|
|
780
843
|
* 1 deprecation:
|
781
|
-
* Add deprecation warning to capistrano.rb. Fixes #673
|
844
|
+
* Add deprecation warning to capistrano.rb. Fixes [#673]
|
782
845
|
|
783
846
|
* 4 PRs merged:
|
784
|
-
* Merge pull request #668 from kcollignon/patch-1
|
785
|
-
* Merge pull request #754 from nathansamson/before_boot
|
786
|
-
* Merge pull request #759 from BenV/fix-centos6-build
|
787
|
-
* Merge pull request #761 from looker/no-log
|
847
|
+
* Merge pull request [#668] from kcollignon/patch-1
|
848
|
+
* Merge pull request [#754] from nathansamson/before_boot
|
849
|
+
* Merge pull request [#759] from BenV/fix-centos6-build
|
850
|
+
* Merge pull request [#761] from looker/no-log
|
788
851
|
|
789
852
|
## 2.12.3 / 2015-08-03
|
790
853
|
|
@@ -799,10 +862,10 @@ The "clearly I don't have enough tests for the config" release.
|
|
799
862
|
* ruby 1.8.7 compatibility patches
|
800
863
|
|
801
864
|
* 4 PRs merged:
|
802
|
-
* Merge pull request #742 from deivid-rodriguez/fix_missing_require
|
803
|
-
* Merge pull request #743 from matthewd/skip-empty-chunks
|
804
|
-
* Merge pull request #749 from huacnlee/fix-cap-uninitialized-puma-error
|
805
|
-
* Merge pull request #751 from costi/compat_1_8_7
|
865
|
+
* Merge pull request [#742] from deivid-rodriguez/fix_missing_require
|
866
|
+
* Merge pull request [#743] from matthewd/skip-empty-chunks
|
867
|
+
* Merge pull request [#749] from huacnlee/fix-cap-uninitialized-puma-error
|
868
|
+
* Merge pull request [#751] from costi/compat_1_8_7
|
806
869
|
|
807
870
|
* 1 test fix:
|
808
871
|
* Add 1.8.7, rbx-1 (allow failures) to Travis.
|
@@ -810,20 +873,20 @@ The "clearly I don't have enough tests for the config" release.
|
|
810
873
|
## 2.12.2 / 2015-07-17
|
811
874
|
|
812
875
|
* 2 bug fix:
|
813
|
-
* Pull over and use Rack::URLMap. Fixes #741
|
814
|
-
* Stub out peercert on JRuby for now. Fixes #739
|
876
|
+
* Pull over and use Rack::URLMap. Fixes [#741]
|
877
|
+
* Stub out peercert on JRuby for now. Fixes [#739]
|
815
878
|
|
816
879
|
## 2.12.1 / 2015-07-16
|
817
880
|
|
818
881
|
* 2 bug fixes:
|
819
|
-
* Use a constant format. Fixes #737
|
820
|
-
* Use strerror for Windows sake. Fixes #733
|
882
|
+
* Use a constant format. Fixes [#737]
|
883
|
+
* Use strerror for Windows sake. Fixes [#733]
|
821
884
|
|
822
885
|
* 1 doc change:
|
823
886
|
* typo fix: occured -> occurred
|
824
887
|
|
825
888
|
* 1 PR merged:
|
826
|
-
* Merge pull request #736 from paulanunda/paulanunda/typo-fix
|
889
|
+
* Merge pull request [#736] from paulanunda/paulanunda/typo-fix
|
827
890
|
|
828
891
|
## 2.12.0 / 2015-07-14
|
829
892
|
|
@@ -833,12 +896,12 @@ The "clearly I don't have enough tests for the config" release.
|
|
833
896
|
* Do not suppress Content-Length on partial hijack
|
834
897
|
* Don't allow any exceptions to terminate a thread
|
835
898
|
* Handle ENOTCONN client disconnects when setting REMOTE_ADDR
|
836
|
-
* Handle very early exit of cluster mode. Fixes #722
|
899
|
+
* Handle very early exit of cluster mode. Fixes [#722]
|
837
900
|
* Install rack when running tests on travis to use rack/lint
|
838
901
|
* Make puma -v and -h return success exit code
|
839
902
|
* Make pumactl load config/puma.rb by default
|
840
|
-
* Pass options from pumactl properly when pruning. Fixes #694
|
841
|
-
* Remove rack dependency. Fixes #705
|
903
|
+
* Pass options from pumactl properly when pruning. Fixes [#694]
|
904
|
+
* Remove rack dependency. Fixes [#705]
|
842
905
|
* Remove the default Content-Type: text/plain
|
843
906
|
* Add Client Side Certificate Auth
|
844
907
|
|
@@ -857,33 +920,33 @@ The "clearly I don't have enough tests for the config" release.
|
|
857
920
|
* capistrano: Add additional env when start rails
|
858
921
|
|
859
922
|
* 16 PRs merged:
|
860
|
-
* Merge pull request #686 from jjb/patch-2
|
861
|
-
* Merge pull request #693 from rob-murray/update-example-config
|
862
|
-
* Merge pull request #697 from spk/tests-bind-on-rackup-file
|
863
|
-
* Merge pull request #699 from deees/fix/require_rack_builder
|
864
|
-
* Merge pull request #701 from deepj/master
|
865
|
-
* Merge pull request #702 from Jimdo/thread-reaping
|
866
|
-
* Merge pull request #703 from deepj/travis
|
867
|
-
* Merge pull request #704 from grega/master
|
868
|
-
* Merge pull request #709 from lian/master
|
869
|
-
* Merge pull request #711 from julik/master
|
870
|
-
* Merge pull request #712 from yakara-ltd/pumactl-default-config
|
871
|
-
* Merge pull request #715 from RobotJiang/master
|
872
|
-
* Merge pull request #725 from rwz/master
|
873
|
-
* Merge pull request #726 from strenuus/handle-client-disconnect
|
874
|
-
* Merge pull request #729 from allaire/patch-1
|
875
|
-
* Merge pull request #730 from iamjarvo/container-infrastructure
|
923
|
+
* Merge pull request [#686] from jjb/patch-2
|
924
|
+
* Merge pull request [#693] from rob-murray/update-example-config
|
925
|
+
* Merge pull request [#697] from spk/tests-bind-on-rackup-file
|
926
|
+
* Merge pull request [#699] from deees/fix/require_rack_builder
|
927
|
+
* Merge pull request [#701] from deepj/master
|
928
|
+
* Merge pull request [#702] from Jimdo/thread-reaping
|
929
|
+
* Merge pull request [#703] from deepj/travis
|
930
|
+
* Merge pull request [#704] from grega/master
|
931
|
+
* Merge pull request [#709] from lian/master
|
932
|
+
* Merge pull request [#711] from julik/master
|
933
|
+
* Merge pull request [#712] from yakara-ltd/pumactl-default-config
|
934
|
+
* Merge pull request [#715] from RobotJiang/master
|
935
|
+
* Merge pull request [#725] from rwz/master
|
936
|
+
* Merge pull request [#726] from strenuus/handle-client-disconnect
|
937
|
+
* Merge pull request [#729] from allaire/patch-1
|
938
|
+
* Merge pull request [#730] from iamjarvo/container-infrastructure
|
876
939
|
|
877
940
|
## 2.11.3 / 2015-05-18
|
878
941
|
|
879
942
|
* 5 bug fixes:
|
880
|
-
* Be sure to unlink tempfiles after a request. Fixes #690
|
881
|
-
* Coerce the key to a string before checking. (thar be symbols). Fixes #684
|
943
|
+
* Be sure to unlink tempfiles after a request. Fixes [#690]
|
944
|
+
* Coerce the key to a string before checking. (thar be symbols). Fixes [#684]
|
882
945
|
* Fix hang on bad SSL handshake
|
883
946
|
* Remove `enable_SSLv3` support from JRuby
|
884
947
|
|
885
948
|
* 1 PR merged:
|
886
|
-
* Merge pull request #698 from looker/hang-handshake
|
949
|
+
* Merge pull request [#698] from looker/hang-handshake
|
887
950
|
|
888
951
|
## 2.11.2 / 2015-04-11
|
889
952
|
|
@@ -892,7 +955,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
892
955
|
* Add shutdown_debug config option
|
893
956
|
|
894
957
|
* 4 bug fixes:
|
895
|
-
* Fix the Config constants not being available in the DSL. Fixes #683
|
958
|
+
* Fix the Config constants not being available in the DSL. Fixes [#683]
|
896
959
|
* Ignore multiple port declarations
|
897
960
|
* Proper 'Connection' header handling compatible with HTTP 1.[01] protocols
|
898
961
|
* Use "Puma" instead of "puma" to reporting to New Relic
|
@@ -901,55 +964,55 @@ The "clearly I don't have enough tests for the config" release.
|
|
901
964
|
* Add Gitter badge.
|
902
965
|
|
903
966
|
* 6 PRs merged:
|
904
|
-
* Merge pull request #657 from schneems/schneems/puma-once-port
|
905
|
-
* Merge pull request #658 from Tomohiro/newrelic-dispatcher-default-update
|
906
|
-
* Merge pull request #662 from basecrm/connection-compatibility
|
907
|
-
* Merge pull request #664 from fxposter/on-worker-fork
|
908
|
-
* Merge pull request #667 from JuanitoFatas/doc/gemspec
|
909
|
-
* Merge pull request #672 from chulkilee/refactor
|
967
|
+
* Merge pull request [#657] from schneems/schneems/puma-once-port
|
968
|
+
* Merge pull request [#658] from Tomohiro/newrelic-dispatcher-default-update
|
969
|
+
* Merge pull request [#662] from basecrm/connection-compatibility
|
970
|
+
* Merge pull request [#664] from fxposter/on-worker-fork
|
971
|
+
* Merge pull request [#667] from JuanitoFatas/doc/gemspec
|
972
|
+
* Merge pull request [#672] from chulkilee/refactor
|
910
973
|
|
911
974
|
## 2.11.1 / 2015-02-11
|
912
975
|
|
913
976
|
* 2 bug fixes:
|
914
977
|
* Avoid crash in strange restart conditions
|
915
|
-
* Inject the GEM_HOME that bundler into puma-wild's env. Fixes #653
|
978
|
+
* Inject the GEM_HOME that bundler into puma-wild's env. Fixes [#653]
|
916
979
|
|
917
980
|
* 2 PRs merged:
|
918
|
-
* Merge pull request #644 from bpaquet/master
|
919
|
-
* Merge pull request #646 from mkonecny/master
|
981
|
+
* Merge pull request [#644] from bpaquet/master
|
982
|
+
* Merge pull request [#646] from mkonecny/master
|
920
983
|
|
921
984
|
## 2.11.0 / 2015-01-20
|
922
985
|
|
923
986
|
* 9 bug fixes:
|
924
|
-
* Add mode as an additional bind option to unix sockets. Fixes #630
|
987
|
+
* Add mode as an additional bind option to unix sockets. Fixes [#630]
|
925
988
|
* Advertise HTTPS properly after a hot restart
|
926
989
|
* Don't write lowlevel_error_handler to state
|
927
990
|
* Fix phased restart with stuck requests
|
928
|
-
* Handle spaces in the path properly. Fixes #622
|
929
|
-
* Set a default REMOTE_ADDR to avoid using peeraddr on unix sockets. Fixes #583
|
930
|
-
* Skip device number checking on jruby. Fixes #586
|
991
|
+
* Handle spaces in the path properly. Fixes [#622]
|
992
|
+
* Set a default REMOTE_ADDR to avoid using peeraddr on unix sockets. Fixes [#583]
|
993
|
+
* Skip device number checking on jruby. Fixes [#586]
|
931
994
|
* Update extconf.rb to compile correctly on OS X
|
932
|
-
* redirect io right after daemonizing so startup errors are shown. Fixes #359
|
995
|
+
* redirect io right after daemonizing so startup errors are shown. Fixes [#359]
|
933
996
|
|
934
997
|
* 6 minor features:
|
935
998
|
* Add a configuration option that prevents puma from queueing requests.
|
936
999
|
* Add reload_worker_directory
|
937
1000
|
* Add the ability to pass environment variables to the init script (for Jungle).
|
938
|
-
* Add the proctitle tag to the worker. Fixes #633
|
1001
|
+
* Add the proctitle tag to the worker. Fixes [#633]
|
939
1002
|
* Infer a proctitle tag based on the directory
|
940
1003
|
* Update lowlevel error message to be more meaningful.
|
941
1004
|
|
942
1005
|
* 10 PRs merged:
|
943
|
-
* Merge pull request #478 from rubencaro/master
|
944
|
-
* Merge pull request #610 from kwilczynski/master
|
945
|
-
* Merge pull request #611 from jasonl/better-lowlevel-message
|
946
|
-
* Merge pull request #616 from jc00ke/master
|
947
|
-
* Merge pull request #623 from raldred/patch-1
|
948
|
-
* Merge pull request #628 from rdpoor/master
|
949
|
-
* Merge pull request #634 from deepj/master
|
950
|
-
* Merge pull request #637 from raskhadafi/patch-1
|
951
|
-
* Merge pull request #639 from ebeigarts/fix-phased-restarts
|
952
|
-
* Merge pull request #640 from codehotter/issue-612-dependent-requests-deadlock
|
1006
|
+
* Merge pull request [#478] from rubencaro/master
|
1007
|
+
* Merge pull request [#610] from kwilczynski/master
|
1008
|
+
* Merge pull request [#611] from jasonl/better-lowlevel-message
|
1009
|
+
* Merge pull request [#616] from jc00ke/master
|
1010
|
+
* Merge pull request [#623] from raldred/patch-1
|
1011
|
+
* Merge pull request [#628] from rdpoor/master
|
1012
|
+
* Merge pull request [#634] from deepj/master
|
1013
|
+
* Merge pull request [#637] from raskhadafi/patch-1
|
1014
|
+
* Merge pull request [#639] from ebeigarts/fix-phased-restarts
|
1015
|
+
* Merge pull request [#640] from codehotter/issue-612-dependent-requests-deadlock
|
953
1016
|
|
954
1017
|
## 2.10.2 / 2014-11-26
|
955
1018
|
|
@@ -979,9 +1042,9 @@ The "clearly I don't have enough tests for the config" release.
|
|
979
1042
|
|
980
1043
|
* 5 bug fixes:
|
981
1044
|
* Clean out a threads local data before doing work
|
982
|
-
* Disable SSLv3. Fixes #591
|
1045
|
+
* Disable SSLv3. Fixes [#591]
|
983
1046
|
* First change the directory to use the correct Gemfile.
|
984
|
-
* Only use config.ru binds if specified. Fixes #606
|
1047
|
+
* Only use config.ru binds if specified. Fixes [#606]
|
985
1048
|
* Strongish cipher suite with FS support for some browsers
|
986
1049
|
|
987
1050
|
* 2 doc changes:
|
@@ -989,20 +1052,20 @@ The "clearly I don't have enough tests for the config" release.
|
|
989
1052
|
* fix typo in README.md
|
990
1053
|
|
991
1054
|
* 9 Merged PRs:
|
992
|
-
* Merge pull request #560 from raskhadafi/prune_bundler-bug
|
993
|
-
* Merge pull request #566 from sheltond/master
|
994
|
-
* Merge pull request #593 from andruby/patch-1
|
995
|
-
* Merge pull request #594 from hassox/thread-cleanliness
|
996
|
-
* Merge pull request #596 from burningTyger/patch-1
|
997
|
-
* Merge pull request #601 from sorentwo/friendly-umask
|
998
|
-
* Merge pull request #602 from 1334/patch-1
|
999
|
-
* Merge pull request #608 from Gu1/master
|
1000
|
-
* Merge
|
1055
|
+
* Merge pull request [#560] from raskhadafi/prune_bundler-bug
|
1056
|
+
* Merge pull request [#566] from sheltond/master
|
1057
|
+
* Merge pull request [#593] from andruby/patch-1
|
1058
|
+
* Merge pull request [#594] from hassox/thread-cleanliness
|
1059
|
+
* Merge pull request [#596] from burningTyger/patch-1
|
1060
|
+
* Merge pull request [#601] from sorentwo/friendly-umask
|
1061
|
+
* Merge pull request [#602] from 1334/patch-1
|
1062
|
+
* Merge pull request [#608] from Gu1/master
|
1063
|
+
* Merge pull request [#538] from memiux/?
|
1001
1064
|
|
1002
1065
|
## 2.9.2 / 2014-10-25
|
1003
1066
|
|
1004
1067
|
* 8 bug fixes:
|
1005
|
-
* Fix puma-wild handling a restart properly. Fixes #550
|
1068
|
+
* Fix puma-wild handling a restart properly. Fixes [#550]
|
1006
1069
|
* JRuby SSL POODLE update
|
1007
1070
|
* Keep deprecated features warnings
|
1008
1071
|
* Log the current time when Puma shuts down.
|
@@ -1012,24 +1075,24 @@ The "clearly I don't have enough tests for the config" release.
|
|
1012
1075
|
* Fixing sexist error messages
|
1013
1076
|
|
1014
1077
|
* 6 PRs merged:
|
1015
|
-
* Merge pull request #549 from bsnape/log-shutdown-time
|
1016
|
-
* Merge pull request #553 from lowjoel/master
|
1017
|
-
* Merge pull request #568 from mariuz/patch-1
|
1018
|
-
* Merge pull request #578 from danielbuechele/patch-1
|
1019
|
-
* Merge pull request #581 from alexch/slightly-better-logging
|
1020
|
-
* Merge pull request #590 from looker/jruby_disable_sslv3
|
1078
|
+
* Merge pull request [#549] from bsnape/log-shutdown-time
|
1079
|
+
* Merge pull request [#553] from lowjoel/master
|
1080
|
+
* Merge pull request [#568] from mariuz/patch-1
|
1081
|
+
* Merge pull request [#578] from danielbuechele/patch-1
|
1082
|
+
* Merge pull request [#581] from alexch/slightly-better-logging
|
1083
|
+
* Merge pull request [#590] from looker/jruby_disable_sslv3
|
1021
1084
|
|
1022
1085
|
## 2.9.1 / 2014-09-05
|
1023
1086
|
|
1024
1087
|
* 4 bug fixes:
|
1025
1088
|
* Cleanup the SSL related structures properly, fixes memory leak
|
1026
1089
|
* Fix thread spawning edge case.
|
1027
|
-
* Force a worker check after a worker boots, don't wait 5sec. Fixes #574
|
1090
|
+
* Force a worker check after a worker boots, don't wait 5sec. Fixes [#574]
|
1028
1091
|
* Implement SIGHUP for logs reopening
|
1029
1092
|
|
1030
1093
|
* 2 PRs merged:
|
1031
|
-
* Merge pull request #561 from theoldreader/sighup
|
1032
|
-
* Merge pull request #570 from havenwood/spawn-thread-edge-case
|
1094
|
+
* Merge pull request [#561] from theoldreader/sighup
|
1095
|
+
* Merge pull request [#570] from havenwood/spawn-thread-edge-case
|
1033
1096
|
|
1034
1097
|
## 2.9.0 / 2014-07-12
|
1035
1098
|
|
@@ -1048,12 +1111,12 @@ The "clearly I don't have enough tests for the config" release.
|
|
1048
1111
|
* Update README.md
|
1049
1112
|
|
1050
1113
|
* 6 PRs merged:
|
1051
|
-
* Merge pull request #520 from misfo/patch-2
|
1052
|
-
* Merge pull request #530 from looker/jruby-ssl
|
1053
|
-
* Merge pull request #537 from vlmonk/patch-1
|
1054
|
-
* Merge pull request #540 from allaire/patch-1
|
1055
|
-
* Merge pull request #544 from chulkilee/bsd-3-clause
|
1056
|
-
* Merge pull request #551 from jcxplorer/patch-1
|
1114
|
+
* Merge pull request [#520] from misfo/patch-2
|
1115
|
+
* Merge pull request [#530] from looker/jruby-ssl
|
1116
|
+
* Merge pull request [#537] from vlmonk/patch-1
|
1117
|
+
* Merge pull request [#540] from allaire/patch-1
|
1118
|
+
* Merge pull request [#544] from chulkilee/bsd-3-clause
|
1119
|
+
* Merge pull request [#551] from jcxplorer/patch-1
|
1057
1120
|
|
1058
1121
|
## 2.8.2 / 2014-04-12
|
1059
1122
|
|
@@ -1070,17 +1133,17 @@ The "clearly I don't have enough tests for the config" release.
|
|
1070
1133
|
* allow changing of worker_timeout in config file
|
1071
1134
|
|
1072
1135
|
* 11 PRs merged:
|
1073
|
-
* Merge pull request #487 from ckuttruff/master
|
1074
|
-
* Merge pull request #492 from ckuttruff/master
|
1075
|
-
* Merge pull request #493 from alepore/config_tag
|
1076
|
-
* Merge pull request #503 from mariuz/patch-1
|
1077
|
-
* Merge pull request #505 from sammcj/patch-1
|
1078
|
-
* Merge pull request #506 from FlavourSys/config_worker_timeout
|
1079
|
-
* Merge pull request #510 from momer/rescue-block-handle-servers-fix
|
1080
|
-
* Merge pull request #511 from macool/patch-1
|
1081
|
-
* Merge pull request #514 from edogawaconan/refactor_env
|
1082
|
-
* Merge pull request #517 from misfo/patch-1
|
1083
|
-
* Merge pull request #518 from LongMan/master
|
1136
|
+
* Merge pull request [#487] from ckuttruff/master
|
1137
|
+
* Merge pull request [#492] from ckuttruff/master
|
1138
|
+
* Merge pull request [#493] from alepore/config_tag
|
1139
|
+
* Merge pull request [#503] from mariuz/patch-1
|
1140
|
+
* Merge pull request [#505] from sammcj/patch-1
|
1141
|
+
* Merge pull request [#506] from FlavourSys/config_worker_timeout
|
1142
|
+
* Merge pull request [#510] from momer/rescue-block-handle-servers-fix
|
1143
|
+
* Merge pull request [#511] from macool/patch-1
|
1144
|
+
* Merge pull request [#514] from edogawaconan/refactor_env
|
1145
|
+
* Merge pull request [#517] from misfo/patch-1
|
1146
|
+
* Merge pull request [#518] from LongMan/master
|
1084
1147
|
|
1085
1148
|
## 2.8.1 / 2014-03-06
|
1086
1149
|
|
@@ -1092,60 +1155,59 @@ The "clearly I don't have enough tests for the config" release.
|
|
1092
1155
|
* Start the deployment doc
|
1093
1156
|
|
1094
1157
|
* 6 PRs merged:
|
1095
|
-
* Merge pull request #471 from arthurnn/fix_test
|
1096
|
-
* Merge pull request #485 from joneslee85/patch-9
|
1097
|
-
* Merge pull request #486 from joshwlewis/patch-1
|
1098
|
-
* Merge pull request #490 from tobinibot/patch-1
|
1099
|
-
* Merge pull request #491 from brianknight10/clarify-no-config
|
1158
|
+
* Merge pull request [#471] from arthurnn/fix_test
|
1159
|
+
* Merge pull request [#485] from joneslee85/patch-9
|
1160
|
+
* Merge pull request [#486] from joshwlewis/patch-1
|
1161
|
+
* Merge pull request [#490] from tobinibot/patch-1
|
1162
|
+
* Merge pull request [#491] from brianknight10/clarify-no-config
|
1100
1163
|
|
1101
1164
|
## 2.8.0 / 2014-02-28
|
1102
1165
|
|
1103
1166
|
* 8 minor features:
|
1104
|
-
* Add ability to autoload a config file. Fixes #438
|
1105
|
-
* Add ability to detect and terminate hung workers. Fixes #333
|
1167
|
+
* Add ability to autoload a config file. Fixes [#438]
|
1168
|
+
* Add ability to detect and terminate hung workers. Fixes [#333]
|
1106
1169
|
* Add booted_workers to stats response
|
1107
1170
|
* Add config to customize the default error message
|
1108
1171
|
* Add prune_bundler option
|
1109
|
-
* Add worker indexes, expose them via on_worker_boot. Fixes #440
|
1172
|
+
* Add worker indexes, expose them via on_worker_boot. Fixes [#440]
|
1110
1173
|
* Add pretty process name
|
1111
1174
|
* Show the ruby version in use
|
1112
1175
|
|
1113
1176
|
* 7 bug fixes:
|
1114
1177
|
* Added 408 status on timeout.
|
1115
|
-
* Be more hostile with sockets that write block. Fixes #449
|
1116
|
-
* Expect at_exit to exclusively remove the pidfile. Fixes #444
|
1117
|
-
* Expose latency and listen backlog via bind query. Fixes #370
|
1118
|
-
* JRuby raises IOError if the socket is there. Fixes #377
|
1119
|
-
* Process requests fairly. Fixes #406
|
1120
|
-
* Rescue SystemCallError as well. Fixes #425
|
1178
|
+
* Be more hostile with sockets that write block. Fixes [#449]
|
1179
|
+
* Expect at_exit to exclusively remove the pidfile. Fixes [#444]
|
1180
|
+
* Expose latency and listen backlog via bind query. Fixes [#370]
|
1181
|
+
* JRuby raises IOError if the socket is there. Fixes [#377]
|
1182
|
+
* Process requests fairly. Fixes [#406]
|
1183
|
+
* Rescue SystemCallError as well. Fixes [#425]
|
1121
1184
|
|
1122
1185
|
* 4 doc changes:
|
1123
1186
|
* Add 2.1.0 to the matrix
|
1124
1187
|
* Add Code Climate badge to README
|
1125
1188
|
* Create signals.md
|
1126
|
-
* Set the license to BSD. Fixes #432
|
1189
|
+
* Set the license to BSD. Fixes [#432]
|
1127
1190
|
|
1128
1191
|
* 14 PRs merged:
|
1129
|
-
* Merge pull request #428 from alexeyfrank/capistrano_default_hooks
|
1130
|
-
* Merge pull request #429 from namusyaka/revert-const_defined
|
1131
|
-
* Merge pull request #431 from mrb/master
|
1132
|
-
* Merge pull request #433 from alepore/process-name
|
1133
|
-
* Merge pull request #437 from ibrahima/master
|
1134
|
-
* Merge pull request #446 from sudara/master
|
1135
|
-
* Merge pull request #451 from pwiebe/status_408
|
1136
|
-
* Merge pull request #453 from joevandyk/patch-1
|
1137
|
-
* Merge pull request #470 from arthurnn/fix_458
|
1138
|
-
* Merge pull request #472 from rubencaro/master
|
1139
|
-
* Merge pull request #480 from jjb/docs-on-running-test-suite
|
1140
|
-
* Merge pull request #481 from schneems/master
|
1141
|
-
* Merge pull request #482 from prathamesh-sonpatki/signals-doc-cleanup
|
1142
|
-
* Merge pull request #483 from YotpoLtd/master
|
1192
|
+
* Merge pull request [#428] from alexeyfrank/capistrano_default_hooks
|
1193
|
+
* Merge pull request [#429] from namusyaka/revert-const_defined
|
1194
|
+
* Merge pull request [#431] from mrb/master
|
1195
|
+
* Merge pull request [#433] from alepore/process-name
|
1196
|
+
* Merge pull request [#437] from ibrahima/master
|
1197
|
+
* Merge pull request [#446] from sudara/master
|
1198
|
+
* Merge pull request [#451] from pwiebe/status_408
|
1199
|
+
* Merge pull request [#453] from joevandyk/patch-1
|
1200
|
+
* Merge pull request [#470] from arthurnn/fix_458
|
1201
|
+
* Merge pull request [#472] from rubencaro/master
|
1202
|
+
* Merge pull request [#480] from jjb/docs-on-running-test-suite
|
1203
|
+
* Merge pull request [#481] from schneems/master
|
1204
|
+
* Merge pull request [#482] from prathamesh-sonpatki/signals-doc-cleanup
|
1205
|
+
* Merge pull request [#483] from YotpoLtd/master
|
1143
1206
|
|
1144
1207
|
## 2.7.1 / 2013-12-05
|
1145
1208
|
|
1146
1209
|
* 1 bug fix:
|
1147
|
-
|
1148
|
-
* Keep STDOUT/STDERR the right mode. Fixes #422
|
1210
|
+
* Keep STDOUT/STDERR the right mode. Fixes [#422]
|
1149
1211
|
|
1150
1212
|
## 2.7.0 / 2013-12-03
|
1151
1213
|
|
@@ -1180,7 +1242,6 @@ The "clearly I don't have enough tests for the config" release.
|
|
1180
1242
|
## 2.5.1 / 2013-08-13
|
1181
1243
|
|
1182
1244
|
* 2 bug fixes:
|
1183
|
-
|
1184
1245
|
* Keep jruby daemon mode from retrying on a hot restart
|
1185
1246
|
* Extract version from const.rb in gemspec
|
1186
1247
|
|
@@ -1222,30 +1283,28 @@ The "clearly I don't have enough tests for the config" release.
|
|
1222
1283
|
|
1223
1284
|
* 10 bug fixes:
|
1224
1285
|
|
1225
|
-
* Be sure to only delete the pid in the master. Fixes #334
|
1286
|
+
* Be sure to only delete the pid in the master. Fixes [#334]
|
1226
1287
|
* Call out -C/--config flags
|
1227
|
-
* Change parser symbol names to avoid clash. Fixes #179
|
1288
|
+
* Change parser symbol names to avoid clash. Fixes [#179]
|
1228
1289
|
* Convert thread pool sizes to integers
|
1229
1290
|
* Detect when the jruby daemon child doesn't start properly
|
1230
1291
|
* Fix typo in CLI help
|
1231
|
-
* Improve the logging output when hijack is used. Fixes #332
|
1292
|
+
* Improve the logging output when hijack is used. Fixes [#332]
|
1232
1293
|
* Remove unnecessary thread pool size conversions
|
1233
|
-
* Setup :worker_boot as an Array. Fixes #317
|
1234
|
-
* Use 127.0.0.1 as REMOTE_ADDR of unix client. Fixes #309
|
1294
|
+
* Setup :worker_boot as an Array. Fixes [#317]
|
1295
|
+
* Use 127.0.0.1 as REMOTE_ADDR of unix client. Fixes [#309]
|
1235
1296
|
|
1236
1297
|
|
1237
1298
|
## 2.3.2 / 2013-07-08
|
1238
1299
|
|
1239
1300
|
* 1 bug fix:
|
1240
|
-
|
1241
1301
|
* Move starting control server to after daemonization.
|
1242
1302
|
|
1243
1303
|
## 2.3.1 / 2013-07-06
|
1244
1304
|
|
1245
1305
|
* 2 bug fixes:
|
1246
|
-
|
1247
1306
|
* Include the right files in the Manifest.
|
1248
|
-
* Disable inheriting connections on restart on windows. Fixes #166
|
1307
|
+
* Disable inheriting connections on restart on windows. Fixes [#166]
|
1249
1308
|
|
1250
1309
|
* 1 doc change:
|
1251
1310
|
* Better document some platform constraints
|
@@ -1253,47 +1312,39 @@ The "clearly I don't have enough tests for the config" release.
|
|
1253
1312
|
## 2.3.0 / 2013-07-05
|
1254
1313
|
|
1255
1314
|
* 1 major bug fix:
|
1256
|
-
|
1257
1315
|
* Stabilize control server, add support in cluster mode
|
1258
1316
|
|
1259
1317
|
* 5 minor bug fixes:
|
1260
|
-
|
1261
1318
|
* Add ability to cleanup stale unix sockets
|
1262
|
-
* Check status data better. Fixes #292
|
1263
|
-
* Convert raw IO errors to ConnectionError. Fixes #274
|
1264
|
-
* Fix sending Content-Type and Content-Length for no body status. Fixes #304
|
1265
|
-
* Pass state path through to `pumactl start`. Fixes #287
|
1319
|
+
* Check status data better. Fixes [#292]
|
1320
|
+
* Convert raw IO errors to ConnectionError. Fixes [#274]
|
1321
|
+
* Fix sending Content-Type and Content-Length for no body status. Fixes [#304]
|
1322
|
+
* Pass state path through to `pumactl start`. Fixes [#287]
|
1266
1323
|
|
1267
1324
|
* 2 internal changes:
|
1268
|
-
|
1269
1325
|
* Refactored modes into seperate classes that CLI uses
|
1270
1326
|
* Changed CLI to take an Events object instead of stdout/stderr (API change)
|
1271
1327
|
|
1272
1328
|
## 2.2.2 / 2013-07-02
|
1273
1329
|
|
1274
1330
|
* 1 bug fix:
|
1275
|
-
|
1276
1331
|
* Fix restart_command in the config
|
1277
1332
|
|
1278
1333
|
## 2.2.1 / 2013-07-02
|
1279
1334
|
|
1280
1335
|
* 1 minor feature:
|
1281
|
-
|
1282
1336
|
* Introduce preload flag
|
1283
1337
|
|
1284
1338
|
* 1 bug fix:
|
1285
|
-
|
1286
1339
|
* Pass custom restart command in JRuby
|
1287
1340
|
|
1288
1341
|
## 2.2.0 / 2013-07-01
|
1289
1342
|
|
1290
1343
|
* 1 major feature:
|
1291
|
-
|
1292
1344
|
* Add ability to preload rack app
|
1293
1345
|
|
1294
1346
|
* 2 minor bugfixes:
|
1295
|
-
|
1296
|
-
* Don't leak info when not in development. Fixes #256
|
1347
|
+
* Don't leak info when not in development. Fixes [#256]
|
1297
1348
|
* Load the app, then bind the ports
|
1298
1349
|
|
1299
1350
|
## 2.1.1 / 2013-06-20
|
@@ -1301,7 +1352,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
1301
1352
|
* 2 minor bug fixes:
|
1302
1353
|
|
1303
1354
|
* Fix daemonization on jruby
|
1304
|
-
* Load the application before daemonizing. Fixes #285
|
1355
|
+
* Load the application before daemonizing. Fixes [#285]
|
1305
1356
|
|
1306
1357
|
## 2.1.0 / 2013-06-18
|
1307
1358
|
|
@@ -1311,7 +1362,7 @@ The "clearly I don't have enough tests for the config" release.
|
|
1311
1362
|
* Support systemd socket activation
|
1312
1363
|
|
1313
1364
|
* 15 bug fixes:
|
1314
|
-
* Deal with pipes closing while stopping. Fixes #270
|
1365
|
+
* Deal with pipes closing while stopping. Fixes [#270]
|
1315
1366
|
* Error out early if there is no app configured
|
1316
1367
|
* Handle ConnectionError rather than the lowlevel exceptions
|
1317
1368
|
* tune with `-C` config file and `on_worker_boot`
|
@@ -1320,11 +1371,11 @@ The "clearly I don't have enough tests for the config" release.
|
|
1320
1371
|
* Make sure to use bytesize instead of size (MiniSSL write)
|
1321
1372
|
* Fix an error in puma-manager.conf
|
1322
1373
|
* fix: stop leaking sockets on restart (affects ruby 1.9.3 or before)
|
1323
|
-
* Ignore errors on the cross-thread pipe. Fixes #246
|
1374
|
+
* Ignore errors on the cross-thread pipe. Fixes [#246]
|
1324
1375
|
* Ignore errors while uncorking the socket (it might already be closed)
|
1325
|
-
* Ignore the body on a HEAD request. Fixes #278
|
1326
|
-
* Handle all engine data when possible. Fixes #251.
|
1327
|
-
* Handle all read exceptions properly. Fixes #252
|
1376
|
+
* Ignore the body on a HEAD request. Fixes [#278]
|
1377
|
+
* Handle all engine data when possible. Fixes [#251].
|
1378
|
+
* Handle all read exceptions properly. Fixes [#252]
|
1328
1379
|
* Handle errors from the server better
|
1329
1380
|
|
1330
1381
|
* 3 doc changes:
|
@@ -1335,7 +1386,6 @@ The "clearly I don't have enough tests for the config" release.
|
|
1335
1386
|
## 2.0.1 / 2013-04-30
|
1336
1387
|
|
1337
1388
|
* 1 bug fix:
|
1338
|
-
|
1339
1389
|
* Fix not starting on JRuby properly
|
1340
1390
|
|
1341
1391
|
## 2.0.0 / 2013-04-29
|
@@ -1347,8 +1397,8 @@ RailsConf 2013 edition!
|
|
1347
1397
|
* Minor doc fixes in the README.md, Capistrano section
|
1348
1398
|
|
1349
1399
|
* 2 bug fixes:
|
1350
|
-
* Fix reading RACK_ENV properly. Fixes #234
|
1351
|
-
* Make cap recipe handle tmp/sockets; fixes #228
|
1400
|
+
* Fix reading RACK_ENV properly. Fixes [#234]
|
1401
|
+
* Make cap recipe handle tmp/sockets; fixes [#228]
|
1352
1402
|
|
1353
1403
|
* 3 minor changes:
|
1354
1404
|
* Fix capistrano recipe
|
@@ -1358,7 +1408,6 @@ RailsConf 2013 edition!
|
|
1358
1408
|
## 2.0.0.b7 / 2013-03-18
|
1359
1409
|
|
1360
1410
|
* 5 minor enhancements:
|
1361
|
-
|
1362
1411
|
* Add -q option for :start
|
1363
1412
|
* Add -V, --version
|
1364
1413
|
* Add default Rack handler helper
|
@@ -1366,30 +1415,27 @@ RailsConf 2013 edition!
|
|
1366
1415
|
* Set worker directory from configuration file
|
1367
1416
|
|
1368
1417
|
* 12 bug fixes:
|
1369
|
-
|
1370
|
-
*
|
1371
|
-
* Handle early term in workers. Fixes #206
|
1418
|
+
* Close the binder in the right place. Fixes [#192]
|
1419
|
+
* Handle early term in workers. Fixes [#206]
|
1372
1420
|
* Make sure that the default port is 80 when the request doesn't include HTTP_X_FORWARDED_PROTO.
|
1373
1421
|
* Prevent Errno::EBADF errors on restart when running ruby 2.0
|
1374
1422
|
* Record the proper @master_pid
|
1375
1423
|
* Respect the header HTTP_X_FORWARDED_PROTO when the host doesn't include a port number.
|
1376
1424
|
* Retry EAGAIN/EWOULDBLOCK during syswrite
|
1377
|
-
* Run exec properly to restart. Fixes #154
|
1425
|
+
* Run exec properly to restart. Fixes [#154]
|
1378
1426
|
* Set Rack run_once to false
|
1379
|
-
* Syncronize all access to @timeouts. Fixes #208
|
1380
|
-
* Write out the state post-daemonize. Fixes #189
|
1427
|
+
* Syncronize all access to @timeouts. Fixes [#208]
|
1428
|
+
* Write out the state post-daemonize. Fixes [#189]
|
1381
1429
|
* Prevent crash when all workers are gone
|
1382
1430
|
|
1383
1431
|
## 2.0.0.b6 / 2013-02-06
|
1384
1432
|
|
1385
1433
|
* 2 minor enhancements:
|
1386
|
-
|
1387
1434
|
* Add hook for running when a worker boots
|
1388
1435
|
* Advertise the Configuration object for apps to use.
|
1389
1436
|
|
1390
1437
|
* 1 bug fix:
|
1391
|
-
|
1392
|
-
* Change directory in working during upgrade. Fixes #185
|
1438
|
+
* Change directory in working during upgrade. Fixes [#185]
|
1393
1439
|
|
1394
1440
|
## 2.0.0.b5 / 2013-02-05
|
1395
1441
|
|
@@ -1402,16 +1448,16 @@ RailsConf 2013 edition!
|
|
1402
1448
|
* Add config file option to specify the restart command
|
1403
1449
|
|
1404
1450
|
* 5 bug fixes:
|
1405
|
-
* Cleanup pipes properly. Fixes #182
|
1406
|
-
* Daemonize earlier so that we don't lose app threads. Fixes #183
|
1407
|
-
* Drain the notification pipe. Fixes #176, thanks @cryo28
|
1408
|
-
* Move write_pid to after we daemonize. Fixes #180
|
1451
|
+
* Cleanup pipes properly. Fixes [#182]
|
1452
|
+
* Daemonize earlier so that we don't lose app threads. Fixes [#183]
|
1453
|
+
* Drain the notification pipe. Fixes [#176], thanks @cryo28
|
1454
|
+
* Move write_pid to after we daemonize. Fixes [#180]
|
1409
1455
|
* Redirect IO properly and emit message for checkpointing
|
1410
1456
|
|
1411
1457
|
## 2.0.0.b4 / 2012-12-12
|
1412
1458
|
|
1413
1459
|
* 4 bug fixes:
|
1414
|
-
* Properly check #syswrite's value for variable sized buffers. Fixes #170
|
1460
|
+
* Properly check #syswrite's value for variable sized buffers. Fixes [#170]
|
1415
1461
|
* Shutdown status server properly
|
1416
1462
|
* Handle char vs byte and mixing syswrite with write properly
|
1417
1463
|
* made MiniSSL validate key/cert file existence
|
@@ -1431,12 +1477,12 @@ RailsConf 2013 edition!
|
|
1431
1477
|
* Add options to daemonize puma
|
1432
1478
|
|
1433
1479
|
* 7 bug fixes:
|
1434
|
-
* Reset the IOBuffer properly. Fixes #148
|
1480
|
+
* Reset the IOBuffer properly. Fixes [#148]
|
1435
1481
|
* Shutdown gracefully on JRuby with Ctrl-C
|
1436
|
-
* Various methods to get newrelic to start. Fixes #128
|
1482
|
+
* Various methods to get newrelic to start. Fixes [#128]
|
1437
1483
|
* fixing syntax error at capistrano recipe
|
1438
1484
|
* Force ECONNRESET when read returns nil
|
1439
|
-
* Be sure to empty the drain the todo before shutting down. Fixes #155
|
1485
|
+
* Be sure to empty the drain the todo before shutting down. Fixes [#155]
|
1440
1486
|
* allow for alternate locations for status app
|
1441
1487
|
|
1442
1488
|
## 2.0.0.b1 / 2012-09-11
|
@@ -1488,7 +1534,7 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1488
1534
|
|
1489
1535
|
* 6 bug fixes:
|
1490
1536
|
* Define RSTRING_NOT_MODIFIED for Rubinius
|
1491
|
-
* Convert status to integer. Fixes #123
|
1537
|
+
* Convert status to integer. Fixes [#123]
|
1492
1538
|
* Delete pidfile when stopping the server
|
1493
1539
|
* Allow compilation with -Werror=format-security option
|
1494
1540
|
* Fix wrong HTTP version for a HTTP/1.0 request
|
@@ -1496,7 +1542,7 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1496
1542
|
|
1497
1543
|
* 3 minor features:
|
1498
1544
|
* Added support for setting RACK_ENV via the CLI, config file, and rack app
|
1499
|
-
* Allow Server#run to run sync. Fixes #111
|
1545
|
+
* Allow Server#run to run sync. Fixes [#111]
|
1500
1546
|
* Puma can now run on windows
|
1501
1547
|
|
1502
1548
|
## 1.4.0 / 2012-06-04
|
@@ -1511,7 +1557,7 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1511
1557
|
|
1512
1558
|
* 2 bug fixes:
|
1513
1559
|
* use #bytesize instead of #length for Content-Length header
|
1514
|
-
* Use StringIO properly. Fixes #98
|
1560
|
+
* Use StringIO properly. Fixes [#98]
|
1515
1561
|
|
1516
1562
|
## 1.3.0 / 2012-05-08
|
1517
1563
|
|
@@ -1520,10 +1566,10 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1520
1566
|
* Add -I option to specify $LOAD_PATH directories
|
1521
1567
|
|
1522
1568
|
* 4 bug fixes:
|
1523
|
-
* Don't join the server thread inside the signal handle. Fixes #94
|
1569
|
+
* Don't join the server thread inside the signal handle. Fixes [#94]
|
1524
1570
|
* Make NullIO#read mimic IO#read
|
1525
|
-
* Only stop the status server if it's started. Fixes #84
|
1526
|
-
* Set RACK_ENV early in cli also. Fixes #78
|
1571
|
+
* Only stop the status server if it's started. Fixes [#84]
|
1572
|
+
* Set RACK_ENV early in cli also. Fixes [#78]
|
1527
1573
|
|
1528
1574
|
* 1 new contributor:
|
1529
1575
|
* Jesse Cooke
|
@@ -1531,58 +1577,49 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1531
1577
|
## 1.2.2 / 2012-04-28
|
1532
1578
|
|
1533
1579
|
* 4 bug fixes:
|
1534
|
-
|
1535
1580
|
* Report a lowlevel error to stderr
|
1536
1581
|
* Set a fallback SERVER_NAME and SERVER_PORT
|
1537
|
-
* Keep the encoding of the body correct. Fixes #79
|
1582
|
+
* Keep the encoding of the body correct. Fixes [#79]
|
1538
1583
|
* show error.to_s along with backtrace for low-level error
|
1539
1584
|
|
1540
1585
|
## 1.2.1 / 2012-04-11
|
1541
1586
|
|
1542
|
-
1 bug fix:
|
1543
|
-
|
1544
|
-
* Fix rack.url_scheme for SSL servers. Fixes #65
|
1587
|
+
* 1 bug fix:
|
1588
|
+
* Fix rack.url_scheme for SSL servers. Fixes [#65]
|
1545
1589
|
|
1546
1590
|
## 1.2.0 / 2012-04-11
|
1547
1591
|
|
1548
|
-
1 major feature:
|
1549
|
-
|
1550
|
-
|
1551
|
-
the server sockets remains open, so no connections are lost.
|
1552
|
-
|
1553
|
-
1 minor feature:
|
1554
|
-
|
1555
|
-
* More helpful fallback error message
|
1556
|
-
|
1557
|
-
6 bug fixes:
|
1592
|
+
* 1 major feature:
|
1593
|
+
* When possible, the internal restart does a "hot restart" meaning
|
1594
|
+
the server sockets remains open, so no connections are lost.
|
1558
1595
|
|
1559
|
-
|
1560
|
-
|
1561
|
-
* Fix reporting https only on a true SSL connection
|
1562
|
-
* Set the default content type to 'text/plain'. Fixes #63
|
1563
|
-
* Use REUSEADDR. Fixes #60
|
1564
|
-
* Shutdown gracefully on SIGTERM. Fixes #53
|
1596
|
+
* 1 minor feature:
|
1597
|
+
* More helpful fallback error message
|
1565
1598
|
|
1566
|
-
|
1599
|
+
* 6 bug fixes:
|
1600
|
+
* Pass the proper args to unknown_error. Fixes [#54], [#58]
|
1601
|
+
* Stop the control server before restarting. Fixes [#61]
|
1602
|
+
* Fix reporting https only on a true SSL connection
|
1603
|
+
* Set the default content type to 'text/plain'. Fixes [#63]
|
1604
|
+
* Use REUSEADDR. Fixes [#60]
|
1605
|
+
* Shutdown gracefully on SIGTERM. Fixes [#53]
|
1567
1606
|
|
1568
|
-
|
1569
|
-
|
1607
|
+
* 2 new contributors:
|
1608
|
+
* Seamus Abshere
|
1609
|
+
* Steve Richert
|
1570
1610
|
|
1571
1611
|
## 1.1.1 / 2012-03-30
|
1572
1612
|
|
1573
|
-
1 bugfix:
|
1574
|
-
|
1575
|
-
* Include puma/compat.rb in the gem (oops!)
|
1613
|
+
* 1 bugfix:
|
1614
|
+
* Include puma/compat.rb in the gem (oops!)
|
1576
1615
|
|
1577
1616
|
## 1.1.0 / 2012-03-30
|
1578
1617
|
|
1579
|
-
1 bugfix:
|
1580
|
-
|
1581
|
-
* Make sure that the unix socket has the perms 0777 by default
|
1582
|
-
|
1583
|
-
1 minor feature:
|
1618
|
+
* 1 bugfix:
|
1619
|
+
* Make sure that the unix socket has the perms 0777 by default
|
1584
1620
|
|
1585
|
-
|
1621
|
+
* 1 minor feature:
|
1622
|
+
* Add umask param to the unix:// bind to set the umask
|
1586
1623
|
|
1587
1624
|
## 1.0.0 / 2012-03-29
|
1588
1625
|
|
@@ -1592,7 +1629,599 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1592
1629
|
## Master
|
1593
1630
|
|
1594
1631
|
* Features
|
1595
|
-
* Your feature goes here (#Github Number)
|
1632
|
+
* Your feature goes here <Most recent on the top, like GitHub> (#Github Number)
|
1596
1633
|
|
1597
1634
|
* Bugfixes
|
1598
|
-
* Your bugfix goes here (#Github Number)
|
1635
|
+
* Your bugfix goes here <Most recent on the top, like GitHub> (#Github Number)
|
1636
|
+
|
1637
|
+
[#2432]:https://github.com/puma/puma/pull/2432 "PR by @MSP-Greg, merged 2020-10-25"
|
1638
|
+
[#2442]:https://github.com/puma/puma/pull/2442 "PR by @wjordan, merged 2020-10-22"
|
1639
|
+
[#2427]:https://github.com/puma/puma/pull/2427 "PR by @cjlarose, merged 2020-10-20"
|
1640
|
+
[#2018]:https://github.com/puma/puma/issues/2018 "Issue by @gingerlime, closed 2020-10-20"
|
1641
|
+
[#2435]:https://github.com/puma/puma/pull/2435 "PR by @wjordan, merged 2020-10-20"
|
1642
|
+
[#2431]:https://github.com/puma/puma/pull/2431 "PR by @wjordan, merged 2020-10-16"
|
1643
|
+
[#2212]:https://github.com/puma/puma/issues/2212 "Issue by @junaruga, closed 2020-10-16"
|
1644
|
+
[#2409]:https://github.com/puma/puma/pull/2409 "PR by @fliiiix, merged 2020-10-03"
|
1645
|
+
[#2448]:https://github.com/puma/puma/pull/2448 "PR by @MSP-Greg, merged 2020-10-25"
|
1646
|
+
[#2450]:https://github.com/puma/puma/pull/2450 "PR by @MSP-Greg, merged 2020-10-25"
|
1647
|
+
[#2419]:https://github.com/puma/puma/pull/2419 "PR by @MSP-Greg, merged 2020-10-09"
|
1648
|
+
[#2279]:https://github.com/puma/puma/pull/2279 "PR by @wjordan, merged 2020-10-06"
|
1649
|
+
[#2412]:https://github.com/puma/puma/pull/2412 "PR by @MSP-Greg, merged 2020-10-06"
|
1650
|
+
[#2405]:https://github.com/puma/puma/pull/2405 "PR by @MSP-Greg, merged 2020-10-05"
|
1651
|
+
[#2408]:https://github.com/puma/puma/pull/2408 "PR by @fliiiix, merged 2020-10-03"
|
1652
|
+
[#2389]:https://github.com/puma/puma/pull/2389 "PR by @MSP-Greg, merged 2020-09-29"
|
1653
|
+
[#2432]:https://github.com/puma/puma/pull/2432 "PR by @MSP-Greg, merged 2020-10-25"
|
1654
|
+
[#2442]:https://github.com/puma/puma/pull/2442 "PR by @wjordan, merged 2020-10-22"
|
1655
|
+
[#2427]:https://github.com/puma/puma/pull/2427 "PR by @cjlarose, merged 2020-10-20"
|
1656
|
+
[#2018]:https://github.com/puma/puma/issues/2018 "Issue by @gingerlime, closed 2020-10-20"
|
1657
|
+
[#2435]:https://github.com/puma/puma/pull/2435 "PR by @wjordan, merged 2020-10-20"
|
1658
|
+
[#2431]:https://github.com/puma/puma/pull/2431 "PR by @wjordan, merged 2020-10-16"
|
1659
|
+
[#2212]:https://github.com/puma/puma/issues/2212 "Issue by @junaruga, closed 2020-10-16"
|
1660
|
+
[#2409]:https://github.com/puma/puma/pull/2409 "PR by @fliiiix, merged 2020-10-03"
|
1661
|
+
[#2448]:https://github.com/puma/puma/pull/2448 "PR by @MSP-Greg, merged 2020-10-25"
|
1662
|
+
[#2450]:https://github.com/puma/puma/pull/2450 "PR by @MSP-Greg, merged 2020-10-25"
|
1663
|
+
[#2419]:https://github.com/puma/puma/pull/2419 "PR by @MSP-Greg, merged 2020-10-09"
|
1664
|
+
[#2279]:https://github.com/puma/puma/pull/2279 "PR by @wjordan, merged 2020-10-06"
|
1665
|
+
[#2412]:https://github.com/puma/puma/pull/2412 "PR by @MSP-Greg, merged 2020-10-06"
|
1666
|
+
[#2405]:https://github.com/puma/puma/pull/2405 "PR by @MSP-Greg, merged 2020-10-05"
|
1667
|
+
[#2408]:https://github.com/puma/puma/pull/2408 "PR by @fliiiix, merged 2020-10-03"
|
1668
|
+
[#2389]:https://github.com/puma/puma/pull/2389 "PR by @MSP-Greg, merged 2020-09-29"
|
1669
|
+
[#2381]:https://github.com/puma/puma/pull/2381 "PR by @joergschray, merged 2020-09-24"
|
1670
|
+
[#2271]:https://github.com/puma/puma/pull/2271 "PR by @wjordan, merged 2020-09-24"
|
1671
|
+
[#2377]:https://github.com/puma/puma/pull/2377 "PR by @cjlarose, merged 2020-09-23"
|
1672
|
+
[#2376]:https://github.com/puma/puma/pull/2376 "PR by @alexeevit, merged 2020-09-22"
|
1673
|
+
[#2372]:https://github.com/puma/puma/pull/2372 "PR by @ahorek, merged 2020-09-22"
|
1674
|
+
[#2384]:https://github.com/puma/puma/pull/2384 "PR by @schneems, merged 2020-09-27"
|
1675
|
+
[#2375]:https://github.com/puma/puma/pull/2375 "PR by @MSP-Greg, merged 2020-09-23"
|
1676
|
+
[#2373]:https://github.com/puma/puma/pull/2373 "PR by @MSP-Greg, merged 2020-09-23"
|
1677
|
+
[#2305]:https://github.com/puma/puma/pull/2305 "PR by @MSP-Greg, merged 2020-09-14"
|
1678
|
+
[#2099]:https://github.com/puma/puma/pull/2099 "PR by @wjordan, merged 2020-05-11"
|
1679
|
+
[#2079]:https://github.com/puma/puma/pull/2079 "PR by @ayufan, merged 2020-05-11"
|
1680
|
+
[#2093]:https://github.com/puma/puma/pull/2093 "PR by @schneems, merged 2019-12-18"
|
1681
|
+
[#2256]:https://github.com/puma/puma/pull/2256 "PR by @nateberkopec, merged 2020-05-11"
|
1682
|
+
[#2054]:https://github.com/puma/puma/pull/2054 "PR by @composerinteralia, merged 2019-11-11"
|
1683
|
+
[#2106]:https://github.com/puma/puma/pull/2106 "PR by @ylecuyer, merged 2020-02-11"
|
1684
|
+
[#2167]:https://github.com/puma/puma/pull/2167 "PR by @ChrisBr, closed 2020-07-06"
|
1685
|
+
[#2344]:https://github.com/puma/puma/pull/2344 "PR by @dentarg, merged 2020-08-26"
|
1686
|
+
[#2203]:https://github.com/puma/puma/pull/2203 "PR by @zanker-stripe, merged 2020-03-31"
|
1687
|
+
[#2220]:https://github.com/puma/puma/pull/2220 "PR by @wjordan, merged 2020-04-14"
|
1688
|
+
[#2238]:https://github.com/puma/puma/pull/2238 "PR by @sthirugn, merged 2020-05-07"
|
1689
|
+
[#2086]:https://github.com/puma/puma/pull/2086 "PR by @bdewater, merged 2019-12-17"
|
1690
|
+
[#2253]:https://github.com/puma/puma/pull/2253 "PR by @schneems, merged 2020-05-11"
|
1691
|
+
[#2288]:https://github.com/puma/puma/pull/2288 "PR by @FTLam11, merged 2020-06-02"
|
1692
|
+
[#1487]:https://github.com/puma/puma/pull/1487 "PR by @jxa, merged 2018-05-09"
|
1693
|
+
[#2143]:https://github.com/puma/puma/pull/2143 "PR by @jalevin, merged 2020-04-21"
|
1694
|
+
[#2143]:https://github.com/puma/puma/pull/2143 "PR by @jalevin, merged 2020-04-21"
|
1695
|
+
[#2143]:https://github.com/puma/puma/pull/2143 "PR by @jalevin, merged 2020-04-21"
|
1696
|
+
[#2143]:https://github.com/puma/puma/pull/2143 "PR by @jalevin, merged 2020-04-21"
|
1697
|
+
[#2143]:https://github.com/puma/puma/pull/2143 "PR by @jalevin, merged 2020-04-21"
|
1698
|
+
[#2169]:https://github.com/puma/puma/pull/2169 "PR by @nateberkopec, merged 2020-03-10"
|
1699
|
+
[#2170]:https://github.com/puma/puma/pull/2170 "PR by @nateberkopec, merged 2020-03-10"
|
1700
|
+
[#2076]:https://github.com/puma/puma/pull/2076 "PR by @drews256, merged 2020-02-27"
|
1701
|
+
[#2022]:https://github.com/puma/puma/pull/2022 "PR by @olleolleolle, merged 2019-11-11"
|
1702
|
+
[#2269]:https://github.com/puma/puma/pull/2269 "PR by @MSP-Greg, merged 2020-08-31"
|
1703
|
+
[#2312]:https://github.com/puma/puma/pull/2312 "PR by @MSP-Greg, merged 2020-07-20"
|
1704
|
+
[#2338]:https://github.com/puma/puma/issues/2338 "Issue by @micahhainlinestitchfix, closed 2020-08-18"
|
1705
|
+
[#2116]:https://github.com/puma/puma/pull/2116 "PR by @MSP-Greg, merged 2020-05-15"
|
1706
|
+
[#2074]:https://github.com/puma/puma/issues/2074 "Issue by @jchristie55332, closed 2020-02-19"
|
1707
|
+
[#2211]:https://github.com/puma/puma/pull/2211 "PR by @MSP-Greg, merged 2020-03-30"
|
1708
|
+
[#2069]:https://github.com/puma/puma/pull/2069 "PR by @MSP-Greg, merged 2019-11-09"
|
1709
|
+
[#2112]:https://github.com/puma/puma/pull/2112 "PR by @wjordan, merged 2020-03-03"
|
1710
|
+
[#1893]:https://github.com/puma/puma/pull/1893 "PR by @seven1m, merged 2020-02-18"
|
1711
|
+
[#2119]:https://github.com/puma/puma/pull/2119 "PR by @wjordan, merged 2020-02-20"
|
1712
|
+
[#2121]:https://github.com/puma/puma/pull/2121 "PR by @wjordan, merged 2020-02-21"
|
1713
|
+
[#2154]:https://github.com/puma/puma/pull/2154 "PR by @cjlarose, merged 2020-03-10"
|
1714
|
+
[#1551]:https://github.com/puma/puma/issues/1551 "Issue by @austinthecoder, closed 2020-03-10"
|
1715
|
+
[#2198]:https://github.com/puma/puma/pull/2198 "PR by @eregon, merged 2020-03-24"
|
1716
|
+
[#2216]:https://github.com/puma/puma/pull/2216 "PR by @praboud-stripe, merged 2020-04-06"
|
1717
|
+
[#2122]:https://github.com/puma/puma/pull/2122 "PR by @wjordan, merged 2020-04-10"
|
1718
|
+
[#2220]:https://github.com/puma/puma/pull/2220 "PR by @wjordan, merged 2020-04-14"
|
1719
|
+
[#2177]:https://github.com/puma/puma/issues/2177 "Issue by @GuiTeK, closed 2020-04-08"
|
1720
|
+
[#2221]:https://github.com/puma/puma/pull/2221 "PR by @wjordan, merged 2020-04-17"
|
1721
|
+
[#2233]:https://github.com/puma/puma/pull/2233 "PR by @ayufan, merged 2020-04-25"
|
1722
|
+
[#2234]:https://github.com/puma/puma/pull/2234 "PR by @wjordan, merged 2020-04-30"
|
1723
|
+
[#2225]:https://github.com/puma/puma/issues/2225 "Issue by @nateberkopec, closed 2020-04-27"
|
1724
|
+
[#2267]:https://github.com/puma/puma/pull/2267 "PR by @wjordan, merged 2020-05-20"
|
1725
|
+
[#2287]:https://github.com/puma/puma/pull/2287 "PR by @eugeneius, merged 2020-05-31"
|
1726
|
+
[#2317]:https://github.com/puma/puma/pull/2317 "PR by @MSP-Greg, merged 2020-09-01"
|
1727
|
+
[#2312]:https://github.com/puma/puma/pull/2312 "PR by @MSP-Greg, merged 2020-07-20"
|
1728
|
+
[#2319]:https://github.com/puma/puma/issues/2319 "Issue by @AlexWayfer, closed 2020-09-03"
|
1729
|
+
[#2326]:https://github.com/puma/puma/pull/2326 "PR by @rkistner, closed 2020-09-04"
|
1730
|
+
[#2299]:https://github.com/puma/puma/issues/2299 "Issue by @JohnPhillips31416, closed 2020-09-17"
|
1731
|
+
[#2095]:https://github.com/puma/puma/pull/2095 "PR by @bdewater, merged 2019-12-25"
|
1732
|
+
[#2102]:https://github.com/puma/puma/pull/2102 "PR by @bdewater, merged 2020-02-07"
|
1733
|
+
[#2111]:https://github.com/puma/puma/pull/2111 "PR by @wjordan, merged 2020-02-20"
|
1734
|
+
[#1980]:https://github.com/puma/puma/pull/1980 "PR by @nateberkopec, merged 2020-02-27"
|
1735
|
+
[#2189]:https://github.com/puma/puma/pull/2189 "PR by @jkowens, merged 2020-03-19"
|
1736
|
+
[#2220]:https://github.com/puma/puma/pull/2220 "PR by @wjordan, merged 2020-04-14"
|
1737
|
+
[#2124]:https://github.com/puma/puma/pull/2124 "PR by @wjordan, merged 2020-04-14"
|
1738
|
+
[#2223]:https://github.com/puma/puma/pull/2223 "PR by @wjordan, merged 2020-04-20"
|
1739
|
+
[#2239]:https://github.com/puma/puma/pull/2239 "PR by @wjordan, merged 2020-05-15"
|
1740
|
+
[#2304]:https://github.com/puma/puma/issues/2304 "Issue by @mpeltomaa, closed 2020-09-05"
|
1741
|
+
[#2269]:https://github.com/puma/puma/pull/2269 "PR by @MSP-Greg, merged 2020-08-31"
|
1742
|
+
[#2132]:https://github.com/puma/puma/issues/2132 "Issue by @bmclean, closed 2020-02-28"
|
1743
|
+
[#2010]:https://github.com/puma/puma/pull/2010 "PR by @nateberkopec, merged 2019-10-07"
|
1744
|
+
[#2012]:https://github.com/puma/puma/pull/2012 "PR by @headius, merged 2019-10-07"
|
1745
|
+
[#2046]:https://github.com/puma/puma/pull/2046 "PR by @composerinteralia, merged 2019-10-21"
|
1746
|
+
[#2052]:https://github.com/puma/puma/pull/2052 "PR by @composerinteralia, merged 2019-11-02"
|
1747
|
+
[#1564]:https://github.com/puma/puma/issues/1564 "Issue by @perlun, closed 2019-10-07"
|
1748
|
+
[#2035]:https://github.com/puma/puma/pull/2035 "PR by @AndrewSpeed, merged 2019-10-18"
|
1749
|
+
[#2048]:https://github.com/puma/puma/pull/2048 "PR by @hahmed, merged 2019-10-21"
|
1750
|
+
[#2050]:https://github.com/puma/puma/pull/2050 "PR by @olleolleolle, merged 2019-10-25"
|
1751
|
+
[#1842]:https://github.com/puma/puma/issues/1842 "Issue by @nateberkopec, closed 2019-09-18"
|
1752
|
+
[#1988]:https://github.com/puma/puma/issues/1988 "Issue by @mcg, closed 2019-10-01"
|
1753
|
+
[#1986]:https://github.com/puma/puma/issues/1986 "Issue by @flaminestone, closed 2019-10-01"
|
1754
|
+
[#1994]:https://github.com/puma/puma/issues/1994 "Issue by @LimeBlast, closed 2019-10-01"
|
1755
|
+
[#2006]:https://github.com/puma/puma/pull/2006 "PR by @nateberkopec, merged 2019-10-01"
|
1756
|
+
[#1222]:https://github.com/puma/puma/issues/1222 "Issue by @seanmckinley, closed 2019-10-04"
|
1757
|
+
[#1885]:https://github.com/puma/puma/pull/1885 "PR by @spk, merged 2019-08-10"
|
1758
|
+
[#1934]:https://github.com/puma/puma/pull/1934 "PR by @zarelit, merged 2019-08-28"
|
1759
|
+
[#1105]:https://github.com/puma/puma/pull/1105 "PR by @daveallie, merged 2019-09-02"
|
1760
|
+
[#1786]:https://github.com/puma/puma/pull/1786 "PR by @evanphx, merged 2019-09-11"
|
1761
|
+
[#1320]:https://github.com/puma/puma/pull/1320 "PR by @nateberkopec, merged 2019-09-12"
|
1762
|
+
[#1968]:https://github.com/puma/puma/pull/1968 "PR by @nateberkopec, merged 2019-09-15"
|
1763
|
+
[#1908]:https://github.com/puma/puma/pull/1908 "PR by @MSP-Greg, merged 2019-08-23"
|
1764
|
+
[#1952]:https://github.com/puma/puma/pull/1952 "PR by @MSP-Greg, merged 2019-09-19"
|
1765
|
+
[#1941]:https://github.com/puma/puma/pull/1941 "PR by @MSP-Greg, merged 2019-09-02"
|
1766
|
+
[#1961]:https://github.com/puma/puma/pull/1961 "PR by @nateberkopec, merged 2019-09-11"
|
1767
|
+
[#1970]:https://github.com/puma/puma/pull/1970 "PR by @MSP-Greg, merged 2019-09-18"
|
1768
|
+
[#1946]:https://github.com/puma/puma/pull/1946 "PR by @nateberkopec, merged 2019-09-02"
|
1769
|
+
[#1941]:https://github.com/puma/puma/pull/1941 "PR by @MSP-Greg, merged 2019-09-02"
|
1770
|
+
[#1908]:https://github.com/puma/puma/pull/1908 "PR by @MSP-Greg, merged 2019-08-23"
|
1771
|
+
[#1831]:https://github.com/puma/puma/pull/1831 "PR by @spk, merged 2019-07-27"
|
1772
|
+
[#1816]:https://github.com/puma/puma/pull/1816 "PR by @ylecuyer, merged 2019-08-01"
|
1773
|
+
[#1844]:https://github.com/puma/puma/pull/1844 "PR by @ylecuyer, merged 2019-08-01"
|
1774
|
+
[#1836]:https://github.com/puma/puma/pull/1836 "PR by @MSP-Greg, merged 2019-08-06"
|
1775
|
+
[#1887]:https://github.com/puma/puma/pull/1887 "PR by @MSP-Greg, merged 2019-08-06"
|
1776
|
+
[#1812]:https://github.com/puma/puma/pull/1812 "PR by @kou, merged 2019-08-03"
|
1777
|
+
[#1491]:https://github.com/puma/puma/pull/1491 "PR by @olleolleolle, merged 2019-07-17"
|
1778
|
+
[#1837]:https://github.com/puma/puma/pull/1837 "PR by @montanalow, merged 2019-07-25"
|
1779
|
+
[#1857]:https://github.com/puma/puma/pull/1857 "PR by @Jesus, merged 2019-08-03"
|
1780
|
+
[#1822]:https://github.com/puma/puma/pull/1822 "PR by @Jesus, merged 2019-08-01"
|
1781
|
+
[#1863]:https://github.com/puma/puma/pull/1863 "PR by @dzunk, merged 2019-08-04"
|
1782
|
+
[#1838]:https://github.com/puma/puma/pull/1838 "PR by @bogn83, merged 2019-07-14"
|
1783
|
+
[#1882]:https://github.com/puma/puma/pull/1882 "PR by @okuramasafumi, merged 2019-08-06"
|
1784
|
+
[#1848]:https://github.com/puma/puma/pull/1848 "PR by @nateberkopec, merged 2019-07-16"
|
1785
|
+
[#1847]:https://github.com/puma/puma/pull/1847 "PR by @nateberkopec, merged 2019-07-16"
|
1786
|
+
[#1846]:https://github.com/puma/puma/pull/1846 "PR by @nateberkopec, merged 2019-07-16"
|
1787
|
+
[#1853]:https://github.com/puma/puma/pull/1853 "PR by @Jesus, merged 2019-07-18"
|
1788
|
+
[#1850]:https://github.com/puma/puma/pull/1850 "PR by @nateberkopec, merged 2019-07-27"
|
1789
|
+
[#1866]:https://github.com/puma/puma/pull/1866 "PR by @josacar, merged 2019-07-28"
|
1790
|
+
[#1870]:https://github.com/puma/puma/pull/1870 "PR by @MSP-Greg, merged 2019-07-30"
|
1791
|
+
[#1872]:https://github.com/puma/puma/pull/1872 "PR by @MSP-Greg, merged 2019-07-30"
|
1792
|
+
[#1833]:https://github.com/puma/puma/issues/1833 "Issue by @julik, closed 2019-07-09"
|
1793
|
+
[#1888]:https://github.com/puma/puma/pull/1888 "PR by @ClikeX, merged 2019-08-06"
|
1794
|
+
[#1842]:https://github.com/puma/puma/issues/1842 "Issue by @nateberkopec, closed 2019-09-18"
|
1795
|
+
[#1829]:https://github.com/puma/puma/pull/1829 "PR by @Fudoshiki, merged 2019-07-09"
|
1796
|
+
[#1832]:https://github.com/puma/puma/pull/1832 "PR by @MSP-Greg, merged 2019-07-08"
|
1797
|
+
[#1827]:https://github.com/puma/puma/pull/1827 "PR by @amrrbakry, merged 2019-06-27"
|
1798
|
+
[#1562]:https://github.com/puma/puma/pull/1562 "PR by @skrobul, merged 2019-02-20"
|
1799
|
+
[#1569]:https://github.com/puma/puma/pull/1569 "PR by @rianmcguire, merged 2019-02-20"
|
1800
|
+
[#1648]:https://github.com/puma/puma/pull/1648 "PR by @wjordan, merged 2019-02-20"
|
1801
|
+
[#1691]:https://github.com/puma/puma/pull/1691 "PR by @kares, merged 2019-02-20"
|
1802
|
+
[#1716]:https://github.com/puma/puma/pull/1716 "PR by @mdkent, merged 2019-02-20"
|
1803
|
+
[#1690]:https://github.com/puma/puma/pull/1690 "PR by @mic-kul, merged 2019-03-11"
|
1804
|
+
[#1689]:https://github.com/puma/puma/pull/1689 "PR by @michaelherold, merged 2019-03-11"
|
1805
|
+
[#1728]:https://github.com/puma/puma/pull/1728 "PR by @evanphx, merged 2019-03-20"
|
1806
|
+
[#1824]:https://github.com/puma/puma/pull/1824 "PR by @spk, merged 2019-06-24"
|
1807
|
+
[#1685]:https://github.com/puma/puma/pull/1685 "PR by @mainameiz, merged 2019-02-20"
|
1808
|
+
[#1808]:https://github.com/puma/puma/pull/1808 "PR by @schneems, merged 2019-06-10"
|
1809
|
+
[#1508]:https://github.com/puma/puma/pull/1508 "PR by @florin555, merged 2019-02-20"
|
1810
|
+
[#1650]:https://github.com/puma/puma/pull/1650 "PR by @adam101, merged 2019-02-20"
|
1811
|
+
[#1655]:https://github.com/puma/puma/pull/1655 "PR by @mipearson, merged 2019-02-20"
|
1812
|
+
[#1671]:https://github.com/puma/puma/pull/1671 "PR by @eric-norcross, merged 2019-02-20"
|
1813
|
+
[#1583]:https://github.com/puma/puma/pull/1583 "PR by @chwevans, merged 2019-02-20"
|
1814
|
+
[#1773]:https://github.com/puma/puma/pull/1773 "PR by @enebo, merged 2019-04-14"
|
1815
|
+
[#1731]:https://github.com/puma/puma/issues/1731 "Issue by @Fudoshiki, closed 2019-03-20"
|
1816
|
+
[#1803]:https://github.com/puma/puma/pull/1803 "PR by @Jesus, merged 2019-05-28"
|
1817
|
+
[#1741]:https://github.com/puma/puma/pull/1741 "PR by @MSP-Greg, merged 2019-03-19"
|
1818
|
+
[#1674]:https://github.com/puma/puma/issues/1674 "Issue by @atitan, closed 2019-06-12"
|
1819
|
+
[#1720]:https://github.com/puma/puma/issues/1720 "Issue by @voxik, closed 2019-03-20"
|
1820
|
+
[#1730]:https://github.com/puma/puma/issues/1730 "Issue by @nearapogee, closed 2019-07-16"
|
1821
|
+
[#1755]:https://github.com/puma/puma/issues/1755 "Issue by @vbalazs, closed 2019-07-26"
|
1822
|
+
[#1649]:https://github.com/puma/puma/pull/1649 "PR by @schneems, merged 2018-10-17"
|
1823
|
+
[#1607]:https://github.com/puma/puma/pull/1607 "PR by @harmdewit, merged 2018-08-15"
|
1824
|
+
[#1700]:https://github.com/puma/puma/pull/1700 "PR by @schneems, merged 2019-01-05"
|
1825
|
+
[#1630]:https://github.com/puma/puma/pull/1630 "PR by @eregon, merged 2018-09-11"
|
1826
|
+
[#1478]:https://github.com/puma/puma/pull/1478 "PR by @eallison91, merged 2018-05-09"
|
1827
|
+
[#1604]:https://github.com/puma/puma/pull/1604 "PR by @schneems, merged 2018-07-02"
|
1828
|
+
[#1579]:https://github.com/puma/puma/pull/1579 "PR by @schneems, merged 2018-06-14"
|
1829
|
+
[#1506]:https://github.com/puma/puma/pull/1506 "PR by @dekellum, merged 2018-05-09"
|
1830
|
+
[#1487]:https://github.com/puma/puma/pull/1487 "PR by @jxa, merged 2018-05-09"
|
1831
|
+
[#1563]:https://github.com/puma/puma/pull/1563 "PR by @dannyfallon, merged 2018-05-01"
|
1832
|
+
[#1557]:https://github.com/puma/puma/pull/1557 "PR by @swrobel, merged 2018-05-09"
|
1833
|
+
[#1529]:https://github.com/puma/puma/pull/1529 "PR by @desnudopenguino, merged 2018-03-20"
|
1834
|
+
[#1532]:https://github.com/puma/puma/pull/1532 "PR by @schneems, merged 2018-03-21"
|
1835
|
+
[#1482]:https://github.com/puma/puma/pull/1482 "PR by @shayonj, merged 2018-03-19"
|
1836
|
+
[#1511]:https://github.com/puma/puma/pull/1511 "PR by @jemiam, merged 2018-03-19"
|
1837
|
+
[#1545]:https://github.com/puma/puma/pull/1545 "PR by @hoshinotsuyoshi, merged 2018-03-28"
|
1838
|
+
[#1550]:https://github.com/puma/puma/pull/1550 "PR by @eileencodes, merged 2018-03-29"
|
1839
|
+
[#1553]:https://github.com/puma/puma/pull/1553 "PR by @eugeneius, merged 2018-04-02"
|
1840
|
+
[#1510]:https://github.com/puma/puma/issues/1510 "Issue by @vincentwoo, closed 2018-03-06"
|
1841
|
+
[#1524]:https://github.com/puma/puma/pull/1524 "PR by @tuwukee, closed 2018-03-06"
|
1842
|
+
[#1507]:https://github.com/puma/puma/issues/1507 "Issue by @vincentwoo, closed 2018-03-19"
|
1843
|
+
[#1483]:https://github.com/puma/puma/issues/1483 "Issue by @igravious, closed 2018-03-06"
|
1844
|
+
[#1502]:https://github.com/puma/puma/issues/1502 "Issue by @vincentwoo, closed 2020-03-09"
|
1845
|
+
[#1403]:https://github.com/puma/puma/pull/1403 "PR by @eileencodes, merged 2017-10-04"
|
1846
|
+
[#1435]:https://github.com/puma/puma/pull/1435 "PR by @juliancheal, merged 2017-10-11"
|
1847
|
+
[#1340]:https://github.com/puma/puma/pull/1340 "PR by @ViliusLuneckas, merged 2017-10-16"
|
1848
|
+
[#1434]:https://github.com/puma/puma/pull/1434 "PR by @jumbosushi, merged 2017-10-10"
|
1849
|
+
[#1436]:https://github.com/puma/puma/pull/1436 "PR by @luislavena, merged 2017-10-11"
|
1850
|
+
[#1418]:https://github.com/puma/puma/pull/1418 "PR by @eileencodes, merged 2017-09-22"
|
1851
|
+
[#1416]:https://github.com/puma/puma/pull/1416 "PR by @hiimtaylorjones, merged 2017-09-22"
|
1852
|
+
[#1409]:https://github.com/puma/puma/pull/1409 "PR by @olleolleolle, merged 2017-09-13"
|
1853
|
+
[#1427]:https://github.com/puma/puma/issues/1427 "Issue by @garybernhardt, closed 2017-10-04"
|
1854
|
+
[#1430]:https://github.com/puma/puma/pull/1430 "PR by @MSP-Greg, merged 2017-10-09"
|
1855
|
+
[#1429]:https://github.com/puma/puma/pull/1429 "PR by @perlun, merged 2017-10-09"
|
1856
|
+
[#1455]:https://github.com/puma/puma/pull/1455 "PR by @perlun, merged 2017-11-16"
|
1857
|
+
[#1425]:https://github.com/puma/puma/pull/1425 "PR by @vizcay, merged 2017-10-01"
|
1858
|
+
[#1452]:https://github.com/puma/puma/pull/1452 "PR by @eprothro, merged 2017-11-16"
|
1859
|
+
[#1439]:https://github.com/puma/puma/pull/1439 "PR by @MSP-Greg, merged 2017-10-16"
|
1860
|
+
[#1442]:https://github.com/puma/puma/pull/1442 "PR by @MSP-Greg, merged 2017-10-19"
|
1861
|
+
[#1464]:https://github.com/puma/puma/pull/1464 "PR by @MSP-Greg, merged 2017-11-20"
|
1862
|
+
[#1384]:https://github.com/puma/puma/pull/1384 "PR by @noahgibbs, merged 2017-08-03"
|
1863
|
+
[#1111]:https://github.com/puma/puma/pull/1111 "PR by @alexlance, merged 2017-06-04"
|
1864
|
+
[#1392]:https://github.com/puma/puma/pull/1392 "PR by @hoffm, merged 2017-08-11"
|
1865
|
+
[#1347]:https://github.com/puma/puma/pull/1347 "PR by @NikolayRys, merged 2017-06-28"
|
1866
|
+
[#1334]:https://github.com/puma/puma/pull/1334 "PR by @respire, merged 2017-06-13"
|
1867
|
+
[#1383]:https://github.com/puma/puma/pull/1383 "PR by @schneems, merged 2017-08-02"
|
1868
|
+
[#1368]:https://github.com/puma/puma/pull/1368 "PR by @bongole, merged 2017-08-03"
|
1869
|
+
[#1318]:https://github.com/puma/puma/pull/1318 "PR by @nateberkopec, merged 2017-08-03"
|
1870
|
+
[#1376]:https://github.com/puma/puma/pull/1376 "PR by @pat, merged 2017-08-03"
|
1871
|
+
[#1388]:https://github.com/puma/puma/pull/1388 "PR by @nateberkopec, merged 2017-08-08"
|
1872
|
+
[#1390]:https://github.com/puma/puma/pull/1390 "PR by @junaruga, merged 2017-08-16"
|
1873
|
+
[#1391]:https://github.com/puma/puma/pull/1391 "PR by @junaruga, merged 2017-08-16"
|
1874
|
+
[#1385]:https://github.com/puma/puma/pull/1385 "PR by @grosser, merged 2017-08-16"
|
1875
|
+
[#1377]:https://github.com/puma/puma/pull/1377 "PR by @shayonj, merged 2017-08-16"
|
1876
|
+
[#1337]:https://github.com/puma/puma/pull/1337 "PR by @shayonj, merged 2017-08-16"
|
1877
|
+
[#1325]:https://github.com/puma/puma/pull/1325 "PR by @palkan, merged 2017-06-04"
|
1878
|
+
[#1395]:https://github.com/puma/puma/pull/1395 "PR by @junaruga, merged 2017-08-16"
|
1879
|
+
[#1367]:https://github.com/puma/puma/issues/1367 "Issue by @dekellum, closed 2017-08-17"
|
1880
|
+
[#1314]:https://github.com/puma/puma/pull/1314 "PR by @grosser, merged 2017-06-02"
|
1881
|
+
[#1311]:https://github.com/puma/puma/pull/1311 "PR by @grosser, merged 2017-06-02"
|
1882
|
+
[#1313]:https://github.com/puma/puma/pull/1313 "PR by @grosser, merged 2017-06-03"
|
1883
|
+
[#1260]:https://github.com/puma/puma/pull/1260 "PR by @grosser, merged 2017-04-11"
|
1884
|
+
[#1278]:https://github.com/puma/puma/pull/1278 "PR by @evanphx, merged 2017-04-28"
|
1885
|
+
[#1306]:https://github.com/puma/puma/pull/1306 "PR by @jules2689, merged 2017-05-31"
|
1886
|
+
[#1274]:https://github.com/puma/puma/pull/1274 "PR by @evanphx, merged 2017-05-01"
|
1887
|
+
[#1261]:https://github.com/puma/puma/pull/1261 "PR by @jacksonrayhamilton, merged 2017-04-07"
|
1888
|
+
[#1259]:https://github.com/puma/puma/pull/1259 "PR by @jacksonrayhamilton, merged 2017-04-07"
|
1889
|
+
[#1248]:https://github.com/puma/puma/pull/1248 "PR by @davidarnold, merged 2017-04-18"
|
1890
|
+
[#1277]:https://github.com/puma/puma/pull/1277 "PR by @schneems, merged 2017-05-01"
|
1891
|
+
[#1290]:https://github.com/puma/puma/pull/1290 "PR by @schneems, merged 2017-05-12"
|
1892
|
+
[#1285]:https://github.com/puma/puma/pull/1285 "PR by @fmauNeko, merged 2017-05-12"
|
1893
|
+
[#1282]:https://github.com/puma/puma/pull/1282 "PR by @grosser, merged 2017-05-09"
|
1894
|
+
[#1294]:https://github.com/puma/puma/pull/1294 "PR by @masry707, merged 2017-05-15"
|
1895
|
+
[#1206]:https://github.com/puma/puma/pull/1206 "PR by @NikolayRys, closed 2017-06-27"
|
1896
|
+
[#1241]:https://github.com/puma/puma/issues/1241 "Issue by @renchap, closed 2017-03-14"
|
1897
|
+
[#1239]:https://github.com/puma/puma/pull/1239 "PR by @schneems, merged 2017-03-10"
|
1898
|
+
[#1234]:https://github.com/puma/puma/pull/1234 "PR by @schneems, merged 2017-03-09"
|
1899
|
+
[#1226]:https://github.com/puma/puma/pull/1226 "PR by @eileencodes, merged 2017-03-09"
|
1900
|
+
[#1227]:https://github.com/puma/puma/pull/1227 "PR by @sirupsen, merged 2017-02-27"
|
1901
|
+
[#1213]:https://github.com/puma/puma/pull/1213 "PR by @junaruga, merged 2017-02-28"
|
1902
|
+
[#1182]:https://github.com/puma/puma/issues/1182 "Issue by @brunowego, closed 2017-02-09"
|
1903
|
+
[#1203]:https://github.com/puma/puma/pull/1203 "PR by @twalpole, merged 2017-02-09"
|
1904
|
+
[#1129]:https://github.com/puma/puma/pull/1129 "PR by @chtitux, merged 2016-12-12"
|
1905
|
+
[#1165]:https://github.com/puma/puma/pull/1165 "PR by @sriedel, merged 2016-12-21"
|
1906
|
+
[#1175]:https://github.com/puma/puma/pull/1175 "PR by @jemiam, merged 2016-12-21"
|
1907
|
+
[#1068]:https://github.com/puma/puma/pull/1068 "PR by @junaruga, merged 2016-09-05"
|
1908
|
+
[#1091]:https://github.com/puma/puma/pull/1091 "PR by @frodsan, merged 2016-09-17"
|
1909
|
+
[#1088]:https://github.com/puma/puma/pull/1088 "PR by @frodsan, merged 2016-11-20"
|
1910
|
+
[#1160]:https://github.com/puma/puma/pull/1160 "PR by @frodsan, merged 2016-11-24"
|
1911
|
+
[#1169]:https://github.com/puma/puma/pull/1169 "PR by @scbrubaker02, merged 2016-12-12"
|
1912
|
+
[#1061]:https://github.com/puma/puma/pull/1061 "PR by @michaelsauter, merged 2016-09-05"
|
1913
|
+
[#1036]:https://github.com/puma/puma/issues/1036 "Issue by @matobinder, closed 2016-08-03"
|
1914
|
+
[#1120]:https://github.com/puma/puma/pull/1120 "PR by @prathamesh-sonpatki, merged 2016-11-21"
|
1915
|
+
[#1178]:https://github.com/puma/puma/pull/1178 "PR by @Koronen, merged 2016-12-21"
|
1916
|
+
[#1002]:https://github.com/puma/puma/issues/1002 "Issue by @mattyb, closed 2016-07-26"
|
1917
|
+
[#1063]:https://github.com/puma/puma/issues/1063 "Issue by @mperham, closed 2016-09-05"
|
1918
|
+
[#1089]:https://github.com/puma/puma/issues/1089 "Issue by @AdamBialas, closed 2016-09-17"
|
1919
|
+
[#1114]:https://github.com/puma/puma/pull/1114 "PR by @sj26, merged 2016-12-13"
|
1920
|
+
[#1110]:https://github.com/puma/puma/pull/1110 "PR by @montdidier, merged 2016-12-12"
|
1921
|
+
[#1135]:https://github.com/puma/puma/pull/1135 "PR by @jkraemer, merged 2016-11-19"
|
1922
|
+
[#1081]:https://github.com/puma/puma/pull/1081 "PR by @frodsan, merged 2016-09-08"
|
1923
|
+
[#1138]:https://github.com/puma/puma/pull/1138 "PR by @steakknife, merged 2016-12-13"
|
1924
|
+
[#1118]:https://github.com/puma/puma/pull/1118 "PR by @hiroara, merged 2016-11-20"
|
1925
|
+
[#1075]:https://github.com/puma/puma/issues/1075 "Issue by @pvalena, closed 2016-09-06"
|
1926
|
+
[#1118]:https://github.com/puma/puma/pull/1118 "PR by @hiroara, merged 2016-11-20"
|
1927
|
+
[#1036]:https://github.com/puma/puma/issues/1036 "Issue by @matobinder, closed 2016-08-03"
|
1928
|
+
[#1120]:https://github.com/puma/puma/pull/1120 "PR by @prathamesh-sonpatki, merged 2016-11-21"
|
1929
|
+
[#1002]:https://github.com/puma/puma/issues/1002 "Issue by @mattyb, closed 2016-07-26"
|
1930
|
+
[#1089]:https://github.com/puma/puma/issues/1089 "Issue by @AdamBialas, closed 2016-09-17"
|
1931
|
+
[#932]:https://github.com/puma/puma/issues/932 "Issue by @everplays, closed 2016-07-24"
|
1932
|
+
[#519]:https://github.com/puma/puma/issues/519 "Issue by @tmornini, closed 2016-07-25"
|
1933
|
+
[#828]:https://github.com/puma/puma/issues/828 "Issue by @Zapotek, closed 2016-07-24"
|
1934
|
+
[#984]:https://github.com/puma/puma/issues/984 "Issue by @erichmenge, closed 2016-07-24"
|
1935
|
+
[#1028]:https://github.com/puma/puma/issues/1028 "Issue by @matobinder, closed 2016-07-24"
|
1936
|
+
[#1023]:https://github.com/puma/puma/issues/1023 "Issue by @fera2k, closed 2016-07-24"
|
1937
|
+
[#1027]:https://github.com/puma/puma/issues/1027 "Issue by @rosenfeld, closed 2016-07-24"
|
1938
|
+
[#925]:https://github.com/puma/puma/issues/925 "Issue by @lokenmakwana, closed 2016-07-24"
|
1939
|
+
[#911]:https://github.com/puma/puma/issues/911 "Issue by @veganstraightedge, closed 2016-07-24"
|
1940
|
+
[#620]:https://github.com/puma/puma/issues/620 "Issue by @javanthropus, closed 2016-07-25"
|
1941
|
+
[#1027]:https://github.com/puma/puma/issues/1027 "Issue by @rosenfeld, closed 2016-07-24"
|
1942
|
+
[#778]:https://github.com/puma/puma/issues/778 "Issue by @niedhui, closed 2016-07-24"
|
1943
|
+
[#1021]:https://github.com/puma/puma/pull/1021 "PR by @sarahzrf, merged 2016-07-20"
|
1944
|
+
[#1022]:https://github.com/puma/puma/issues/1022 "Issue by @AKovtunov, closed 2017-08-16"
|
1945
|
+
[#958]:https://github.com/puma/puma/issues/958 "Issue by @lalitlogical, closed 2016-04-23"
|
1946
|
+
[#782]:https://github.com/puma/puma/issues/782 "Issue by @Tonkpils, closed 2016-07-19"
|
1947
|
+
[#1010]:https://github.com/puma/puma/issues/1010 "Issue by @mneumark, closed 2016-07-19"
|
1948
|
+
[#959]:https://github.com/puma/puma/issues/959 "Issue by @mwpastore, closed 2016-04-22"
|
1949
|
+
[#840]:https://github.com/puma/puma/issues/840 "Issue by @maxkwallace, closed 2016-04-07"
|
1950
|
+
[#1007]:https://github.com/puma/puma/pull/1007 "PR by @willnet, merged 2016-06-24"
|
1951
|
+
[#1014]:https://github.com/puma/puma/pull/1014 "PR by @szymon-jez, merged 2016-07-11"
|
1952
|
+
[#1015]:https://github.com/puma/puma/pull/1015 "PR by @bf4, merged 2016-07-19"
|
1953
|
+
[#1017]:https://github.com/puma/puma/pull/1017 "PR by @jorihardman, merged 2016-07-19"
|
1954
|
+
[#954]:https://github.com/puma/puma/pull/954 "PR by @jf, merged 2016-04-12"
|
1955
|
+
[#955]:https://github.com/puma/puma/pull/955 "PR by @jf, merged 2016-04-22"
|
1956
|
+
[#956]:https://github.com/puma/puma/pull/956 "PR by @maxkwallace, merged 2016-04-12"
|
1957
|
+
[#960]:https://github.com/puma/puma/pull/960 "PR by @kmayer, merged 2016-04-15"
|
1958
|
+
[#969]:https://github.com/puma/puma/pull/969 "PR by @frankwong15, merged 2016-05-10"
|
1959
|
+
[#970]:https://github.com/puma/puma/pull/970 "PR by @willnet, merged 2016-04-26"
|
1960
|
+
[#974]:https://github.com/puma/puma/pull/974 "PR by @reidmorrison, merged 2016-05-10"
|
1961
|
+
[#977]:https://github.com/puma/puma/pull/977 "PR by @snow, merged 2016-05-10"
|
1962
|
+
[#981]:https://github.com/puma/puma/pull/981 "PR by @zach-chai, merged 2016-07-19"
|
1963
|
+
[#993]:https://github.com/puma/puma/pull/993 "PR by @scorix, merged 2016-07-19"
|
1964
|
+
[#938]:https://github.com/puma/puma/issues/938 "Issue by @vandrijevik, closed 2016-04-07"
|
1965
|
+
[#529]:https://github.com/puma/puma/issues/529 "Issue by @mperham, closed 2016-04-07"
|
1966
|
+
[#788]:https://github.com/puma/puma/issues/788 "Issue by @herregroen, closed 2016-04-07"
|
1967
|
+
[#894]:https://github.com/puma/puma/issues/894 "Issue by @rafbm, closed 2016-04-07"
|
1968
|
+
[#937]:https://github.com/puma/puma/issues/937 "Issue by @huangxiangdan, closed 2016-04-07"
|
1969
|
+
[#840]:https://github.com/puma/puma/issues/840 "Issue by @maxkwallace, closed 2016-04-07"
|
1970
|
+
[#945]:https://github.com/puma/puma/pull/945 "PR by @dekellum, merged 2016-04-07"
|
1971
|
+
[#946]:https://github.com/puma/puma/pull/946 "PR by @vipulnsward, merged 2016-04-07"
|
1972
|
+
[#947]:https://github.com/puma/puma/pull/947 "PR by @vipulnsward, merged 2016-04-07"
|
1973
|
+
[#936]:https://github.com/puma/puma/pull/936 "PR by @prathamesh-sonpatki, merged 2016-04-01"
|
1974
|
+
[#940]:https://github.com/puma/puma/pull/940 "PR by @kyledrake, merged 2016-04-01"
|
1975
|
+
[#942]:https://github.com/puma/puma/pull/942 "PR by @dekellum, merged 2016-04-01"
|
1976
|
+
[#927]:https://github.com/puma/puma/pull/927 "PR by @jlecour, merged 2016-03-18"
|
1977
|
+
[#931]:https://github.com/puma/puma/pull/931 "PR by @runlevel5, merged 2016-03-18"
|
1978
|
+
[#922]:https://github.com/puma/puma/issues/922 "Issue by @LavirtheWhiolet, closed 2016-03-07"
|
1979
|
+
[#923]:https://github.com/puma/puma/issues/923 "Issue by @donv, closed 2016-03-06"
|
1980
|
+
[#912]:https://github.com/puma/puma/pull/912 "PR by @tricknotes, merged 2016-03-06"
|
1981
|
+
[#921]:https://github.com/puma/puma/pull/921 "PR by @swrobel, merged 2016-03-06"
|
1982
|
+
[#924]:https://github.com/puma/puma/pull/924 "PR by @tbrisker, merged 2016-03-07"
|
1983
|
+
[#916]:https://github.com/puma/puma/issues/916 "Issue by @ma11hew28, closed 2016-03-06"
|
1984
|
+
[#913]:https://github.com/puma/puma/issues/913 "Issue by @Casara, closed 2016-03-06"
|
1985
|
+
[#918]:https://github.com/puma/puma/issues/918 "Issue by @rodrigdav, closed 2016-03-06"
|
1986
|
+
[#910]:https://github.com/puma/puma/issues/910 "Issue by @ball-hayden, closed 2016-03-05"
|
1987
|
+
[#914]:https://github.com/puma/puma/issues/914 "Issue by @osheroff, closed 2016-03-06"
|
1988
|
+
[#901]:https://github.com/puma/puma/pull/901 "PR by @mitto, merged 2016-02-26"
|
1989
|
+
[#902]:https://github.com/puma/puma/pull/902 "PR by @corrupt952, merged 2016-02-26"
|
1990
|
+
[#905]:https://github.com/puma/puma/pull/905 "PR by @Eric-Guo, merged 2016-02-26"
|
1991
|
+
[#852]:https://github.com/puma/puma/issues/852 "Issue by @asia653, closed 2016-02-25"
|
1992
|
+
[#854]:https://github.com/puma/puma/issues/854 "Issue by @ollym, closed 2016-02-25"
|
1993
|
+
[#824]:https://github.com/puma/puma/issues/824 "Issue by @MattWalston, closed 2016-02-25"
|
1994
|
+
[#823]:https://github.com/puma/puma/issues/823 "Issue by @pneuman, closed 2016-02-25"
|
1995
|
+
[#815]:https://github.com/puma/puma/issues/815 "Issue by @nate-dipiazza, closed 2016-02-25"
|
1996
|
+
[#835]:https://github.com/puma/puma/issues/835 "Issue by @mwpastore, closed 2016-02-25"
|
1997
|
+
[#798]:https://github.com/puma/puma/issues/798 "Issue by @schneems, closed 2016-02-25"
|
1998
|
+
[#876]:https://github.com/puma/puma/issues/876 "Issue by @osheroff, closed 2016-02-25"
|
1999
|
+
[#849]:https://github.com/puma/puma/issues/849 "Issue by @apotheon, closed 2016-02-25"
|
2000
|
+
[#871]:https://github.com/puma/puma/pull/871 "PR by @deepj, merged 2016-02-25"
|
2001
|
+
[#874]:https://github.com/puma/puma/pull/874 "PR by @wallclockbuilder, merged 2016-02-25"
|
2002
|
+
[#883]:https://github.com/puma/puma/pull/883 "PR by @dadah89, merged 2016-02-25"
|
2003
|
+
[#884]:https://github.com/puma/puma/pull/884 "PR by @furkanmustafa, merged 2016-02-25"
|
2004
|
+
[#888]:https://github.com/puma/puma/pull/888 "PR by @mlarraz, merged 2016-02-25"
|
2005
|
+
[#890]:https://github.com/puma/puma/pull/890 "PR by @todd, merged 2016-02-25"
|
2006
|
+
[#891]:https://github.com/puma/puma/pull/891 "PR by @ctaintor, merged 2016-02-25"
|
2007
|
+
[#893]:https://github.com/puma/puma/pull/893 "PR by @spastorino, merged 2016-02-25"
|
2008
|
+
[#897]:https://github.com/puma/puma/pull/897 "PR by @vanchi-zendesk, merged 2016-02-25"
|
2009
|
+
[#899]:https://github.com/puma/puma/pull/899 "PR by @kch, merged 2016-02-25"
|
2010
|
+
[#859]:https://github.com/puma/puma/issues/859 "Issue by @boxofrad, closed 2016-01-28"
|
2011
|
+
[#822]:https://github.com/puma/puma/pull/822 "PR by @kwugirl, merged 2016-01-28"
|
2012
|
+
[#833]:https://github.com/puma/puma/pull/833 "PR by @joemiller, merged 2016-01-28"
|
2013
|
+
[#837]:https://github.com/puma/puma/pull/837 "PR by @YurySolovyov, merged 2016-01-28"
|
2014
|
+
[#839]:https://github.com/puma/puma/pull/839 "PR by @ka8725, merged 2016-01-15"
|
2015
|
+
[#845]:https://github.com/puma/puma/pull/845 "PR by @deepj, merged 2016-01-28"
|
2016
|
+
[#846]:https://github.com/puma/puma/pull/846 "PR by @sriedel, merged 2016-01-15"
|
2017
|
+
[#850]:https://github.com/puma/puma/pull/850 "PR by @deepj, merged 2016-01-15"
|
2018
|
+
[#853]:https://github.com/puma/puma/pull/853 "PR by @Jeffrey6052, merged 2016-01-28"
|
2019
|
+
[#857]:https://github.com/puma/puma/pull/857 "PR by @osheroff, merged 2016-01-15"
|
2020
|
+
[#858]:https://github.com/puma/puma/pull/858 "PR by @mlarraz, merged 2016-01-28"
|
2021
|
+
[#860]:https://github.com/puma/puma/pull/860 "PR by @osheroff, merged 2016-01-15"
|
2022
|
+
[#861]:https://github.com/puma/puma/pull/861 "PR by @osheroff, merged 2016-01-15"
|
2023
|
+
[#818]:https://github.com/puma/puma/pull/818 "PR by @unleashed, merged 2015-11-06"
|
2024
|
+
[#819]:https://github.com/puma/puma/pull/819 "PR by @VictorLowther, merged 2015-11-06"
|
2025
|
+
[#563]:https://github.com/puma/puma/issues/563 "Issue by @deathbob, closed 2015-11-06"
|
2026
|
+
[#803]:https://github.com/puma/puma/issues/803 "Issue by @burningTyger, closed 2016-04-07"
|
2027
|
+
[#768]:https://github.com/puma/puma/pull/768 "PR by @nathansamson, merged 2015-11-06"
|
2028
|
+
[#773]:https://github.com/puma/puma/pull/773 "PR by @rossta, merged 2015-11-06"
|
2029
|
+
[#774]:https://github.com/puma/puma/pull/774 "PR by @snow, merged 2015-11-06"
|
2030
|
+
[#781]:https://github.com/puma/puma/pull/781 "PR by @sunsations, merged 2015-11-06"
|
2031
|
+
[#791]:https://github.com/puma/puma/pull/791 "PR by @unleashed, merged 2015-10-01"
|
2032
|
+
[#793]:https://github.com/puma/puma/pull/793 "PR by @robdimarco, merged 2015-11-06"
|
2033
|
+
[#794]:https://github.com/puma/puma/pull/794 "PR by @peterkeen, merged 2015-11-06"
|
2034
|
+
[#795]:https://github.com/puma/puma/pull/795 "PR by @unleashed, merged 2015-11-06"
|
2035
|
+
[#796]:https://github.com/puma/puma/pull/796 "PR by @cschneid, merged 2015-10-13"
|
2036
|
+
[#799]:https://github.com/puma/puma/pull/799 "PR by @annawinkler, merged 2015-11-06"
|
2037
|
+
[#800]:https://github.com/puma/puma/pull/800 "PR by @liamseanbrady, merged 2015-11-06"
|
2038
|
+
[#801]:https://github.com/puma/puma/pull/801 "PR by @scottjg, merged 2015-11-06"
|
2039
|
+
[#802]:https://github.com/puma/puma/pull/802 "PR by @scottjg, merged 2015-11-06"
|
2040
|
+
[#804]:https://github.com/puma/puma/pull/804 "PR by @burningTyger, merged 2015-11-06"
|
2041
|
+
[#809]:https://github.com/puma/puma/pull/809 "PR by @unleashed, merged 2015-11-06"
|
2042
|
+
[#810]:https://github.com/puma/puma/pull/810 "PR by @vlmonk, merged 2015-11-06"
|
2043
|
+
[#814]:https://github.com/puma/puma/pull/814 "PR by @schneems, merged 2015-11-04"
|
2044
|
+
[#817]:https://github.com/puma/puma/pull/817 "PR by @unleashed, merged 2015-11-06"
|
2045
|
+
[#735]:https://github.com/puma/puma/issues/735 "Issue by @trekr5, closed 2015-08-04"
|
2046
|
+
[#769]:https://github.com/puma/puma/issues/769 "Issue by @dovestyle, closed 2015-08-16"
|
2047
|
+
[#767]:https://github.com/puma/puma/issues/767 "Issue by @kapso, closed 2015-08-15"
|
2048
|
+
[#765]:https://github.com/puma/puma/issues/765 "Issue by @monfresh, closed 2015-08-15"
|
2049
|
+
[#764]:https://github.com/puma/puma/issues/764 "Issue by @keithpitt, closed 2015-08-15"
|
2050
|
+
[#669]:https://github.com/puma/puma/pull/669 "PR by @chulkilee, closed 2015-08-14"
|
2051
|
+
[#673]:https://github.com/puma/puma/pull/673 "PR by @chulkilee, closed 2015-08-14"
|
2052
|
+
[#668]:https://github.com/puma/puma/pull/668 "PR by @kcollignon, merged 2015-08-14"
|
2053
|
+
[#754]:https://github.com/puma/puma/pull/754 "PR by @nathansamson, merged 2015-08-14"
|
2054
|
+
[#759]:https://github.com/puma/puma/pull/759 "PR by @BenV, merged 2015-08-14"
|
2055
|
+
[#761]:https://github.com/puma/puma/pull/761 "PR by @dmarcotte, merged 2015-08-14"
|
2056
|
+
[#742]:https://github.com/puma/puma/pull/742 "PR by @deivid-rodriguez, merged 2015-07-17"
|
2057
|
+
[#743]:https://github.com/puma/puma/pull/743 "PR by @matthewd, merged 2015-07-18"
|
2058
|
+
[#749]:https://github.com/puma/puma/pull/749 "PR by @huacnlee, merged 2015-08-04"
|
2059
|
+
[#751]:https://github.com/puma/puma/pull/751 "PR by @costi, merged 2015-07-31"
|
2060
|
+
[#741]:https://github.com/puma/puma/issues/741 "Issue by @GUI, closed 2015-07-17"
|
2061
|
+
[#739]:https://github.com/puma/puma/issues/739 "Issue by @hab278, closed 2015-07-17"
|
2062
|
+
[#737]:https://github.com/puma/puma/issues/737 "Issue by @dmill, closed 2015-07-16"
|
2063
|
+
[#733]:https://github.com/puma/puma/issues/733 "Issue by @Eric-Guo, closed 2015-07-15"
|
2064
|
+
[#736]:https://github.com/puma/puma/pull/736 "PR by @paulanunda, merged 2015-07-15"
|
2065
|
+
[#722]:https://github.com/puma/puma/issues/722 "Issue by @mikeki, closed 2015-07-14"
|
2066
|
+
[#694]:https://github.com/puma/puma/issues/694 "Issue by @yld, closed 2015-06-10"
|
2067
|
+
[#705]:https://github.com/puma/puma/issues/705 "Issue by @TheTeaNerd, closed 2015-07-14"
|
2068
|
+
[#686]:https://github.com/puma/puma/pull/686 "PR by @jjb, merged 2015-06-10"
|
2069
|
+
[#693]:https://github.com/puma/puma/pull/693 "PR by @rob-murray, merged 2015-06-10"
|
2070
|
+
[#697]:https://github.com/puma/puma/pull/697 "PR by @spk, merged 2015-06-10"
|
2071
|
+
[#699]:https://github.com/puma/puma/pull/699 "PR by @deees, merged 2015-05-19"
|
2072
|
+
[#701]:https://github.com/puma/puma/pull/701 "PR by @deepj, merged 2015-05-19"
|
2073
|
+
[#702]:https://github.com/puma/puma/pull/702 "PR by @OleMchls, merged 2015-06-10"
|
2074
|
+
[#703]:https://github.com/puma/puma/pull/703 "PR by @deepj, merged 2015-06-10"
|
2075
|
+
[#704]:https://github.com/puma/puma/pull/704 "PR by @grega, merged 2015-06-10"
|
2076
|
+
[#709]:https://github.com/puma/puma/pull/709 "PR by @lian, merged 2015-06-10"
|
2077
|
+
[#711]:https://github.com/puma/puma/pull/711 "PR by @julik, merged 2015-06-10"
|
2078
|
+
[#712]:https://github.com/puma/puma/pull/712 "PR by @chewi, merged 2015-07-14"
|
2079
|
+
[#715]:https://github.com/puma/puma/pull/715 "PR by @0RaymondJiang0, merged 2015-07-14"
|
2080
|
+
[#725]:https://github.com/puma/puma/pull/725 "PR by @rwz, merged 2015-07-14"
|
2081
|
+
[#726]:https://github.com/puma/puma/pull/726 "PR by @jshafton, merged 2015-07-14"
|
2082
|
+
[#729]:https://github.com/puma/puma/pull/729 "PR by @allaire, merged 2015-07-14"
|
2083
|
+
[#730]:https://github.com/puma/puma/pull/730 "PR by @iamjarvo, merged 2015-07-14"
|
2084
|
+
[#690]:https://github.com/puma/puma/issues/690 "Issue by @bachue, closed 2015-04-21"
|
2085
|
+
[#684]:https://github.com/puma/puma/issues/684 "Issue by @tomquas, closed 2015-04-13"
|
2086
|
+
[#698]:https://github.com/puma/puma/pull/698 "PR by @dmarcotte, merged 2015-05-04"
|
2087
|
+
[#683]:https://github.com/puma/puma/issues/683 "Issue by @indirect, closed 2015-04-11"
|
2088
|
+
[#657]:https://github.com/puma/puma/pull/657 "PR by @schneems, merged 2015-02-19"
|
2089
|
+
[#658]:https://github.com/puma/puma/pull/658 "PR by @tomohiro, merged 2015-02-23"
|
2090
|
+
[#662]:https://github.com/puma/puma/pull/662 "PR by @iaintshine, merged 2015-03-06"
|
2091
|
+
[#664]:https://github.com/puma/puma/pull/664 "PR by @fxposter, merged 2015-03-09"
|
2092
|
+
[#667]:https://github.com/puma/puma/pull/667 "PR by @JuanitoFatas, merged 2015-03-12"
|
2093
|
+
[#672]:https://github.com/puma/puma/pull/672 "PR by @chulkilee, merged 2015-03-15"
|
2094
|
+
[#653]:https://github.com/puma/puma/issues/653 "Issue by @dvrensk, closed 2015-02-11"
|
2095
|
+
[#644]:https://github.com/puma/puma/pull/644 "PR by @bpaquet, merged 2015-01-29"
|
2096
|
+
[#646]:https://github.com/puma/puma/pull/646 "PR by @mkonecny, merged 2015-02-05"
|
2097
|
+
[#630]:https://github.com/puma/puma/issues/630 "Issue by @jelmd, closed 2015-01-20"
|
2098
|
+
[#622]:https://github.com/puma/puma/issues/622 "Issue by @sabamotto, closed 2015-01-20"
|
2099
|
+
[#583]:https://github.com/puma/puma/issues/583 "Issue by @emq, closed 2015-01-20"
|
2100
|
+
[#586]:https://github.com/puma/puma/issues/586 "Issue by @ponchik, closed 2015-01-20"
|
2101
|
+
[#359]:https://github.com/puma/puma/issues/359 "Issue by @natew, closed 2014-12-13"
|
2102
|
+
[#633]:https://github.com/puma/puma/issues/633 "Issue by @joevandyk, closed 2015-01-20"
|
2103
|
+
[#478]:https://github.com/puma/puma/pull/478 "PR by @rubencaro, merged 2015-01-20"
|
2104
|
+
[#610]:https://github.com/puma/puma/pull/610 "PR by @kwilczynski, merged 2014-11-27"
|
2105
|
+
[#611]:https://github.com/puma/puma/pull/611 "PR by @jasonl, merged 2015-01-20"
|
2106
|
+
[#616]:https://github.com/puma/puma/pull/616 "PR by @jc00ke, merged 2014-12-10"
|
2107
|
+
[#623]:https://github.com/puma/puma/pull/623 "PR by @raldred, merged 2015-01-20"
|
2108
|
+
[#628]:https://github.com/puma/puma/pull/628 "PR by @rdpoor, merged 2015-01-20"
|
2109
|
+
[#634]:https://github.com/puma/puma/pull/634 "PR by @deepj, merged 2015-01-20"
|
2110
|
+
[#637]:https://github.com/puma/puma/pull/637 "PR by @raskhadafi, merged 2015-01-20"
|
2111
|
+
[#639]:https://github.com/puma/puma/pull/639 "PR by @ebeigarts, merged 2015-01-20"
|
2112
|
+
[#640]:https://github.com/puma/puma/pull/640 "PR by @bailsman, merged 2015-01-20"
|
2113
|
+
[#591]:https://github.com/puma/puma/issues/591 "Issue by @renier, closed 2014-11-24"
|
2114
|
+
[#606]:https://github.com/puma/puma/issues/606 "Issue by @, closed 2014-11-24"
|
2115
|
+
[#560]:https://github.com/puma/puma/pull/560 "PR by @raskhadafi, merged 2014-11-24"
|
2116
|
+
[#566]:https://github.com/puma/puma/pull/566 "PR by @sheltond, merged 2014-11-24"
|
2117
|
+
[#593]:https://github.com/puma/puma/pull/593 "PR by @andruby, merged 2014-10-30"
|
2118
|
+
[#594]:https://github.com/puma/puma/pull/594 "PR by @hassox, merged 2014-10-31"
|
2119
|
+
[#596]:https://github.com/puma/puma/pull/596 "PR by @burningTyger, merged 2014-11-01"
|
2120
|
+
[#601]:https://github.com/puma/puma/pull/601 "PR by @sorentwo, merged 2014-11-24"
|
2121
|
+
[#602]:https://github.com/puma/puma/pull/602 "PR by @1334, merged 2014-11-24"
|
2122
|
+
[#608]:https://github.com/puma/puma/pull/608 "PR by @Gu1, merged 2014-11-24"
|
2123
|
+
[#538]:https://github.com/puma/puma/pull/538 "PR by @memiux, merged 2014-11-24"
|
2124
|
+
[#550]:https://github.com/puma/puma/issues/550 "Issue by @, closed 2014-10-30"
|
2125
|
+
[#549]:https://github.com/puma/puma/pull/549 "PR by @bsnape, merged 2014-10-16"
|
2126
|
+
[#553]:https://github.com/puma/puma/pull/553 "PR by @lowjoel, merged 2014-10-16"
|
2127
|
+
[#568]:https://github.com/puma/puma/pull/568 "PR by @mariuz, merged 2014-10-16"
|
2128
|
+
[#578]:https://github.com/puma/puma/pull/578 "PR by @danielbuechele, merged 2014-10-16"
|
2129
|
+
[#581]:https://github.com/puma/puma/pull/581 "PR by @alexch, merged 2014-10-16"
|
2130
|
+
[#590]:https://github.com/puma/puma/pull/590 "PR by @dmarcotte, merged 2014-10-16"
|
2131
|
+
[#574]:https://github.com/puma/puma/issues/574 "Issue by @minasmart, closed 2014-09-05"
|
2132
|
+
[#561]:https://github.com/puma/puma/pull/561 "PR by @krasnoukhov, merged 2014-08-04"
|
2133
|
+
[#570]:https://github.com/puma/puma/pull/570 "PR by @havenwood, merged 2014-08-20"
|
2134
|
+
[#520]:https://github.com/puma/puma/pull/520 "PR by @misfo, merged 2014-06-16"
|
2135
|
+
[#530]:https://github.com/puma/puma/pull/530 "PR by @dmarcotte, merged 2014-06-16"
|
2136
|
+
[#537]:https://github.com/puma/puma/pull/537 "PR by @vlmonk, merged 2014-06-16"
|
2137
|
+
[#540]:https://github.com/puma/puma/pull/540 "PR by @allaire, merged 2014-05-27"
|
2138
|
+
[#544]:https://github.com/puma/puma/pull/544 "PR by @chulkilee, merged 2014-06-03"
|
2139
|
+
[#551]:https://github.com/puma/puma/pull/551 "PR by @jcxplorer, merged 2014-07-02"
|
2140
|
+
[#487]:https://github.com/puma/puma/pull/487 "PR by @, merged 2014-03-06"
|
2141
|
+
[#492]:https://github.com/puma/puma/pull/492 "PR by @, merged 2014-03-06"
|
2142
|
+
[#493]:https://github.com/puma/puma/pull/493 "PR by @alepore, merged 2014-03-07"
|
2143
|
+
[#503]:https://github.com/puma/puma/pull/503 "PR by @mariuz, merged 2014-04-12"
|
2144
|
+
[#505]:https://github.com/puma/puma/pull/505 "PR by @sammcj, merged 2014-04-12"
|
2145
|
+
[#506]:https://github.com/puma/puma/pull/506 "PR by @dsander, merged 2014-04-12"
|
2146
|
+
[#510]:https://github.com/puma/puma/pull/510 "PR by @momer, merged 2014-04-12"
|
2147
|
+
[#511]:https://github.com/puma/puma/pull/511 "PR by @macool, merged 2014-04-12"
|
2148
|
+
[#514]:https://github.com/puma/puma/pull/514 "PR by @nanaya, merged 2014-04-12"
|
2149
|
+
[#517]:https://github.com/puma/puma/pull/517 "PR by @misfo, merged 2014-04-12"
|
2150
|
+
[#518]:https://github.com/puma/puma/pull/518 "PR by @alxgsv, merged 2014-04-12"
|
2151
|
+
[#471]:https://github.com/puma/puma/pull/471 "PR by @arthurnn, merged 2014-02-28"
|
2152
|
+
[#485]:https://github.com/puma/puma/pull/485 "PR by @runlevel5, merged 2014-03-01"
|
2153
|
+
[#486]:https://github.com/puma/puma/pull/486 "PR by @joshwlewis, merged 2014-03-02"
|
2154
|
+
[#490]:https://github.com/puma/puma/pull/490 "PR by @tobinibot, merged 2014-03-06"
|
2155
|
+
[#491]:https://github.com/puma/puma/pull/491 "PR by @brianknight10, merged 2014-03-06"
|
2156
|
+
[#438]:https://github.com/puma/puma/issues/438 "Issue by @mperham, closed 2014-01-25"
|
2157
|
+
[#333]:https://github.com/puma/puma/issues/333 "Issue by @SamSaffron, closed 2014-01-26"
|
2158
|
+
[#440]:https://github.com/puma/puma/issues/440 "Issue by @sudara, closed 2014-01-25"
|
2159
|
+
[#449]:https://github.com/puma/puma/issues/449 "Issue by @cezarsa, closed 2014-02-04"
|
2160
|
+
[#444]:https://github.com/puma/puma/issues/444 "Issue by @le0pard, closed 2014-01-25"
|
2161
|
+
[#370]:https://github.com/puma/puma/issues/370 "Issue by @pelcasandra, closed 2014-01-26"
|
2162
|
+
[#377]:https://github.com/puma/puma/issues/377 "Issue by @mrbrdo, closed 2014-01-26"
|
2163
|
+
[#406]:https://github.com/puma/puma/issues/406 "Issue by @simonrussell, closed 2014-01-25"
|
2164
|
+
[#425]:https://github.com/puma/puma/issues/425 "Issue by @jhass, closed 2014-01-26"
|
2165
|
+
[#432]:https://github.com/puma/puma/pull/432 "PR by @anatol, closed 2014-01-25"
|
2166
|
+
[#428]:https://github.com/puma/puma/pull/428 "PR by @alexeyfrank, merged 2014-01-25"
|
2167
|
+
[#429]:https://github.com/puma/puma/pull/429 "PR by @namusyaka, merged 2013-12-16"
|
2168
|
+
[#431]:https://github.com/puma/puma/pull/431 "PR by @mrb, merged 2014-01-25"
|
2169
|
+
[#433]:https://github.com/puma/puma/pull/433 "PR by @alepore, merged 2014-02-28"
|
2170
|
+
[#437]:https://github.com/puma/puma/pull/437 "PR by @ibrahima, merged 2014-01-25"
|
2171
|
+
[#446]:https://github.com/puma/puma/pull/446 "PR by @sudara, merged 2014-01-27"
|
2172
|
+
[#451]:https://github.com/puma/puma/pull/451 "PR by @pwiebe, merged 2014-02-04"
|
2173
|
+
[#453]:https://github.com/puma/puma/pull/453 "PR by @joevandyk, merged 2014-02-28"
|
2174
|
+
[#470]:https://github.com/puma/puma/pull/470 "PR by @arthurnn, merged 2014-02-28"
|
2175
|
+
[#472]:https://github.com/puma/puma/pull/472 "PR by @rubencaro, merged 2014-02-21"
|
2176
|
+
[#480]:https://github.com/puma/puma/pull/480 "PR by @jjb, merged 2014-02-26"
|
2177
|
+
[#481]:https://github.com/puma/puma/pull/481 "PR by @schneems, merged 2014-02-25"
|
2178
|
+
[#482]:https://github.com/puma/puma/pull/482 "PR by @prathamesh-sonpatki, merged 2014-02-26"
|
2179
|
+
[#483]:https://github.com/puma/puma/pull/483 "PR by @maxilev, merged 2014-02-26"
|
2180
|
+
[#422]:https://github.com/puma/puma/issues/422 "Issue by @alexandru-calinoiu, closed 2013-12-05"
|
2181
|
+
[#334]:https://github.com/puma/puma/issues/334 "Issue by @srgpqt, closed 2013-07-18"
|
2182
|
+
[#179]:https://github.com/puma/puma/issues/179 "Issue by @betelgeuse, closed 2013-07-18"
|
2183
|
+
[#332]:https://github.com/puma/puma/issues/332 "Issue by @SamSaffron, closed 2013-07-18"
|
2184
|
+
[#317]:https://github.com/puma/puma/issues/317 "Issue by @masterkain, closed 2013-07-11"
|
2185
|
+
[#309]:https://github.com/puma/puma/issues/309 "Issue by @masterkain, closed 2013-07-09"
|
2186
|
+
[#166]:https://github.com/puma/puma/issues/166 "Issue by @emassip, closed 2013-07-06"
|
2187
|
+
[#292]:https://github.com/puma/puma/issues/292 "Issue by @pulse00, closed 2013-07-06"
|
2188
|
+
[#274]:https://github.com/puma/puma/issues/274 "Issue by @mrbrdo, closed 2013-07-06"
|
2189
|
+
[#304]:https://github.com/puma/puma/issues/304 "Issue by @nandosola, closed 2013-07-06"
|
2190
|
+
[#287]:https://github.com/puma/puma/issues/287 "Issue by @runlevel5, closed 2013-07-06"
|
2191
|
+
[#256]:https://github.com/puma/puma/issues/256 "Issue by @rkh, closed 2013-07-01"
|
2192
|
+
[#285]:https://github.com/puma/puma/issues/285 "Issue by @mkwiatkowski, closed 2013-06-20"
|
2193
|
+
[#270]:https://github.com/puma/puma/issues/270 "Issue by @iamroody, closed 2013-06-01"
|
2194
|
+
[#246]:https://github.com/puma/puma/issues/246 "Issue by @amencarini, closed 2013-06-01"
|
2195
|
+
[#278]:https://github.com/puma/puma/issues/278 "Issue by @titanous, closed 2013-06-18"
|
2196
|
+
[#251]:https://github.com/puma/puma/issues/251 "Issue by @cure, closed 2013-06-18"
|
2197
|
+
[#252]:https://github.com/puma/puma/issues/252 "Issue by @vixns, closed 2013-06-01"
|
2198
|
+
[#234]:https://github.com/puma/puma/issues/234 "Issue by @jgarber, closed 2013-04-08"
|
2199
|
+
[#228]:https://github.com/puma/puma/issues/228 "Issue by @joelmats, closed 2013-04-29"
|
2200
|
+
[#192]:https://github.com/puma/puma/issues/192 "Issue by @steverandy, closed 2013-02-09"
|
2201
|
+
[#206]:https://github.com/puma/puma/issues/206 "Issue by @moll, closed 2013-03-19"
|
2202
|
+
[#154]:https://github.com/puma/puma/issues/154 "Issue by @trevor, closed 2013-03-19"
|
2203
|
+
[#208]:https://github.com/puma/puma/issues/208 "Issue by @ochronus, closed 2013-03-18"
|
2204
|
+
[#189]:https://github.com/puma/puma/issues/189 "Issue by @tolot27, closed 2013-02-09"
|
2205
|
+
[#185]:https://github.com/puma/puma/issues/185 "Issue by @nicolai86, closed 2013-02-06"
|
2206
|
+
[#182]:https://github.com/puma/puma/issues/182 "Issue by @sriedel, closed 2013-02-05"
|
2207
|
+
[#183]:https://github.com/puma/puma/issues/183 "Issue by @concept47, closed 2013-02-05"
|
2208
|
+
[#176]:https://github.com/puma/puma/issues/176 "Issue by @cryo28, closed 2013-02-05"
|
2209
|
+
[#180]:https://github.com/puma/puma/issues/180 "Issue by @tscolari, closed 2013-02-05"
|
2210
|
+
[#170]:https://github.com/puma/puma/issues/170 "Issue by @nixme, closed 2012-11-29"
|
2211
|
+
[#148]:https://github.com/puma/puma/issues/148 "Issue by @rafaelss, closed 2012-11-18"
|
2212
|
+
[#128]:https://github.com/puma/puma/issues/128 "Issue by @fbjork, closed 2012-10-20"
|
2213
|
+
[#155]:https://github.com/puma/puma/issues/155 "Issue by @ehlertij, closed 2012-10-13"
|
2214
|
+
[#123]:https://github.com/puma/puma/pull/123 "PR by @jcoene, closed 2012-07-19"
|
2215
|
+
[#111]:https://github.com/puma/puma/pull/111 "PR by @kenkeiter, closed 2012-07-19"
|
2216
|
+
[#98]:https://github.com/puma/puma/pull/98 "PR by @Flink, closed 2012-05-15"
|
2217
|
+
[#94]:https://github.com/puma/puma/issues/94 "Issue by @ender672, closed 2012-05-08"
|
2218
|
+
[#84]:https://github.com/puma/puma/issues/84 "Issue by @sigursoft, closed 2012-04-29"
|
2219
|
+
[#78]:https://github.com/puma/puma/issues/78 "Issue by @dstrelau, closed 2012-04-28"
|
2220
|
+
[#79]:https://github.com/puma/puma/issues/79 "Issue by @jammi, closed 2012-04-28"
|
2221
|
+
[#65]:https://github.com/puma/puma/issues/65 "Issue by @bporterfield, closed 2012-04-11"
|
2222
|
+
[#54]:https://github.com/puma/puma/issues/54 "Issue by @masterkain, closed 2012-04-10"
|
2223
|
+
[#58]:https://github.com/puma/puma/pull/58 "PR by @paneq, closed 2012-04-10"
|
2224
|
+
[#61]:https://github.com/puma/puma/issues/61 "Issue by @dustalov, closed 2012-04-10"
|
2225
|
+
[#63]:https://github.com/puma/puma/issues/63 "Issue by @seamusabshere, closed 2012-04-11"
|
2226
|
+
[#60]:https://github.com/puma/puma/issues/60 "Issue by @paneq, closed 2012-04-11"
|
2227
|
+
[#53]:https://github.com/puma/puma/pull/53 "PR by @sxua, closed 2012-04-11"
|