puma 4.3.5-java → 4.3.6-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/History.md +6 -5
- data/ext/puma_http11/puma_http11.c +1 -0
- data/lib/puma/app/status.rb +4 -2
- data/lib/puma/const.rb +1 -1
- data/lib/puma/puma_http11.jar +0 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4891b3e0d2c7fa2224e33911223bdeb443d2ce37e8ac8f837b199a72103f5f32
|
|
4
|
+
data.tar.gz: e646b0ee7e8d531b467994ead1d03ff6f68727529e73be9ce8ed71ad50c1006d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 996aa525831fc6a49d7b039189f4940a3bbb684a817f58303232dbfd004e5b83685c1a0955afcb255c3be30e235001b5c4d56c7e8be03d3db7d7e4d5cccd1249
|
|
7
|
+
data.tar.gz: 933a55a70a75b2727346fab1b8d98ebe54d4e7d45a8173eeae87d56469b7a17f7c150f7dca9650ef10ed9e32fa07bc82ccd8738e58269f23ec5bf27420a033d5
|
data/History.md
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
##
|
|
2
|
-
|
|
3
|
-
* Features
|
|
4
|
-
* Your feature goes here (#Github Number)
|
|
1
|
+
## 4.3.6 / 2020-09-05
|
|
5
2
|
|
|
6
3
|
* Bugfixes
|
|
7
|
-
*
|
|
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)
|
|
6
|
+
|
|
7
|
+
## 4.3.4/4.3.5 and 3.12.5/3.12.6 / 2020-05-22
|
|
8
8
|
|
|
9
|
+
Each patchlevel release contains a separate security fix. We recommend simply upgrading to 4.3.5/3.12.6.
|
|
9
10
|
|
|
10
11
|
## 4.3.3 and 3.12.4 / 2020-02-28
|
|
11
12
|
* Bugfixes
|
data/lib/puma/app/status.rb
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require 'json'
|
|
4
|
-
|
|
5
3
|
module Puma
|
|
6
4
|
module App
|
|
7
5
|
# Check out {#call}'s source code to see what actions this web application
|
|
@@ -19,6 +17,10 @@ module Puma
|
|
|
19
17
|
return rack_response(403, 'Invalid auth token', 'text/plain')
|
|
20
18
|
end
|
|
21
19
|
|
|
20
|
+
if env['PATH_INFO'] =~ /\/(gc-stats|stats|thread-backtraces)$/
|
|
21
|
+
require 'json'
|
|
22
|
+
end
|
|
23
|
+
|
|
22
24
|
case env['PATH_INFO']
|
|
23
25
|
when /\/stop$/
|
|
24
26
|
@cli.stop
|
data/lib/puma/const.rb
CHANGED
|
@@ -100,7 +100,7 @@ module Puma
|
|
|
100
100
|
# too taxing on performance.
|
|
101
101
|
module Const
|
|
102
102
|
|
|
103
|
-
PUMA_VERSION = VERSION = "4.3.
|
|
103
|
+
PUMA_VERSION = VERSION = "4.3.6".freeze
|
|
104
104
|
CODE_NAME = "Mysterious Traveller".freeze
|
|
105
105
|
PUMA_SERVER_STRING = ['puma', PUMA_VERSION, CODE_NAME].join(' ').freeze
|
|
106
106
|
|
data/lib/puma/puma_http11.jar
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: puma
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.3.
|
|
4
|
+
version: 4.3.6
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Evan Phoenix
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-05
|
|
11
|
+
date: 2020-09-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|