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: httprb/http
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.1.1
Choose a base ref
...
head repository: httprb/http
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.2.0
Choose a head ref
  • 18 commits
  • 22 files changed
  • 13 contributors

Commits on Feb 14, 2023

  1. Configuration menu
    Copy the full SHA
    32a2ae6 View commit details
    Browse the repository at this point in the history

Commits on Mar 30, 2023

  1. Configuration menu
    Copy the full SHA
    97aa636 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ed8bd1f View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2023

  1. Configuration menu
    Copy the full SHA
    73a59f5 View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2023

  1. Run CI against Ruby 3.2 (#742)

    * Fix ruby 3.2 spec
    * Run CI on ruby 3.2
    koheisg authored Apr 10, 2023
    Configuration menu
    Copy the full SHA
    4e0696c View commit details
    Browse the repository at this point in the history

Commits on May 25, 2023

  1. Update README.md (#751)

    Add ruby 3.2 to list of supported versions
    sandstrom authored May 25, 2023
    Configuration menu
    Copy the full SHA
    462d711 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2023

  1. Downcase Content-Type charset name (#753)

    Ran into an issue making requests to a server I don't control (Microsoft
    ASP.NET) where it was giving me errors POSTing JSON.
    
    This header works: `Content-Type: application/json; charset=utf-8`
    This did not: `Content-Type: application/json; charset=UTF-8`
    
    HTTP.rb uses Ruby `String#encoding.name`, which returns "UTF" in all
    caps, which is causing the `charset=UTF-8`.
    
    [MDN says "Case insensitive, lowercase
    preferred"](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Type),
    so I just downcased the encoding name, and added a test.
    paul authored Jun 2, 2023
    Configuration menu
    Copy the full SHA
    9bfcdfb View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2023

  1. Add base64 to runtime dependency (#759)

    This PR adds `base64` to runtime dependency to suppress the following Ruby 3.3's warning:
    
    ```console
    $ ruby -wve 'require "http"'
    ruby 3.3.0dev (2023-08-14T15:48:39Z master 52837fcec2) [x86_64-darwin22]
    /Users/koic/.rbenv/versions/3.3.0-dev/lib/ruby/gems/3.3.0+0/gems/http-5.1.1/lib/http/chainable.rb:3:
    warning: base64 which will be not part of the default gems since Ruby 3.4.0
    ```
    
    cf: rails/rails#48907
    koic authored Aug 16, 2023
    Configuration menu
    Copy the full SHA
    a47c436 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2023

  1. Configuration menu
    Copy the full SHA
    4060ccd View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2023

  1. fix: close sockets on initialize timeout (#762)

    Co-authored-by: Richard Peng <richard@withpersona.com>
    rpeng and rpeng authored Sep 26, 2023
    Configuration menu
    Copy the full SHA
    3b7133c View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2023

  1. Prevent CRLF injection due to broken URL normalizer (#765)

    * Prevent CRLF injection due to broken URL normalizer
    
    * DRY
    c960657 authored Oct 4, 2023
    Configuration menu
    Copy the full SHA
    65276d7 View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2023

  1. Configuration menu
    Copy the full SHA
    8b802bf View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2024

  1. Add support for the PURGE HTTP method. (#757)

    This method is used by several caching servers, like Squid, Varnish or Fastly.
    renchap authored and ixti committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    f7e16c8 View commit details
    Browse the repository at this point in the history
  2. Fix changelog uri in gemspec

    ixti committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    03370c6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    81d281e View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    02e66b0 View commit details
    Browse the repository at this point in the history
  5. ci: Cleanup and update workflow

    ixti committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    de1e319 View commit details
    Browse the repository at this point in the history
  6. Release v5.2.0

    ixti committed Feb 5, 2024
    Configuration menu
    Copy the full SHA
    bb754c7 View commit details
    Browse the repository at this point in the history
Loading