puma 5.1.0-java → 5.1.1-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 +6 -0
- data/lib/puma/const.rb +2 -2
- 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: 56c9365f484f491cb4ca39830e4e3a797abebb8e7f2616cfde644bb74584d73b
|
4
|
+
data.tar.gz: 6ca2712343a683ed5936658ab643a5208bdace47e75375c347b5df8046af2434
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aabf9512ae96a33aaaf3786a1c9e83328c2768948213e3b227a9b83ef0ed109d35417df92e1a7b7ddec80d00977aabdef23555c579b3207807082d8aeb06f513
|
7
|
+
data.tar.gz: 4086e2b9ed1b2d9ecd6d3fe904ab7cfb4c06384d262a89a73b269a5d7414d49fae5d3c8cb978fe270663e610239f9a194a013840b07dea5a21011dbb802fd0b4
|
data/History.md
CHANGED
@@ -1,3 +1,8 @@
|
|
1
|
+
## 5.1.1 / 2020-12-10
|
2
|
+
|
3
|
+
* Bugfixes
|
4
|
+
* Fix over eager matching against banned header names ([#2510])
|
5
|
+
|
1
6
|
## 5.1.0 / 2020-11-30
|
2
7
|
|
3
8
|
* Features
|
@@ -1667,6 +1672,7 @@ be added back in a future date when a java Puma::MiniSSL is added.
|
|
1667
1672
|
* Bugfixes
|
1668
1673
|
* Your bugfix goes here <Most recent on the top, like GitHub> (#Github Number)
|
1669
1674
|
|
1675
|
+
[#2510]:https://github.com/puma/puma/pull/2510 "PR by @micke"
|
1670
1676
|
[#2472]:https://github.com/puma/puma/pull/2472 "PR by @ccverak, merged 2020-11-02"
|
1671
1677
|
[#2438]:https://github.com/puma/puma/pull/2438 "PR by @ekohl, merged 2020-10-26"
|
1672
1678
|
[#2406]:https://github.com/puma/puma/pull/2406 "PR by @fdel15, merged 2020-10-19"
|
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.1.
|
103
|
+
PUMA_VERSION = VERSION = "5.1.1".freeze
|
104
104
|
CODE_NAME = "At Your Service".freeze
|
105
105
|
|
106
106
|
PUMA_SERVER_STRING = ['puma', PUMA_VERSION, CODE_NAME].join(' ').freeze
|
@@ -246,6 +246,6 @@ module Puma
|
|
246
246
|
ILLEGAL_HEADER_VALUE_REGEX = /[\x00-\x08\x0A-\x1F]/.freeze
|
247
247
|
|
248
248
|
# Banned keys of response header
|
249
|
-
BANNED_HEADER_KEY =
|
249
|
+
BANNED_HEADER_KEY = /\A(rack\.|status\z)/.freeze
|
250
250
|
end
|
251
251
|
end
|
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: 5.1.
|
4
|
+
version: 5.1.1
|
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-
|
11
|
+
date: 2020-12-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|