Bump rack from 2.2.14 to 3.1.16
Bumps rack from 2.2.14 to 3.1.16.
Release notes
Sourced from rack's releases.
v3.0.9.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/v3.0.9...v3.0.9.1
v3.0.9
What's Changed
- Fix content-length calcuation in Rack:Response#write #2150
Full Changelog: https://github.com/rack/rack/compare/v3.0.8...v3.0.9
v3.0.8
What's Changed
- Backport "Fix some unused variable verbose warnings" by
@​skipkayhilin rack/rack#2084New Contributors
@​skipkayhilmade their first contribution in rack/rack#2084Full Changelog: https://github.com/rack/rack/compare/v3.0.7...v3.0.8
v3.0.7
What's Changed
- Backport "Make query parameters without = have nil values". by
@​jeremyevansin rack/rack#2060Full Changelog: https://github.com/rack/rack/compare/v3.0.6.1...v3.0.7
v3.0.6.1
No release notes provided.
v3.0.4.1
Full Changelog: https://github.com/rack/rack/compare/v3.0.4...v3.0.4.1
v3.0.4
Full Changelog: https://github.com/rack/rack/compare/v3.0.3...v3.0.4
v3.0.3
What's Changed
- Release v3.0.3 by
@​ioquatixin rack/rack#2000Full Changelog: https://github.com/rack/rack/compare/v3.0.2...v3.0.3
v3.0.2
Full Changelog: https://github.com/rack/rack/compare/v3.0.1...v3.0.2
Changelog
Sourced from rack's changelog.
Changelog
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.
Unreleased
SPEC Changes
- Request environment keys must now be strings. #2310, [
@​jeremyevans])- Add
nilas a valid return from a Responsebody.to_path(#2318, [@​MSP-Greg])Added
- Introduce
Rack::VERSIONconstant. (#2199, [@​ioquatix])- ISO-2022-JP encoded parts within MIME Multipart sections of an HTTP request body will now be converted to UTF-8. (#2245,
@​nappa)Changed
- Invalid cookie keys will now raise an error. (#2193, [
@​ioquatix])Rack::MediaType#paramsnow handles empty strings. (#2229, [@​jeremyevans])- Avoid unnecessary calls to the
ip_filterlambda to evaluateRequest#ip(#2287, [@​willbryant])- Only calculate
Request#iponce per request (#2292, [@​willbryant])Deprecated
Rack::Auth::AbstractRequest#requestis deprecated without replacement. (#2229, [@​jeremyevans])Rack::Request#parse_multipart(private method designed to be overridden in subclasses) is deprecated without replacement. (#2229, [@​jeremyevans])Removed
Rack::Request#values_atis removed. (#2200, [@​ioquatix])Rack::Loggeris removed with no replacement. (#2196, [@​ioquatix])- Automatic cache invalidation in
Rack::Request#{GET,POST}has been removed. (#2230, [@​jeremyevans])- Support for
CGI::Cookiehas been removed. (#2332, [@​ioquatix])Fixed
Rack::RewindableInput::Middlewareno longer wraps a nil input. (#2259,@​tt)- Fix
NoMethodErrorinRack::Request#wrap_ipv6whenx-forwarded-hostis empty. (#2270,@​oieioi)- Fix the specification for
SERVER_PORTwhich was incorrectly documented as required to be anIntegerif present - it must be aStringcontaining digits only. (#2296, [@​ioquatix])SERVER_NAMEandHTTP_HOSTare now more strictly validated according to the relevant specifications. (#2298, [@​ioquatix])[3.1.15] - 2025-05-18
- Optional support for
CGI::Cookieif not available. (#2327, #2333, [@​earlopain])[3.1.14] - 2025-05-06
Security
... (truncated)
Commits
df2f3f2Bump patch version.aed514dFix ReDoS and consistency in multipart regexes352650aSynchronize changelog.835e15bBump patch version.bd60f6eFeature detectCGI::Cookie. (#2333)3c1a46dReplace usage ofCGI::Cookie(#2328)0ac5c57Test on Ruby v3.4.5440b2cBump patch version.cd6b70aMerge commit from fork0379537Bump patch version.- Additional commits viewable in compare view
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Codecov Report
:white_check_mark: All modified and coverable lines are covered by tests.
:white_check_mark: Project coverage is 99.95%. Comparing base (6373141) to head (704e80c).
:warning: Report is 12 commits behind head on main.
Additional details and impacted files
@@ Coverage Diff @@
## main #2330 +/- ##
=======================================
Coverage 99.95% 99.95%
=======================================
Files 55 55
Lines 2159 2159
=======================================
Hits 2158 2158
Misses 1 1
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
:rocket: New features to boost your workflow:
- :snowflake: Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
- :package: JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.
Any ideas on how to avoid the regression? Or is that no longer a problem?
It has to do with the session handling and custom stuff
Superseded by #2361.