Skip to content

Commit 981fde4

Browse files
build(deps): bump rack from 2.2.14 to 2.2.18 (#766)
Bumps [rack](https://github.com/rack/rack) from 2.2.14 to 2.2.18. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rack/rack/blob/main/CHANGELOG.md">rack's changelog</a>.</em></p> <blockquote> <h1>Changelog</h1> <p>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 <a href="https://keepachangelog.com/en/1.0.0/">Keep A Changelog</a>.</p> <h2>Unreleased</h2> <h3>SPEC Changes</h3> <ul> <li>Define <code>rack.response_finished</code> callback arguments more strictly. (<a href="https://redirect.github.com/rack/rack/pull/2365">#2365</a>, <a href="https://github.com/skipkayhil"><code>@​skipkayhil</code></a>)</li> </ul> <h3>Added</h3> <ul> <li>Add <code>Rack::Files#assign_headers</code> to allow overriding how the configured file headers are set. (<a href="https://redirect.github.com/rack/rack/pull/2377">#2377</a>, <a href="https://github.com/codergeek121"><code>@​codergeek121</code></a>)</li> <li>Add support for <code>rack.response_finished</code> to <code>Rack::TempfileReaper</code>. (<a href="https://redirect.github.com/rack/rack/pull/2363">#2363</a>, <a href="https://github.com/skipkayhil"><code>@​skipkayhil</code></a>)</li> <li>Add support for streaming bodies when using <code>Rack::Events</code>. (<a href="https://redirect.github.com/rack/rack/blob/main/redirect.github.com/rack/rack/pull/2375">#2375</a>, <a href="https://github.com/unflxw"><code>@​unflxw</code></a>)</li> </ul> <h3>Changed</h3> <ul> <li>Raise before exceeding a part limit, not after. (<a href="https://redirect.github.com/rack/rack/pull/2362">#2362</a>, <a href="https://github.com/matthew-puku"><code>@​matthew-puku</code></a>)</li> <li>Rack::Deflater now uses a fixed GZip mtime value. (<a href="https://redirect.github.com/rack/rack/pull/2372">#2372</a>, <a href="https://github.com/bensheldon"><code>@​bensheldon</code></a>)</li> </ul> <h3>Fixed</h3> <ul> <li>Fix an issue where a <code>NoMethodError</code> would be raised when using <code>Rack::Events</code> with streaming bodies. (<a href="https://redirect.github.com/rack/rack/blob/main/redirect.github.com/rack/rack/pull/2375">#2375</a>, <a href="https://github.com/unflxw"><code>@​unflxw</code></a>)</li> </ul> <h2>[3.2.0] - 2025-07-31</h2> <p>This release continues Rack's evolution toward a cleaner, more efficient foundation while maintaining backward compatibility for most applications. The breaking changes primarily affect deprecated functionality, so most users should experience a smooth upgrade with improved performance and standards compliance.</p> <h3>SPEC Changes</h3> <ul> <li>Request environment keys must now be strings. (<a href="https://redirect.github.com/rack/rack/issues/2310">#2310</a>, [<a href="https://github.com/jeremyevans"><code>@​jeremyevans</code></a>])</li> <li>Add <code>nil</code> as a valid return from a Response <code>body.to_path</code> (<a href="https://redirect.github.com/rack/rack/pull/2318">#2318</a>, [<a href="https://github.com/MSP-Greg"><code>@​MSP-Greg</code></a>])</li> <li><code>Rack::Lint#check_header_value</code> is relaxed, only disallowing CR/LF/NUL characters. (<a href="https://redirect.github.com/rack/rack/pull/2354">#2354</a>, [<a href="https://github.com/ioquatix"><code>@​ioquatix</code></a>])</li> </ul> <h3>Added</h3> <ul> <li>Introduce <code>Rack::VERSION</code> constant. (<a href="https://redirect.github.com/rack/rack/pull/2199">#2199</a>, [<a href="https://github.com/ioquatix"><code>@​ioquatix</code></a>])</li> <li><code>ISO-2022-JP</code> encoded parts within MIME Multipart sections of an HTTP request body will now be converted to <code>UTF-8</code>. (<a href="https://redirect.github.com/rack/rack/pull/2245">#2245</a>, <a href="https://github.com/nappa"><code>@​nappa</code></a>)</li> <li>Add <code>Rack::Request#query_parser=</code> to allow setting the query parser to use. (<a href="https://redirect.github.com/rack/rack/pull/2349">#2349</a>, [<a href="https://github.com/jeremyevans"><code>@​jeremyevans</code></a>])</li> <li>Add <code>Rack::Request#form_pairs</code> to access form data as raw key-value pairs, preserving duplicate keys. (<a href="https://redirect.github.com/rack/rack/pull/2351">#2351</a>, [<a href="https://github.com/matthewd"><code>@​matthewd</code></a>])</li> </ul> <h3>Changed</h3> <ul> <li>Invalid cookie keys will now raise an error. (<a href="https://redirect.github.com/rack/rack/pull/2193">#2193</a>, [<a href="https://github.com/ioquatix"><code>@​ioquatix</code></a>])</li> <li><code>Rack::MediaType#params</code> now handles empty strings. (<a href="https://redirect.github.com/rack/rack/pull/2229">#2229</a>, [<a href="https://github.com/jeremyevans"><code>@​jeremyevans</code></a>])</li> <li>Avoid unnecessary calls to the <code>ip_filter</code> lambda to evaluate <code>Request#ip</code> (<a href="https://redirect.github.com/rack/rack/pull/2287">#2287</a>, [<a href="https://github.com/willbryant"><code>@​willbryant</code></a>])</li> <li>Only calculate <code>Request#ip</code> once per request (<a href="https://redirect.github.com/rack/rack/pull/2292">#2292</a>, [<a href="https://github.com/willbryant"><code>@​willbryant</code></a>])</li> <li><code>Rack::Builder</code> <code>#use</code>, <code>#map</code>, and <code>#run</code> methods now return <code>nil</code>. (<a href="https://redirect.github.com/rack/rack/pull/2355">#2355</a>, [<a href="https://github.com/ioquatix"><code>@​ioquatix</code></a>])</li> <li>Directly close the body in <code>Rack::ConditionalGet</code> when the response is <code>304 Not Modified</code>. (<a href="https://redirect.github.com/rack/rack/pull/2353">#2353</a>, [<a href="https://github.com/ioquatix"><code>@​ioquatix</code></a>])</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rack/rack/commit/0f76d43c0d5624bd0d325df4f0a63f5e1faa7254"><code>0f76d43</code></a> Bump patch version.</li> <li><a href="https://github.com/rack/rack/commit/493a4119ea010a7ac3dbc0ff579fc8af42e24ba4"><code>493a411</code></a> Fix thin integration.</li> <li><a href="https://github.com/rack/rack/commit/54e4ffdd5affebcb0c015cc6ae74635c0831ed71"><code>54e4ffd</code></a> Unbounded parameter parsing in <code>Rack::QueryParser</code>.</li> <li><a href="https://github.com/rack/rack/commit/9163ac3f5fac795179f9935e2ba6533a0ca1cf82"><code>9163ac3</code></a> Bump patch version.</li> <li><a href="https://github.com/rack/rack/commit/8e52d2a3769e83fc698784b06c82703ba40448e7"><code>8e52d2a</code></a> Backport <a href="https://redirect.github.com/rack/rack/issues/2263">#2263</a> to v2.2, fix: malformed charset param (<a href="https://redirect.github.com/rack/rack/issues/2338">#2338</a>)</li> <li><a href="https://github.com/rack/rack/commit/2a32ecaaa8460a9af9963ee46ba04afbd1b47220"><code>2a32eca</code></a> Bump patch version.</li> <li><a href="https://github.com/rack/rack/commit/034a13c80dc639c8a4e794f425e5e9e17ede856b"><code>034a13c</code></a> Change CGI::Cookie.new to Cookie.new (<a href="https://redirect.github.com/rack/rack/issues/2335">#2335</a>)</li> <li><a href="https://github.com/rack/rack/commit/d2b6af2062a4687f928491f801984b948a63ecbb"><code>d2b6af2</code></a> Bump patch version.</li> <li><a href="https://github.com/rack/rack/commit/f34f2ebfc8e5f5019a6aca6fccf427b4f0aadeff"><code>f34f2eb</code></a> Feature detect <code>CGI::Cookie</code>. (<a href="https://redirect.github.com/rack/rack/issues/2333">#2333</a>)</li> <li><a href="https://github.com/rack/rack/commit/2f928b9f141d848b81ca464d0c6fe3dc57469c38"><code>2f928b9</code></a> Replace usage of CGI::Cookie (<a href="https://redirect.github.com/rack/rack/issues/2329">#2329</a>)</li> <li>Additional commits viewable in <a href="https://github.com/rack/rack/compare/v2.2.14...v2.2.18">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rack&package-manager=bundler&previous-version=2.2.14&new-version=2.2.18)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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](https://github.com/ackama/nzsl-share/network/alerts). </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 40e76ef commit 981fde4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ GEM
295295
pundit (2.1.1)
296296
activesupport (>= 3.0.0)
297297
racc (1.8.1)
298-
rack (2.2.14)
298+
rack (2.2.18)
299299
rack-canonical-host (1.1.0)
300300
addressable (> 0, < 3)
301301
rack (>= 1.0.0, < 3)

0 commit comments

Comments
 (0)