rack 2.2.6.4 → 2.2.7

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of rack might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '078561a77beb0af3f12ba96b1a506598140482eec56592a6800e7bf14d5b57c9'
4
- data.tar.gz: d14d73096818a28e4dc1e9e98309164029ba0c24768468c6299d11d11fe6a839
3
+ metadata.gz: 9f923ec1a763c61e0a56fd1e54a81e588f0fc397c59d14c8b671f95280072f41
4
+ data.tar.gz: 6fdfe8427a897c706fe136e1428e984a8c0997ad08134ebc5a8f81ee3156b614
5
5
  SHA512:
6
- metadata.gz: 577296b45efdde2334fa386c57b6a9dcd8409cf8949875bcd78970041a078af1fa48e7cf030c6e4bf1377a7eecc771332aeec4c135df25ca74116ae56ab015de
7
- data.tar.gz: f589a73eb2b74eea08499e4e945df139612619c1d6543edc0d8ebe78bb2b8181625464d607150a3ef89b86659f6a1bb1838a7940bd64bd418d2ac21873a067db
6
+ metadata.gz: 3365984fb627b727ccb7915037604aa22dca0d1bc5df50f9c58e58bf2e4849217ad0adb1c890332cc2b228c77ca466dc1c802eab89204859c4b7e4aa3d244c32
7
+ data.tar.gz: 0f3f0d1ae09128f7f3c589978cdefc0ff614d07b4a10ce1748d9311cd62c3b9ce4ebb754084aa16900e052d98474be8479a76d56700edc3c17ac7d61562ee4b1
data/CHANGELOG.md CHANGED
@@ -10,16 +10,16 @@ All notable changes to this project will be documented in this file. For info on
10
10
 
11
11
  - [CVE-2023-27530] Introduce multipart_total_part_limit to limit total parts
12
12
 
13
- ## [2.2.6.2] - 2022-01-17
13
+ ## [2.2.6.2] - 2023-01-17
14
14
 
15
15
  - [CVE-2022-44570] Fix ReDoS in Rack::Utils.get_byte_ranges
16
16
 
17
- ## [2.2.6.1] - 2022-01-17
17
+ ## [2.2.6.1] - 2023-01-17
18
18
 
19
19
  - [CVE-2022-44571] Fix ReDoS vulnerability in multipart parser
20
20
  - [CVE-2022-44572] Forbid control characters in attributes (also ReDoS)
21
21
 
22
- ## [2.2.6] - 2022-01-17
22
+ ## [2.2.6] - 2023-01-17
23
23
 
24
24
  - Extend `Rack::MethodOverride` to handle `QueryParser::ParamsTooDeepError` error. ([#2011](https://github.com/rack/rack/pull/2011), [@byroot](https://github.com/byroot))
25
25
 
data/lib/rack/request.rb CHANGED
@@ -608,7 +608,7 @@ module Rack
608
608
  (?<ip4>[\d\.]+)
609
609
  |
610
610
  # A hostname:
611
- (?<name>[a-zA-Z0-9\.\-]+)
611
+ (?<name>[a-zA-Z0-9\.\-_]+)
612
612
  )
613
613
  # The optional port:
614
614
  (:(?<port>\d+))?
data/lib/rack/version.rb CHANGED
@@ -20,7 +20,7 @@ module Rack
20
20
  VERSION.join(".")
21
21
  end
22
22
 
23
- RELEASE = "2.2.6.4"
23
+ RELEASE = "2.2.7"
24
24
 
25
25
  # Return the Rack release as a dotted string.
26
26
  def self.release
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.6.4
4
+ version: 2.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leah Neukirchen
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-13 00:00:00.000000000 Z
11
+ date: 2023-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -169,7 +169,7 @@ metadata:
169
169
  changelog_uri: https://github.com/rack/rack/blob/master/CHANGELOG.md
170
170
  documentation_uri: https://rubydoc.info/github/rack/rack
171
171
  source_code_uri: https://github.com/rack/rack
172
- post_install_message:
172
+ post_install_message:
173
173
  rdoc_options: []
174
174
  require_paths:
175
175
  - lib
@@ -184,8 +184,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
184
184
  - !ruby/object:Gem::Version
185
185
  version: '0'
186
186
  requirements: []
187
- rubygems_version: 3.0.3.1
188
- signing_key:
187
+ rubygems_version: 3.4.10
188
+ signing_key:
189
189
  specification_version: 4
190
190
  summary: A modular Ruby webserver interface.
191
191
  test_files: []