puma 5.0.3 → 5.0.4
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 +17 -0
- data/lib/puma/cluster.rb +3 -1
- data/lib/puma/const.rb +1 -1
- 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: 88dc01e1628aacb4ee705cc2ab0ecda793913c284737acf93c92674b45a8ec93
|
4
|
+
data.tar.gz: bcfb46e65dc12b753628656ed7450643a6e6b2a451e2024c872275aa72f28422
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0b5815aa75f4b0f0af4e8e1a2ecb3f46d7fc9e9c6c9f340f5ee8b4c4f1def02d24736a685520699ed46946557a7b1355ff1df765fd7670fb8ecbbc5d4df5eb64
|
7
|
+
data.tar.gz: f4294d0f1c811b4e230fa42162be39abab57c6c14d0c2b81a887893a997e8864b3afe9e06c32a2f5185166cfa680b6c1f66c473ef7f839c1430f41248f782793
|
data/History.md
CHANGED
@@ -1,3 +1,20 @@
|
|
1
|
+
## 5.1.0
|
2
|
+
|
3
|
+
* Features
|
4
|
+
* Your feature goes here <Most recent on the top, like GitHub> (#Github Number)
|
5
|
+
* Integrate with systemd's watchdog and notification features (#2438)
|
6
|
+
* Adds max_fast_inline as a configuration option for the Server object (#2406)
|
7
|
+
|
8
|
+
* Bugfixes
|
9
|
+
* Your bugfix goes here <Most recent on the top, like GitHub> (#Github Number)
|
10
|
+
* Ignore illegal (by Rack spec) response header (#2439)
|
11
|
+
* Close idle connections immediately on shutdown (#2460)
|
12
|
+
|
13
|
+
## 5.0.4 / 2020-10-27
|
14
|
+
|
15
|
+
* Bugfixes
|
16
|
+
* Pass preloaded application into new workers if available when using `preload_app` (#2461)
|
17
|
+
|
1
18
|
## 5.0.3 / 2020-10-26
|
2
19
|
|
3
20
|
* Bugfixes
|
data/lib/puma/cluster.rb
CHANGED
@@ -186,10 +186,12 @@ module Puma
|
|
186
186
|
pipes[:wakeup] = @wakeup
|
187
187
|
end
|
188
188
|
|
189
|
+
server = start_server if preload?
|
189
190
|
new_worker = Worker.new index: index,
|
190
191
|
master: master,
|
191
192
|
launcher: @launcher,
|
192
|
-
pipes: pipes
|
193
|
+
pipes: pipes,
|
194
|
+
server: server
|
193
195
|
new_worker.run
|
194
196
|
end
|
195
197
|
|
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 = "5.0.
|
103
|
+
PUMA_VERSION = VERSION = "5.0.4".freeze
|
104
104
|
CODE_NAME = "Spoony Bard".freeze
|
105
105
|
|
106
106
|
PUMA_SERVER_STRING = ['puma', PUMA_VERSION, CODE_NAME].join(' ').freeze
|
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: 5.0.
|
4
|
+
version: 5.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Evan Phoenix
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-10-
|
11
|
+
date: 2020-10-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nio4r
|