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.0.4.1
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.0.6.1
Choose a head ref
  • 11 commits
  • 14 files changed
  • 4 contributors

Commits on Jan 20, 2023

  1. Fix changelog date.

    ioquatix committed Jan 20, 2023
    Configuration menu
    Copy the full SHA
    f310e6e View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2023

  1. Limit all multipart parts, not just files

    Previously we would limit the number of multipart parts which were
    files, but not other parts. In some cases this could cause parsing of
    maliciously crafted inputs to take longer than expected.
    
    [CVE-2023-27530]
    jhawthorn authored and tenderlove committed Mar 2, 2023
    Configuration menu
    Copy the full SHA
    b5d70b3 View commit details
    Browse the repository at this point in the history
  2. bump version

    tenderlove committed Mar 2, 2023
    1 Configuration menu
    Copy the full SHA
    5c18f30 View commit details
    Browse the repository at this point in the history
  3. Merge branch '3-0-sec' into 3-0-stable

    * 3-0-sec:
      bump version
      Limit all multipart parts, not just files
    tenderlove committed Mar 2, 2023
    Configuration menu
    Copy the full SHA
    66325b1 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2023

  1. test-external.yaml - use ruby/setup-ruby-pkgs (#2048)

    # Conflicts:
    #	.github/workflows/test-external.yaml
    ioquatix committed Mar 12, 2023
    Configuration menu
    Copy the full SHA
    91f0c4b View commit details
    Browse the repository at this point in the history
  2. Split form/query parsing into two steps (#2038)

    * Split form/query parsing into two steps
    
    First we parse the raw input into a stream of [key, value] pairs, and
    only after that do we expand that into the deep params hash.
    
    This allows a user to operate directly on the pair stream if they need
    to apply different semantics, without needing to rewind the input, and
    without creating a conflict with anything else (like a middleware) that
    wants to use Rack's standard GET / POST hash format.
    matthewd authored and ioquatix committed Mar 12, 2023
    Configuration menu
    Copy the full SHA
    7215fa7 View commit details
    Browse the repository at this point in the history
  3. Bump patch version.

    ioquatix committed Mar 12, 2023
    Configuration menu
    Copy the full SHA
    9f8ba5e View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2023

  1. Add QueryParser#missing_value for handling missing values + tests. (#…

    …2052)
    
    # Conflicts:
    #	lib/rack/query_parser.rb
    ioquatix committed Mar 13, 2023
    Configuration menu
    Copy the full SHA
    848c9c0 View commit details
    Browse the repository at this point in the history
  2. Bump patch version.

    ioquatix committed Mar 13, 2023
    Configuration menu
    Copy the full SHA
    e9e9ae6 View commit details
    Browse the repository at this point in the history
  3. Avoid ReDoS problem

    Split headers on commas, then strip the strings in order to avoid ReDoS
    issues.
    
    [CVE-2023-27539]
    tenderlove committed Mar 13, 2023
    Configuration menu
    Copy the full SHA
    231ef36 View commit details
    Browse the repository at this point in the history
  4. bump version

    tenderlove committed Mar 13, 2023
    Configuration menu
    Copy the full SHA
    098d8e1 View commit details
    Browse the repository at this point in the history
Loading