rack 3.0.11 → 3.0.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 28b82d44ba189d0bbbc8bde52faa4aad3e333926291cdc20f62ede702b9cf02b
4
- data.tar.gz: a40e034c12ec76cd6f9506dfac3ab12438e3c9ffb5c40a7417b0b463758dd40b
3
+ metadata.gz: f4cd617243053c032b45f1eb8f73158d61aa295bf866072d85324ae696de1e2d
4
+ data.tar.gz: 84e26d26314c4e7877e21e770e6622cfe57379add2bce818f93fd50b362cd9a9
5
5
  SHA512:
6
- metadata.gz: 04b8e6d85dc1667f282320d629931407897342cfa2c04ec673ed7150dcb27592fd7c0624ee8d02d5f71dcd8370237b5bc425f43b5d92b6fd58aa311153b75e8f
7
- data.tar.gz: b2720568c6fbc1b192e2b0dbbff7231ca4db86f56ff9c12e70385ba7d324c6f44938426071c022789a0f8d6d73a78e383b477332d39e873569860cc059ea1158
6
+ metadata.gz: f41b2be1181d9c56dee9b2264fadfd8667a27242ec254403658476d8dd9b4d142d2bd528dc74464f4d5748a8a420341a5361057d27fe5a2633c926f3c62ba46b
7
+ data.tar.gz: daa0660d8c5bddcf6e9d1091d1ae0ee3c614cedd64ba2f8a0ad47ed742806517cd2552108116cebe53bb8bec60d97b46e00c3ec6520fa9f85d54b56d07f20939
data/CHANGELOG.md CHANGED
@@ -2,7 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. For info on how to format all future additions to this file please reference [Keep A Changelog](https://keepachangelog.com/en/1.0.0/).
4
4
 
5
- ## Unreleased
5
+ ## [3.0.12] - 2025-02-12
6
+
7
+ ### Security
8
+
9
+ - [CVE-2025-25184](https://github.com/rack/rack/security/advisories/GHSA-7g2v-jj9q-g3rg) Possible Log Injection in Rack::CommonLogger.
10
+
11
+ ## [3.0.11] - 2024-05-10
6
12
 
7
13
  - Backport #2062 to 3-0-stable: Do not allow `BodyProxy` to respond to `to_str`, make `to_ary` call close . ([#2062](https://github.com/rack/rack/pull/2062), [@jeremyevans](https://github.com/jeremyevans))
8
14
 
@@ -10,6 +16,18 @@ All notable changes to this project will be documented in this file. For info on
10
16
 
11
17
  - Backport #2104 to 3-0-stable: Return empty when parsing a multi-part POST with only one end delimiter. ([#2164](https://github.com/rack/rack/pull/2164), [@JoeDupuis](https://github.com/JoeDupuis))
12
18
 
19
+ ## [3.0.9.1] - 2024-02-21
20
+
21
+ ### Security
22
+
23
+ * [CVE-2024-26146] Fixed ReDoS in Accept header parsing
24
+ * [CVE-2024-25126] Fixed ReDoS in Content Type header parsing
25
+ * [CVE-2024-26141] Reject Range headers which are too large
26
+
27
+ [CVE-2024-26146]: https://github.com/advisories/GHSA-54rr-7fvw-6x8f
28
+ [CVE-2024-25126]: https://github.com/advisories/GHSA-22f2-v57c-j9cx
29
+ [CVE-2024-26141]: https://github.com/advisories/GHSA-xj5v-6v4g-jfw6
30
+
13
31
  ## [3.0.9] - 2024-01-31
14
32
 
15
33
  - Fix incorrect content-length header that was emitted when `Rack::Response#write` was used in some situations. ([#2150](https://github.com/rack/rack/pull/2150), [@mattbrictson](https://github.com/mattbrictson))
@@ -24,6 +42,8 @@ All notable changes to this project will be documented in this file. For info on
24
42
 
25
43
  ## [3.0.6.1] - 2023-03-13
26
44
 
45
+ ### Security
46
+
27
47
  - [CVE-2023-27539] Avoid ReDoS in header parsing
28
48
 
29
49
  ## [3.0.6] - 2023-03-13
@@ -34,12 +54,16 @@ All notable changes to this project will be documented in this file. For info on
34
54
 
35
55
  - Split form/query parsing into two steps. ([#2038](https://github.com/rack/rack/pull/2038), [@matthewd](https://github.com/matthewd))
36
56
 
37
- ## [3.0.4.1] - 2023-03-02
57
+ ## [3.0.4.2] - 2023-03-02
58
+
59
+ ### Security
38
60
 
39
61
  - [CVE-2023-27530] Introduce multipart_total_part_limit to limit total parts
40
62
 
41
63
  ## [3.0.4.1] - 2023-01-17
42
64
 
65
+ ### Security
66
+
43
67
  - [CVE-2022-44571] Fix ReDoS vulnerability in multipart parser
44
68
  - [CVE-2022-44570] Fix ReDoS in Rack::Utils.get_byte_ranges
45
69
  - [CVE-2022-44572] Forbid control characters in attributes (also ReDoS)
@@ -20,7 +20,7 @@ module Rack
20
20
  # The actual format is slightly different than the above due to the
21
21
  # separation of SCRIPT_NAME and PATH_INFO, and because the elapsed
22
22
  # time in seconds is included at the end.
23
- FORMAT = %{%s - %s [%s] "%s %s%s%s %s" %d %s %0.4f\n}
23
+ FORMAT = %{%s - %s [%s] "%s %s%s%s %s" %d %s %0.4f }
24
24
 
25
25
  # +logger+ can be any object that supports the +write+ or +<<+ methods,
26
26
  # which includes the standard library Logger. These methods are called
@@ -66,7 +66,8 @@ module Rack
66
66
  length,
67
67
  Utils.clock_time - began_at)
68
68
 
69
- msg.gsub!(/[^[:print:]\n]/) { |c| sprintf("\\x%x", c.ord) }
69
+ msg.gsub!(/[^[:print:]]/) { |c| sprintf("\\x%x", c.ord) }
70
+ msg[-1] = "\n"
70
71
 
71
72
  logger = @logger || request.get_header(RACK_ERRORS)
72
73
  # Standard library logger doesn't support write but it supports << which actually
data/lib/rack/version.rb CHANGED
@@ -25,7 +25,7 @@ module Rack
25
25
  VERSION
26
26
  end
27
27
 
28
- RELEASE = "3.0.11"
28
+ RELEASE = "3.0.12"
29
29
 
30
30
  # Return the Rack release as a dotted string.
31
31
  def self.release
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rack
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.11
4
+ version: 3.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Leah Neukirchen
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-05-09 00:00:00.000000000 Z
10
+ date: 2025-02-12 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: minitest
@@ -149,7 +148,6 @@ metadata:
149
148
  changelog_uri: https://github.com/rack/rack/blob/main/CHANGELOG.md
150
149
  documentation_uri: https://rubydoc.info/github/rack/rack
151
150
  source_code_uri: https://github.com/rack/rack
152
- post_install_message:
153
151
  rdoc_options: []
154
152
  require_paths:
155
153
  - lib
@@ -164,8 +162,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
164
162
  - !ruby/object:Gem::Version
165
163
  version: '0'
166
164
  requirements: []
167
- rubygems_version: 3.5.3
168
- signing_key:
165
+ rubygems_version: 3.6.2
169
166
  specification_version: 4
170
167
  summary: A modular Ruby webserver interface.
171
168
  test_files: []