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