puma 6.2.1-java → 6.2.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 +7 -0
- data/README.md +1 -1
- data/lib/puma/const.rb +1 -1
- data/lib/rack/handler/puma.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 75e2f6517ad8bf3da267e4f5d76d52cb0eee62d69fdbc03a172072635862e91e
|
4
|
+
data.tar.gz: 9ed118371f2d2b147077cdb0bd8956dd7f25da90be55658249b38713816bb3ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60545e66242205a296ae3b470e1a7d377745511d47986edcb96a795d812be49ae8a5136063f8df74e05934685bb1b39d6d677b8ba1f665127518af520613b038
|
7
|
+
data.tar.gz: bc59fc005e643250ef7ae8a565a279ecffd7c63fb5beb9d2036c8cdf476d9465837a94de09ed66f759bf0a069ceb7dd7074bb88e0631b4c927eda81f5f543b44
|
data/History.md
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
## 6.2.2 / 2023-04-17
|
2
|
+
|
3
|
+
* Bugfixes
|
4
|
+
* Fix Rack-related NameError by adding :: operator ([#3118], [#3117])
|
5
|
+
|
1
6
|
## 6.2.1 / 2023-03-31
|
2
7
|
|
3
8
|
* Bugfixes
|
@@ -1974,6 +1979,8 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1974
1979
|
* Bugfixes
|
1975
1980
|
* Your bugfix goes here <Most recent on the top, like GitHub> (#Github Number)
|
1976
1981
|
|
1982
|
+
[#3118]:https://github.com/puma/puma/pull/3118 "PR by @ninoseki, merged 2023-04-01"
|
1983
|
+
[#3117]:https://github.com/puma/puma/issues/3117 "Issue by @ninoseki, closed 2023-04-01"
|
1977
1984
|
[#3109]:https://github.com/puma/puma/pull/3109 "PR by @ahorek, merged 2023-03-31"
|
1978
1985
|
[#3108]:https://github.com/puma/puma/issues/3108 "Issue by @treviateo, closed 2023-03-31"
|
1979
1986
|
[#3113]:https://github.com/puma/puma/pull/3113 "PR by @collinsauve, merged 2023-03-31"
|
data/README.md
CHANGED
@@ -375,7 +375,7 @@ Community guides:
|
|
375
375
|
|
376
376
|
* [puma-metrics](https://github.com/harmjanblok/puma-metrics) — export Puma metrics to Prometheus
|
377
377
|
* [puma-plugin-statsd](https://github.com/yob/puma-plugin-statsd) — send Puma metrics to statsd
|
378
|
-
* [puma-plugin-systemd](https://github.com/sj26/puma-plugin-systemd) — deeper integration with systemd for notify, status and watchdog
|
378
|
+
* [puma-plugin-systemd](https://github.com/sj26/puma-plugin-systemd) — deeper integration with systemd for notify, status and watchdog. Puma 5.1.0 integrated notify and watchdog, which probably conflicts with this plugin. Puma 6.1.0 added status support which obsoletes the plugin entirely.
|
379
379
|
* [puma-plugin-telemetry](https://github.com/babbel/puma-plugin-telemetry) - telemetry plugin for Puma offering various targets to publish
|
380
380
|
|
381
381
|
### Monitoring
|
data/lib/puma/const.rb
CHANGED
data/lib/rack/handler/puma.rb
CHANGED
@@ -32,7 +32,7 @@ module Puma
|
|
32
32
|
conf = ::Puma::Configuration.new(options, default_options.merge({events: @events})) do |user_config, file_config, default_config|
|
33
33
|
if options.delete(:Verbose)
|
34
34
|
require 'rack/common_logger'
|
35
|
-
app = Rack::CommonLogger.new(app, STDOUT)
|
35
|
+
app = ::Rack::CommonLogger.new(app, STDOUT)
|
36
36
|
end
|
37
37
|
|
38
38
|
if options[:environment]
|