An open index of dependabot pull requests across open source projects.

Bump rack from 1.3.3 to 2.2.14 in /examples/sinatra

Merged
Number: #320
Type: Pull Request
State: Merged
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 0
Created: August 21, 2025 at 03:32 PM UTC
(10 months ago)
Updated: August 21, 2025 at 03:34 PM UTC
(10 months ago)
Merged: August 21, 2025 at 03:34 PM UTC
(10 months ago)
by chadlwilson
Time to Close: 2 minutes
Labels:
dependencies ruby
Description:

Bumps rack from 1.3.3 to 2.2.14.

Release notes

Sourced from rack's releases.

v2.2.8.1

What's Changed

  • Fixed ReDoS in Accept header parsing [CVE-2024-26146]
  • Fixed ReDoS in Content Type header parsing [CVE-2024-25126]
  • Reject Range headers which are too large [CVE-2024-26141]

Full Changelog: https://github.com/rack/rack/compare/v2.2.8...v2.2.8.1

v2.2.8

What's Changed

New Contributors

Full Changelog: https://github.com/rack/rack/compare/v2.2.7...v2.2.8

v2.2.7

What's Changed

New Contributors

Full Changelog: https://github.com/rack/rack/compare/v2.2.6.4...v2.2.7

v2.2.6.4

No release notes provided.

v2.1.4.4

What's Changed

  • Fixed ReDoS in Accept header parsing [CVE-2024-26146]

Full Changelog: https://github.com/rack/rack/compare/v2.1.4.3...v2.1.4.4

v2.0.9.4

What's Changed

  • Fixed ReDoS in Accept header parsing [CVE-2024-26146]

Full Changelog: https://github.com/rack/rack/compare/v2.0.9.3...v2.0.9.4

Changelog

Sourced from rack's changelog.

[2.2.14] - 2025-05-06

:warning: This release includes a security fix that may cause certain routes in previously working applications to fail if query parameters exceed 4,096 in count or 4 MB in total size. See https://github.com/rack/rack/discussions/2356 for more details.

Security

  • CVE-2025-46727 Unbounded parameter parsing in Rack::QueryParser can lead to memory exhaustion.

[2.2.13] - 2025-03-11

Security

[2.2.12] - 2025-03-04

Security

[2.2.11] - 2025-02-12

Security

[2.2.10] - 2024-10-14

[2.2.9] - 2023-03-21

  • Return empty when parsing a multi-part POST with only one end delimiter. (#2104, [@​alpaca-tc])

[2.2.8] - 2023-07-31

[2.2.7] - 2023-03-13

[2.2.6.4] - 2023-03-13

  • [CVE-2023-27539] Avoid ReDoS in header parsing

[2.2.6.3] - 2023-03-02

... (truncated)

Commits
  • d0dcf75 Bump patch version.
  • fd44bd7 Remove 2nd argument to unescape.
  • 3f5a424 Merge commit from fork
  • c48e52f Merge commit from fork
  • df6c473 Bump patch verison.
  • cceb70c Update changelog.
  • 873d39e Use a fully resolved file path when confirming if a file can be served by `Ra...
  • 7829663 Bump patch verison.
  • fadf97e Fix development workflow.
  • b13bc6b Use #inspect to prevent log injection.
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.
Pull Request Statistics
Commits:
1
Files Changed:
2
Additions:
+10
Deletions:
-4
Package Dependencies
Package:
rack
Ecosystem:
rubygems
Version Change:
1.3.3 → 2.2.14
Update Type:
Major
Path:
/examples/sinatra
Security Advisories
Local File Inclusion in Rack::Static
GHSA-7wqh-767x-r66v CVE-2025-27610 HIGH
## Summary `Rack::Static` can serve files under the specified `root:` even if `urls:` are provided, which may expose other files under the specified `root:` unexpectedly. ## Details The vulnerab...
phpMyFAQ vulnerable to stored Cross-site Scripting
GHSA-vppq-6ff8-2m8w CVE-2023-2753 MODERATE
Cross-site Scripting (XSS) - Stored in GitHub repository thorsten/phpmyfaq prior to 3.2.0-beta.
Escape Sequence Injection vulnerability in Rack lead to Possible Log Injection
GHSA-8cgq-6mh2-7j6v CVE-2025-27111 MODERATE
## Summary `Rack::Sendfile` can be exploited by crafting input that includes newline characters to manipulate log entries. ## Details The `Rack::Sendfile` middleware logs unsanitized header valu...
Rack Header Parsing leads to Possible Denial of Service Vulnerability
GHSA-54rr-7fvw-6x8f CVE-2024-26146 LOW
# Possible Denial of Service Vulnerability in Rack Header Parsing There is a possible denial of service vulnerability in the header parsing routines in Rack. This vulnerability has been assigned ...
Rack vulnerable to ReDoS in content type parsing (2nd degree polynomial)
GHSA-22f2-v57c-j9cx CVE-2024-25126 MODERATE
### Summary ```ruby module Rack class MediaType SPLIT_PATTERN = %r{\s*[;,]\s*} ``` The above regexp is subject to ReDos. 50K blank characters as a prefix to the header will take over 10s to ...
Rack has possible DoS Vulnerability with Range Header
GHSA-xj5v-6v4g-jfw6 CVE-2024-26141 LOW
# Possible DoS Vulnerability with Range Header in Rack There is a possible DoS vulnerability relating to the Range request header in Rack. This vulnerability has been assigned the CVE identifier ...
Rack has an Unbounded-Parameter DoS in Rack::QueryParser
GHSA-gjh7-p2fx-99vx CVE-2025-46727 HIGH
## Summary `Rack::QueryParser` parses query strings and `application/x-www-form-urlencoded` bodies into Ruby data structures without imposing any limit on the number of parameters, allowing attack...
Possible Log Injection in Rack::CommonLogger
GHSA-7g2v-jj9q-g3rg CVE-2025-25184 MODERATE
## Summary `Rack::CommonLogger` can be exploited by crafting input that includes newline characters to manipulate log entries. The supplied proof-of-concept demonstrates injecting malicious conten...
Possible Denial of Service Vulnerability in Rack's header parsing
GHSA-c6qg-cjj8-47qp CVE-2023-27539 LOW
There is a denial of service vulnerability in the header parsing component of Rack. This vulnerability has been assigned the CVE identifier CVE-2023-27539. Versions Affected: >= 2.0.0 Not affected...
Technical Details
ID: 5454169
UUID: 2763416196
Node ID: PR_kwDNQRvOpLZihA
Host: GitHub
Repository: jruby/jruby-rack
Merge State: Unknown