Skip to content

Update dependency rack to v2.2.13 [SECURITY] #191

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 16, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
rack (changelog) '2.1.4.1' -> '2.2.13' age adoption passing confidence

GitHub Vulnerability Alerts

CVE-2022-44570

There is a possible denial of service vulnerability in the Range header parsing component of Rack. This vulnerability has been assigned the CVE identifier CVE-2022-44570.

Versions Affected: >= 1.5.0 Not affected: None. Fixed Versions: 2.0.9.2, 2.1.4.2, 2.2.6.2, 3.0.0.1
Impact

Carefully crafted input can cause the Range header parsing component in Rack to take an unexpected amount of time, possibly resulting in a denial of service attack vector. Any applications that deal with Range requests (such as streaming applications, or applications that serve files) may be impacted.
Releases

The fixed releases are available at the normal locations.
Workarounds

There are no feasible workarounds for this issue.
Patches

To aid users who aren’t able to upgrade immediately we have provided patches for the two supported release series. They are in git-am format and consist of a single changeset.

2-0-Fix-ReDoS-in-Rack-Utils.get_byte_ranges.patch - Patch for 2.0 series
2-1-Fix-ReDoS-in-Rack-Utils.get_byte_ranges.patch - Patch for 2.1 series
2-2-Fix-ReDoS-in-Rack-Utils.get_byte_ranges.patch - Patch for 2.2 series
3-0-Fix-ReDoS-in-Rack-Utils.get_byte_ranges.patch - Patch for 3.0 series

CVE-2022-44572

There is a denial of service vulnerability in the multipart parsing component of Rack. This vulnerability has been assigned the CVE identifier CVE-2022-44572.

Versions Affected: >= 2.0.0 Not affected: None. Fixed Versions: 2.0.9.2, 2.1.4.2, 2.2.6.1, 3.0.0.1
Impact

Carefully crafted input can cause RFC2183 multipart boundary parsing in Rack to take an unexpected amount of time, possibly resulting in a denial of service attack vector. Any applications that parse multipart posts using Rack (virtually all Rails applications) are impacted.
Releases

The fixed releases are available at the normal locations.
Workarounds

There are no feasible workarounds for this issue.
Patches

To aid users who aren’t able to upgrade immediately we have provided patches for the two supported release series. They are in git-am format and consist of a single changeset.

2-0-Forbid-control-characters-in-attributes.patch - Patch for 2.0 series
2-1-Forbid-control-characters-in-attributes.patch - Patch for 2.1 series
2-2-Forbid-control-characters-in-attributes.patch - Patch for 2.2 series
3-0-Forbid-control-characters-in-attributes.patch - Patch for 3.0 series

CVE-2022-44571

There is a denial of service vulnerability in the Content-Disposition parsing component of Rack. This vulnerability has been assigned the CVE identifier CVE-2022-44571.

Versions Affected: >= 2.0.0 Not affected: None. Fixed Versions: 2.0.9.2, 2.1.4.2, 2.2.6.1, 3.0.0.1
Impact

Carefully crafted input can cause Content-Disposition header parsing in Rack to take an unexpected amount of time, possibly resulting in a denial of service attack vector. This header is used typically used in multipart parsing. Any applications that parse multipart posts using Rack (virtually all Rails applications) are impacted.
Releases

The fixed releases are available at the normal locations.
Workarounds

There are no feasible workarounds for this issue.
Patches

To aid users who aren’t able to upgrade immediately we have provided patches for the two supported release series. They are in git-am format and consist of a single changeset.

2-0-Fix-ReDoS-vulnerability-in-multipart-parser - Patch for 2.0 series
2-1-Fix-ReDoS-vulnerability-in-multipart-parser - Patch for 2.1 series
2-2-Fix-ReDoS-vulnerability-in-multipart-parser - Patch for 2.2 series
3-0-Fix-ReDoS-vulnerability-in-multipart-parser - Patch for 3.0 series

CVE-2023-27530

There is a possible DoS vulnerability in the Multipart MIME parsing code in Rack. This vulnerability has been assigned the CVE identifier CVE-2023-27530.

Versions Affected: All. Not affected: None Fixed Versions: 3.0.4.2, 2.2.6.3, 2.1.4.3, 2.0.9.3

Impact

The Multipart MIME parsing code in Rack limits the number of file parts, but does not limit the total number of parts that can be uploaded. Carefully crafted requests can abuse this and cause multipart parsing to take longer than expected.

All users running an affected release should either upgrade or use one of the workarounds immediately.

Workarounds

A proxy can be configured to limit the POST body size which will mitigate this issue.

CVE-2023-27539

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: None. Fixed Versions: 2.2.6.4, 3.0.6.1

Impact

Carefully crafted input can cause header parsing in Rack to take an unexpected amount of time, possibly resulting in a denial of service attack vector. Any applications that parse headers using Rack (virtually all Rails applications) are impacted.

Workarounds

Setting Regexp.timeout in Ruby 3.2 is a possible workaround.

CVE-2024-26146

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 the CVE identifier
CVE-2024-26146.

Versions Affected: All.
Not affected: None
Fixed Versions: 2.0.9.4, 2.1.4.4, 2.2.8.1, 3.0.9.1

Impact

Carefully crafted headers can cause header parsing in Rack to take longer than
expected resulting in a possible denial of service issue. Accept and Forwarded
headers are impacted.

Ruby 3.2 has mitigations for this problem, so Rack applications using Ruby 3.2
or newer are unaffected.

Releases

The fixed releases are available at the normal locations.

Workarounds

There are no feasible workarounds for this issue.

Patches

To aid users who aren't able to upgrade immediately we have provided patches for
the two supported release series. They are in git-am format and consist of a
single changeset.

  • 2-0-header-redos.patch - Patch for 2.0 series
  • 2-1-header-redos.patch - Patch for 2.1 series
  • 2-2-header-redos.patch - Patch for 2.2 series
  • 3-0-header-redos.patch - Patch for 3.0 series

Credits

Thanks to svalkanov for reporting this and
providing patches!

CVE-2024-26141

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 CVE-2024-26141.

Versions Affected: >= 1.3.0.
Not affected: < 1.3.0
Fixed Versions: 3.0.9.1, 2.2.8.1

Impact

Carefully crafted Range headers can cause a server to respond with an
unexpectedly large response. Responding with such large responses could lead
to a denial of service issue.

Vulnerable applications will use the Rack::File middleware or the
Rack::Utils.byte_ranges methods (this includes Rails applications).

Releases

The fixed releases are available at the normal locations.

Workarounds

There are no feasible workarounds for this issue.

Patches

To aid users who aren't able to upgrade immediately we have provided patches for
the two supported release series. They are in git-am format and consist of a
single changeset.

  • 3-0-range.patch - Patch for 3.0 series
  • 2-2-range.patch - Patch for 2.2 series

Credits

Thank you ooooooo_q for the report and
patch

CVE-2024-25126

Summary

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 split.

PoC

A simple HTTP request with lots of blank characters in the content-type header:

request["Content-Type"] = (" " * 50_000) + "a,"

Impact

It's a very easy to craft ReDoS. Like all ReDoS the impact is debatable.

CVE-2025-25184

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 content into logs.

Details

When a user provides the authorization credentials via Rack::Auth::Basic, if success, the username will be put in env['REMOTE_USER'] and later be used by Rack::CommonLogger for logging purposes.

The issue occurs when a server intentionally or unintentionally allows a user creation with the username contain CRLF and white space characters, or the server just want to log every login attempts. If an attacker enters a username with CRLF character, the logger will log the malicious username with CRLF characters into the logfile.

Impact

Attackers can break log formats or insert fraudulent entries, potentially obscuring real activity or injecting malicious data into log files.

Mitigation

  • Update to the latest version of Rack.

CVE-2025-27111

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 values from the X-Sendfile-Type header. An attacker can exploit this by injecting escape sequences (such as newline characters) into the header, resulting in log injection.

Impact

This vulnerability can distort log files, obscure attack traces, and complicate security auditing.

Mitigation

  • Update to the latest version of Rack, or
  • Remove usage of Rack::Sendfile.

CVE-2025-27610

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 vulnerability occurs because Rack::Static does not properly sanitize user-supplied paths before serving files. Specifically, encoded path traversal sequences are not correctly validated, allowing attackers to access files outside the designated static file directory.

Impact

By exploiting this vulnerability, an attacker can gain access to all files under the specified root: directory, provided they are able to determine then path of the file.

Mitigation

  • Update to the latest version of Rack, or
  • Remove usage of Rack::Static, or
  • Ensure that root: points at a directory path which only contains files which should be accessed publicly.

It is likely that a CDN or similar static file server would also mitigate the issue.


Release Notes

rack/rack (rack)

v2.2.13

Compare Source

Security

v2.2.12

Compare Source

Security

v2.2.11

Compare Source

Security

v2.2.10

Compare Source

v2.2.9

Compare Source

v2.2.8.1

Compare Source

What's Changed

Full Changelog: rack/rack@v2.2.8...v2.2.8.1

v2.2.8

Compare Source

v2.2.7

Compare Source

v2.2.6.4

Compare Source

v2.2.6.3

Compare Source

  • [CVE-2023-27530] Introduce multipart_total_part_limit to limit total parts

v2.2.6.2

Compare Source

v2.2.6.1

Compare Source

v2.2.6

Compare Source

v2.2.5

Compare Source

Fixed

v2.2.4

Compare Source

v2.2.3.1

Compare Source

Security

v2.2.3

Compare Source

Security

v2.2.2

Compare Source

Fixed

v2.2.1

Compare Source

Security

v2.2.0

Compare Source

SPEC Changes
  • rack.session request environment entry must respond to to_hash and return unfrozen Hash. ([@​jeremyevans])
  • Request environment cannot be frozen. ([@​jeremyevans])
  • CGI values in the request environment with non-ASCII characters must use ASCII-8BIT encoding. ([@​jeremyevans])
  • Improve SPEC/lint relating to SERVER_NAME, SERVER_PORT and HTTP_HOST. (#​1561, [@​ioquatix])
Added
  • rackup supports multiple -r options and will require all arguments. ([@​jeremyevans])
  • Server supports an array of paths to require for the :require option. (@​khotta)
  • Files supports multipart range requests. (@​fatkodima)
  • Multipart::UploadedFile supports an IO-like object instead of using the filesystem, using :filename and :io options. ([@​jeremyevans])
  • Multipart::UploadedFile supports keyword arguments :path, :content_type, and :binary in addition to positional arguments. ([@​jeremyevans])
  • Static supports a :cascade option for calling the app if there is no matching file. ([@​jeremyevans])
  • Session::Abstract::SessionHash#dig. ([@​jeremyevans])
  • Response.[] and MockResponse.[] for creating instances using status, headers, and body. ([@​ioquatix])
  • Convenient cache and content type methods for Rack::Response. (#​1555, [@​ioquatix])
Changed
  • Request#params no longer rescues EOFError. ([@​jeremyevans])
  • Directory uses a streaming approach, significantly improving time to first byte for large directories. ([@​jeremyevans])
  • Directory no longer includes a Parent directory link in the root directory index. ([@​jeremyevans])
  • QueryParser#parse_nested_query uses original backtrace when reraising exception with new class. ([@​jeremyevans])
  • ConditionalGet follows RFC 7232 precedence if both If-None-Match and If-Modified-Since headers are provided. ([@​jeremyevans])
  • .ru files supports the frozen-string-literal magic comment. (@​eregon)
  • Rely on autoload to load constants instead of requiring internal files, make sure to require 'rack' and not just 'rack/...'. ([@​jeremyevans])
  • BREAKING CHANGE: Etag will continue sending ETag even if the response should not be cached. Streaming no longer works without a workaround, see #​1619. (@​henm)
  • Request#host_with_port no longer includes a colon for a missing or empty port. (@​AlexWayfer)
  • All handlers uses keywords arguments instead of an options hash argument. ([@​ioquatix])
  • Files handling of range requests no longer return a body that supports to_path, to ensure range requests are handled correctly. ([@​jeremyevans])
  • Multipart::Generator only includes Content-Length for files with paths, and Content-Disposition filename if the UploadedFile instance has one. ([@​jeremyevans])
  • Request#ssl? is true for the wss scheme (secure websockets). ([@​jeremyevans])
  • Rack::HeaderHash is memoized by default. (#​1549, [@​ioquatix])
  • Rack::Directory allow directory traversal inside root directory. (#​1417, @​ThomasSevestre)
  • Sort encodings by server preference. (#​1184, [@​ioquatix], @​wjordan)
  • Rework host/hostname/authority implementation in Rack::Request. #host and #host_with_port have been changed to correctly return IPv6 addresses formatted with square brackets, as defined by RFC3986. (#​1561, [@​ioquatix])
  • Rack::Builder parsing options on first #\ line is deprecated. (#​1574, [@​ioquatix])
Removed
  • Directory#path as it was not used and always returned nil. ([@​jeremyevans])
  • BodyProxy#each as it was only needed to work around a bug in Ruby <1.9.3. ([@​jeremyevans])
  • URLMap::INFINITY and URLMap::NEGATIVE_INFINITY, in favor of Float::INFINITY. (@​ch1c0t)
  • Deprecation of Rack::File. It will be deprecated again in rack 2.2 or 3.0. (@​rafaelfranca)
  • Support for Ruby 2.2 as it is well past EOL. ([@​ioquatix])
  • Remove Rack::Files#response_body as the implementation was broken. (#​1153, [@​ioquatix])
  • Remove SERVER_ADDR which was never part of the original SPEC. (#​1573, [@​ioquatix])
Fixed
  • Directory correctly handles root paths containing glob metacharacters. ([@​jeremyevans])
  • Cascade uses a new response object for each call if initialized with no apps. ([@​jeremyevans])
  • BodyProxy correctly delegates keyword arguments to the body object on Ruby 2.7+. ([@​jeremyevans])
  • BodyProxy#method correctly handles methods delegated to the body object. ([@​jeremyevans])
  • Request#host and Request#host_with_port handle IPv6 addresses correctly. (@​AlexWayfer)
  • Lint checks when response hijacking that rack.hijack is called with a valid object. ([@​jeremyevans])
  • Response#write correctly updates Content-Length if initialized with a body. ([@​jeremyevans])
  • CommonLogger includes SCRIPT_NAME when logging. (@​Erol)
  • Utils.parse_nested_query correctly handles empty queries, using an empty instance of the params class instead of a hash. ([@​jeremyevans])
  • Directory correctly escapes paths in links. (@​yous)
  • Request#delete_cookie and related Utils methods handle :domain and :path options in same call. ([@​jeremyevans])
  • Request#delete_cookie and related Utils methods do an exact match on :domain and :path options. ([@​jeremyevans])
  • Static no longer adds headers when a gzipped file request has a 304 response. (@​chooh)
  • ContentLength sets Content-Length response header even for bodies not responding to to_ary. ([@​jeremyevans])
  • Thin handler supports options passed directly to Thin::Controllers::Controller. ([@​jeremyevans])
  • WEBrick handler no longer ignores :BindAddress option. ([@​jeremyevans])
  • ShowExceptions handles invalid POST data. ([@​jeremyevans])
  • Basic authentication requires a password, even if the password is empty. ([@​jeremyevans])
  • Lint checks response is array with 3 elements, per SPEC. ([@​jeremyevans])
  • Support for using :SSLEnable option when using WEBrick handler. (Gregor Melhorn)
  • Close response body after buffering it when buffering. ([@​ioquatix])
  • Only accept ; as delimiter when parsing cookies. (@​mrageh)
  • Utils::HeaderHash#clear clears the name mapping as well. (@​raxoft)
  • Support for passing nil Rack::Files.new, which notably fixes Rails' current ActiveStorage::FileServer implementation. ([@​ioquatix])
Documentation

v2.1.4.4

Compare Source

What's Changed

Full Changelog: rack/rack@v2.1.4.3...v2.1.4.4

v2.1.4.3

Compare Source

v2.1.4.2

Compare Source


Configuration

📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@yegor256
Copy link
Owner

@rultor please, try to merge

@rultor
Copy link
Collaborator

rultor commented Mar 16, 2023

@rultor please, try to merge

@yegor256 OK, I'll try to merge now. You can check the progress of the merge here

@rultor
Copy link
Collaborator

rultor commented Mar 16, 2023

@rultor please, try to merge

@renovate[bot] @yegor256 Oops, I failed. You can see the full log here (spent 2min)


99% [20 Packages 10.4 kB/28.6 kB 36%]
99% [19 Packages store 0 B] [20 Packages 12.3 kB/28.6 kB 43%]
                                                             
99% [19 Packages store 0 B]
                           
100% [Working]
100% [20 Packages store 0 B]
                            
100% [Working]
              
Fetched 12.7 MB in 2s (5,383 kB/s)

Reading package lists... 0%

Reading package lists... 0%

Reading package lists... 0%

Reading package lists... 5%

Reading package lists... 5%

Reading package lists... 5%

Reading package lists... 5%

Reading package lists... 49%

Reading package lists... 49%

Reading package lists... 49%

Reading package lists... 49%

Reading package lists... 60%

Reading package lists... 61%

Reading package lists... 61%

Reading package lists... 70%

Reading package lists... 70%

Reading package lists... 75%

Reading package lists... 75%

Reading package lists... 75%

Reading package lists... 75%

Reading package lists... 75%

Reading package lists... 75%

Reading package lists... 75%

Reading package lists... 75%

Reading package lists... 85%

Reading package lists... 85%

Reading package lists... 93%

Reading package lists... 93%

Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 99%

Reading package lists... 99%

Reading package lists... Done

+ sudo -i apt-get -y install libpq-dev
Using /usr/local/rvm/gems/ruby-3.0.1
Using /usr/local/rvm/gems/ruby-3.0.1

Reading package lists... 0%

Reading package lists... 0%

Reading package lists... 0%

Reading package lists... 5%

Reading package lists... 5%

Reading package lists... 5%

Reading package lists... 5%

Reading package lists... 49%

Reading package lists... 49%

Reading package lists... 49%

Reading package lists... 49%

Reading package lists... 60%

Reading package lists... 61%

Reading package lists... 61%

Reading package lists... 70%

Reading package lists... 70%

Reading package lists... 75%

Reading package lists... 75%

Reading package lists... 75%

Reading package lists... 75%

Reading package lists... 75%

Reading package lists... 75%

Reading package lists... 75%

Reading package lists... 75%

Reading package lists... 85%

Reading package lists... 85%

Reading package lists... 93%

Reading package lists... 93%

Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 99%

Reading package lists... 99%

Reading package lists... Done


Building dependency tree... 0%

Building dependency tree... 0%

Building dependency tree... 50%

Building dependency tree... 50%

Building dependency tree       


Reading state information... 0%

Reading state information... 0%

Reading state information... Done

The following additional packages will be installed:
  libpq5
Suggested packages:
  postgresql-doc-12
The following packages will be upgraded:
  libpq-dev libpq5
2 upgraded, 0 newly installed, 0 to remove and 123 not upgraded.
Need to get 253 kB of archives.
After this operation, 2,048 B of additional disk space will be used.

0% [Working]
            
Get:1 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libpq-dev amd64 12.14-0ubuntu0.20.04.1 [137 kB]

2% [1 libpq-dev 6,957 B/137 kB 5%]
                                  
53% [Working]
             
Get:2 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libpq5 amd64 12.14-0ubuntu0.20.04.1 [116 kB]

54% [2 libpq5 2,613 B/116 kB 2%]
                                
100% [Working]
              
Fetched 253 kB in 1s (362 kB/s)
debconf: delaying package configuration, since apt-utils is not installed
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 94839 files and directories currently installed.)
Preparing to unpack .../libpq-dev_12.14-0ubuntu0.20.04.1_amd64.deb ...
Unpacking libpq-dev (12.14-0ubuntu0.20.04.1) over (12.12-0ubuntu0.20.04.1) ...
Preparing to unpack .../libpq5_12.14-0ubuntu0.20.04.1_amd64.deb ...
Unpacking libpq5:amd64 (12.14-0ubuntu0.20.04.1) over (12.12-0ubuntu0.20.04.1) ...
Setting up libpq5:amd64 (12.14-0ubuntu0.20.04.1) ...
Setting up libpq-dev (12.14-0ubuntu0.20.04.1) ...
Processing triggers for libc-bin (2.31-0ubuntu9.9) ...
Processing triggers for man-db (2.9.1-1) ...
+ git config --global user.email [email protected]
+ git config --global user.name codexia.org
+ sudo -i gem update bundler
Using /usr/local/rvm/gems/ruby-3.0.1
Using /usr/local/rvm/gems/ruby-3.0.1
Updating installed gems
Updating bundler
Fetching bundler-2.4.8.gem
Successfully installed bundler-2.4.8
Gems updated: bundler
++ pwd
+ sudo -i bundle install --no-color --gemfile=/home/r/repo/Gemfile
Using /usr/local/rvm/gems/ruby-3.0.1
Using /usr/local/rvm/gems/ruby-3.0.1
Don't run Bundler as root. Installing your bundle as root will break this
application for all non-root users on this machine.
Fetching gem metadata from https://rubygems.org/.........
Resolving dependencies...
Could not find compatible versions

Because the current Bundler version (2.4.8) does not satisfy bundler = 2.3.25
  and Gemfile depends on bundler = 2.3.25,
  version solving has failed.

Your bundle requires a different version of Bundler than the one you're running.
Install the necessary version with `gem install bundler:2.3.25` and rerun
bundler using `bundle _2.3.25_ install --no-color
--gemfile=/home/r/repo/Gemfile`
container 530e7f8078fca12851cd9b057628292495e0ebb7697abbae150b4642cd556143 is dead
Thu 16 Mar 2023 10:28:50 AM CET

@renovate renovate bot force-pushed the renovate/rubygems-rack-vulnerability branch from 1636787 to 07d527b Compare February 29, 2024 04:30
@renovate renovate bot changed the title Update dependency rack to v2.2.6.4 [SECURITY] Update dependency rack to v2.2.8.1 [SECURITY] Feb 29, 2024
@renovate renovate bot force-pushed the renovate/rubygems-rack-vulnerability branch from 07d527b to 74996e4 Compare February 13, 2025 00:52
@renovate renovate bot changed the title Update dependency rack to v2.2.8.1 [SECURITY] Update dependency rack to v2.2.11 [SECURITY] Feb 13, 2025
@renovate renovate bot force-pushed the renovate/rubygems-rack-vulnerability branch from 74996e4 to 48d248c Compare March 4, 2025 21:29
@renovate renovate bot changed the title Update dependency rack to v2.2.11 [SECURITY] Update dependency rack to v2.2.12 [SECURITY] Mar 4, 2025
@renovate renovate bot force-pushed the renovate/rubygems-rack-vulnerability branch from 48d248c to b119d1f Compare March 11, 2025 05:00
@renovate renovate bot changed the title Update dependency rack to v2.2.12 [SECURITY] Update dependency rack to v2.2.13 [SECURITY] Mar 11, 2025
@renovate renovate bot force-pushed the renovate/rubygems-rack-vulnerability branch from b119d1f to 182cc40 Compare March 27, 2025 07:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants