puma 5.1.0 → 5.1.1

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.

Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/History.md +6 -0
  3. data/lib/puma/const.rb +2 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 924532a143ed6cf14fc8bdb83d981c96d726d9c8e7a12dcd89731de44de0df1d
4
- data.tar.gz: ae9c1df1ac65e72b4304fb580e0ed7b75c4222411dae83a01623b11af2cba3ea
3
+ metadata.gz: 3a6a1bfd1d41d66c8aef6c52a2a043a0e537a1ddb51e20c778bb2da023d9a964
4
+ data.tar.gz: d256171ae36d0c5d1646ecbea4476df3e1bf7fbba5415c6ca6672eacbc5bd995
5
5
  SHA512:
6
- metadata.gz: cdaa61be2208907f4c525273b48c621791f5858ad8ba007edfb7795012d6f8f01c66037d203803b7b0b67eaf735decf2fdb3195b67e67fc433b96249f672a175
7
- data.tar.gz: d1034bd1c2af41740702ad4b905060600c47f5583e0debbdb9e482c320a1c5f84c4de49a4882b558d0b45f6284382100192aa9d286c122956c4f0a6fd56d5da9
6
+ metadata.gz: 9d6e9dfa206d98785ff62d7c03cd5193d5745918d684bf2a7d78027294ae345eb34d32d819ffda08ba34629cda589b0138faf1fdc91606a0cbab352615c859f3
7
+ data.tar.gz: 6775ccd4eaf9abdda6191c07b7d668588b813dbc96b71496b98cb0ee2ffefb94dd3db068159d8a2c746e5bcc4e4456fa6c4f12c721b66f6c5bed13b9e19718e2
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"
@@ -100,7 +100,7 @@ module Puma
100
100
  # too taxing on performance.
101
101
  module Const
102
102
 
103
- PUMA_VERSION = VERSION = "5.1.0".freeze
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 = /rack.|status/.freeze
249
+ BANNED_HEADER_KEY = /\A(rack\.|status\z)/.freeze
250
250
  end
251
251
  end
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.0
4
+ version: 5.1.1
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-11-30 00:00:00.000000000 Z
11
+ date: 2020-12-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nio4r