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: lostisland/faraday
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.10.2
Choose a base ref
...
head repository: lostisland/faraday
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.10.5
Choose a head ref
  • 11 commits
  • 10 files changed
  • 4 contributors

Commits on Jan 18, 2023

  1. Configuration menu
    Copy the full SHA
    d72db28 View commit details
    Browse the repository at this point in the history
  2. Add support for Ruby 3.2.0 in Faraday v1.x (#1483)

    * Run tests against Ruby 3.2
    
    * Declare `DependencyLoader#new` with `ruby2_keywords` to fix Ruby 3.2.0
    
    When adding a middleware that receives keyword arguments in the
    constructor, the call from `DependencyLoader#new` fails because
    the method is not defined using `ruby2_keywords`.
    
    This adds the required `ruby2_keywords` declaration to
    `DependencyLoader#new`, fixing the tests and getting Faraday v1.x
    working with Ruby 3.2.0.
    
    Fixes #1479.
    
    Co-authored-by: Matt <iMacTia@users.noreply.github.com>
    timrogers and iMacTia authored Jan 18, 2023
    Configuration menu
    Copy the full SHA
    16506ee View commit details
    Browse the repository at this point in the history
  3. Version bump to 1.10.3

    iMacTia authored Jan 18, 2023
    Configuration menu
    Copy the full SHA
    7a382b5 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    92c038b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    eeec367 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8208693 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2024

  1. Make sure that Faraday::Request::Json and Faraday::Response::Json

    … are correctly autoloaded (#1595)
    iMacTia authored Sep 20, 2024
    Configuration menu
    Copy the full SHA
    435888d View commit details
    Browse the repository at this point in the history
  2. Version bump to 1.10.4

    iMacTia authored Sep 20, 2024
    Configuration menu
    Copy the full SHA
    41c990e View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2026

  1. Backport security fix for CVE-2026-25765 to 1.x branch (#1665)

    Protocol-relative URLs (e.g. `//evil.com/path`) bypassed the existing
    relative-URL guard in `build_exclusive_url`, allowing an attacker-controlled
    URL to override the connection's base host. The `//` prefix matched the
    `/` check in `start_with?`, so these URLs were passed through to
    `URI#+` which treated them as authority references, replacing the host.
    
    Extend the guard condition so that URLs starting with `//` are prefixed
    with `./`, neutralizing the authority component and keeping requests
    scoped to the configured base host.
    
    This backport maintains backward compatibility with the 1.x branch's
    colon-escaping behavior for opaque URIs like `service:search`.
    
    Security: CVE-2026-25765, GHSA-33mh-2634-fwr2
    
    Co-authored-by: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
    iMacTia and claude authored Feb 12, 2026
    Configuration menu
    Copy the full SHA
    d0fc049 View commit details
    Browse the repository at this point in the history
  2. Update rubocop complexity thresholds for security fix

    The CVE-2026-25765 security fix added an additional conditional check
    to build_exclusive_url, increasing complexity metrics from 13 to 15.
    Update the rubocop_todo.yml thresholds to reflect this acceptable
    increase for security purposes.
    
    Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
    iMacTia and claude committed Feb 12, 2026
    Configuration menu
    Copy the full SHA
    ea02c0e View commit details
    Browse the repository at this point in the history
  3. Version bump to 1.10.5

    iMacTia authored Feb 12, 2026
    Configuration menu
    Copy the full SHA
    5c1d68a View commit details
    Browse the repository at this point in the history
Loading