Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rack/rack
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.2.3
Choose a base ref
...
head repository: rack/rack
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.2.4
Choose a head ref
  • 2 commits
  • 4 files changed
  • 4 contributors

Commits on Nov 2, 2025

  1. Allow Multipart head to span read boundary. (#2392)

    Previously, the header size check compared `MIME_HEADER_BYTESIZE_LIMIT` against `@sbuf.string.bytesize`, which
    included previously read data. When the scan buffer held several megabytes of processed data plus a unprocessed
    header fragment, this could incorrectly raise “multipart mime part header too large.”
    
    Fix: compare the limit against `@sbuf.rest.bytesize` instead. This measures only the unread portion of the
    buffer—the region that may still contain the MIME header—ensuring the check applies to header data alone
    without being affected by prior reads.
    
    Co-authored-by: Shinichi Maeshima <[email protected]>
    Co-authored-by: krororo <[email protected]>
    3 people authored and ioquatix committed Nov 2, 2025
    Configuration menu
    Copy the full SHA
    3ba5e4f View commit details
    Browse the repository at this point in the history
  2. Bump patch version.

    ioquatix committed Nov 2, 2025
    Configuration menu
    Copy the full SHA
    4c24539 View commit details
    Browse the repository at this point in the history
Loading